Searched refs:i3 (Results 1 - 25 of 161) sorted by relevance

1234567

/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op!=/
H A Dnot_equal.pass.cpp29 std::istreambuf_iterator<char> i3; local
35 assert( (i1 != i3));
41 assert( (i2 != i3));
45 assert( (i3 != i1));
46 assert( (i3 != i2));
47 assert(!(i3 != i3));
48 assert(!(i3 != i4));
49 assert(!(i3 != i5));
53 assert(!(i4 != i3));
68 std::istreambuf_iterator<wchar_t> i3; local
[all...]
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op==/
H A Dequal.pass.cpp29 std::istreambuf_iterator<char> i3; local
35 assert(!(i1 == i3));
41 assert(!(i2 == i3));
45 assert(!(i3 == i1));
46 assert(!(i3 == i2));
47 assert( (i3 == i3));
48 assert( (i3 == i4));
49 assert( (i3 == i5));
53 assert( (i4 == i3));
68 std::istreambuf_iterator<wchar_t> i3; local
[all...]
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
H A Dequal.pass.cpp32 std::istream_iterator<int> i3(inf2);
37 assert(i1 != i3);
42 assert(i2 != i3);
46 assert(i3 == i3);
47 assert(i3 != i4);
48 assert(i3 != i5);
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_equal/
H A Dequal.pass.cpp27 std::istreambuf_iterator<char> i3; local
33 assert(!i1.equal(i3));
39 assert(!i2.equal(i3));
43 assert(!i3.equal(i1));
44 assert(!i3.equal(i2));
45 assert( i3.equal(i3));
46 assert( i3.equal(i4));
47 assert( i3.equal(i5));
51 assert( i4.equal(i3));
66 std::istreambuf_iterator<wchar_t> i3; local
[all...]
/external/valgrind/none/tests/s390x/
H A Drxsbg.c4 #define DO_RXSBG(insn, _r1, _r2, i3, i4, i5) \
9 asm volatile( insn(1,2, i3, i4, i5) \
15 printf(#insn " r1(==%16.16lX),r2(==%16.16lX),0x" #i3 ",0x" #i4 ",0x" #i5 " = %16.16lX (cc=%d)\n", _r1, _r2, r1, cc); \
18 #define r1sweep(i, r2, i3, i4, i5) \
20 DO_RXSBG(i, 000000000000000000ul, r2, i3, i4, i5); \
21 DO_RXSBG(i, 0x0000ffffccccaaaaul, r2, i3, i4, i5); \
22 DO_RXSBG(i, 0xfffffffffffffffful, r2, i3, i4, i5); \
25 #define r2sweep(i, i3, i4, i5) \
27 r1sweep(i, 0x0000000000000000ul, i3, i4, i5); \
28 r1sweep(i, 0x5555ccccffff0000ul, i3, i
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/primitives/
H A DBunchOfPrimitives.java32 public BunchOfPrimitives(int i1, int i2, int i3) { argument
36 public BunchOfPrimitives(long i1, double i2, boolean i3) { argument
37 this((int) i1, i2, i3);
/external/libcxx/test/std/re/re.iter/re.tokiter/re.tokiter.incr/
H A Dpost.pass.cpp28 std::cregex_token_iterator i3; local
33 i3 = i++;
36 assert(i3 != std::cregex_token_iterator());
39 assert(i3->str() == "start ");
40 i3 = i++;
43 assert(i3 != std::cregex_token_iterator());
46 assert(i3->str() == ", ");
47 i3 = i++;
50 assert(i3 != std::cregex_token_iterator());
53 assert(i3
67 std::cregex_token_iterator i3; local
[all...]
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp3.cpp10 int &i3 = 0377_x1; variable
H A Dp4.cpp10 int &i3 = 0377e-1_x1; variable
H A Dp5.cpp9 double &i3 = L"foo"_x1; // expected-error {{no matching literal operator for call to 'operator""_x1' with arguments of types 'const wchar_t *' and 'unsigned long'}} variable
H A Dp6.cpp9 double &i3 = 'a'_x1; // expected-error {{no matching literal operator}} variable
/external/clang/test/Sema/
H A Dtentative-decls.c32 static int i3 = 5; variable
33 extern int i3;
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_gs_tmp.h30 #define LINE_ADJ(flags,i0,i1,i2,i3) gs_line_adj(gs,i0,i1,i2,i3)
31 #define TRIANGLE_ADJ(flags,i0,i1,i2,i3,i4,i5) gs_tri_adj(gs,i0,i1,i2,i3,i4,i5)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESFastEngine.java601 int i0 = x, i1 = x >>> 8, i2 = x >>> 16, i3 = x >>> 24;
602 i0 = S[i0 & 255] & 255; i1 = S[i1 & 255] & 255; i2 = S[i2 & 255] & 255; i3 = S[i3 & 255] & 255;
603 return i0 | i1 << 8 | i2 << 16 | i3 << 24;
860 int i0, i1, i2, i3;
864 i0 = t0; i1 = t1 >>> 8; i2 = t2 >>> 16; i3 = r3 >>> 24;
865 i0 &= 255; i1 &= 255; i2 &= 255; i3 &= 255;
866 r0 = T[i0] ^ T[256 + i1] ^ T[512 + i2] ^ T[768 + i3] ^ KW[r][0];
868 i0 = t1; i1 = t2 >>> 8; i2 = r3 >>> 16; i3 = t0 >>> 24;
869 i0 &= 255; i1 &= 255; i2 &= 255; i3
[all...]
/external/clang/test/Index/
H A Dcomplete-properties.m28 id test(I3 *i3) {
29 return i3.Prop3;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/targets/
H A DStubs.java93 public static int i3() { method in class:Stubs
/external/valgrind/perf/
H A Dffbench.c172 register int i1, i2, i3; local
192 for (i3 = i1; i3 <= ip3; i3 += ip2) {
193 i3rev = i2rev + i3 - i2;
194 SWAP(data[i3], data[i3rev]);
195 SWAP(data[i3 + 1], data[i3rev + 1]);
215 for (i3 = 1; i3 <= ifp1; i3
[all...]
/external/boringssl/src/crypto/aes/asm/
H A Daes-armv4.pl59 $i3="r9";
320 and $i3,lr,$s0,lsr#16
327 ldr $t3,[$tbl,$i3,lsl#2] @ Te1[s0>>16]
328 and $i3,lr,$s1,lsr#8
334 ldr $i3,[$tbl,$i3,lsl#2] @ Te2[s1>>8]
340 eor $t3,$t3,$i3,ror#8
341 and $i3,lr,$s2
347 ldr $i3,[$tbl,$i3,ls
[all...]
/external/clang/test/CodeGen/
H A Darm64-arguments.c297 int f38_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, argument
299 // CHECK: define i32 @f38_stack(i32 %i, i32 %i2, i32 %i3, i32 %i4, i32 %i5, i32 %i6, i32 %i7, i32 %i8, i32 %i9, i64 %s1.coerce, i64 %s2.coerce)
308 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s;
350 int f39_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, argument
352 // CHECK: define i32 @f39_stack(i32 %i, i32 %i2, i32 %i3, i32 %i4, i32 %i5, i32 %i6, i32 %i7, i32 %i8, i32 %i9, i128 %s1.coerce, i128 %s2.coerce)
361 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s;
405 int f40_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, argument
407 // CHECK: define i32 @f40_stack(i32 %i, i32 %i2, i32 %i3, i32 %i4, i32 %i5, i32 %i6, i32 %i7, i32 %i8, i32 %i9, [2 x i64] %s1.coerce, [2 x i64] %s2.coerce)
416 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s;
460 int f41_stack(int i, int i2, int i3, in argument
488 int i3; member in struct:s42
517 f42_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9, s42_no_align s1, s42_no_align s2) argument
545 int i3; member in struct:s43
574 f43_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9, s43_with_align s1, s43_with_align s2) argument
598 f40_split(int i, int i2, int i3, int i4, int i5, int i6, int i7, s40_no_align s1, s40_no_align s2) argument
610 f41_split(int i, int i2, int i3, int i4, int i5, int i6, int i7, s41_with_align s1, s41_with_align s2) argument
[all...]
/external/lzma/CPP/Common/
H A DMyCom.h197 #define MY_UNKNOWN_IMP3(i1, i2, i3) MY_UNKNOWN_IMP_SPEC( \
201 MY_QUERYINTERFACE_ENTRY(i3) \
204 #define MY_UNKNOWN_IMP4(i1, i2, i3, i4) MY_UNKNOWN_IMP_SPEC( \
208 MY_QUERYINTERFACE_ENTRY(i3) \
212 #define MY_UNKNOWN_IMP5(i1, i2, i3, i4, i5) MY_UNKNOWN_IMP_SPEC( \
216 MY_QUERYINTERFACE_ENTRY(i3) \
221 #define MY_UNKNOWN_IMP6(i1, i2, i3, i4, i5, i6) MY_UNKNOWN_IMP_SPEC( \
225 MY_QUERYINTERFACE_ENTRY(i3) \
231 #define MY_UNKNOWN_IMP7(i1, i2, i3, i4, i5, i6, i7) MY_UNKNOWN_IMP_SPEC( \
235 MY_QUERYINTERFACE_ENTRY(i3) \
[all...]
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
H A DMessageFormatterTest.java40 Integer i3 = new Integer(3); field in class:MessageFormatterTest
41 Integer[] ia0 = new Integer[] { i1, i2, i3 };
69 result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, i2, i3 }).getMessage();
72 result = MessageFormatter.arrayFormat("Val1 is {}, val2 is {}, val3 is {}", new Integer[] { null, null, i3 }).getMessage();
78 result = MessageFormatter.format("Value is {}.", i3).getMessage();
81 result = MessageFormatter.format("Value is {", i3).getMessage();
84 result = MessageFormatter.format("{} is larger than 2.", i3).getMessage();
87 result = MessageFormatter.format("No subst", i3).getMessage();
90 result = MessageFormatter.format("Incorrect {subst", i3).getMessage();
93 result = MessageFormatter.format("Value is {bla} {}", i3)
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DAbstractWell.java61 protected final int[] i3; field in class:AbstractWell
110 i3 = new int[r];
116 i3[j] = (j + m3) % r;
/external/ltp/testcases/network/multicast/mc_opts/
H A Dmc_verify_opts_error.c16 unsigned i1, i2, i3, i4; local
37 else if (sscanf(argv[1], "%u.%u.%u.%u", &i1, &i2, &i3, &i4) != 4) {
41 simr.s_addr = htonl((i1 << 24) | (i2 << 16) | (i3 << 8) | i4);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
H A Dp2.cpp35 namespace i3 { namespace in namespace:test0
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
H A DIsEqualTest.java84 int[] i3 = new int[]{3, 4};
90 assertDoesNotMatch(matcher, i3);
99 int[][] i3 = new int[][]{{5, 6}, {7, 8}};
105 assertDoesNotMatch(matcher, i3);

Completed in 607 milliseconds

1234567