HomeSort by relevance Sort by last modified time
    Searched refs:i4 (Results 26 - 50 of 123) sorted by null

12 3 4 5

  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsCppUtils.h 270 static inline uint16_t rsBoxFilter565(uint16_t i1, uint16_t i2, uint16_t i3, uint16_t i4) {
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) {
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);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsCppUtils.h 270 static inline uint16_t rsBoxFilter565(uint16_t i1, uint16_t i2, uint16_t i3, uint16_t i4) {
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) {
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);
  /external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
CallbacksTest.java 46 public void call(Integer i1, Integer i2, Integer i3, Integer i4, Integer i5, Integer i6,
51 parameters.add(i4);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_gs_tmp.h 31 #define TRIANGLE_ADJ(flags,i0,i1,i2,i3,i4,i5) gs_tri_adj(gs,i0,i1,i2,i3,i4,i5)
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_gs_tmp.h 31 #define TRIANGLE_ADJ(flags,i0,i1,i2,i3,i4,i5) gs_tri_adj(gs,i0,i1,i2,i3,i4,i5)
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-177883.js 55 var i3 = 0, i4 = 0;
58 i4 = +__ZNK4Math5plane3dotERKNS_6float4E(i1 + 16 | 0, i3) > 0.0 ? i2 | 2 : i2;
59 i2 = +__ZNK4Math5plane3dotERKNS_6float4E(i1 + 32 | 0, i3) > 0.0 ? i4 | 4 : i4;
60 i4 = +__ZNK4Math5plane3dotERKNS_6float4E(i1 + 48 | 0, i3) > 0.0 ? i2 | 8 : i2;
61 i2 = +__ZNK4Math5plane3dotERKNS_6float4E(i1 + 64 | 0, i3) > 0.0 ? i4 | 16 : i4;
68 var i3 = 0, i4 = 0, i5 = 0, i6 = 0, i7 = 0, i8 = 0, i9 = 0, i10 = 0, i11 = 0, i12 = 0, i13 = 0, i14 = 0, i15 = 0, i16 = 0, d17 = 0.0, d18 = 0.0, i19 = 0, i20 = 0, i21 = 0, i22 = 0;
71 i4 = i3 | 0;
72 i5 = i4 | 0
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_PinnedPositionsTest.java 65 final DatabaseAsserts.ContactIdPair i4 = DatabaseAsserts.assertAndCreateContact(mResolver); local
75 assertValuesForContact(i4.mContactId,
81 assertValuesForRawContact(i4.mRawContactId, newContentValues(RawContacts.PINNED, unpinned));
87 operations.add(newPinningOperation(i4.mContactId, 2, false));
96 assertValuesForContact(i4.mContactId,
103 assertValuesForRawContact(i4.mRawContactId, newContentValues(RawContacts.PINNED, 2));
117 assertValuesForContact(i4.mContactId,
126 assertValuesForRawContact(i4.mRawContactId,
132 ContactUtil.delete(mResolver, i4.mContactId);
143 final DatabaseAsserts.ContactIdPair i4 = DatabaseAsserts.assertAndCreateContact(mResolver) local
    [all...]
  /external/clang/test/SemaTemplate/
ms-if-exists.cpp 29 X<int>::type4 i4; // expected-error{{no type named 'type4' in 'X<int>'}} variable
  /external/lzma/CPP/Common/
MyCom.h 208 #define MY_UNKNOWN_IMP4(i1, i2, i3, i4) MY_UNKNOWN_IMP_SPEC( \
213 MY_QUERYINTERFACE_ENTRY(i4) \
216 #define MY_UNKNOWN_IMP5(i1, i2, i3, i4, i5) MY_UNKNOWN_IMP_SPEC( \
221 MY_QUERYINTERFACE_ENTRY(i4) \
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
primitives.rs 98 _RS_ASSERT(avt->i4.x == 1);
99 _RS_ASSERT(avt->i4.y == 2);
100 _RS_ASSERT(avt->i4.z == 3);
101 _RS_ASSERT(avt->i4.w == 4);
ComputeTest.java 143 Int4 i4 = new Int4(); local
144 i4.x = 1;
145 i4.y = 2;
146 i4.x = 3;
147 i4.w = 4;
148 i4 = new Int4(1, 2, 3, 4);
149 assertTrue(i4.x == 1);
150 assertTrue(i4.y == 2);
151 assertTrue(i4.z == 3);
152 assertTrue(i4.w == 4)
    [all...]
  /external/valgrind/main/none/tests/s390x/
opcodes.h 44 #define RIE_RUPI(op1,r1,m3,i4,i2,op2) \
46 ".long 0x" #i4 #i2 #op2 "\n\t"
50 #define RIE_RRPU(op1,r1,r2,i4,m3,u0,op2) \
52 ".long 0x" #i4 #m3 #u0 #op2 "\n\t"
62 #define RIE_RUPU(op1,r1,m3,i4,i2,op2) \
64 ".long 0x" #i4 #i2 #op2 "\n\t"
98 #define RIE_RRUUU(op1,r1,r2,i3,i4,i5,op2) \
100 ".long 0x" #i3 #i4 #i5 #op2 "\n\t"
162 #define CGIJ(r1,m3,i4,i2) RIE_RUPI(ec,r1,m3,i4,i2,7c
    [all...]
  /external/clang/test/SemaCXX/
rval-references.cpp 43 int i4 = over2(i1); local
  /external/openssl/crypto/bn/asm/
sparcv9a-mont.pl 79 $n0="%i4"; # const BN_ULONG *n0,
92 $carry="%i4"; # %i4 reused(!) for a carry bit
140 ld [%i4+0],$n0 ! $n0 reassigned, remember?
142 ld [%i4+4],%o0
  /frameworks/rs/api/
gen_runtime.cpp 241 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 {
254 return expandString(mName, i1, i2, i3, i4);
256 string getReturn(int i1, int i2, int i3, int i4) const {
257 return expandString(mReturn, i1, i2, i3, i4);
259 void getComments(int i1, int i2, int i3, int i4, vector<string>* comments) const {
260 return expandStringVector(mComment, i1, i2, i3, i4, comments);
262 void getInlines(int i1, int i2, int i3, int i4, vector<string>* inlines) const {
263 return expandStringVector(mInline, i1, i2, i3, i4, inlines)
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Matrix.cpp 110 const int i4 = i * 4; local
118 const float e = rhs[i4 + j];
125 mData[i4 + 0] = x;
126 mData[i4 + 1] = y;
127 mData[i4 + 2] = z;
128 mData[i4 + 3] = w;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
s10_8pf.cpp 190 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
296 // i4 and i5 loop:
319 for (i4 = ipos[4]; i4 < L_CODE; i4 += step)
321 ps1 = add (ps0, dn[i4]);
323 alp1 = L_mac (alp0, rr[i4][i4], _1_32);
324 alp1 = L_mac (alp1, rr[i0][i4], _1_16);
325 alp1 = L_mac (alp1, rr[i1][i4], _1_16)
568 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i9; local
    [all...]
  /external/clang/test/Sema/
complex-int.c 60 int i4[~(2+3i) == 2-3i ? 1 : -1]; variable
  /external/clang/test/OpenMP/
for_misc_messages.c 160 for (int i4 = 0; i4 < 16; ++i4)
parallel_for_misc_messages.c 141 for (int i4 = 0; i4 < 16; ++i4)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_list_test.cc 35 ListItem *i4 = 0, ListItem *i5 = 0, ListItem *i6 = 0) {
48 if (i4) {
49 CHECK_EQ(l->front(), i4);
  /external/opencv/cv/src/
cvcontours.cpp 539 schar *i0 = ptr, *i1, *i3, *i4 = 0; local
586 i4 = i3 + deltas[++s];
587 if( *i4 != 0 )
621 if( i4 == i0 && i3 == i1 )
624 i3 = i4;
652 schar *i0 = ptr, *i1, *i3, *i4; local
684 i4 = i3 + deltas[++s];
685 if( *i4 != 0 )
689 if( i3 == stop_ptr || (i4 == i0 && i3 == i1) )
692 i3 = i4;
711 schar *i0 = ptr, *i1, *i3, *i4; local
    [all...]
  /external/libcxx/test/input.output/file.streams/c.files/
cinttypes.pass.cpp 881 std::int64_t i4 = 0; local
887 std::uint64_t i4 = 0; local
893 std::int_least64_t i4 = 0; local
899 std::uint_least64_t i4 = 0; local
905 std::int_fast64_t i4 = 0; local
911 std::uint_fast64_t i4 = 0; local
917 std::uintmax_t i4 = 0; local
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
cinttypes.pass.cpp 881 std::int64_t i4 = 0; local
887 std::uint64_t i4 = 0; local
893 std::int_least64_t i4 = 0; local
899 std::uint_least64_t i4 = 0; local
905 std::int_fast64_t i4 = 0; local
911 std::uint_fast64_t i4 = 0; local
917 std::uintmax_t i4 = 0; local
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/armv6/
vp8_short_fdct4x4_armv6.asm 49 ldrd r8, r9, [r0] ; [i5 | i4] [i7 | i6]
59 qadd16 r6, r8, r9 ; [i5+i6 | i4+i7] = [b1 | a1] without shift
60 qsub16 r7, r8, r9 ; [i5-i6 | i4-i7] = [c1 | d1] without shift
68 smuad r9, r6, lr ; o4 = (i5+i6)*8 + (i4+i7)*8
69 smusd r8, r6, lr ; o6 = (i5+i6)*8 - (i4+i7)*8
134 qadd16 r5, r9, r2 ; b1 = [i5+i9 | i4+i8]
135 qsub16 r6, r9, r2 ; c1 = [i5-i9 | i4-i8]

Completed in 1686 milliseconds

12 3 4 5