/external/libvpx/libvpx/vpx_dsp/ |
D | fwd_txfm.c | 29 tran_high_t step[4]; // canbe16 in vpx_fdct4x4_c() local 49 step[0] = input[0] + input[3]; in vpx_fdct4x4_c() 50 step[1] = input[1] + input[2]; in vpx_fdct4x4_c() 51 step[2] = input[1] - input[2]; in vpx_fdct4x4_c() 52 step[3] = input[0] - input[3]; in vpx_fdct4x4_c() 53 temp1 = (step[0] + step[1]) * cospi_16_64; in vpx_fdct4x4_c() 54 temp2 = (step[0] - step[1]) * cospi_16_64; in vpx_fdct4x4_c() 57 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64; in vpx_fdct4x4_c() 58 temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64; in vpx_fdct4x4_c() 393 tran_high_t step[32]; in vpx_fdct32() local [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/v8/ |
D | CleanSpec.mk | 47 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libv8_intermediates) 48 $(call add-clean-step, rm -rf $(OUT_DIR)/host/$(HOST_OS)-$(HOST_ARCH)/bin/mksnapshot) 49 $(call add-clean-step, rm -rf $(OUT_DIR)/host/$(HOST_OS)-$(HOST_ARCH)/obj/EXECUTABLES/mksnapshot_in… 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libv8_intermediates) 53 $(call add-clean-step, rm -rf $(OUT_DIR)/host/$(HOST_OS)-$(HOST_ARCH)/bin/mksnapshot) 54 $(call add-clean-step, rm -rf $(OUT_DIR)/host/$(HOST_OS)-$(HOST_ARCH)/obj/EXECUTABLES/mksnapshot_in… 56 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libv8_intermediates) 57 $(call add-clean-step, rm -rf $(OUT_DIR)/host/$(HOST_OS)-$(HOST_ARCH)/bin/mksnapshot) 58 $(call add-clean-step, rm -rf $(OUT_DIR)/host/$(HOST_OS)-$(HOST_ARCH)/obj/EXECUTABLES/mksnapshot_in… 60 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libv8_intermediates) [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/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 …]
|
D | dec.c | 477 static WEBP_INLINE void do_filter2(uint8_t* p, int step) { in do_filter2() argument 478 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter2() 482 p[-step] = VP8kclip1[p0 + a2]; in do_filter2() 487 static WEBP_INLINE void do_filter4(uint8_t* p, int step) { in do_filter4() argument 488 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; in do_filter4() 493 p[-2*step] = VP8kclip1[p1 + a3]; in do_filter4() 494 p[- step] = VP8kclip1[p0 + a2]; in do_filter4() 496 p[ step] = VP8kclip1[q1 - a3]; in do_filter4() 500 static WEBP_INLINE void do_filter6(uint8_t* p, int step) { in do_filter6() argument 501 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/skia/src/effects/ |
D | SkCornerPathEffect.cpp | 20 SkPoint* step) { in ComputeStep() argument 23 *step = b - a; in ComputeStep() 25 *step *= SK_ScalarHalf; in ComputeStep() 28 *step *= radius / dist; in ComputeStep() 45 SkVector firstStep, step; in filterPath() local 49 step.set(0, 0); in filterPath() 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() [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/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 …]
|
/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/libunwind/tests/ |
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 …]
|
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 …]
|
/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/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/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 …]
|
D | cxarithm.cpp | 83 type* dst, int step, CvSize size ), \ 84 (src1, step1, src2, step2, dst, step, size) ) \ 86 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \ 90 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 98 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 112 type* dst, int step, CvSize size, int /*scalefactor*/ ), \ 113 (src1, step1, src2, step2, dst, step, size, 0) ) \ 115 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \ 119 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 127 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ [all …]
|
D | cxmatrix.cpp | 57 int i, k, len, step; in cvSetIdentity() local 84 step = mat->step; in cvSetIdentity() 85 if( step == 0 ) in cvSetIdentity() 86 step = CV_STUB_STEP; in cvSetIdentity() 87 IPPI_CALL( icvSetZero_8u_C1R( data, step, size )); in cvSetIdentity() 88 step += pix_size; in cvSetIdentity() 94 step /= sizeof(_data[0]); in cvSetIdentity() 95 len *= step; in cvSetIdentity() 97 for( i = 0; i < len; i += step ) in cvSetIdentity() 104 step /= sizeof(_data[0]); in cvSetIdentity() [all …]
|
D | cxutils.cpp | 92 ids_delta = labels->step ? labels->step/(int)sizeof(int) : 1; in cvKMeans2() 113 float* s = (float*)(samples->data.ptr + i*samples->step); in cvKMeans2() 115 double* c = (double*)(centers->data.ptr + k*centers->step); in cvKMeans2() 140 double* c = (double*)(centers->data.ptr + k*centers->step); in cvKMeans2() 150 float* s = (float*)(samples->data.ptr + i*samples->step); in cvKMeans2() 158 double* c_o = (double*)(old_centers->data.ptr + k*old_centers->step); in cvKMeans2() 172 float* s = (float*)(samples->data.ptr + i*samples->step); in cvKMeans2() 178 double* c = (double*)(centers->data.ptr + k*centers->step); in cvKMeans2() 276 int step = 1, coeff_count; in cvSolveCubic() local 304 step = coeffs->step/sizeof(c[0]); in cvSolveCubic() [all …]
|
/external/libdrm/tests/modetest/ |
D | cursor.c | 73 void (*run)(struct cursor *cursor, struct cursor_step *step); 81 static void set_cursor(struct cursor *cursor, struct cursor_step *step) in set_cursor() argument 83 int enabled = (step->arg ^ count) & 0x1; in set_cursor() 94 static void move_cursor(struct cursor *cursor, struct cursor_step *step) in move_cursor() argument 104 x += cursor->dx * step->arg; in move_cursor() 105 y += cursor->dy * step->arg; in move_cursor() 148 struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)]; in cursor_thread_func() local 153 step->run(cursor, step); in cursor_thread_func() 157 if (count < step->repeat) { in cursor_thread_func() 164 usleep(1000 * step->msec); in cursor_thread_func()
|
/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 …]
|
D | grfmt_bmp.cpp | 187 bool GrFmtBmpReader::ReadData( uchar* data, int step, int color ) in ReadData() argument 204 data += (m_height - 1)*step; in ReadData() 205 step = -step; in ReadData() 227 for( y = 0; y < m_height; y++, data += step ) in ReadData() 241 for( y = 0; y < m_height; y++, data += step ) in ReadData() 307 data = FillUniColor( data, line_end, step, width3, in ReadData() 311 data = FillUniGray( data, line_end, step, width3, in ReadData() 329 for( y = 0; y < m_height; y++, data += step ) in ReadData() 359 data = FillUniColor( data, line_end, step, width3, in ReadData() 363 data = FillUniGray( data, line_end, step, width3, in ReadData() [all …]
|
/external/skia/tests/ |
D | PathOpsCubicLineIntersectionIdeas.cpp | 54 static double binary_search(const SkDCubic& cubic, double step, const SkDPoint& pt, double t, in binary_search() argument 56 double firstStep = step; in binary_search() 66 if (step == 0) { in binary_search() 74 double lastStep = step; in binary_search() 75 step /= 2; in binary_search() 82 t -= step; in binary_search() 92 t += step; in binary_search() 205 double step = 1e-6; in DEF_TEST() local 207 step = 1e-1; in DEF_TEST() 209 step = 1e-2; in DEF_TEST() [all …]
|
/external/sqlite/ |
D | CleanSpec.mk | 51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libsqlite_intermediates) 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libsqlite3_android_intermediates/… 53 $(call add-clean-step, rm -rf $(HOST_OUT)/obj/STATIC_LIBRARIES/libsqlite3_android_intermediates/imp… 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libsqlite_intermediates) 56 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libsqlite3_android_intermediates/… 57 $(call add-clean-step, rm -rf $(HOST_OUT)/obj/STATIC_LIBRARIES/libsqlite3_android_intermediates/imp…
|