Searched refs:newp (Results 51 - 67 of 67) sorted by last modified time

123

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_bitstream.c533 vp9_prob newp = new_coef_probs[i][j][k][l][t]; local
540 old_coef_probs[i][j][k][l], &newp, upd);
543 frame_branch_ct[i][j][k][l][t], oldp, &newp, upd);
544 if (s > 0 && newp != oldp)
570 vp9_prob newp = new_coef_probs[i][j][k][l][t]; local
578 old_coef_probs[i][j][k][l], &newp, upd);
582 *oldp, &newp, upd);
583 if (s > 0 && newp != *oldp)
588 vp9_write_prob_diff_update(bc, newp, *oldp);
589 *oldp = newp;
615 vp9_prob newp = new_coef_probs[i][j][k][l][t]; local
[all...]
H A Dvp9_subexp.c81 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) { argument
82 int delp = remap_prob(newp, oldp);
114 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) { argument
115 const int delp = remap_prob(newp, oldp);
124 vp9_prob newp, bestnewp = oldp; local
127 for (newp = *bestp; newp != oldp; newp += step) {
128 const int new_b = cost_branch256(ct, newp);
129 const int update_b = prob_diff_update_cost(newp, old
145 int newp; local
181 vp9_prob newp = get_binary_prob(ct[0], ct[1]); local
[all...]
H A Dvp9_subexp.h20 vp9_prob newp, vp9_prob oldp);
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dzdump.c166 static long delta(struct tm * newp, struct tm * oldp);
720 delta(newp, oldp)
721 struct tm * newp;
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
[all...]
H A Dzic.c440 #define ecatalloc(oldp, newp) memcheck(icatalloc((oldp), (newp)))
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumfmtst.cpp239 UnicodeString newp; fmt.toPattern(newp); local
240 if (!(newp == newpat[i]))
242 "; " + newp + " seen instead");
/external/chromium_org/third_party/WebKit/ManualTests/NPN_Invoke/
H A Dmain.c80 pluginFuncs->newp = NPP_New;
137 pluginFuncs->newp = (NPP_NewProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_New);
/external/chromium_org/third_party/npapi/bindings/
H A Dnpfunctions.h133 NPP_NewProcPtr newp; member in struct:_NPPluginFuncs
/external/chromium_org/third_party/npapi/npspy/common/
H A Depmanager.cpp104 eps->realNPPFuncs.newp = funcs->newp;
228 if(!nppfuncs || !nppfuncs->newp)
231 NPError rv = CallNPP_NewProc(nppfuncs->newp, pluginType, instance, mode, argc, argn, argv, saved);
H A Dlogger.cpp165 if(pNPPFuncs->newp)
166 sprintf(szLog6, " newp = %#08lx\r\n", pNPPFuncs->newp);
168 sprintf(szLog6, " newp = not set!\r\n");
H A Dnp_entry.cpp77 pFuncs->newp = NPP_New;
/external/chromium_org/third_party/npapi/npspy/extern/plugin/
H A Dnpupp.h502 NPP_NewUPP newp; member in struct:_NPPluginFuncs
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/content/shell/tools/plugin/
H A Dmain.cpp117 pluginFuncs->newp = NPP_New;
/external/chromium_org/content/test/plugin/
H A Dplugin_client.cc24 pFuncs->newp = NPP_New;
/external/chromium_org/content/child/npapi/
H A Dplugin_instance.cc220 DCHECK(npp_functions_->newp != 0);
223 if (npp_functions_->newp != 0) {
224 return npp_functions_->newp(
/external/bison/lib/
H A Dgetopt.c527 struct option_list *newp = malloc (sizeof (*newp));
528 newp->p = p;
529 newp->next = ambig_list;
530 ambig_list = newp;
523 struct option_list *newp = malloc (sizeof (*newp)); local

Completed in 844 milliseconds

123