HomeSort by relevance Sort by last modified time
    Searched defs:df (Results 51 - 75 of 84) sorted by null

1 23 4

  /external/opencv/ml/src/
mlann_mlp.cpp 481 double* df = _df->data.db; local
487 for( i = 0; i < n; i++, xf += cols, df += cols )
491 df[j] = 1;
499 for( i = 0; i < n; i++, xf += cols, df += cols )
503 df[j] = t*2*scale2;
510 for( i = 0; i < n; i++, xf += cols, df += cols )
518 xf -= n; df -= n;
534 df[i] = scale*xf[i]*t0*t0;
535 df[i+1] = scale*xf[i+1]*t1*t1;
540 df[i+2] = scale*xf[i+2]*t0*t0
880 double **x = 0, **df = 0; local
1056 double **x = 0, **df = 0; local
    [all...]
mlsvm.cpp 1325 CvSVMDecisionFunc* df = 0; local
1915 CvSVMDecisionFunc* df = (CvSVMDecisionFunc*)decision_func; local
1928 CvSVMDecisionFunc* df = (CvSVMDecisionFunc*)decision_func; local
2046 const CvSVMDecisionFunc* df = decision_func; local
2207 CvSVMDecisionFunc* df; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_A.c 281 SDL_PixelFormat* df = info->dst; local
284 if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) {
300 alpha = (0xff << df->Rshift) | (0xff << df->Gshift) | (0xff << df->Bshift);
305 movd_m2r(df->Amask, mm7); /* dst alpha mask */
503 SDL_PixelFormat* df = info->dst; local
504 Uint32 chanmask = df->Rmask | df->Gmask | df->Bmask
2725 SDL_PixelFormat *df = surface->map->dst->format; local
    [all...]
  /external/quake/quake/src/QW/client/
in_win.c 142 static DIDATAFORMAT df = { variable
384 hr = IDirectInputDevice_SetDataFormat(g_pMouse, &df);
  /external/quake/quake/src/WinQuake/
in_win.cpp 143 static DIDATAFORMAT df = { variable
385 hr = IDirectInputDevice_SetDataFormat(g_pMouse, &df);
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.c 641 float df[2][PART_LEN1]; local
699 TimeToFrequency(fft, df, 0);
709 near_spectrum = df[0][i] * df[0][i] + df[1][i] * df[1][i];
827 UpdateLevel(&aec->nearlevel, df);
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 255 } df; member in struct:meas
484 measPtr->df.minWidth = dfMinWidth(format->format);
485 testPrintI(" dfMinWidth: %u", measPtr->df.minWidth);
487 measPtr->df.minHeight = dfMinHeight(format->format);
488 testPrintI(" dfMinHeight: %u", measPtr->df.minHeight);
490 measPtr->df.maxWidth = dfMaxWidth(format->format);
491 testPrintI(" dfMaxWidth: %u", measPtr->df.maxWidth);
493 measPtr->df.maxHeight = dfMaxHeight(format->format);
494 testPrintI(" dfMaxHeight: %u", measPtr->df.maxHeight);
496 measPtr->df.minDim = dfMinDim(format->format)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerState.java 27 public GLEnum sf, df, dp; // operation field in class:GLStencilState
218 GLEnum fsf = front.sf, fdf = front.df, fdp = front.dp;
219 GLEnum bsf = back.sf, bdf = back.df, bdp = back.dp;
231 if (fsf == front.sf && fdf == front.df && fdp == front.dp)
232 if (bsf == back.sf && bdf == back.df && bdp == back.dp)
235 front.df = fdf;
238 back.df = bdf;
  /external/chromium/net/tools/spdyshark/
packet-spdy.c 375 spdy_data_frame_t *df = g_malloc(sizeof(spdy_data_frame_t)); local
376 df->data = data;
377 df->length = length;
378 df->framenum = frame;
379 si->data_frames = g_slist_append(si->data_frames, df);
383 length, stream_id, df->framenum);
420 spdy_data_frame_t *df; local
437 df = dflist->data;
438 datalen += df->length;
447 df = dflist->data
463 spdy_data_frame_t *df; local
638 spdy_data_frame_t *df; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar 
org.eclipse.test.performance_3.6.0.v20091014.jar 
org.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jar 
org.eclipse.ecf.identity_3.1.0.v20100529-0735.jar 
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/icu4c/i18n/
dtptngen.cpp 407 DateFormat* df; local
416 df = DateFormat::createDateInstance(style, locale);
418 if (df != NULL && (sdf = dynamic_cast<SimpleDateFormat*>(df)) != NULL) {
422 delete df;
427 df = DateFormat::createTimeInstance(style, locale);
428 if (df != NULL && (sdf = dynamic_cast<SimpleDateFormat*>(df)) != NULL) {
436 delete df;
    [all...]
smpdtfmt.cpp 3231 DecimalFormat* df = NULL; local
    [all...]
  /external/icu4c/test/intltest/
loctest.cpp 1903 DateFormat* df = local
    [all...]
numrgts.cpp 283 DecimalFormat *df = new DecimalFormat(status); local
286 df->setMinimumFractionDigits(0);
287 df->setMaximumFractionDigits(16);
291 logln("maxFractionDigits = " + df->getMaximumFractionDigits());
293 logln(" format(d) = '" + df->format(d, sBuf1, fp1) + "'");
294 df->setMaximumFractionDigits(17);
297 logln("maxFractionDigits = " + df->getMaximumFractionDigits());
298 sBuf2 = df->format(d, sBuf2, fp2);
303 delete df;
319 DecimalFormat *df = new DecimalFormat("#,##0.0", *symbols, status) local
343 DecimalFormat *df = new DecimalFormat(status); local
368 DecimalFormat *df = new DecimalFormat(status); local
579 DecimalFormat *df = new DecimalFormat(status); local
635 DecimalFormat *df = new DecimalFormat(status); local
701 DecimalFormat *df = new DecimalFormat(status); local
730 DecimalFormat *df = new DecimalFormat(status); local
757 DecimalFormat *df = new DecimalFormat(status); local
845 DecimalFormat *df = dynamic_cast<DecimalFormat *>(nf); local
1165 DecimalFormat *df = new DecimalFormat("#0.#", status); local
1402 DecimalFormat *df = new DecimalFormat("#,##0.###", syms, status); local
1441 DecimalFormat *df = new DecimalFormat(status); \/\/ Corrected; see 4147706 local
1477 DecimalFormat *df = new DecimalFormat(status); local
1536 DecimalFormat *df = new DecimalFormat(status); local
1570 DecimalFormat *df = new DecimalFormat(status); local
1844 DecimalFormat *df = new DecimalFormat(DATA[i], status); local
2016 DecimalFormat *df = new DecimalFormat("#,##0.0##", status); local
2193 DecimalFormat *df = dynamic_cast<DecimalFormat *>(nf); local
2411 DecimalFormat *df = (DecimalFormat*) nf; local
2666 DateFormat *df = DateFormat::createDateInstance(DateFormat::kShort, loc); local
    [all...]
dtfmttst.cpp 412 DateFormat* df = dateFormats[j]; local
413 df->setTimeZone(*PT);
414 SimpleDateFormat* sdtfmt = dynamic_cast<SimpleDateFormat*>(df);
420 logln((UnicodeString)" Result = " + df->format(aug13, buf.remove()));
426 df->format(aug13, buf, pos);
441 df->format(aug13, buf, &posIter, status);
815 DateFormat *df = DateFormat::createDateTimeInstance(dateLook, timeLook); local
816 if (df == NULL){
822 UDate when = df->parse(text, status);
831 SimpleDateFormat* sdtfmt = dynamic_cast<SimpleDateFormat*>(df);
    [all...]
numfmtst.cpp 1705 DecimalFormat* df = dynamic_cast<DecimalFormat*>(nf); local
2752 DecimalFormat *df = (DecimalFormat*)NumberFormat::createCurrencyInstance(Locale::getEnglish(), status); local
    [all...]
  /system/core/libpixelflinger/
scanline.cpp 459 pixel_t sf, df; local
461 blend_factor(c, &df, c->state.blend.dst, fragment, fb);
464 gglMulAddx(fragment->c[1], sf.c[1], gglMulx(fb->c[1], df.c[1]));
466 gglMulAddx(fragment->c[2], sf.c[2], gglMulx(fb->c[2], df.c[2]));
468 gglMulAddx(fragment->c[3], sf.c[3], gglMulx(fb->c[3], df.c[3]));
472 blend_factor(c, &df, c->state.blend.dst_alpha, fragment, fb);
476 gglMulAddx(fragment->c[0], sf.c[0], gglMulx(fb->c[0], df.c[0]));
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 913 CtField df = getDeclaredField2(name, desc); local
914 if (df != null)
915 return df;
    [all...]
  /external/qemu/target-i386/
cpu.h 571 flags and DF are set to zero because they are
578 int32_t df; /* D flag : 1 if D = 0, -1 if D = 1 */ member in struct:CPUX86State
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindowManager.java 2332 final Rect df = mTmpDisplayFrame; local
2586 final Rect df = mTmpDisplayFrame; local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java 4212 DrawFilter df = null; local
    [all...]

Completed in 2676 milliseconds

1 23 4