Lines Matching refs:size
157 #define kmalloc(size, flags) malloc(size) argument
159 #define vmalloc(size) malloc(size) argument
177 static bool memeq(const void *a, const void *b, size_t size) in memeq() argument
183 for (i = 0; i < size; ++i) in memeq()
192 static void memzero(void *buf, size_t size) in memzero() argument
195 uint8_t *e = b + size; in memzero()
204 void *memmove(void *dest, const void *src, size_t size) in memmove() argument
211 for (i = 0; i < size; ++i) in memmove()
214 i = size; in memmove()
252 long (*fill)(void *dest, unsigned long size), in unxz() argument
253 long (*flush)(void *src, unsigned long size), in unxz()