/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/ |
H A D | GL2JNILib.java | 32 public static native void step(); method in class:GL2JNILib
|
/frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/ |
H A D | GLJNILib.java | 32 public static native void step(); method in class:GLJNILib
|
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/ |
H A D | GLPerfLib.java | 32 public static native void step(); method in class:GLPerfLib
|
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/ |
H A D | GLDualLib.java | 32 public static native void step(); method in class:GLDualLib
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
H A D | cor_h_x2.cpp | 117 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 D | set_sign.cpp | 315 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
|
H A D | s10_8pf.cpp | 134 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...] |
/frameworks/av/media/mtp/ |
H A D | MtpProperty.cpp | 249 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;
|
/frameworks/base/core/java/com/android/internal/ml/clustering/ |
H A D | KMeans.java | 79 converged = step(means, inputData); 92 * This can be considered as an E step of an EM algorithm. 140 private boolean step(final ArrayList<Mean> means, final float[][] inputData) { method in class:KMeans
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
H A D | SyncRunner.java | 89 public int step() { method in class:SyncRunner 208 if (mLogVerbose) Log.v(TAG, "Performing one step."); 224 throw new RuntimeException("Calling step on scheduler with no graph in place!");
|
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/ |
H A D | DisplayModifier.java | 455 public static boolean step() { method in class:DisplayModifier
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
H A D | pitch_f4.c | 81 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/av/media/libstagefright/codecs/g711/dec/ |
H A D | SoftG711.cpp | 373 int32_t step = 4 << segment; local 375 int32_t abs = (0x80l << exponent) + step * mantissa + step / 2 - 4 * 33;
|
/frameworks/base/core/java/android/hardware/radio/ |
H A D | TunerAdapter.java | 127 public int step(int direction, boolean skipSubChannel) { method in class:TunerAdapter 129 mTuner.step(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); 131 Log.e(TAG, "Can't step", e);
|
H A D | RadioTuner.java | 39 /** Scanning direction UP for {@link #step(int, boolean)}, {@link #scan(int, boolean)} */ 42 /** Scanning directions DOWN for {@link #step(int, boolean)}, {@link #scan(int, boolean)} */ 123 * onProgramInfoChanged() will be called when step completes or 139 public abstract int step(int direction, boolean skipSubChannel); method in class:RadioTuner 508 * @deprecated Use {@link onTuneFailed} for tune, scan and step; 514 * Called when tune, scan or step operation fails. 518 * null for scan and step. 535 * It happens either upon successful completion of {@link RadioTuner#step(int, boolean)},
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
H A D | TunerSession.java | 115 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { method in class:TunerSession 118 int halResult = mHwSession.step(!directionDown); 119 Convert.throwOnError("step", halResult); 128 Convert.throwOnError("step", halResult);
|
/frameworks/base/core/java/com/android/internal/os/ |
H A D | PowerProfile.java | 399 public double getAveragePowerForCpuCore(int cluster, int step) { argument 401 return getAveragePower(mCpuClusters[cluster].corePowerKey, step);
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/ |
H A D | Tuner.java | 173 public void step(boolean directionDown, boolean skipSubChannel) { method in class:Tuner
|
/frameworks/rs/ |
H A D | rsAllocation.h | 98 uint32_t step; member in struct:android::renderscript::Allocation::Hal::DrvState::YuvState
|
/frameworks/rs/driver/runtime/ |
H A D | rs_structs.h | 76 uint32_t step; member in struct:Allocation::__anon1990::DrvState::YuvState
|
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/ |
H A D | BaseWrapContentTest.java | 164 for (Step step : scenario.mStepList) { 166 step.onRun(); 324 public void assertSame(Snapshot other, int step) { argument 339 assertMap("child coordinates. step:" + step, mChildCoordinates, 344 assertMap("appearing step:" + step, mAppear, other.mAppear); 345 assertMap("disappearing step:" + step, mDisappear, other.mDisappear); 346 assertMap("persistent step [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
H A D | motion_est.cpp | 798 Int step, max_step = range >> 1; local 945 step = 0; 947 while (!center_again && step <= max_step) 958 /* spiral check one step at a time*/ 961 if (!tab_exclude[last_loc][k]) /* exclude last step computation */ 1007 step ++; 1099 /* spiral check one step at a time*/ 1102 if (!tab_exclude[last_loc][k]) /* exclude last step computation */
|
/frameworks/ml/nn/runtime/ |
H A D | ExecutionPlan.cpp | 279 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/ml/nn/runtime/test/ |
H A D | TestPartitioning.cpp | 593 // input operands. At each step along the way, we try to match up 743 bool compare(std::shared_ptr<const ExecutionStep> step, argument 745 return (step->getDevice() == device) && 746 compare(step->getSubModel(), 794 // for example, verify that each step within the plan has the 1035 // for example, verify that each step within the plan has the
|
/frameworks/base/core/java/android/widget/ |
H A D | RadialTimePickerView.java | 288 * @param forceHigherOrLower The output may be forced to either the higher or lower step, or may 1113 private void adjustPicker(int step) { argument 1138 final int nextValue = (initialStep + step) * stepSize;
|