Searched refs:new_sz (Results 1 – 6 of 6) sorted by relevance
/external/valgrind/coregrind/m_debuginfo/ |
D | storage.c | 318 UInt new_sz, i; in ML_() local 328 new_sz = 2 * di->symtab_size; in ML_() 329 if (new_sz == 0) new_sz = 500; in ML_() 331 new_sz * sizeof(DiSym) ); in ML_() 338 di->symtab_size = new_sz; in ML_() 441 UInt new_sz; in addLoc() local 445 new_sz = 2 * di->loctab_size; in addLoc() 446 if (new_sz == 0) new_sz = 500; in addLoc() 448 new_sz * sizeof(DiLoc) ); in addLoc() 452 new_sz * di->sizeof_fndn_ix ); in addLoc() [all …]
|
/external/libvpx/libvpx/ |
D | vpxstats.c | 87 size_t new_sz = stats->buf_alloc_sz + 64 * 1024; in stats_write() local 88 char *new_ptr = realloc(stats->buf.buf, new_sz); in stats_write() 93 stats->buf_alloc_sz = new_sz; in stats_write()
|
/external/dtc/ |
D | fdtput.c | 135 int new_sz = fdt_totalsize(fdt) + delta; in _realloc_fdt() local 136 fdt = xrealloc(fdt, new_sz); in _realloc_fdt() 137 fdt_open_into(fdt, fdt, new_sz); in _realloc_fdt()
|
/external/valgrind/coregrind/ |
D | m_xtree.c | 299 UInt new_sz = (3 * d4ecu) / 2; in find_or_insert() local 301 if (new_sz < 1000) in find_or_insert() 302 new_sz = 1000; in find_or_insert() 304 new_sz * sizeof(UInt)); in find_or_insert() 305 shared->d4ecu2xecu_sz = new_sz; in find_or_insert() 306 for (UInt i = old_sz; i < new_sz; i++) in find_or_insert()
|
D | m_transtab.c | 1147 Int old_sz, new_sz, i, r; in addEClassNo() local 1161 new_sz = old_sz==0 ? 8 : old_sz<64 ? 2*old_sz : (3*old_sz)/2; in addEClassNo() 1163 new_sz * sizeof(TTEno)); in addEClassNo() 1168 sec->ec2tte_size[ec] = new_sz; in addEClassNo() 1171 if (DEBUG_TRANSTAB) VG_(printf)("expand ec %d to %d\n", ec, new_sz); in addEClassNo()
|
/external/valgrind/helgrind/ |
D | hg_wordset.c | 241 UInt i, new_sz; in ensure_ix2vec_space() local 246 new_sz = 2 * wsu->ix2vec_size; in ensure_ix2vec_space() 247 if (new_sz == 0) new_sz = 1; in ensure_ix2vec_space() 248 new_vec = wsu->alloc( wsu->cc, new_sz * sizeof(WordVec*) ); in ensure_ix2vec_space() 255 wsu->ix2vec_size = new_sz; in ensure_ix2vec_space()
|