Searched refs:step (Results 1 - 25 of 77) sorted by relevance

1234

/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNILib.java32 public static native void step(); method in class:GL2JNILib
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfLib.java32 public static native void step(); method in class:GLPerfLib
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualLib.java32 public static native void step(); method in class:GLDualLib
/frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/
H A DGLJNILib.java32 public static native void step(); method in class:GLJNILib
H A DGLJNIView.java72 GLJNILib.step();
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcor_h_x2.h111 Word16 step, /* (i): step size from one pulse position to the next
H A Ds10_8pf.h112 Word16 step, /* i : stepsize */
H A Dset_sign.h117 Word16 step, /* i : the step size in the tracks */
H A Dcor_h_x2.cpp117 step = step size between pulses in one track (Word16)
168 Word16 step // (i): step size from one pulse position to the next
182 for (i = k; i < L_CODE; i += step)
234 Word16 step, /* (i): step size from one pulse position to the next
253 for (i = k; i < L_CODE; i += step)
228 cor_h_x2( Word16 h[], Word16 x[], Word16 dn[], Word16 sf, Word16 nb_track, Word16 step, Flag *pOverflow ) argument
H A Ds10_8pf.cpp134 step = step size (Word16)
181 Word16 step, // i : stepsize
236 for (i3 = ipos[3]; i3 < L_CODE; i3 += step)
238 s = L_mult (rr[i3][i3], _1_8); // index incr= step+L_CODE
239 s = L_mac (s, rr[i0][i3], _1_4); // index increment = step
240 s = L_mac (s, rr[i1][i3], _1_4); // index increment = step
251 for (i2 = ipos[2]; i2 < L_CODE; i2 += step)
253 // index increment = step
256 // index incr= step
556 search_10and8i40( Word16 nbPulse, Word16 step, Word16 nbTracks, Word16 dn[], Word16 rr[][L_CODE], Word16 ipos[], Word16 pos_max[], Word16 codvec[], Flag *pOverflow ) argument
[all...]
H A Dset_sign.cpp315 step = step size in the tracks (Word16)
364 Word16 step //i : the step size in the tracks
420 for (j = i; j < L_CODE; j += step)
493 Word16 step, /* i : the step size in the tracks */
569 for (j = i; j < L_CODE; j += step)
486 set_sign12k2( Word16 dn[], Word16 cn[], Word16 sign[], Word16 pos_max[], Word16 nb_track, Word16 ipos[], Word16 step, Flag *pOverflow ) argument
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessDataBinding.java50 * Use initProcessingSteps to add a new step.
64 for (ProcessingStep step : mProcessingSteps) {
66 done = step.runStep(roundEnv, processingEnv, buildInfo) && done;
68 L.e(e, "Exception while handling step %s", step);
72 for (ProcessingStep step : mProcessingSteps) {
73 step.onProcessingOver(roundEnv, processingEnv, buildInfo);
124 for (ProcessingStep step : mProcessingSteps) {
125 step.mJavaFileWriter = javaFileWriter;
126 step
[all...]
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A DHistogram.java36 int step = 8;
37 int steps = (h + step - 1) / step;
41 mScript.set_gStep(step);
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DHistogram.java42 int step = 8;
43 int steps = (h + step - 1) / step;
47 mScript.set_gStep(step);
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java189 int step = 1;
192 step = -1;
198 offset += step;
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java184 int step = 1;
187 step = -1;
193 offset += step;
/frameworks/ml/nn/runtime/
H A DExecutionPlan.cpp279 for (const auto& step : mSteps) {
280 for (const auto& input : step->getTempsAsSubModelInputs()) {
292 VLOG(COMPILATION) << "ExecutionStep::finishSubModel, step " << mIndex;
449 for (const auto& step : mSteps) {
450 int n = step->finishSubModel(fromModel, &mHasSubModelOutputOfUnknownSize,
532 for (const auto& step : compound()->mSteps) {
533 for (const auto& output: step->getTempsAsSubModelOutputs()) {
602 // First (and only) step.
632 const auto step = compoundBody->mSteps[controller->mNextStepIndex]; local
635 step
707 auto step = std::make_shared<ExecutionStep>(this, steps.size(), device); local
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DITuner.aidl47 void step(boolean directionDown, boolean skipSubChannel);
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java118 for(int step = 0; step < 8; step++) {
119 float sx = (x + dx * step) * mScaleX + mOffsetX;
120 float sy = (y + dy * step) * mScaleY + mOffsetY;
121 int cbase = step * 4;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLDepthTestActivity.java166 float step = ((float)i) / REPEAT_RECTANGLES;
168 Matrix.translateM(mMMatrix, 0, 0, step, step / 2);
174 GLES20.glUniform4f(muOverlayHandle, step , step, step , step);
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java155 for (int step = 0; step < count; step++) {
157 NORMAL_PRIORITY, DEFAULT_LOOP, mScale[step]);
186 for (int step = 1; step < count; step++) {
188 mSoundPool.setRate(id, mScale[step]);
189 if (DEBUG) Log.d(LOG_TAG, "Change rate " + mScale[step]);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dpitch_f4.c81 Word16 max, t0, step, temp; local
121 step = 1; /* 1/4 subsample resolution */
125 step = 2; /* 1/2 subsample resolution */
134 for (i = fraction + step; i <= 3; i += step)
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DAccessibilityGestureDetectorTest.java166 // For each path step from start (non-inclusive) to end ... add a motion point.
167 for (int step = 1; step < numSteps; ++step) {
169 (start.x + (stepX * (float) step)),
170 (start.y + (stepY * (float) step))));
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMotionEventInjector.java338 GestureDescription.GestureStep step = steps.get(i);
339 int currentTouchPointSize = step.numTouchPoints;
346 appendMoveEventIfNeeded(motionEvents, step.touchPoints, currentTouchPointSize,
347 startTime + step.timeSinceGestureStart);
348 appendUpEvents(motionEvents, step.touchPoints, currentTouchPointSize,
349 startTime + step.timeSinceGestureStart);
350 appendDownEvents(motionEvents, step.touchPoints, currentTouchPointSize,
351 startTime + step.timeSinceGestureStart);
/frameworks/av/media/mtp/
H A DMtpProperty.cpp249 void MtpProperty::setFormRange(int min, int max, int step) { argument
255 mStepSize.u.i8 = step;
260 mStepSize.u.u8 = step;
265 mStepSize.u.i16 = step;
270 mStepSize.u.u16 = step;
275 mStepSize.u.i32 = step;
280 mStepSize.u.u32 = step;
285 mStepSize.u.i64 = step;
290 mStepSize.u.u64 = step;

Completed in 514 milliseconds

1234