Home
last modified time | relevance | path

Searched refs:sz (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dopen_memstream.c49 size_t sz = st->size * 8 / 5; in memstream_write() local
51 if (sz < end + 1) in memstream_write()
52 sz = end + 1; in memstream_write()
53 p = recallocarray(st->string, st->size, sz, 1); in memstream_write()
56 bzero(p + st->size, sz - st->size); in memstream_write()
58 st->size = sz; in memstream_write()
Dopen_wmemstream.c51 size_t sz = st->size * 8 / 5; in wmemstream_write() local
53 if (sz < end + 1) in wmemstream_write()
54 sz = end + 1; in wmemstream_write()
55 p = reallocarray(st->string, sz, sizeof(wchar_t)); in wmemstream_write()
58 bzero(p + st->size, (sz - st->size) * sizeof(wchar_t)); in wmemstream_write()
60 st->size = sz; in wmemstream_write()
/bionic/linker/
Dlinked_list.h233 size_t sz = 0; in copy_to_array() local
234 for (LinkedListEntry<T>* e = head_; sz < array_length && e != nullptr; e = e->next) { in copy_to_array()
235 array[sz++] = e->element; in copy_to_array()
238 return sz; in copy_to_array()
/bionic/libc/kernel/uapi/linux/
Dnetlink.h142 #define NL_MMAP_MSG_ALIGN(sz) __ALIGN_KERNEL(sz, NL_MMAP_MSG_ALIGNMENT) argument
/bionic/libc/malloc_debug/
DREADME.md485 z ZYGOTE_CHILD_ALLOC sz ALLOCATION_SIZE num NUM_ALLOCATIONS bt FRAMES
499 z 0 sz 400 num 1 bt 0000a230 0000b500
500 z 1 sz 500 num 3 bt 0000b000 0000c000
543 z 0 sz 400 num 1 bt 0000a230 0000b500
547 z 0 sz 400 num 1 bt a230 b500
566 z 0 sz 400 num 1 bt a2a0 b510
/bionic/libc/kernel/uapi/drm/
Di915_drm.h291 int sz; member