/external/libvpx/libvpx/vp9/encoder/ |
vp9_subexp.h | 19 vp9_prob newp, vp9_prob oldp); 21 void vp9_cond_prob_diff_update(vp9_writer *w, vp9_prob *oldp, 25 vp9_prob oldp, vp9_prob *bestp, 30 const vp9_prob *oldp,
|
vp9_subexp.c | 110 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) { 111 int delp = remap_prob(newp, oldp); 152 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) { 153 const int delp = remap_prob(newp, oldp); 164 vp9_prob oldp, vp9_prob *bestp, 166 const int old_b = cost_branch256(ct, oldp); 168 vp9_prob newp, bestnewp = oldp; 169 const int step = *bestp > oldp ? -1 : 1; 171 for (newp = *bestp; newp != oldp; newp += step) { 173 const int update_b = prob_diff_update_cost(newp, oldp) + vp9_cost_upd256 [all...] |
vp9_bitstream.c | 732 const vp9_prob oldp = old_frame_coef_probs[i][j][k][l][t]; local 744 frame_branch_ct[i][j][k][l][t], oldp, &newp, upd); 745 if (s > 0 && newp != oldp) 772 vp9_prob *oldp = old_frame_coef_probs[i][j][k][l] + t; local 785 *oldp, &newp, upd); 786 if (s > 0 && newp != *oldp) 795 vp9_write_prob_diff_update(bc, newp, *oldp); 796 *oldp = newp; 823 vp9_prob *oldp = old_frame_coef_probs[i][j][k][l] + t; local 839 *oldp, &newp, upd) [all...] |
/external/elfutils/libelf/ |
elf_end.c | 193 Elf_Data_List *oldp = runp; local 195 if ((oldp->flags & ELF_F_MALLOCED) != 0) 196 free (oldp); 201 Elf_ScnList *oldp = list; local 203 assert (list == NULL || oldp->cnt == oldp->max); 204 if (oldp != (elf->class == ELFCLASS32 209 free (oldp);
|
/external/elfutils/libasm/ |
asm_end.c | 535 void *oldp; local 544 oldp = data; 546 free (oldp); 548 while (oldp != scnp->content); 562 AsmScn_t *oldp = scn; local 564 free_section (oldp); 580 AsmScnGrp_t *oldp = scngrp; local 583 free (oldp);
|
/external/libsepol/src/ |
mls.h | 55 extern int mls_convert_context(policydb_t * oldp,
|
mls.c | 550 * policy `oldp' to the values specified in the policy `newp'. 552 int mls_convert_context(policydb_t * oldp, 561 if (!oldp->mls) 567 oldp-> 587 oldp->
|
services.c | 1478 policydb_t *oldp; member in struct:__anon21106 [all...] |
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
zdump.c | 166 static long delta(struct tm * newp, struct tm * oldp); 720 delta(newp, oldp) 722 struct tm * oldp; 727 if (newp->tm_year < oldp->tm_year) 728 return -delta(oldp, newp); 730 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy) 732 result += newp->tm_yday - oldp->tm_yday; 734 result += newp->tm_hour - oldp->tm_hour; 736 result += newp->tm_min - oldp->tm_min; 738 result += newp->tm_sec - oldp->tm_sec [all...] |
/external/icu4c/tools/tzcode/ |
zdump.c | 166 static long delta(struct tm * newp, struct tm * oldp); 720 delta(newp, oldp) 722 struct tm * oldp; 727 if (newp->tm_year < oldp->tm_year) 728 return -delta(oldp, newp); 730 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy) 732 result += newp->tm_yday - oldp->tm_yday; 734 result += newp->tm_hour - oldp->tm_hour; 736 result += newp->tm_min - oldp->tm_min; 738 result += newp->tm_sec - oldp->tm_sec [all...] |
/external/kernel-headers/original/linux/ |
nodemask.h | 316 const nodemask_t *oldp, const nodemask_t *newp, int nbits) 318 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits); 324 const nodemask_t *oldp, const nodemask_t *newp, int nbits) 326 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
|
cpumask.h | 301 const cpumask_t *oldp, const cpumask_t *newp, int nbits) 303 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits); 309 const cpumask_t *oldp, const cpumask_t *newp, int nbits) 311 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
|
/external/elfutils/src/ |
ldgeneric.c | 527 struct usedfiles *fileinfo, struct symbol *oldp) 530 || (oldp->scndx >= SHN_LORESERVE && oldp->scndx <= SHN_HIRESERVE)) 535 size_t oldgrpid = oldp->file->scninfo[oldp->scndx].grpid; 541 assert (SCNINFO_SHDR (oldp->file->scninfo[oldgrpid].shdr).sh_type 545 || ! oldp->file->scninfo[oldgrpid].comdat_group) 549 oldp->file->scninfo[oldgrpid].symbols->name) != 0) 559 struct symbol *oldp) 567 if (XELF_ST_TYPE (sym->st_info) != STT_NOTYPE && oldp->type != STT_NOTYP 1539 struct symbol *oldp = ld_symbol_tab_find (&ld_state.symbol_tab, local 1800 struct filename_list *oldp; local 6211 struct scngroup *oldp = groups; local [all...] |
ldscript.y | 805 struct version *oldp; 810 oldp = versions;
|
/external/compiler-rt/lib/msan/ |
msan.h | 47 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size,
|
/external/libvpx/libvpx/vp8/encoder/ |
bitstream.c | 841 const vp8_prob oldp, const vp8_prob newp, 844 const int old_b = vp8_cost_branch(ct, oldp); 897 const vp8_prob oldp = cpi->common.fc.coef_probs [i][j][k][t]; local 899 const int s = prob_update_savings(ct, oldp, newp, upd); 902 (cpi->common.frame_type == KEY_FRAME && newp != oldp)) 958 const vp8_prob oldp = cpi->common.fc.coef_probs [i][j][k][t]; local 960 const int s = prob_update_savings(ct, oldp, newp, upd); 1105 const vp8_prob oldp = cpi->common.fc.coef_probs[i][j] local 1110 prob_update_savings(ct, oldp, newp, upd); [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
nfrs.cpp | 187 int32_t oldP = 0; 188 while (oldP < description.length()) { 189 int32_t p = description.indexOf(gSemicolon, oldP); 193 currentDescription.setTo(description, oldP, p - oldP); 195 oldP = p + 1;
|
/external/icu4c/i18n/ |
nfrs.cpp | 200 int32_t oldP = 0; 201 while (oldP < description.length()) { 202 int32_t p = description.indexOf(gSemicolon, oldP); 206 currentDescription.setTo(description, oldP, p - oldP); 208 oldP = p + 1;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
term_entry.h | 121 extern NCURSES_EXPORT(ENTRY *) _nc_copy_entry (ENTRY *oldp); variable
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
term_entry.h | 121 extern NCURSES_EXPORT(ENTRY *) _nc_copy_entry (ENTRY *oldp); variable
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
term_entry.h | 121 extern NCURSES_EXPORT(ENTRY *) _nc_copy_entry (ENTRY *oldp); variable
|
/external/e2fsprogs/intl/ |
dcigettext.c | 1198 struct binding *oldp = _nl_domain_bindings; local [all...] |
/bionic/libc/upstream-dlmalloc/ |
malloc.c | 5222 mchunkptr oldp = mem2chunk(oldmem); local 5260 mchunkptr oldp = mem2chunk(oldmem); local 5774 mchunkptr oldp = mem2chunk(oldmem); local 5812 mchunkptr oldp = mem2chunk(oldmem); local [all...] |
/external/eigen/unsupported/test/mpreal/ |
dlmalloc.c | 4305 mchunkptr oldp = mem2chunk(oldmem); local [all...] |
/external/libffi/src/ |
dlmalloc.c | 3778 mchunkptr oldp = mem2chunk(oldmem); local [all...] |