Searched defs:new_p (Results 1 - 12 of 12) sorted by relevance

/external/chromium/base/allocator/
H A Dallocator_unittests.cc404 void* new_p = realloc(p, start_sizes[s] + deltas[d]); local
405 CHECK_EQ(p, new_p); // realloc should not allocate new memory
409 void* new_p = realloc(p, start_sizes[s] - deltas[d]); local
410 CHECK_EQ(p, new_p); // realloc should not allocate new memory
/external/chromium_org/base/allocator/
H A Dallocator_unittests.cc403 void* new_p = realloc(p, start_sizes[s] + deltas[d]); local
404 ASSERT_EQ(p, new_p); // realloc should not allocate new memory
408 void* new_p = realloc(p, start_sizes[s] - deltas[d]); local
409 ASSERT_EQ(p, new_p); // realloc should not allocate new memory
/external/compiler-rt/lib/msan/
H A Dmsan_allocator.cc102 void *new_p = MsanAllocate(stack, new_size, alignment, zeroise); local
104 if (new_p)
105 __msan_memcpy(new_p, old_p, memcpy_size);
107 return new_p;
/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/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemv.c129 const vp9_prob new_p = get_binary_prob(ct[0], ct[1]); local
130 vp9_prob mod_p = new_p | 1;
/external/chromium_org/third_party/libwebp/enc/
H A Dframe.c193 const int new_p = CalcTokenProba(nb, total); local
196 const int new_cost = BranchCost(nb, total, new_p)
202 proba->coeffs_[t][b][c][p] = new_p;
203 has_changed |= (new_p != old_p);
/external/webp/src/enc/
H A Dframe.c193 const int new_p = CalcTokenProba(nb, total); local
196 const int new_cost = BranchCost(nb, total, new_p)
202 proba->coeffs_[t][b][c][p] = new_p;
203 has_changed |= (new_p != old_p);
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_unittest.cc613 void* new_p = realloc(p, start_sizes[s] + deltas[d]); local
614 CHECK(p == new_p); // realloc should not allocate new memory
618 void* new_p = realloc(p, start_sizes[s] - deltas[d]); local
619 CHECK(p == new_p); // realloc should not allocate new memory
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc613 void* new_p = realloc(p, start_sizes[s] + deltas[d]); local
614 CHECK(p == new_p); // realloc should not allocate new memory
618 void* new_p = realloc(p, start_sizes[s] - deltas[d]); local
619 CHECK(p == new_p); // realloc should not allocate new memory
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h1210 void *new_p = Allocate(cache, new_size, alignment); local
1211 if (new_p)
1212 internal_memcpy(new_p, p, memcpy_size);
1214 return new_p;
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dkssl.c2163 krb5_principal new_p = NULL; local
2167 (new_p = (krb5_principal) calloc(1, sizeof(krb5_principal_data)))
2169 new_p->length = 2;
2170 new_p->data = p_data;
2174 krb5_princ_set_realm_length(context, new_p, rlen);
2175 krb5_princ_set_realm_data(context, new_p, new_r);
2177 if ((new_p->data[0].data = calloc(1, slen + 1)) == NULL) goto err;
2178 memcpy(new_p->data[0].data, svc, slen);
2179 new_p->data[0].length = slen;
2181 if ((new_p
[all...]
/external/openssl/ssl/
H A Dkssl.c2163 krb5_principal new_p = NULL; local
2167 (new_p = (krb5_principal) calloc(1, sizeof(krb5_principal_data)))
2169 new_p->length = 2;
2170 new_p->data = p_data;
2174 krb5_princ_set_realm_length(context, new_p, rlen);
2175 krb5_princ_set_realm_data(context, new_p, new_r);
2177 if ((new_p->data[0].data = calloc(1, slen + 1)) == NULL) goto err;
2178 memcpy(new_p->data[0].data, svc, slen);
2179 new_p->data[0].length = slen;
2181 if ((new_p
[all...]

Completed in 1940 milliseconds