Home
last modified time | relevance | path

Searched refs:new_sz (Results 1 – 4 of 4) sorted by relevance

/external/valgrind/coregrind/m_debuginfo/
Dstorage.c324 UInt new_sz, i; in ML_() local
334 new_sz = 2 * di->symtab_size; in ML_()
335 if (new_sz == 0) new_sz = 500; in ML_()
337 new_sz * sizeof(DiSym) ); in ML_()
344 di->symtab_size = new_sz; in ML_()
419 UInt new_sz; in addLoc() local
423 new_sz = 2 * di->loctab_size; in addLoc()
424 if (new_sz == 0) new_sz = 500; in addLoc()
426 new_sz * sizeof(DiLoc) ); in addLoc()
430 new_sz * di->sizeof_fndn_ix ); in addLoc()
[all …]
/external/libvpx/libvpx/
Dvpxstats.c102 size_t new_sz = stats->buf_alloc_sz + 64 * 1024; in stats_write() local
103 char *new_ptr = realloc(stats->buf.buf, new_sz); in stats_write()
108 stats->buf_alloc_sz = new_sz; in stats_write()
/external/valgrind/helgrind/
Dhg_wordset.c241 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()
/external/valgrind/coregrind/
Dm_transtab.c1070 Int old_sz, new_sz, i, r; in addEClassNo() local
1084 new_sz = old_sz==0 ? 8 : old_sz<64 ? 2*old_sz : (3*old_sz)/2; in addEClassNo()
1086 new_sz * sizeof(TTEno)); in addEClassNo()
1091 sec->ec2tte_size[ec] = new_sz; in addEClassNo()
1094 if (DEBUG_TRANSTAB) VG_(printf)("expand ec %d to %d\n", ec, new_sz); in addEClassNo()