/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_dct.c | 28 int16_t step[4]; in fdct4() local 31 step[0] = input[0] + input[3]; in fdct4() 32 step[1] = input[1] + input[2]; in fdct4() 33 step[2] = input[1] - input[2]; in fdct4() 34 step[3] = input[0] - input[3]; in fdct4() 36 temp1 = (step[0] + step[1]) * cospi_16_64; in fdct4() 37 temp2 = (step[0] - step[1]) * cospi_16_64; in fdct4() 40 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64; in fdct4() 41 temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64; in fdct4() 61 /*canbe16*/ int step[4]; in vp9_fdct4x4_c() local [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_dct.c | 30 tran_high_t step[4]; in fdct4() local 33 step[0] = input[0] + input[3]; in fdct4() 34 step[1] = input[1] + input[2]; in fdct4() 35 step[2] = input[1] - input[2]; in fdct4() 36 step[3] = input[0] - input[3]; in fdct4() 38 temp1 = (step[0] + step[1]) * cospi_16_64; in fdct4() 39 temp2 = (step[0] - step[1]) * cospi_16_64; in fdct4() 42 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64; in fdct4() 43 temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64; in fdct4() 75 tran_high_t step[4]; // canbe16 in vp9_fdct4x4_c() local [all …]
|
/external/libvpx/libvpx/test/ |
D | dct16x16_test.cc | 84 double step[16]; in butterfly_16x16_dct_1d() local 89 step[ 0] = input[0] + input[15]; in butterfly_16x16_dct_1d() 90 step[ 1] = input[1] + input[14]; in butterfly_16x16_dct_1d() 91 step[ 2] = input[2] + input[13]; in butterfly_16x16_dct_1d() 92 step[ 3] = input[3] + input[12]; in butterfly_16x16_dct_1d() 93 step[ 4] = input[4] + input[11]; in butterfly_16x16_dct_1d() 94 step[ 5] = input[5] + input[10]; in butterfly_16x16_dct_1d() 95 step[ 6] = input[6] + input[ 9]; in butterfly_16x16_dct_1d() 96 step[ 7] = input[7] + input[ 8]; in butterfly_16x16_dct_1d() 97 step[ 8] = input[7] - input[ 8]; in butterfly_16x16_dct_1d() [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
D | dct16x16_test.cc | 81 double step[16]; in butterfly_16x16_dct_1d() local 86 step[ 0] = input[0] + input[15]; in butterfly_16x16_dct_1d() 87 step[ 1] = input[1] + input[14]; in butterfly_16x16_dct_1d() 88 step[ 2] = input[2] + input[13]; in butterfly_16x16_dct_1d() 89 step[ 3] = input[3] + input[12]; in butterfly_16x16_dct_1d() 90 step[ 4] = input[4] + input[11]; in butterfly_16x16_dct_1d() 91 step[ 5] = input[5] + input[10]; in butterfly_16x16_dct_1d() 92 step[ 6] = input[6] + input[ 9]; in butterfly_16x16_dct_1d() 93 step[ 7] = input[7] + input[ 8]; in butterfly_16x16_dct_1d() 94 step[ 8] = input[7] - input[ 8]; in butterfly_16x16_dct_1d() [all …]
|
/external/linux-tools-perf/ |
D | CleanSpec.mk | 46 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libelf_intermediates) 47 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libebl_intermediates) 48 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libdw_intermediates) 49 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libdwfl_intermediates) 50 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libperf_intermediates) 51 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/EXECUTABLES/perf_intermediates) 52 $(call add-clean-step, rm -rf $(OUT)/obj/STATIC_LIBRARIES/libperf_intermediates) 53 $(call add-clean-step, rm -rf $(OUT)/obj/EXECUTABLES/perf_intermediates) 55 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libperf_intermediates) 56 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libdw_intermediates) [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderVTTCue.cpp | 69 bool RenderVTTCue::initializeLayoutParameters(InlineFlowBox* firstLineBox, LayoutUnit& step, Layout… in initializeLayoutParameters() argument 77 …step = m_cue->getWritingDirection() == VTTCue::Horizontal ? firstLineBox->height() : firstLineBox-… in initializeLayoutParameters() 80 if (!step) in initializeLayoutParameters() 91 position = step * linePosition; in initializeLayoutParameters() 97 position += step; in initializeLayoutParameters() 107 step = -step; in initializeLayoutParameters() 150 bool RenderVTTCue::shouldSwitchDirection(InlineFlowBox* firstLineBox, LayoutUnit step) const in shouldSwitchDirection() 163 …if (m_cue->getWritingDirection() == VTTCue::Horizontal && ((step < 0 && top < 0) || (step > 0 && b… in shouldSwitchDirection() 172 …if (m_cue->getWritingDirection() != VTTCue::Horizontal && ((step < 0 && left < 0) || (step > 0 && … in shouldSwitchDirection() 178 void RenderVTTCue::moveBoxesByStep(LayoutUnit step) in moveBoxesByStep() argument [all …]
|
/external/webp/src/dsp/ |
D | dec_mips32.c | 28 static WEBP_INLINE void do_filter2(uint8_t* p, int step) { in do_filter2() argument 29 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter2() 33 p[-step] = VP8kclip1[p0 + a2]; in do_filter2() 38 static WEBP_INLINE void do_filter4(uint8_t* p, int step) { in do_filter4() argument 39 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter4() 44 p[-2 * step] = VP8kclip1[p1 + a3]; in do_filter4() 45 p[- step] = VP8kclip1[p0 + a2]; in do_filter4() 47 p[ step] = VP8kclip1[q1 - a3]; in do_filter4() 51 static WEBP_INLINE void do_filter6(uint8_t* p, int step) { in do_filter6() argument 52 const int p2 = p[-3 * step], p1 = p[-2 * step], p0 = p[-step]; in do_filter6() [all …]
|
/external/chromium_org/third_party/libwebp/dsp/ |
D | dec_mips32.c | 28 static WEBP_INLINE void do_filter2(uint8_t* p, int step) { in do_filter2() argument 29 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter2() 33 p[-step] = VP8kclip1[p0 + a2]; in do_filter2() 38 static WEBP_INLINE void do_filter4(uint8_t* p, int step) { in do_filter4() argument 39 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter4() 44 p[-2 * step] = VP8kclip1[p1 + a3]; in do_filter4() 45 p[- step] = VP8kclip1[p0 + a2]; in do_filter4() 47 p[ step] = VP8kclip1[q1 - a3]; in do_filter4() 51 static WEBP_INLINE void do_filter6(uint8_t* p, int step) { in do_filter6() argument 52 const int p2 = p[-3 * step], p1 = p[-2 * step], p0 = p[-step]; in do_filter6() [all …]
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
D | oobe_screen.css | 8 .step { 13 .step.animated:not(.faded) { 19 .step.hidden { 29 .step.right { 33 .step.left { 37 .step.fullscreen { 45 .step-controls { 51 padding-right: 34px; /* Double the padding of .step */ 56 html[dir=rtl] .step-controls { 61 .animation .step-controls button { [all …]
|
/external/wpa_supplicant_8/ |
D | CleanSpec.mk | 50 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_supplicant_intermediates/*) 51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_cli_intermediates/*) 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_supplicant_intermediates) 53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_supplicant_intermediates/*) 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_cli_intermediates/*) 55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_supplicant_intermediates/*) 56 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/hostapd_intermediates/*) 57 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_cli_intermediates/*) 58 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/wpa_supplicant_intermediates/*) 59 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/hostapd_intermediates/*) [all …]
|
/external/opencv/cv/src/ |
D | cvdistransform.cpp | 68 int step, float* dist, int dststep, CvSize size, const float* metrics ) in icvDistanceTransform_3x3_C1R() argument 77 step /= sizeof(temp[0]); in icvDistanceTransform_3x3_C1R() 80 icvInitTopBottom( temp, step, size, BORDER ); in icvDistanceTransform_3x3_C1R() 86 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER; in icvDistanceTransform_3x3_C1R() 97 int t0 = tmp[j-step-1] + DIAG_DIST; in icvDistanceTransform_3x3_C1R() 98 int t = tmp[j-step] + HV_DIST; in icvDistanceTransform_3x3_C1R() 100 t = tmp[j-step+1] + DIAG_DIST; in icvDistanceTransform_3x3_C1R() 113 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER; in icvDistanceTransform_3x3_C1R() 120 int t = tmp[j+step+1] + DIAG_DIST; in icvDistanceTransform_3x3_C1R() 122 t = tmp[j+step] + HV_DIST; in icvDistanceTransform_3x3_C1R() [all …]
|
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/ |
D | MultiFieldTimePickerDialog.java | 53 int min, int max, int step, boolean is24hourFormat, in MultiFieldTimePickerDialog() argument 57 mStep = step; in MultiFieldTimePickerDialog() 64 if (step < 0 || step >= 24 * HOUR_IN_MILLIS) { in MultiFieldTimePickerDialog() 65 step = MINUTE_IN_MILLIS; in MultiFieldTimePickerDialog() 158 if (step >= HOUR_IN_MILLIS) { in MultiFieldTimePickerDialog() 165 if (step >= MINUTE_IN_MILLIS) { in MultiFieldTimePickerDialog() 194 if (step >= SECOND_IN_MILLIS) { in MultiFieldTimePickerDialog() 201 milli = ((milli + step / 2) / step) * step; in MultiFieldTimePickerDialog() 202 if (step == 1 || step == 10 || step == 100) { in MultiFieldTimePickerDialog() 205 mMilliSpinner.setMinValue(min / step); in MultiFieldTimePickerDialog() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | StepRange.cpp | 53 … stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescript… in StepRange() argument 56 , m_step(step.isFinite() ? step : 1) in StepRange() 59 , m_hasStep(step.isFinite()) in StepRange() 112 Decimal step = parseToDecimalForNumberType(stepString); in parseStep() local 113 if (!step.isFinite() || step <= 0) in parseStep() 118 step *= stepDescription.stepScaleFactor; in parseStep() 122 step = std::max(step.round(), Decimal(1)); in parseStep() 123 step *= stepDescription.stepScaleFactor; in parseStep() 127 step *= stepDescription.stepScaleFactor; in parseStep() 128 step = std::max(step.round(), Decimal(1)); in parseStep() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XPathPath.cpp | 139 Step* step = m_steps[i]; in evaluate() local 143 …heckForDuplicateNodes = !nodes.subtreesAreDisjoint() || (step->axis() != Step::ChildAxis && step->… in evaluate() 144 …&& step->axis() != Step::DescendantAxis && step->axis() != Step::DescendantOrSelfAxis && step->axi… in evaluate() 150 …if (nodes.subtreesAreDisjoint() && (step->axis() == Step::ChildAxis || step->axis() == Step::SelfA… in evaluate() 155 step->evaluate(context, nodes[j], *matches); in evaluate() 173 void LocationPath::appendStep(Step* step) in appendStep() argument 178 optimizeStepPair(m_steps[stepCount - 1], step, dropSecondStep); in appendStep() 181 delete step; in appendStep() 186 step->optimize(); in appendStep() 187 m_steps.append(step); in appendStep() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | UndoStack.cpp | 55 void UndoStack::registerUndoStep(PassRefPtrWillBeRawPtr<UndoStep> step) in registerUndoStep() argument 61 m_undoStack.append(step); in registerUndoStep() 64 void UndoStack::registerRedoStep(PassRefPtrWillBeRawPtr<UndoStep> step) in registerRedoStep() argument 66 m_redoStack.append(step); in registerRedoStep() 80 UndoStep* step = stack.first().get(); in filterOutUndoSteps() local 81 if (!step->belongsTo(frame)) in filterOutUndoSteps() 82 newStack.append(step); in filterOutUndoSteps() 102 RefPtrWillBeRawPtr<UndoStep> step(back->get()); in undo() local 104 step->unapply(); in undo() 113 RefPtrWillBeRawPtr<UndoStep> step(back->get()); in redo() local [all …]
|
/external/chromium_org/third_party/brotli/src/brotli/dec/ |
D | huffman.c | 34 int step = 1 << (len - 1); in GetNextKey() local 35 while (key & step) { in GetNextKey() 36 step >>= 1; in GetNextKey() 38 return (key & (step - 1)) + step; in GetNextKey() 44 int step, int end, in ReplicateValue() argument 47 end -= step; in ReplicateValue() 76 int step; /* step size to replicate values in current table */ in BrotliBuildHuffmanTable() local 128 for (len = 1, step = 2; len <= root_bits; ++len, step <<= 1) { in BrotliBuildHuffmanTable() 132 ReplicateValue(&table[key], step, table_size, code); in BrotliBuildHuffmanTable() 140 for (len = root_bits + 1, step = 2; len <= MAX_LENGTH; ++len, step <<= 1) { in BrotliBuildHuffmanTable() [all …]
|
/external/openssl/ |
D | CleanSpec.mk | 46 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/openssl_intermediates) 47 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/openssl_intermediates) 48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libcrypto_intermediates $(PRODUCT… 49 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libcrypto_intermediates $(PRODUCT… 50 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libcrypto_intermediates $(PRODUCT… 51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libcrypto_intermediates $(PRODUCT… 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libcrypto_intermediates $(PRODUCT… 53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libssl_intermediates) 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libcrypto_intermediates) 55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libssl_static_intermediates) [all …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | DateMath.cpp | 200 int step; in monthFromDayInYear() local 202 if (d < (step = 31)) in monthFromDayInYear() 204 step += (leapYear ? 29 : 28); in monthFromDayInYear() 205 if (d < step) in monthFromDayInYear() 207 if (d < (step += 31)) in monthFromDayInYear() 209 if (d < (step += 30)) in monthFromDayInYear() 211 if (d < (step += 31)) in monthFromDayInYear() 213 if (d < (step += 30)) in monthFromDayInYear() 215 if (d < (step += 31)) in monthFromDayInYear() 217 if (d < (step += 31)) in monthFromDayInYear() [all …]
|
/external/skia/src/effects/ |
D | SkCornerPathEffect.cpp | 20 SkPoint* step) { in ComputeStep() argument 23 step->set(b.fX - a.fX, b.fY - a.fY); in ComputeStep() 26 step->scale(SK_ScalarHalf); in ComputeStep() 29 step->scale(SkScalarDiv(radius, dist)); in ComputeStep() 46 SkVector firstStep, step; in filterPath() local 71 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step); in filterPath() 74 dst->moveTo(moveTo + step); in filterPath() 77 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX, in filterPath() 78 pts[0].fY + step.fY); in filterPath() 81 dst->lineTo(pts[1].fX - step.fX, pts[1].fY - step.fY); in filterPath() [all …]
|
/external/chromium_org/chrome/browser/resources/chromeos/first_run/ |
D | step.css | 7 .step { 13 .step h1 { 18 .step p { 22 .step button.blue-button { 26 .step button.white-button { 30 .step .controls button { 34 .step .controls button:first-of-type { 38 .step .controls button:last-of-type {
|
/external/chromium_org/chrome/browser/resources/chromeos/first_run/app/ |
D | style.css | 12 .step.dialog { 21 .step.dialog h1 { 27 .step.dialog p { 33 .step.dialog .controls { 38 .step.dialog .controls button { 45 .step.dialog .window-header { 54 .step.dialog .topbutton-bar { 59 .step.dialog .topbutton-wrapper { 65 .step.dialog .topbutton-bar button { 71 .step.dialog .greeting-image {
|
/external/elfutils/ |
D | CleanSpec.mk | 47 $(call add-clean-step, rm -rf $(OUT)/obj/STATIC_LIBRARIES/libdw_intermediates) 48 $(call add-clean-step, rm -rf $(OUT)/obj/STATIC_LIBRARIES/libdwfl_intermediates) 49 $(call add-clean-step, rm -rf $(OUT)/obj/STATIC_LIBRARIES/libelf_intermediates) 50 $(call add-clean-step, rm -rf $(OUT)/obj/STATIC_LIBRARIES/libebl_intermediates) 51 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libdw_intermediates) 52 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libdwfl_intermediates) 53 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libelf_intermediates) 54 $(call add-clean-step, rm -rf $(ANDROID_HOST_OUT)/obj/STATIC_LIBRARIES/libebl_intermediates)
|
/external/tremolo/Tremolo/ |
D | mdct.c | 64 STIN void presymmetry(DATA_TYPE *in,int n2,int step){ in presymmetry() argument 76 XPROD31( s0, s2, T[0], T[1], &aX[0], &aX[2] ); T+=step; in presymmetry() 82 XPROD31( s0, s2, T[1], T[0], &aX[0], &aX[2] ); T-=step; in presymmetry() 95 XNPROD31( ro2, ro0, T[1], T[0], &aX[0], &aX[2] ); T+=step; in presymmetry() 197 STIN void mdct_butterfly_generic(DATA_TYPE *x,int points,int step){ in mdct_butterfly_generic() argument 209 XPROD31( s2, s3, T[0], T[1], &x2[1], &x2[3] ); T+=step; in mdct_butterfly_generic() 222 XNPROD31( s3, s2, T[0], T[1], &x2[1], &x2[3] ); T-=step; in mdct_butterfly_generic() 274 STIN void mdct_step7(DATA_TYPE *x,int n,int step){ in mdct_step7() argument 277 LOOKUP_T *T = (step>=4)?(sincos_lookup0+(step>>1)):sincos_lookup1; in mdct_step7() 288 T+=step; in mdct_step7() [all …]
|
/external/chromium_org/third_party/skia/src/effects/ |
D | SkCornerPathEffect.cpp | 20 SkPoint* step) { in ComputeStep() argument 23 step->set(b.fX - a.fX, b.fY - a.fY); in ComputeStep() 26 step->scale(SK_ScalarHalf); in ComputeStep() 29 step->scale(SkScalarDiv(radius, dist)); in ComputeStep() 46 SkVector firstStep, step; in filterPath() local 71 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step); in filterPath() 74 dst->moveTo(moveTo + step); in filterPath() 77 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX, in filterPath() 78 pts[0].fY + step.fY); in filterPath() 81 dst->lineTo(pts[1].fX - step.fX, pts[1].fY - step.fY); in filterPath() [all …]
|
/external/chromium_org/third_party/skia/bench/ |
D | InterpBench.cpp | 56 SkFixed step = SkFloatToFixed(dx); in performTest() local 58 dst[i + 0] = TILE(curr, count); curr += step; in performTest() 59 dst[i + 1] = TILE(curr, count); curr += step; in performTest() 60 dst[i + 2] = TILE(curr, count); curr += step; in performTest() 61 dst[i + 3] = TILE(curr, count); curr += step; in performTest() 75 int64_t step = (int64_t)(dx * 65536 * 655536); in performTest() local 80 curr += step; in performTest() 84 curr += step; in performTest() 88 curr += step; in performTest() 92 curr += step; in performTest() [all …]
|