HomeSort by relevance Sort by last modified time
    Searched full:noinline (Results 1 - 25 of 1348) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/439-npe/
expected.txt 1 $opt$noinline$setObjectField
2 $opt$noinline$setIntField
3 $opt$noinline$setFloatField
4 $opt$noinline$setLongField
5 $opt$noinline$setDoubleField
6 $opt$noinline$setByteField
7 $opt$noinline$setBooleanField
8 $opt$noinline$setCharField
9 $opt$noinline$setShortField
10 $opt$noinline$getObjectFiel
    [all...]
  /external/clang/test/Sema/
attr-noinline.c 3 int a __attribute__((noinline)); // expected-warning {{'noinline' attribute only applies to functions}}
5 void t1() __attribute__((noinline));
7 void t2() __attribute__((noinline(2))); // expected-error {{'noinline' attribute takes no arguments}}
  /art/test/666-dex-cache-itf/src/
Main.java 20 default int $noinline$def1() { return 42; }
21 default int $noinline$def2() { return 42; }
22 default int $noinline$def3() { return 42; }
23 default int $noinline$def4() { return 42; }
24 default int $noinline$def5() { return 42; }
25 default int $noinline$def6() { return 42; }
26 default int $noinline$def7() { return 42; }
27 default int $noinline$def8() { return 42; }
28 default int $noinline$def9() { return 42; }
29 default int $noinline$def10() { return 42;
    [all...]
  /external/llvm/test/tools/sancov/Inputs/
foo.cpp 4 __attribute__((noinline))
  /art/test/564-checker-bitcount/src/
Main.java 24 /// CHECK-START: int Main.$noinline$BitCountBoolean(boolean) intrinsics_recognition (after)
27 private static int $noinline$BitCountBoolean(boolean x) {
32 /// CHECK-START: int Main.$noinline$BitCountByte(byte) intrinsics_recognition (after)
35 private static int $noinline$BitCountByte(byte x) {
40 /// CHECK-START: int Main.$noinline$BitCountShort(short) intrinsics_recognition (after)
43 private static int $noinline$BitCountShort(short x) {
48 /// CHECK-START: int Main.$noinline$BitCountChar(char) intrinsics_recognition (after)
51 private static int $noinline$BitCountChar(char x) {
56 /// CHECK-START: int Main.$noinline$BitCountInt(int) intrinsics_recognition (after)
59 private static int $noinline$BitCountInt(int x)
    [all...]
  /art/test/422-type-conversion/src/
Main.java 141 assertLongEquals(1L, $opt$noinline$ByteToLong((byte)1));
142 assertLongEquals(0L, $opt$noinline$ByteToLong((byte)0));
143 assertLongEquals(-1L, $opt$noinline$ByteToLong((byte)-1));
144 assertLongEquals(51L, $opt$noinline$ByteToLong((byte)51));
145 assertLongEquals(-51L, $opt$noinline$ByteToLong((byte)-51));
146 assertLongEquals(127L, $opt$noinline$ByteToLong((byte)127)); // 2^7 - 1
147 assertLongEquals(-127L, $opt$noinline$ByteToLong((byte)-127)); // -(2^7 - 1)
148 assertLongEquals(-128L, $opt$noinline$ByteToLong((byte)-128)); // -(2^7)
152 assertLongEquals(1L, $opt$noinline$ShortToLong((short)1));
153 assertLongEquals(0L, $opt$noinline$ShortToLong((short)0))
    [all...]
  /external/honggfuzz/examples/badcode/targets/
badcode2.c 8 #define NOINLINE __attribute__ ((noinline))
10 EXPORT NOINLINE void crash()
17 EXPORT NOINLINE void func1()
23 EXPORT NOINLINE void func2()
29 EXPORT NOINLINE void driver()
  /art/test/542-bitfield-rotates/src/
Main.java 53 public static int $noinline$rotate_int_right_reg_v_csubv(int value, int distance) {
61 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, 0), 0x11);
63 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, 1), 0x80000008);
64 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, Integer.SIZE - 1), 0x22);
65 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, Integer.SIZE), 0x11);
66 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, Integer.SIZE + 1), 0x80000008);
68 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, -1), 0x22);
69 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, -(Integer.SIZE - 1)), 0x80000008);
70 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, -Integer.SIZE), 0x11);
71 assertIntEquals($noinline$rotate_int_right_reg_v_csubv(0x11, -(Integer.SIZE + 1)), 0x22)
    [all...]
  /art/test/561-divrem/src/
Main.java 31 assertEquals(0, $noinline$divInt(1));
32 assertEquals(1, $noinline$remInt(1));
34 assertEquals(0, $noinline$divInt(-1));
35 assertEquals(-1, $noinline$remInt(-1));
37 assertEquals(0, $noinline$divInt(0));
38 assertEquals(0, $noinline$remInt(0));
40 assertEquals(1, $noinline$divInt(Integer.MIN_VALUE));
41 assertEquals(0, $noinline$remInt(Integer.MIN_VALUE));
43 assertEquals(0, $noinline$divInt(Integer.MAX_VALUE));
44 assertEquals(Integer.MAX_VALUE, $noinline$remInt(Integer.MAX_VALUE))
    [all...]
  /external/clang/test/CodeGen/
attr-noinline.c 2 // RUN: grep 'noinline' %t
4 void t1() __attribute__((noinline));
noinline.c 4 // RUN: %clang_cc1 -O3 -fno-inline -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
12 // NOINLINE: @foo
13 // NOINLINE: dont_inline_me
14 // NOINLINE-NOT: inlinehint
16 // NOINLINE-NOT: inline_me
20 // NOINLINE: Function Attrs: noinline
21 // NOINLINE: @dont_inline_me
  /external/llvm/test/Assembler/
2008-09-02-FunctionNotes2.ll 2 ; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "Attributes 'noinline and alwaysinline' are incompatible"
3 define void @fn1() alwaysinline noinline {
  /external/swiftshader/third_party/LLVM/test/Assembler/
2008-09-02-FunctionNotes2.ll 2 ; RUN: not llvm-as %s -o /dev/null |& grep "Attributes noinline alwaysinline are incompatible"
3 define void @fn1() alwaysinline noinline {
  /art/test/496-checker-inlining-class-loader/
expected.txt 4 In $noinline$bar
  /prebuilts/go/darwin-x86/src/cmd/objdump/testdata/
fmthello.go 9 //go:noinline
  /prebuilts/go/linux-x86/src/cmd/objdump/testdata/
fmthello.go 9 //go:noinline
  /toolchain/binutils/binutils-2.27/gold/testsuite/
ifuncmain5.c 10 extern foo_p __attribute__ ((noinline)) get_foo (void);
11 extern foo_p __attribute__ ((noinline)) get_foo_protected (void);
14 __attribute__ ((noinline))
21 __attribute__ ((noinline))
  /external/valgrind/memcheck/tests/solaris/
ldynsym.c 5 __attribute__((noinline))
11 __attribute__((noinline))
17 __attribute__((noinline))
  /art/test/451-spill-splot/src/
Main.java 51 a = $noinline$computeDouble();
52 b = $noinline$computeDouble();
53 c = $noinline$computeDouble();
54 d = $noinline$computeDouble();
55 e = $noinline$computeDouble();
56 f = $noinline$computeDouble();
57 g = $noinline$computeDouble();
58 h = $noinline$computeDouble();
59 i = $noinline$computeDouble();
60 j = $noinline$computeDouble()
    [all...]
  /art/test/021-string2/src/
Main.java 102 " " + $noinline$equals(s0_0, s0_0) +
103 " " + $noinline$equals(s0_0, s0_1) +
104 " " + $noinline$equals(s0_0, s0_2) +
105 " " + $noinline$equals(s0_0, s0_3));
107 " " + $noinline$equals(s0_1, s0_0) +
108 " " + $noinline$equals(s0_1, s0_1) +
109 " " + $noinline$equals(s0_1, s0_2) +
110 " " + $noinline$equals(s0_1, s0_3));
112 " " + $noinline$equals(s0_2, s0_0) +
113 " " + $noinline$equals(s0_2, s0_1)
    [all...]
  /art/test/415-optimizing-arith-neg/src/
Main.java 18 // it does compile the method, and that $noinline$ is a marker to
72 $opt$noinline$InplaceNegOneInt(1);
75 $opt$noinline$InplaceNegOneLong(1L);
82 assertEquals(-1, $opt$noinline$NegInt(1));
83 assertEquals(1, $opt$noinline$NegInt(-1));
84 assertEquals(0, $opt$noinline$NegInt(0));
85 assertEquals(51, $opt$noinline$NegInt(-51));
86 assertEquals(-51, $opt$noinline$NegInt(51));
87 assertEquals(2147483647, $opt$noinline$NegInt(-2147483647)); // -(2^31 - 1)
88 assertEquals(-2147483647, $opt$noinline$NegInt(2147483647)); // 2^31 -
    [all...]
  /system/extras/memcpy-perf/
test-funcs.cpp 3 void __attribute__((noinline)) memcpy_noinline(void *dst, void *src, size_t size)
8 void __attribute__((noinline)) memset_noinline(void *dst, int value, size_t size)
13 uint64_t __attribute__((noinline)) sum(volatile void *src, size_t size)
  /external/compiler-rt/test/asan/TestCases/Helpers/
initialization-bug-extra2.cc 3 int __attribute__((noinline)) initY() {
  /prebuilts/go/darwin-x86/src/cmd/cover/testdata/
p.go 9 //go:noinline
14 //go:noinline
19 //go:noinline
24 //go:noinline
  /prebuilts/go/darwin-x86/test/fixedbugs/issue7995b.dir/
x1.go 7 //go:noinline

Completed in 378 milliseconds

1 2 3 4 5 6 7 8 91011>>