Searched refs:new_p (Results 1 - 6 of 6) sorted by relevance

/external/valgrind/memcheck/tests/
H A Dundef_malloc_args.c8 char *new_p; local
19 new_p = realloc(p, def_size);
21 (void) VALGRIND_MAKE_MEM_UNDEFINED(&new_p, 1);
22 new_p = realloc(new_p, def_size);
24 (void) VALGRIND_MAKE_MEM_UNDEFINED(&new_p, 1);
25 free (new_p);
30 new_p = calloc(nmemb, def_size);
31 free (new_p);
37 new_p
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.c202 const vp8_prob new_p,
208 const int new_b = vp8_cost_branch(ct, new_p);
213 *cur_p = new_p;
215 vp8_write_literal(w, new_p >> 1, 7);
331 const vp8_prob *const new_p = Pnew + MVPshort; local
338 update(w, short_bct[j], cur_p + j, new_p[j], *Pupdate++, updated);
344 const vp8_prob *const new_p = Pnew + MVPbits; local
351 update(w, bit_ct[j], cur_p + j, new_p[j], *Pupdate++, updated);
198 update( vp8_writer *const w, const unsigned int ct[2], vp8_prob *const cur_p, const vp8_prob new_p, const vp8_prob update_p, int *updated ) argument
/external/compiler-rt/lib/msan/
H A Dmsan_allocator.cc186 void *new_p = MsanAllocate(stack, new_size, alignment, zeroise); local
188 if (new_p) {
189 CopyMemory(new_p, old_p, memcpy_size, stack);
192 return new_p;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemv.c137 const vpx_prob new_p = get_binary_prob(ct[0], ct[1]) | 1; local
139 cost_branch256(ct, new_p) + vp9_cost_one(upd_p) + 7 * 256;
142 *cur_p = new_p;
143 vpx_write_literal(w, new_p >> 1, 7);
/external/webp/src/enc/
H A Dframe.c160 const int new_p = CalcTokenProba(nb, total); local
163 const int new_cost = BranchCost(nb, total, new_p)
169 proba->coeffs_[t][b][c][p] = new_p;
170 has_changed |= (new_p != old_p);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h1348 void *new_p = Allocate(cache, new_size, alignment); local
1349 if (new_p)
1350 internal_memcpy(new_p, p, memcpy_size);
1352 return new_p;

Completed in 299 milliseconds