/external/libvpx/libvpx/vpx_dsp/ |
D | fwd_txfm.c | 30 tran_high_t step[4]; // canbe16 in vpx_fdct4x4_c() local 52 step[0] = in_high[0] + in_high[3]; in vpx_fdct4x4_c() 53 step[1] = in_high[1] + in_high[2]; in vpx_fdct4x4_c() 54 step[2] = in_high[1] - in_high[2]; in vpx_fdct4x4_c() 55 step[3] = in_high[0] - in_high[3]; in vpx_fdct4x4_c() 56 temp1 = (step[0] + step[1]) * cospi_16_64; in vpx_fdct4x4_c() 57 temp2 = (step[0] - step[1]) * cospi_16_64; in vpx_fdct4x4_c() 60 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64; in vpx_fdct4x4_c() 61 temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64; in vpx_fdct4x4_c() 386 tran_high_t step[32]; in vpx_fdct32() local [all …]
|
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
D | BaseTween.java | 19 private int step; field in BaseTween 48 step = -2; in reset() 293 return step; in getStep() 360 protected void updateOverride(int step, int lastStep, boolean isIterationStep, float delta) { in updateOverride() argument 365 step = -1; in forceToStart() 373 step = repeatCnt*2 + 1; in forceToEnd() 383 protected boolean isReverse(int step) { in isReverse() argument 384 return isYoyo && Math.abs(step%4) == 2; in isReverse() 387 protected boolean isValid(int step) { in isValid() argument 388 return (step >= 0 && step <= repeatCnt*2) || repeatCnt < 0; in isValid() [all …]
|
/external/libvpx/libvpx/test/ |
D | dct16x16_test.cc | 52 double step[16]; in butterfly_16x16_dct_1d() local 57 step[0] = input[0] + input[15]; in butterfly_16x16_dct_1d() 58 step[1] = input[1] + input[14]; in butterfly_16x16_dct_1d() 59 step[2] = input[2] + input[13]; in butterfly_16x16_dct_1d() 60 step[3] = input[3] + input[12]; in butterfly_16x16_dct_1d() 61 step[4] = input[4] + input[11]; in butterfly_16x16_dct_1d() 62 step[5] = input[5] + input[10]; in butterfly_16x16_dct_1d() 63 step[6] = input[6] + input[9]; in butterfly_16x16_dct_1d() 64 step[7] = input[7] + input[8]; in butterfly_16x16_dct_1d() 65 step[8] = input[7] - input[8]; in butterfly_16x16_dct_1d() [all …]
|
/external/libldac/src/ |
D | bitalloc_ldac.c | 229 int step = limit - grad_os_l; in decrease_offset_low_ldac() local 236 if (step > 1) { in decrease_offset_low_ldac() 237 step = (step+1)/2; in decrease_offset_low_ldac() 241 grad_os_l -= step; in decrease_offset_low_ldac() 243 grad_os_l += step; in decrease_offset_low_ldac() 247 grad_os_l += step; in decrease_offset_low_ldac() 252 grad_os_l += step; in decrease_offset_low_ldac() 254 grad_os_l -= step; in decrease_offset_low_ldac() 258 grad_os_l -= step; in decrease_offset_low_ldac() 293 int step = LDAC_MAXGRADOS - grad_os_h; in decrease_offset_high_ldac() local [all …]
|
/external/webp/src/dsp/ |
D | dec_mips32.c | 30 static WEBP_INLINE void do_filter2(uint8_t* p, int step) { in do_filter2() argument 31 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter2() 35 p[-step] = VP8kclip1[p0 + a2]; in do_filter2() 40 static WEBP_INLINE void do_filter4(uint8_t* p, int step) { in do_filter4() argument 41 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter4() 46 p[-2 * step] = VP8kclip1[p1 + a3]; in do_filter4() 47 p[- step] = VP8kclip1[p0 + a2]; in do_filter4() 49 p[ step] = VP8kclip1[q1 - a3]; in do_filter4() 53 static WEBP_INLINE void do_filter6(uint8_t* p, int step) { in do_filter6() argument 54 const int p2 = p[-3 * step], p1 = p[-2 * step], p0 = p[-step]; in do_filter6() [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/llvm/test/Analysis/ScalarEvolution/ |
D | increasing-or-decreasing-iv.ll | 7 %step = select i1 %c, i32 -1, i32 1 14 ; CHECK-NEXT: --> {%start,+,%step}<%loop> U: [0,128) S: [0,128) 15 %iv.next = add i32 %iv, %step 28 %step = select i1 %c, i32 -8, i32 8 36 ; CHECK-NEXT: --> {(1 + %start)<nuw><nsw>,+,%step}<%loop> U: [1,122) S: [1,122) 38 ; CHECK-NEXT: --> {(2 + %start)<nuw><nsw>,+,%step}<%loop> U: [2,123) S: [2,123) 40 ; CHECK-NEXT: --> {(3 + %start)<nuw><nsw>,+,%step}<%loop> U: [3,124) S: [3,124) 42 ; CHECK-NEXT: --> {(4 + %start)<nuw><nsw>,+,%step}<%loop> U: [4,125) S: [4,125) 44 ; CHECK-NEXT: --> {(5 + %start)<nuw><nsw>,+,%step}<%loop> U: [5,126) S: [5,126) 46 ; CHECK-NEXT: --> {(6 + %start)<nuw><nsw>,+,%step}<%loop> U: [6,127) S: [6,127) [all …]
|
/external/webp/src/utils/ |
D | huffman_utils.c | 44 uint32_t step = 1 << (len - 1); in GetNextKey() local 45 while (key & step) { in GetNextKey() 46 step >>= 1; in GetNextKey() 48 return step ? (key & (step - 1)) + step : key; in GetNextKey() 54 int step, int end, in ReplicateValue() argument 56 assert(end % step == 0); in ReplicateValue() 58 end -= step; in ReplicateValue() 137 int step; // step size to replicate values in current table in BuildHuffmanTable() local 147 for (len = 1, step = 2; len <= root_bits; ++len, step <<= 1) { in BuildHuffmanTable() 158 ReplicateValue(&table[key], step, table_size, code); in BuildHuffmanTable() [all …]
|
/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/skia/src/effects/ |
D | SkCornerPathEffect.cpp | 19 SkPoint* step) { in ComputeStep() argument 22 *step = b - a; in ComputeStep() 24 *step *= SK_ScalarHalf; in ComputeStep() 27 *step *= radius / dist; in ComputeStep() 44 SkVector firstStep, step; in filterPath() local 48 step.set(0, 0); in filterPath() 70 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step); in filterPath() 73 dst->moveTo(moveTo + step); in filterPath() 76 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX, in filterPath() 77 pts[0].fY + step.fY); in filterPath() [all …]
|
/external/libxml2/ |
D | pattern.c | 141 int step; member 464 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { in xmlPatPushState() argument 480 states->states[states->nbstates].step = step; in xmlPatPushState() 483 fprintf(stderr, "Push: %d, %s\n", step, node->name); in xmlPatPushState() 500 xmlStepOpPtr step; in xmlPatMatch() local 507 step = &comp->steps[i]; in xmlPatMatch() 508 switch (step->op) { in xmlPatMatch() 525 if (step->value == NULL) in xmlPatMatch() 527 if (step->value[0] != node->name[0]) in xmlPatMatch() 529 if (!xmlStrEqual(step->value, node->name)) in xmlPatMatch() [all …]
|
/external/strace/tests/ |
D | qual_fault.test | 41 local trace fault err first step extra 46 step=$1; shift 50 if [ -z "$first$step" ]; then 52 step=1 54 case "$step" in 55 '') when=":when=$first"; step=0 ;; 56 +) when=":when=$first+"; step=1 ;; 57 *) when=":when=$first+$step" ;; 79 ./$NAME $raw "$err" "$first" "$step" $N \
|
/external/strace/tests-m32/ |
D | qual_fault.test | 41 local trace fault err first step extra 46 step=$1; shift 50 if [ -z "$first$step" ]; then 52 step=1 54 case "$step" in 55 '') when=":when=$first"; step=0 ;; 56 +) when=":when=$first+"; step=1 ;; 57 *) when=":when=$first+$step" ;; 79 ./$NAME $raw "$err" "$first" "$step" $N \
|
/external/strace/tests-mx32/ |
D | qual_fault.test | 41 local trace fault err first step extra 46 step=$1; shift 50 if [ -z "$first$step" ]; then 52 step=1 54 case "$step" in 55 '') when=":when=$first"; step=0 ;; 56 +) when=":when=$first+"; step=1 ;; 57 *) when=":when=$first+$step" ;; 79 ./$NAME $raw "$err" "$first" "$step" $N \
|
/external/skia/infra/bots/recipes/ |
D | swarm_presubmit.py | 24 with api.step.context({'cwd': api.vars.skia_dir}): 27 api.step('create git branch', 30 api.step('git status', 35 with api.step.context({'env': env}): 36 api.step('presubmit', 39 api.step('git reset', 41 api.step('checkout origin/master', 43 api.step('delete git branch',
|
/external/libunwind/tests/ |
D | Gperf-simple.c | 58 measure_unwind (int maxlevel, double *step) in measure_unwind() argument 86 *step = (stop - start) / (double) level; in measure_unwind() 93 g1 (int level, int maxlevel, double *step) in g1() argument 96 return measure_unwind (maxlevel, step); in g1() 99 return f1 (level + 1, maxlevel, step) + level; in g1() 103 f1 (int level, int maxlevel, double *step) in f1() argument 106 return measure_unwind (maxlevel, step); in f1() 109 return g1 (level + 1, maxlevel, step) + level; in f1() 115 double step, min_step, first_step, sum_step; in doit() local 122 f1 (0, maxlevel, &step); in doit() [all …]
|
D | Gperf-trace.c | 58 measure_unwind (int maxlevel, double *step) in measure_unwind() argument 72 *step = (stop - start) / (double) level; in measure_unwind() 79 g1 (int level, int maxlevel, double *step) in g1() argument 82 return measure_unwind (maxlevel, step); in g1() 85 return f1 (level + 1, maxlevel, step) + level; in g1() 89 f1 (int level, int maxlevel, double *step) in f1() argument 92 return measure_unwind (maxlevel, step); in f1() 95 return g1 (level + 1, maxlevel, step) + level; in f1() 101 double step, min_step, first_step, sum_step; in doit() local 108 f1 (0, maxlevel, &step); in doit() [all …]
|
/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/opencv/cxcore/src/ |
D | cxlogic.cpp | 64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\ 66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 112 ( const uchar* src0, int step1, uchar* dst0, int step, CvSize size, \ 117 for( ; size.height--; src0 += step1, dst0 += step ) \ 288 dstbuf.step = cvAlign( dstbuf.step, 8 ); in icvLogicS() 289 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size; in icvLogicS() 303 src_step = src->step; in icvLogicS() 304 dst_step = dst->step; in icvLogicS() 305 tdst_step = tdst->step; in icvLogicS() 306 mask_step = mask ? mask->step : 0; in icvLogicS() [all …]
|
/external/skia/bench/ |
D | InterpBench.cpp | 64 SkFixed step = SkFloatToFixed(dx); in performTest() local 66 dst[i + 0] = TILE(curr, count); curr += step; in performTest() 67 dst[i + 1] = TILE(curr, count); curr += step; in performTest() 68 dst[i + 2] = TILE(curr, count); curr += step; in performTest() 69 dst[i + 3] = TILE(curr, count); curr += step; in performTest() 83 int64_t step = (int64_t)(dx * 65536 * 655536); in performTest() local 88 curr += step; in performTest() 92 curr += step; in performTest() 96 curr += step; in performTest() 100 curr += step; in performTest() [all …]
|
/external/llvm/ |
D | CleanSpec.mk | 50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/stingray/obj/STATIC_LIBRARIES/libLLVM*) 51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/stingray/obj/STATIC_LIBRARIES/libLLVMARMCod… 52 $(call add-clean-step, rm -rf $(OUT_DIR)/host/$(HOST_PREBUILT_TAG)/obj/STATIC_LIBRARIES/libLLVMARM*) 53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libLLVMARM*) 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/EXECUTABLES/app_process__asan_intermediates*) 55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libLLVM*) 56 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libLLVM*) 57 $(call add-clean-step, rm -f external/llvm/tools/llvm-config/BuildVariables.inc)
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_exr.cpp | 198 bool GrFmtExrReader::ReadData( uchar* data, int step, int color ) in ReadData() argument 220 ystep = step; in ReadData() 314 UpSample( data, 3, step / xstep, xsample[0], m_blue->ySampling ); in ReadData() 316 UpSample( data + xstep, 3, step / xstep, xsample[1], m_green->ySampling ); in ReadData() 318 UpSample( data + 2 * xstep, 3, step / xstep, xsample[2], m_red->ySampling ); in ReadData() 321 UpSample( data, 1, step / xstep, xsample[0], m_green->ySampling ); in ReadData() 352 ChromaToBGR( (float *)buffer, 1, step ); in ReadData() 374 out += step; in ReadData() 379 UpSampleY( data, 3, step / xstep, m_blue->ySampling ); in ReadData() 381 UpSampleY( data + xstep, 3, step / xstep, m_green->ySampling ); in ReadData() [all …]
|
/external/syslinux/gpxe/src/include/gpxe/ |
D | process.h | 27 void ( * step ) ( struct process *process ); member 38 extern void step ( void ); 48 void ( * step ) ( struct process *process ), in process_init_stopped() 51 process->step = step; in process_init_stopped() 63 void ( * step ) ( struct process *process ), in process_init() 65 process_init_stopped ( process, step, refcnt ); in process_init()
|
/external/kmod/shared/ |
D | array.c | 40 void array_init(struct array *array, size_t step) in array_init() argument 42 assert(step > 0); in array_init() 46 array->step = step; in array_init() 54 int r = array_realloc(array, array->total + array->step); in array_append() 76 if (array->count + array->step < array->total) { in array_pop() 77 int r = array_realloc(array, array->total - array->step); in array_pop() 105 if (array->count + array->step < array->total) { in array_remove_at() 106 int r = array_realloc(array, array->total - array->step); in array_remove_at()
|