Results of 1 - 10 of about 57 for allocated (0.002 sec.)
- Man page of MALLINFO 15948
- MALLINFO Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 mall
...
struct mallinfo { int arena; /* Non-mmapped space allocated (bytes) */ int ordblks; /* Number of free chunks * ...
Number of mmapped regions */ int hblkhd; /* Space allocated in mmapped regions (bytes) */ int usmblks; /* See ...
d fastbin blocks (bytes) */ int uordblks; /* Total allocated space (bytes) */ int fordblks; /* Total free space ...
s 0. Historically, it was the "highwater mark" for allocated space---that is, the maximum amount of space that ...
-
https://man.plustar.jp/manpage/man3/mallinfo.3.html
- [similar]
- Man page of FOPENCOOKIE 9692
- FOPENCOOKIE Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 f
...
uf; /* Dynamically sized buffer for data */ size_t allocated; /* Size of buf */ size_t endpos; /* Number of cha ...
g enough */ while (size + cookie->offset > cookie->allocated) { new_buff = realloc(cookie->buf, cookie->allocat ...
f (new_buff == NULL) { return -1; } else { cookie->allocated *= 2; cookie->buf = new_buff; } } memcpy(cookie->b ...
ile_cookie *cookie = c; free(cookie->buf); cookie->allocated = 0; cookie->buf = NULL; return 0; } int main(int ...
-
https://man.plustar.jp/manpage/man3/fopencookie.3.html
- [similar]
- Man page of MALLOC 8825
- MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc
...
ts of size bytes each and returns a pointer to the allocated memory. The memory is set to zero. If nmemb or siz ...
that an incorrectly sized block of memory would be allocated: malloc(nmemb * size); realloc () は、ポインター p ...
realloc () function returns a pointer to the newly allocated memory, which is suitably aligned for any built-in ...
ocarray () function returns a pointer to the newly allocated memory. On failure, it returns NULL and the origin ...
-
https://man.plustar.jp/manpage/man3/calloc.3.html
- [similar]
- Man page of MALLOC 8825
- MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc
...
ts of size bytes each and returns a pointer to the allocated memory. The memory is set to zero. If nmemb or siz ...
that an incorrectly sized block of memory would be allocated: malloc(nmemb * size); realloc () は、ポインター p ...
realloc () function returns a pointer to the newly allocated memory, which is suitably aligned for any built-in ...
ocarray () function returns a pointer to the newly allocated memory. On failure, it returns NULL and the origin ...
-
https://man.plustar.jp/manpage/man3/free.3.html
- [similar]
- Man page of MALLOC 8825
- MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc
...
ts of size bytes each and returns a pointer to the allocated memory. The memory is set to zero. If nmemb or siz ...
that an incorrectly sized block of memory would be allocated: malloc(nmemb * size); realloc () は、ポインター p ...
realloc () function returns a pointer to the newly allocated memory, which is suitably aligned for any built-in ...
ocarray () function returns a pointer to the newly allocated memory. On failure, it returns NULL and the origin ...
-
https://man.plustar.jp/manpage/man3/malloc.3.html
- [similar]
- Man page of MALLOC 8825
- MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc
...
ts of size bytes each and returns a pointer to the allocated memory. The memory is set to zero. If nmemb or siz ...
that an incorrectly sized block of memory would be allocated: malloc(nmemb * size); realloc () は、ポインター p ...
realloc () function returns a pointer to the newly allocated memory, which is suitably aligned for any built-in ...
ocarray () function returns a pointer to the newly allocated memory. On failure, it returns NULL and the origin ...
-
https://man.plustar.jp/manpage/man3/realloc.3.html
- [similar]
- Man page of MALLOC 8825
- MALLOC Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 malloc
...
ts of size bytes each and returns a pointer to the allocated memory. The memory is set to zero. If nmemb or siz ...
that an incorrectly sized block of memory would be allocated: malloc(nmemb * size); realloc () は、ポインター p ...
realloc () function returns a pointer to the newly allocated memory, which is suitably aligned for any built-in ...
ocarray () function returns a pointer to the newly allocated memory. On failure, it returns NULL and the origin ...
-
https://man.plustar.jp/manpage/man3/reallocarray.3.html
- [similar]
- Man page of POSIX_MEMALIGN 8238
- POSIX_MEMALIGN Section: Linux Programmer's Manual (3) Updated: 2020-12-21 Index JM Home Page 名前
...
allocates size bytes and places the address of the allocated memory in *memptr . The address of the allocated m ...
valloc (), and pvalloc () return a pointer to the allocated memory on success. On error, NULL is returned, and ...
-
https://man.plustar.jp/manpage/man3/aligned_alloc.3.html
- [similar]
- Man page of POSIX_MEMALIGN 8238
- POSIX_MEMALIGN Section: Linux Programmer's Manual (3) Updated: 2020-12-21 Index JM Home Page 名前
...
allocates size bytes and places the address of the allocated memory in *memptr . The address of the allocated m ...
valloc (), and pvalloc () return a pointer to the allocated memory on success. On error, NULL is returned, and ...
-
https://man.plustar.jp/manpage/man3/memalign.3.html
- [similar]
- Man page of POSIX_MEMALIGN 8238
- POSIX_MEMALIGN Section: Linux Programmer's Manual (3) Updated: 2020-12-21 Index JM Home Page 名前
...
allocates size bytes and places the address of the allocated memory in *memptr . The address of the allocated m ...
valloc (), and pvalloc () return a pointer to the allocated memory on success. On error, NULL is returned, and ...
-
https://man.plustar.jp/manpage/man3/posix_memalign.3.html
- [similar]