Searched refs:maplen (Results 1 - 11 of 11) sorted by relevance
/third_party/musl/src/malloc/mallocng/ |
H A D | realloc.c | 33 new = g->maplen*4096UL == needed ? g->mem : in realloc() 34 mremap(g->mem, g->maplen*4096UL, needed, MREMAP_MAYMOVE); in realloc() 37 g->maplen = needed/4096; in realloc()
|
H A D | meta.h | 31 uintptr_t maplen:8*sizeof(uintptr_t)-12; member 168 if (meta->maplen) { in get_meta() 169 assert(offset <= meta->maplen*4096UL/UNIT - 1); in get_meta() 192 if (!g->last_idx && g->maplen) { in get_stride() 193 return g->maplen*4096UL - UNIT; in get_stride()
|
H A D | free.c | 21 if (g->maplen) { in free_group() 25 mi.len = g->maplen*4096UL; in free_group() 51 if (!g->maplen) return 1; in okay_to_free()
|
H A D | donate.c | 27 m->maplen = 0; in donate()
|
H A D | malloc.c | 324 m->maplen = needed>>12; in alloc_group() 338 m->maplen = 0; in alloc_group() 399 g->maplen = (needed+4095)/4096; in malloc()
|
/third_party/musl/src/malloc/oldmallocng/ |
H A D | mallinfo.c | 29 mi->uordblks += g->maplen*4096; in accumulate_meta() 30 mi->hblkhd += g->maplen*4096; in accumulate_meta() 32 if (g->freeable && !g->maplen) { in accumulate_meta()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | rdtarga.c | 334 unsigned int width, height, maplen; in start_input_tga() local 351 maplen = GET_2B(5); in start_input_tga() 450 if (maplen > 0) { in start_input_tga() 451 if (maplen > 256 || GET_2B(3) != 0) in start_input_tga() 455 ((j_common_ptr)cinfo, JPOOL_IMAGE, (JDIMENSION)maplen, (JDIMENSION)3); in start_input_tga() 456 source->cmap_length = (int)maplen; in start_input_tga() 458 read_colormap(source, (int)maplen, UCH(targaheader[7])); in start_input_tga()
|
/third_party/musl/porting/linux/user/src/malloc/mallocng/ |
H A D | meta.h | 31 uintptr_t maplen:8*sizeof(uintptr_t)-12; member 168 if (meta->maplen) { in get_meta() 169 assert(offset <= meta->maplen*4096UL/UNIT - 1); in get_meta() 192 if (!g->last_idx && g->maplen) { in get_stride() 193 return g->maplen*4096UL - UNIT; in get_stride()
|
H A D | donate.c | 27 m->maplen = 0; in donate()
|
H A D | malloc.c | 319 m->maplen = needed>>12; in alloc_group() 333 m->maplen = 0; in alloc_group() 392 g->maplen = (needed+4095)/4096; in malloc()
|
/third_party/python/Objects/ |
H A D | unicodeobject.c | 8116 Py_ssize_t maplen; in charmap_decode_string() local 8125 maplen = PyUnicode_GET_LENGTH(mapping); in charmap_decode_string() 8131 if (mapkind == PyUnicode_1BYTE_KIND && maplen >= 256) { in charmap_decode_string() 8157 if (mapkind == PyUnicode_2BYTE_KIND && maplen >= 256) { in charmap_decode_string() 8190 if (ch < maplen) in charmap_decode_string()
|
Completed in 23 milliseconds