Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_debuginfo/
Dstorage.c327 UInt new_sz, i; in ML_() local
337 new_sz = 2 * di->symtab_size; in ML_()
338 if (new_sz == 0) new_sz = 500; in ML_()
340 new_sz * sizeof(DiSym) ); in ML_()
347 di->symtab_size = new_sz; in ML_()
422 UInt new_sz; in addLoc() local
426 new_sz = 2 * di->loctab_size; in addLoc()
427 if (new_sz == 0) new_sz = 500; in addLoc()
429 new_sz * sizeof(DiLoc) ); in addLoc()
433 new_sz * di->sizeof_fndn_ix ); in addLoc()
[all …]
/external/libvpx/libvpx/
Dvpxstats.c105 size_t new_sz = stats->buf_alloc_sz + 64 * 1024; in stats_write() local
106 char *new_ptr = realloc(stats->buf.buf, new_sz); in stats_write()
111 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/opencv3/modules/core/src/
Docl.cpp4687 size_t& total, size_t new_sz[], in checkContinuous() argument
4711 new_sz[0] = sz[1]; new_sz[1] = sz[0]; new_sz[2] = 1; in checkContinuous()
4736 new_sz[0] = sz[2]; new_sz[1] = sz[1]; new_sz[2] = sz[0]; in checkContinuous()
4775 size_t total = 0, new_sz[] = {0, 0, 0}; in download() local
4780 total, new_sz, in download()
4853 new_srcofs, new_dstofs, new_sz, new_srcstep[0], new_srcstep[1], in download()
4869 size_t total = 0, new_sz[] = {0, 0, 0}; in upload() local
4874 total, new_sz, in upload()
4965 new_dstofs, new_srcofs, new_sz, new_dststep[0], new_dststep[1], in upload()
4991 size_t total = 0, new_sz[] = {0, 0, 0}; in copy() local
[all …]
/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()