/external/aac/libAACdec/src/ |
D | rvlcconceal.cpp | 148 *refIsFwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds]; in calcRefValFwd() 154 *refNrgFwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds]; in calcRefValFwd() 160 *refScfFwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds]; in calcRefValFwd() 224 *refIsBwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[bnds]; in calcRefValBwd() 230 *refNrgBwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[bnds]; in calcRefValBwd() 236 *refScfBwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[bnds]; in calcRefValBwd() 268 CErRvlcInfo *pRvlc = &pAacDecoderChannelInfo->pComData->overlay.aac.erRvlcInfo; in BidirectionalEstimation_UseLowerScfOfCurrentFrame() 329 …AacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[pRvlc->conceal_max] = pAacDecoderChannelI… in BidirectionalEstimation_UseLowerScfOfCurrentFrame() 330 …AacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd[pRvlc->conceal_min] = pAacDecoderChannelI… in BidirectionalEstimation_UseLowerScfOfCurrentFrame() 342 …if (pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[bnds] < pAacDecoderChannelInfo->pCom… in BidirectionalEstimation_UseLowerScfOfCurrentFrame() [all …]
|
D | rvlc.cpp | 119 SHORT *pScfEsc = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfEsc; in rvlcInit() 120 SHORT *pScfFwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd; in rvlcInit() 121 SHORT *pScfBwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd; in rvlcInit() 429 SHORT* pScfFwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd; in rvlcDecodeForward() 430 SHORT* pScfEsc = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfEsc; in rvlcDecodeForward() 617 SHORT *pScfBwd = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfBwd; in rvlcDecodeBackward() 618 SHORT *pScfEsc = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfEsc; in rvlcDecodeBackward() 801 CErRvlcInfo *pRvlc = &pAacDecoderChannelInfo->pComData->overlay.aac.erRvlcInfo; in rvlcFinalErrorDetection() 940 …tInfo.aRvlcPreviousScaleFactor[bnds] = pAacDecoderChannelInfo->pComData->overlay.aac.aRvlcScfFwd[b… in rvlcFinalErrorDetection() 1056 CErRvlcInfo *pRvlc = &pAacDecoderChannelInfo->pComData->overlay.aac.erRvlcInfo; in CRvlc_Read() [all …]
|
/external/autotest/site_utils/presubmit_hooks/ |
D | check_control_files.py | 47 def GetOverlayPath(overlay=None): argument 58 if not overlay: 60 overlay = os.path.join(os.path.dirname(ourpath), 62 return os.path.normpath(overlay) 65 def GetAutotestTestPackages(overlay=None): argument 73 overlay = GetOverlayPath(overlay) 74 packages = glob.glob(os.path.join(overlay, "chromeos-base/autotest-*")) 76 return [x[(len(overlay) + 1):] for x in packages] 92 def GetUseFlags(overlay=None): argument 102 GetAutotestTestPackages(overlay)) [all …]
|
/external/netperf/src/ |
D | netcpu_pstat.c | 66 } *overlay; in get_cpu_idle() local 76 overlay = (union overlay_u *)&(res[i]); in get_cpu_idle() 77 overlay->word[0] = psp[i].psp_idlecycles.psc_hi; in get_cpu_idle() 78 overlay->word[1] = psp[i].psp_idlecycles.psc_lo; in get_cpu_idle() 146 } *overlay; in calibrate_idle_rate() local 147 overlay = (union overlay_u *)&(firstcnt[j]); in calibrate_idle_rate() 148 overlay->word[0] = psp[j].psp_idlecycles.psc_hi; in calibrate_idle_rate() 149 overlay->word[1] = psp[j].psp_idlecycles.psc_lo; in calibrate_idle_rate() 182 } *overlay; in calibrate_idle_rate() local 183 overlay = (union overlay_u *)&(secondcnt[j]); in calibrate_idle_rate() [all …]
|
/external/ImageMagick/Magick++/demo/ |
D | detrans.cpp | 45 Image overlay( fname ); in main() local 46 Image base( overlay.size(), color ); in main() 47 base.composite( overlay, 0, 0, OverCompositeOp ); in main()
|
/external/dtc/libfdt/ |
D | fdt_overlay.c | 605 int overlay; in overlay_merge() local 613 overlay = fdt_subnode_offset(fdto, fragment, "__overlay__"); in overlay_merge() 614 if (overlay == -FDT_ERR_NOTFOUND) in overlay_merge() 617 if (overlay < 0) in overlay_merge() 618 return overlay; in overlay_merge() 624 ret = overlay_apply_node(fdt, target, fdto, overlay); in overlay_merge()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/ |
D | AndroidTranslatorTest.java | 48 ItemizedOverlayForTests overlay = new ItemizedOverlayForTests(null); in testProtectedMethodsAreDelegated() local 49 overlay.triggerProtectedCall(); in testProtectedMethodsAreDelegated() 51 assertThat(shadowOf(overlay).isPopulated(), is(true)); in testProtectedMethodsAreDelegated()
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/ |
D | ConsoleActivity.java | 831 View overlay; in shiftCurrentTerminal() local 838 overlay = findCurrentView(R.id.terminal_overlay); in shiftCurrentTerminal() 839 if (overlay != null) { in shiftCurrentTerminal() 840 overlay.startAnimation(fade_stay_hidden); in shiftCurrentTerminal() 856 overlay = findCurrentView(R.id.terminal_overlay); in shiftCurrentTerminal() 857 if (overlay != null) { in shiftCurrentTerminal() 858 overlay.startAnimation(fade_out_delayed); in shiftCurrentTerminal() 929 TextView overlay = (TextView) view.findViewById(R.id.terminal_overlay); in addNewTerminalView() local 930 overlay.setText(bridge.getName()); in addNewTerminalView()
|
/external/clang/test/Modules/ |
D | crash-vfs-relative-overlay.m | 41 // CHECKYAML-NEXT: 'overlay-relative': 'true', 53 // the overlay dir is prefixed to access headers in .cache/vfs directory.
|
D | crash-vfs-path-symlink-component.m | 45 // CHECKYAML-NEXT: 'overlay-relative': 'true', 57 // right files inside the overlay and map the virtual request for a path that
|
D | crash-vfs-path-traversal.m | 42 // CHECKYAML-NEXT: 'overlay-relative': 'true', 54 // in the VFS overlay.
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowMapView.java | 172 for (Overlay overlay : overlays) { in dispatchTouchEvent() 173 if (overlay.onTouchEvent(event, realMapView)) { in dispatchTouchEvent()
|
/external/sl4a/ScriptingLayerForAndroid/ |
D | Android.mk | 33 LOCAL_AAPT_FLAGS := --auto-add-overlay
|
/external/dtc/tests/ |
D | .gitignore | 39 /overlay
|
D | Makefile.tests | 28 overlay overlay_bad_fixup \
|
/external/mesa3d/src/gallium/drivers/svga/include/ |
D | svga_overlay.h | 92 uint32 overlay; member
|
/external/syslinux/com32/lib/zlib/ |
D | deflate.c | 225 ushf *overlay; local 289 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 290 s->pending_buf = (uchf *) overlay; 300 s->d_buf = overlay + s->lit_bufsize/sizeof(ush); 939 ushf *overlay; 959 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2); 960 ds->pending_buf = (uchf *) overlay; 974 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
|
/external/autotest/contrib/ |
D | servo-stat | 22 KEYFILE=$KEYFILE/src/third_party/chromiumos-overlay
|
/external/pdfium/third_party/zlib_v128/ |
D | deflate.c | 227 ushf *overlay; in deflateInit2_() local 300 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); in deflateInit2_() 301 s->pending_buf = (uchf *) overlay; in deflateInit2_() 311 s->d_buf = overlay + s->lit_bufsize/sizeof(ush); in deflateInit2_() 1022 ushf *overlay; in deflateCopy() 1042 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2); in deflateCopy() 1043 ds->pending_buf = (uchf *) overlay; in deflateCopy() 1057 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush); in deflateCopy()
|
/external/zlib/src/ |
D | deflate.c | 228 ushf *overlay; local 301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 302 s->pending_buf = (uchf *) overlay; 312 s->d_buf = overlay + s->lit_bufsize/sizeof(ush); 1023 ushf *overlay; 1043 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2); 1044 ds->pending_buf = (uchf *) overlay; 1058 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
|
/external/deqp/android/cts/nyc/ |
D | gles31-multisample.txt | 66 dEQP-GLES31.functional.blend_equation_advanced.basic.overlay 81 dEQP-GLES31.functional.blend_equation_advanced.barrier.overlay 96 dEQP-GLES31.functional.blend_equation_advanced.coherent.overlay
|
/external/deqp/android/cts/nyc/src/ |
D | gles31-multisample.txt | 66 dEQP-GLES31.functional.blend_equation_advanced.basic.overlay 81 dEQP-GLES31.functional.blend_equation_advanced.barrier.overlay 96 dEQP-GLES31.functional.blend_equation_advanced.coherent.overlay
|
/external/deqp/android/cts/mnc/ |
D | gles31-multisample.txt | 66 dEQP-GLES31.functional.blend_equation_advanced.basic.overlay 81 dEQP-GLES31.functional.blend_equation_advanced.barrier.overlay 96 dEQP-GLES31.functional.blend_equation_advanced.coherent.overlay
|
/external/skia/src/core/ |
D | SkRasterPipeline.h | 83 M(exclusion) M(hardlight) M(lighten) M(overlay) M(softlight) \
|
/external/pdfium/testing/resources/javascript/ |
D | consts.in | 89 "iconTextH", "textIconH", "overlay", "nonesuch"]);
|