Searched refs:newsz (Results 1 - 8 of 8) sorted by relevance
/external/valgrind/none/tests/linux/ |
H A D | mremap2.stdout.exp | 6 maymv 0 fixed 0 newsz 19 dstpo 0 dst 0x........ -> 12 maymv 0 fixed 0 newsz 19 dstpo 1 dst 0x........ -> 18 maymv 0 fixed 0 newsz 20 dstpo 0 dst 0x........ -> 24 maymv 0 fixed 0 newsz 20 dstpo 1 dst 0x........ -> 30 maymv 0 fixed 0 newsz 21 dstpo 0 dst 0x........ -> 36 maymv 0 fixed 0 newsz 21 dstpo 1 dst 0x........ -> 42 maymv 0 fixed 0 newsz 29 dstpo 0 dst 0x........ -> 48 maymv 0 fixed 0 newsz 29 dstpo 1 dst 0x........ -> 54 maymv 0 fixed 0 newsz 30 dstpo 0 dst 0x........ -> 60 maymv 0 fixed 0 newsz 3 [all...] |
/external/freetype/include/internal/ |
H A D | ftmemory.h | 158 #define FT_MEM_REALLOC( ptr, cursz, newsz ) \ 162 (FT_Long)(newsz), \ 174 #define FT_MEM_QREALLOC( ptr, cursz, newsz ) \ 178 (FT_Long)(newsz), \ 272 #define FT_MEM_RENEW_ARRAY( ptr, cursz, newsz ) \ 276 (FT_Long)(newsz), \ 288 #define FT_MEM_QRENEW_ARRAY( ptr, cursz, newsz ) \ 292 (FT_Long)(newsz), \ 299 #define FT_REALLOC( ptr, cursz, newsz ) \ 300 FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, newsz ) ) [all...] |
/external/pdfium/third_party/freetype/include/internal/ |
H A D | ftmemory.h | 158 #define FT_MEM_REALLOC( ptr, cursz, newsz ) \ 162 (FT_Long)(newsz), \ 174 #define FT_MEM_QREALLOC( ptr, cursz, newsz ) \ 178 (FT_Long)(newsz), \ 264 #define FT_MEM_RENEW_ARRAY( ptr, cursz, newsz ) \ 268 (FT_Long)(newsz), \ 280 #define FT_MEM_QRENEW_ARRAY( ptr, cursz, newsz ) \ 284 (FT_Long)(newsz), \ 291 #define FT_REALLOC( ptr, cursz, newsz ) \ 292 FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, newsz ) ) [all...] |
/external/valgrind/coregrind/ |
H A D | m_xarray.c | 160 Word newsz; local 171 if (xa->elemSzB == 1) newsz = 8; 172 else if (xa->elemSzB == 2) newsz = 4; 173 else newsz = 2; 175 newsz = 2 + (3 * xa->totsizeE) / 2; /* 2 * xa->totsizeE; */ 179 xa->totsizeE, newsz); 180 tmp = xa->alloc_fn(xa->cc, newsz * xa->elemSzB); 186 xa->totsizeE = newsz;
|
/external/libedit/src/ |
H A D | hist.c | 195 hist_enlargebuf(EditLine *el, size_t oldsz, size_t newsz) argument 199 newbuf = el_realloc(el->el_history.buf, newsz * sizeof(*newbuf)); 203 (void) memset(&newbuf[oldsz], '\0', (newsz - oldsz) * sizeof(*newbuf)); 208 el->el_history.sz = newsz;
|
H A D | chared.c | 500 size_t sz, newsz; local 504 newsz = sz * 2; 510 while(newsz - sz < addlen) 511 newsz *= 2; 517 newbuffer = el_realloc(el->el_line.buffer, newsz * sizeof(*newbuffer)); 522 (void) memset(&newbuffer[sz], 0, (newsz - sz) * sizeof(*newbuffer)); 535 newbuffer = el_realloc(el->el_chared.c_kill.buf, newsz * 541 (void) memset(&newbuffer[sz], 0, (newsz - sz) * sizeof(*newbuffer)); 555 newsz * sizeof(*newbuffer)); 560 (void) memset(&newbuffer[sz], 0, (newsz [all...] |
/external/mesa3d/src/mesa/vbo/ |
H A D | vbo_save_api.c | 550 _save_upgrade_vertex(struct gl_context *ctx, GLuint attr, GLuint newsz) argument 574 save->attrsz[attr] = newsz; 576 save->vertex_size += newsz - oldsz; 623 dest += newsz; 626 COPY_SZ_4V(dest, newsz, save->current[attr]); 627 dest += newsz;
|
/external/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_rtl.cc | 452 const int newsz = 2 * sz; local 454 newsz * sizeof(uptr)); 459 thr->shadow_stack_end = newstack + newsz;
|
Completed in 1567 milliseconds