Searched defs:i3 (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dc4_17pf.cpp165 The code length is 40, containing 4 nonzero pulses: i0...i3.
167 Pulse i0 to i2 can have 8 possible positions, pulse i3 can have
173 i3 : 3, 8, 13, 18, 23, 28, 33, 38.
397 Word16 i3; local
472 * "rr[i0][i3]" is a pointer initialized to "&rr[i0][ipos[3]]" *
571 * i3 loop: 8 positions. *
584 for (i3 = ipos[3]; i3 < L_CODE; i3 += STEP)
586 /* ps1 = add(ps0, dn[i3], pOverflo
[all...]
H A Ds10_8pf.cpp75 loops i3-i5-i7 and i9
190 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
233 // i2 and i3 loop
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_
568 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i9; local
[all...]
/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/aacenc/src/
H A Dtransform.c111 int i0, i1, i2, i3; local
125 i3 = buf[5] - buf[7];
131 r6 = (r1 - i3) >> 1;
133 r7 = (r1 + i3) >> 1;
143 i3 = buf[13] - buf[15];
159 r0 = r1 - i3;
161 r2 = r1 + i3;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java91 int i3, int i4, int i5, Rect rect, Rect rect2, Rect rect3, Rect rect4, Rect rect5,
90 relayout(IWindow iWindow, int i, LayoutParams layoutParams, int i2, int i3, int i4, int i5, Rect rect, Rect rect2, Rect rect3, Rect rect4, Rect rect5, Rect rect6, Rect rect7, MergedConfiguration mergedConfig, Surface surface) argument
/frameworks/rs/rsov/driver/
H A DrsovRuntimeStubs.cpp973 void rsDebug(const char *s, const int3 *i3) { argument
974 int3 i = *i3;
991 void rsDebug(const char *s, const uint3 *i3) { argument
992 uint3 i = *i3;
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp1337 void rsDebug(const char *s, const int3 *i3) { argument
1338 int3 i = *i3;
1356 void rsDebug(const char *s, const uint3 *i3) { argument
1357 uint3 i = *i3;
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1707 Icon i1, Icon i2, Icon i3, Icon i4) {
1713 this.i3 = i3;
1729 i3 = Icon.CREATOR.createFromParcel(parcel);
1760 if (i3 != null) {
1762 i3.writeToParcel(dest, 0);
1794 final Drawable id3 = i3 == null ? null : i3.loadDrawable(ctx);
1816 new TextViewDrawableAction(viewId, isRelative, i1, i2, i3, i4) :
1826 copy.id3 = i3
1706 TextViewDrawableAction(int viewId, boolean isRelative, Icon i1, Icon i2, Icon i3, Icon i4) argument
1849 Icon i1, i2, i3, i4; field in class:RemoteViews.TextViewDrawableAction
[all...]

Completed in 251 milliseconds