Searched refs:i1 (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/base/core/java/android/os/
H A DWorkSource.java365 int i1 = 0, i2 = 0;
367 while (i1 < N1 && i2 < N2) {
368 if (DEBUG) Log.d(TAG, "Step: target @ " + i1 + " of " + N1 + ", other @ " + i2
370 if (uids2[i2] == uids1[i1]) {
371 if (DEBUG) Log.d(TAG, "i1=" + i1 + " i2=" + i2 + " N1=" + N1
372 + ": remove " + uids1[i1]);
375 if (i1 < N1) System.arraycopy(uids1, i1+1, uids1, i1, N
529 compare(WorkSource other, int i1, int i2) argument
[all...]
/frameworks/wilhelm/src/
H A DThreadPool.h29 typedef void (*ClosureHandler_generic)(void *p1, void *p2, void *p3, int i1, int i2);
30 typedef void (*ClosureHandler_ppi) (void *p1, void *p2, int i1);
31 typedef void (*ClosureHandler_ppii) (void *p1, void *p2, int i1, int i2);
32 typedef void (*ClosureHandler_piipp) (void *p1, int i1, int i2, void *p2, void *p3);
H A Dsles_allinclusive.h450 #define EnqueueAsyncCallback_ppi(object, handler, p1, p2, i1) \
452 (ClosureHandler_ppi) (handler), (p1), (p2), (i1))
453 #define EnqueueAsyncCallback_ppii(object, handler, p1, p2, i1, i2) \
455 (ClosureHandler_ppii) (handler), (p1), (p2), (i1), (i2))
456 #define EnqueueAsyncCallback_piipp(object, handler, p1, i1, i2, p2, p3) \
458 (ClosureHandler_piipp) (handler), (p1), (i1), (i2), (p2), (p3))
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/util/
H A DMockWindow.java117 public boolean performPanelShortcut(int i, int i1, KeyEvent keyEvent, int i2) { argument
122 public boolean performPanelIdentifierAction(int i, int i1, int i2) { argument
132 public boolean performContextMenuIdentifierAction(int i, int i1) { argument
147 public void setFeatureDrawableResource(int i, int i1) { argument
162 public void setFeatureDrawableAlpha(int i, int i1) { argument
167 public void setFeatureInt(int i, int i1) { argument
232 public void setChildInt(int i, int i1) { argument
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dc4_17pf.cpp171 i1 : 1, 6, 11, 16, 21, 26, 31, 36.
395 Word16 i1; local
460 * i1 loop: 8 positions. *
476 for (i1 = ipos[1]; i1 < L_CODE; i1 += STEP)
479 /* ps1 = add(ps0, dn[i1], pOverflow); */
480 ps1 = ps0 + dn[i1];
482 /* alp1 = alp0 + rr[i0][i1] + 1/2*rr[i1][i
[all...]
H A Dc3_14pf.cpp157 Pulse i0 can have 8 possible positions, pulses i1 and i2 can have
161 i1 : 1, 6, 11, 16, 21, 26, 31, 36.
382 Word16 i1; local
448 * i1 loop: 8 positions. *
464 for (i1 = ipos[1]; i1 < L_CODE; i1 += STEP)
467 /* ps1 = add(ps0, dn[i1], pOverflow); */
468 ps1 = ps0 + dn[i1];
470 /* alp1 = alp0 + rr[i0][i1]
[all...]
H A Dc2_11pf.cpp73 * The code length is 40, containing 2 nonzero pulses: i0...i1.
75 * Pulse i0 can have 2x8=16 possible positions, pulse i1 can have
80 * i1 : 0, 5, 10, 15, 20, 25, 30, 35.
179 The code length is 40, containing 2 nonzero pulses: i0...i1.
181 Pulse i0 can have 2x8=16 possible positions, pulse i1 can have
186 i1 : 0, 5, 10, 15, 20, 25, 30, 35.
412 Word16 i1; local
466 * i1 loop: 8 positions. *
480 for (i1 = ipos[1]; i1 < L_COD
[all...]
H A Dc2_9pf.cpp197 The code length is 40, containing 2 nonzero pulses: i0...i1. All pulses can
199 pulse i1 can have 8 positions. Also coded is which track pair should be used,
204 i1 : 2, 7, 12, 17, 22, 27, 32, 37.
206 i1 : 3, 8, 13, 18, 23, 28, 33, 38.
210 i1 : 3, 8, 13, 18, 23, 28, 33, 38.
212 i1 : 4, 9, 14, 19, 24, 29, 34, 39.
216 i1 : 2, 7, 12, 17, 22, 27, 32, 37.
218 i1 : 4, 9, 14, 19, 24, 29, 34, 39.
222 i1 : 3, 8, 13, 18, 23, 28, 33, 38.
224 i1
596 Word16 i1; local
[all...]
H A Ds10_8pf.cpp76 5. Use array Index[] to store indexes i1:i9, and then use memcpy
190 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
212 // i1 loop: *
226 i1 = pos_max[ipos[1]];
227 ps0 = add (dn[i0], dn[i1]);
229 alp0 = L_mac (alp0, rr[i1][i1], _1_16);
230 alp0 = L_mac (alp0, rr[i0][i1], _1_8);
240 s = L_mac (s, rr[i1][i3], _1_4); // index increment = step
263 alp1 = L_mac (alp1, rr[i1][i
568 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i9; local
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
H A DNativeInterpolatorFactoryHelper_Delegate.java127 int i1 = ipart;
128 int i2 = Math.min(i1 + 1, mSize - 1);
130 assert i1 >= 0 && i2 >= 0 : "Negatives in the interpolation";
132 return MathUtils.lerp(mValues[i1], mValues[i2], weight);
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DObservableListAdapter.java67 int i1) {
73 int i1) {
78 public void onItemRangeMoved(ObservableList observableList, int i, int i1,
85 int i1) {
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_instance.java78 int i1[] = new int[1];
84 ai1.copyTo(i1);
90 assertEquals(1, i1[0]);
95 assertEquals(1, i1[0]);
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_instance.java78 int i1[] = new int[1];
84 ai1.copyTo(i1);
90 assertEquals(1, i1[0]);
95 assertEquals(1, i1[0]);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dc2t64fx.c56 Word32 i, j, k, i0, i1, ix, iy, pos, pos2; local
240 for (i1 = 1; i1 < L_SUBFR; i1 += STEP)
242 ps2 = add1(ps1, dn[i1]);
250 pos = i1;
270 i1 = (iy >> 1); /* pos of pulse 2 (0..31) */
288 i1 += NB_POS;
291 *index = add1((i0 << 6), i1);
/frameworks/rs/
H A DrsCppUtils.h174 static inline uint16_t rsBoxFilter565(uint16_t i1, uint16_t i2, uint16_t i3, uint16_t i4) { argument
175 uint32_t r = ((i1 & 0x1f) + (i2 & 0x1f) + (i3 & 0x1f) + (i4 & 0x1f));
176 uint32_t g = ((i1 >> 5) & 0x3f) + ((i2 >> 5) & 0x3f) + ((i3 >> 5) & 0x3f) + ((i4 >> 5) & 0x3f);
177 uint32_t b = ((i1 >> 11) + (i2 >> 11) + (i3 >> 11) + (i4 >> 11));
181 static inline uint32_t rsBoxFilter8888(uint32_t i1, uint32_t i2, uint32_t i3, uint32_t i4) { argument
182 uint32_t r = (i1 & 0xff) + (i2 & 0xff) + (i3 & 0xff) + (i4 & 0xff);
183 uint32_t g = ((i1 >> 8) & 0xff) + ((i2 >> 8) & 0xff) + ((i3 >> 8) & 0xff) + ((i4 >> 8) & 0xff);
184 uint32_t b = ((i1 >> 16) & 0xff) + ((i2 >> 16) & 0xff) + ((i3 >> 16) & 0xff) + ((i4 >> 16) & 0xff);
185 uint32_t a = ((i1 >> 24) & 0xff) + ((i2 >> 24) & 0xff) + ((i3 >> 24) & 0xff) + ((i4 >> 24) & 0xff);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A Dresidu_asm_opt.s80 SMULTB r3, r5, r2 @i1(0) --- r3 = x[0] * a0
95 SMLABT r3, r5, r2, r3 @i1(1) --- r3 += x[-1] * a1
99 SMLATB r3, r6, r2, r3 @i1(2) --- r3 += x[-2] * a2
106 SMLABT r3, r6, r2, r3 @ i1 (3)
110 SMLATB r3, r7, r2, r3 @ i1 (4)
116 SMLABT r3, r7, r2, r3 @ i1 (5)
120 SMLATB r3, r8, r2, r3 @ i1 (6)
127 SMLABT r3, r8, r2, r3 @ i1 (7)
131 SMLATB r3, r9, r2, r3 @ i1 (8)
138 SMLABT r3, r9, r2, r3 @ i1 (
[all...]
/frameworks/base/libs/hwui/
H A DInterpolator.cpp143 int i1 = (int) ipart; local
144 int i2 = std::min(i1 + 1, (int) mSize - 1);
146 LOG_ALWAYS_FATAL_IF(i1 < 0 || i2 < 0, "negatives in interpolation!"
147 " i1=%d, i2=%d, input=%f, lutpos=%f, size=%zu, values=%p, ipart=%f, weight=%f",
148 i1, i2, input, lutpos, mSize, mValues.get(), ipart, weight);
150 float v1 = mValues[i1];
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dph_disp.cpp453 Word16 i, i1;
506 i1 = 0;
511 i1 = add (i1, 1);
514 if (sub(i1, 2) > 0)
599 // inno[i1] += inno_sav[ppos] * ph_imp[i1-ppos]
670 Word16 i, i1; local
760 i1 = 0;
765 i1
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV7/
H A DR4R8First_v7.s45 VSUB.S32 d5, d0, d1 @ r1 = buf[0] - buf[2]@i1 = buf[1] - buf[3]@
50 VADD.S32 Q0, Q2, Q3 @ r4 = (r0 + r2)@i4 = (i0 + i2)@i6 = (i1 + r3)@r7 = (r1 + i3)
51 VSUB.S32 Q1, Q2, Q3 @ r5 = (r0 - r2)@i5 = (i0 - i2)@r6 = (r1 - i3)@i7 = (i1 - r3)@
56 VSUB.S32 d7, d10, d11 @ r1 = buf[12] - buf[14]@i1 = buf[13] - buf[15]@
63 VADD.S32 Q4, Q2, Q3 @ t0 = (r0 + r2) >> 1@t1 = (i0 + i2) >> 1@i0 = i1 + r3@r2 = r1 + i3@
64 VSUB.S32 Q5, Q2, Q3 @ t2 = (r0 - r2) >> 1@t3 = (i0 - i2) >> 1@r0 = r1 - i3@i2 = i1 - r3@
/frameworks/base/core/java/android/widget/
H A DTextInputTimePickerView.java88 public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
91 public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
101 public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
104 public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DObservableArrayListTest.java138 public void onItemRangeChanged(ObservableList sender, int i, int i1) {
143 public void onItemRangeInserted(ObservableList sender, int i, int i1) {
148 public void onItemRangeMoved(ObservableList sender, int i, int i1, int i2) {
153 public void onItemRangeRemoved(ObservableList sender, int i, int i1) {
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
H A DR4R8First_v5.s99 sub r1, r1, r3 @ i1 = buf[1] - buf[3]@
114 add r3, r1, r4 @ i6 = (i1 + r3) >> 1@
117 sub r1, r1, r4 @ i7 = (i1 - r3) >> 1@
152 sub r3, r3, r5 @ i1 = buf[ 9] - buf[11]@
197 add r1, r3, r6 @ i0 = i1 + r3@
202 sub r3, r3, r6 @ i2 = i1 - r3@
/frameworks/av/services/camera/libcameraservice/gui/
H A DRingBufferConsumer.h108 // Return < 0 to select i1, > 0 to select i2, 0 for neither
109 // i1 or i2 can be NULL.
113 virtual int compare(const BufferInfo* i1,
/frameworks/support/compat/tests/java/android/support/v4/app/
H A DJobIntentServiceTest.java228 private boolean intentEquals(Intent i1, Intent i2) { argument
229 if (i1 == i2) {
232 if (i1 == null || i2 == null) {
235 return i1.filterEquals(i2);
/frameworks/rs/rsov/driver/
H A DrsovAllocation.cpp165 const uint16_t *i1 = local
171 *oPtr = rsBoxFilter565(i1[0], i1[1], i2[0], i2[1]);
173 i1 += 2;
185 const uint32_t *i1 = local
191 *oPtr = rsBoxFilter8888(i1[0], i1[1], i2[0], i2[1]);
193 i1 += 2;
205 const uint8_t *i1 = GetOffsetPtr(alloc, 0, y * 2, 0, lod, face); local
209 *oPtr = (uint8_t)(((uint32_t)i1[
[all...]

Completed in 435 milliseconds

12