HomeSort by relevance Sort by last modified time
    Searched full:step2 (Results 26 - 50 of 83) sorted by null

12 3 4

  /device/linaro/bootloader/edk2/DuetPkg/
CreateBootDisk.sh 137 if [ "$6" = step2 ]
152 echo "step2 Done!"
165 echo PLEASE UNPLUG USB, THEN PLUG IT AGAIN TO DO STEP2!
169 if [ "$6" = step2 ]
184 echo "step2 Done!"
197 echo PLEASE UNPLUG USB, THEN PLUG IT AGAIN TO DO STEP2!
CreateBootDisk.bat 28 if "%4"=="step2" (@set STEP=2) else @set TARGET_ARCH=%4
29 if "%5"=="step2" @set STEP=2
  /external/testng/src/test/java/test/dependent/
DependentTest.java 44 String[] failed = { "step2", };
56 String[] passed = { "step1", "step2" };
  /sdk/files/
post_tools_install.bat 37 if not exist "%src%" goto Step2
41 :Step2
  /frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/map/
MapGenerationTest.kt 144 fun withAllowedPrefixes(vararg prefixes: String) = Step2(rules, prefixes.toSet())
146 class Step2(private val rules: List<RewriteRule>, private val prefixes: Set<String>) {
151 fun forGivenTypes(vararg types: JavaType): Step2 {
156 fun mapInto(types: Map<String, String>): Step2 {
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 198 tran_high_t step2[8]; // canbe16 local
302 step2[2] = fdct_round_shift(temp1);
303 step2[3] = fdct_round_shift(temp2);
306 step2[4] = fdct_round_shift(temp1);
307 step2[5] = fdct_round_shift(temp2);
309 step3[0] = step1[0] + step2[3];
310 step3[1] = step1[1] + step2[2];
311 step3[2] = step1[1] - step2[2];
312 step3[3] = step1[0] - step2[3];
313 step3[4] = step1[7] - step2[4]
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
fdct16x16_neon.c 284 // step2[2] = fdct_round_shift((step1[5] - step1[2]) * cospi_16_64)
285 // step2[3] = fdct_round_shift((step1[4] - step1[3]) * cospi_16_64)
286 // step2[4] = fdct_round_shift((step1[4] + step1[3]) * cospi_16_64)
287 // step2[5] = fdct_round_shift((step1[5] + step1[2]) * cospi_16_64)
302 // step2[1] = fdct_round_shift(step3[1] *-cospi_8_64 + step3[6] * cospi_24_64)
303 // step2[6] = fdct_round_shift(step3[1] * cospi_24_64 + step3[6] * cospi_8_64)
306 // step2[2] = fdct_round_shift(step3[2] * cospi_24_64 + step3[5] * cospi_8_64)
307 // step2[5] = fdct_round_shift(step3[2] * cospi_8_64 - step3[5] * cospi_24_64)
  /external/opencv/cv/src/
cvaccum.cpp 83 ( const srctype *src1, int step1, const srctype *src2, int step2, \
85 (src1, step1, src2, step2, dst, dststep, size) ) \
88 step2 /= sizeof(src2[0]); \
91 for( ; size.height--; src1 += step1, src2 += step2, dst += dststep ) \
190 ( const srctype *src1, int step1, const srctype* src2, int step2, \
192 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size )) \
195 step2 /= sizeof(src2[0]); \
198 for( ; size.height--; src1 += step1, src2 += step2, \
294 ( const srctype *src1, int step1, const srctype* src2, int step2, \
296 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size ))
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
dllwrap.c 1090 dyn_string_t step2 = dyn_string_new (dlltool_cmdline->length local
1095 dyn_string_append_cstr (step2, "--base-file ");
1098 dyn_string_append_cstr (step2,
1100 dyn_string_append_cstr (step2, base_file_name);
1101 dyn_string_append_cstr (step2,
1104 dyn_string_append_cstr (step2, "--output-exp ");
1107 dyn_string_append_cstr (step2,
1109 dyn_string_append_cstr (step2, exp_file_name);
1110 dyn_string_append_cstr (step2,
1115 dyn_string_append_cstr (step2, " ");
    [all...]
  /external/opencv/cxcore/src/
cxarithm.cpp 82 ( const type* src1, int step1, const type* src2, int step2, \
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 ) \
111 ( const type* src1, int step1, const type* src2, int step2, \
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...]
cxcmp.cpp 122 const arrtype* src2, int step2, \
126 step1 /= sizeof(src1[0]); step2 /= sizeof(src2[0]); \
129 for( ; size.height--; src1 += step1, src2 += step2, \
451 const arrtype* src2, int step2, \
454 step1 /= sizeof(src1[0]); step2 /= sizeof(src2[0]); \
457 for( ; size.height--; src1 += step1, src2 += step2, \
    [all...]
cxlogic.cpp 63 ( const uchar* src1, int step1, const uchar* src2, int step2, \
64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
cxmatrix.cpp 1536 int step2 = srcB->step ? srcB->step\/sizeof(src1data[0]) : 1; local
1559 int step2 = srcB->step ? srcB->step\/sizeof(src1data[0]) : 1; local
    [all...]
  /external/dng_sdk/source/
dng_utils.cpp 461 int32 step2 = buffer.fColStep; local
470 step2);
479 if (maxValue == 0x0FFFF && step2 == 1)
510 s2 += step2;
dng_pixel_buffer.cpp 57 uint32 step2; local
116 step2 = (uint32) dStep2;
167 step2 = (uint32) sStep2;
173 if (count2 == 1) step2 = 0xFFFFFFFF;
182 if (step1 >= step2)
189 else if (step2 >= step0)
208 if (step0 >= step2)
215 else if (step2 >= step1)
    [all...]
  /tools/test/connectivity/acts/tests/google/tel/live/
TelLiveVideoDataTest.py 78 self.log.info("Step2: Verify Internet on PhoneA.")
TelLiveVideoTest.py     [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
fwd_dct32x32_msa.c 17 v8i16 step0, step1, step2, step3; local
30 BUTTERFLY_8(in0, in1, in2, in3, in4, in5, in6, in7, step0, step1, step2,
34 ST_SH4(step0, step1, step2, step3, temp_buff, 8);
48 BUTTERFLY_8(in0, in1, in2, in3, in4, in5, in6, in7, step0, step1, step2,
52 ST_SH4(step0, step1, step2, step3, temp_buff + (8 * 8), 8);
257 v8i16 step0, step1, step2, step3, step4, step5, step6, step7; local
266 in12, in13, in14, in15, step0, step1, step2, step3, step4, step5,
268 ST_SH8(step0, step1, step2, step3, step4, step5, step6, step7, output, 8);
279 in12, in13, in14, in15, step0, step1, step2, step3, step4, step5,
281 ST_SH8(step0, step1, step2, step3, step4, step5, step6, step7
    [all...]
  /frameworks/av/media/libaudioprocessing/
AudioResamplerFirProcessNeon.h 681 "vqrdmulh.s16 q9, q9, d2[0] \n"// (2) interpolate (step2) 1st set of coefs
682 "vqrdmulh.s16 q11, q11, d2[0] \n"// (2) interpolate (step2) 2nd set of coefs
757 "vqrdmulh.s16 q9, q9, d2[0] \n"// (2) interpolate (step2) 1st set of coefs
758 "vqrdmulh.s16 q11, q11, d2[0] \n"// (2) interpolate (step2) 2nd set of coefs
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceInstVarIter.h 74 /// for ( Init2; Cond2; Step2 )
139 /// 6) Step2 increments the inner loop's control variable, as well as the
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupWizardActivity.java 168 final SetupStep step2 = new SetupStep(STEP_2, applicationName, local
173 step2.setAction(new Runnable() {
179 mSetupStepGroup.addStep(step2);
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
tel_data_utils.py 273 log.info("Step2 WiFi is Off, Data is on Cell.")
337 log.info("Step2: enable airplane mode and ensure detach")
413 log.info("Step2 Verify internet")
  /external/webp/src/dsp/
dec_mips_dsp_r2.c 302 int step1, step2, temp1, temp2, temp3, temp4; local
320 "addu %[step2], %[hstride], %[hstride] \n\t"
331 "lbux %[q2], %[step2](%[p]) \n\t"
334 "addu %[step2], %[step2], %[hstride] \n\t"
338 "lbux %[q3], %[step2](%[p]) \n\t"
416 [step2]"=&r"(step2), [step1]"=&r"(step1), [temp1]"=&r"(temp1),
    [all...]
  /frameworks/ml/nn/runtime/test/
TestPartitioning.cpp 948 const auto& step2 = steps[2]; local
    [all...]
  /external/opencv/cxcore/include/
cxmisc.h     [all...]

Completed in 933 milliseconds

12 3 4