Searched defs:i3 (Results 1 - 7 of 7) 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.h270 static inline uint16_t rsBoxFilter565(uint16_t i1, uint16_t i2, uint16_t i3, uint16_t i4) { argument
271 uint32_t r = ((i1 & 0x1f) + (i2 & 0x1f) + (i3 & 0x1f) + (i4 & 0x1f));
272 uint32_t g = ((i1 >> 5) & 0x3f) + ((i2 >> 5) & 0x3f) + ((i3 >> 5) & 0x3f) + ((i4 >> 5) & 0x3f);
273 uint32_t b = ((i1 >> 11) + (i2 >> 11) + (i3 >> 11) + (i4 >> 11));
277 static inline uint32_t rsBoxFilter8888(uint32_t i1, uint32_t i2, uint32_t i3, uint32_t i4) { argument
278 uint32_t r = (i1 & 0xff) + (i2 & 0xff) + (i3 & 0xff) + (i4 & 0xff);
279 uint32_t g = ((i1 >> 8) & 0xff) + ((i2 >> 8) & 0xff) + ((i3 >> 8) & 0xff) + ((i4 >> 8) & 0xff);
280 uint32_t b = ((i1 >> 16) & 0xff) + ((i2 >> 16) & 0xff) + ((i3 >> 16) & 0xff) + ((i4 >> 16) & 0xff);
281 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/core/java/android/net/
H A DMobileDataStateTracker.java827 NetworkDataEntry(int i1, int i2, int i3, int i4) { argument
830 uploadBandwidth = 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, Configuration configuration, Surface surface) argument
/frameworks/rs/api/
H A Dgen_runtime.cpp241 string expandString(string s, int i1, int i2, int i3, int i4) const;
242 void expandStringVector(const vector<string>& in, int i1, int i2, int i3, int i4,
253 string getName(int i1, int i2, int i3, int i4) const { argument
254 return expandString(mName, i1, i2, i3, i4);
256 string getReturn(int i1, int i2, int i3, int i4) const { argument
257 return expandString(mReturn, i1, i2, i3, i4);
259 void getComments(int i1, int i2, int i3, int i4, vector<string>* comments) const { argument
260 return expandStringVector(mComment, i1, i2, i3, i4, comments);
262 void getInlines(int i1, int i2, int i3, int i4, vector<string>* inlines) const { argument
263 return expandStringVector(mInline, i1, i2, i3, i
265 getParams(int i1, int i2, int i3, int i4, vector<string>* params) const argument
891 expandStringVector(const vector<string>& in, int i1, int i2, int i3, int i4, vector<string>* out) const argument
1089 expandString(string s, int i1, int i2, int i3, int i4) const argument
1105 Permutation(Function* func, Specification* spec, int i1, int i2, int i3, int i4) argument
[all...]

Completed in 145 milliseconds