HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 51 - 75 of 2361) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/debug/dwarf/testdata/
line1.c 7 f1();
  /external/clang/test/SemaCXX/
function-pointer-arguments.cpp 4 int f1(int, int);
10 int(*g1)(int, int) = f1;
11 int(*g2)(const int, int) = f1;
12 int(*g3)(volatile int, int) = f1;
21 void (*g1)(int, int) = f1;
23 const int (*g2)(int, int) = f1;
26 int (*g3)(char, int) = f1;
28 int (*g4)(int, char) = f1;
31 int (*g5)(int) = f1;
34 int (*g6)(int, int, int) = f1;
    [all...]
attr-after-definition.cpp 6 bool f1(X) { return true; } function
9 __attribute__ ((__visibility__("hidden"))) bool f1(Y);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
elfv2.s 7 .quad f1
9 .globl f1
10 .type f1,@function
12 f1: label
13 addis 2,12,.TOC.-f1@ha
14 addi 2,2,.TOC.-f1@l
15 .localentry f1,.-f1
19 bl f1
32 .size f1,.-f
    [all...]
aix-toc-1a.s 5 .csect .f1[PR]
13 .globl .f1
14 .csect .f1[PR]
15 .f1:
20 .globl f1
21 .csect f1[DS]
22 f1: label
23 .long .f1[PR],TOC[TC0],0
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.funcaddr/
p1.cpp 12 template<typename T> T f1(T, int);
13 template<typename T> T f1(T);
16 float (*f1a)(float, int) = f1;
17 float (*f1b)(float, int) = &f1;
18 float (*f1c)(float) = f1;
19 float (*f1d)(float) = (f1);
20 float (*f1e)(float) = &f1;
21 float (*f1f)(float) = (&f1);
  /external/clang/test/Layout/
itanium-union-bitfield.cpp 5 int f1: 3;
12 char f1: 35;
20 // CHECK-NEXT: 0:0-2 | int f1
26 // CHECK-NEXT: 0:0-34 | char f1
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
module-check.s 4 add.s $f1,$f1,$f1
  /external/clang/test/Sema/
pragma-pack-2.c 11 int f1; member in struct:s0
13 extern int a0[offsetof(struct s0, f1) == 4 ? 1 : -1];
18 int f1; member in struct:s1
20 extern int a1[offsetof(struct s1, f1) == 2 ? 1 : -1];
26 int f1; member in struct:s3_0
31 int f1; member in struct:s3_1
33 extern int a3_0[offsetof(struct s3_0, f1) == 1 ? 1 : -1];
34 extern int a3_1[offsetof(struct s3_1, f1) == 4 ? 1 : -1];
40 int f1; member in struct:s4_0
45 int f1; member in struct:s4_1
56 } f1; member in struct:s5_0
    [all...]
  /external/toybox/tests/
gunzip.test 10 echo -n "foo " | gzip > f1.gz
12 testing "with input files" "gunzip f1.gz f2.gz &&
13 ! test -f f1.gz && ! test -f f2.gz &&
14 test -f f1 && test -f f2 &&
15 cat f1 f2" "foo bar\n" "" ""
16 rm -f f1 f2 f1.gz f2.gz
25 echo -n "foo " | gzip > f1.gz
27 testing "with input files and -c" "gunzip -c f1.gz f2.gz > out &&
28 test -f f1.gz && test -f f2.gz &&
    [all...]
gzip.test 10 echo -n "foo " > f1
12 testing "with input files" "gzip f1 f2 &&
13 test -f f1.gz && test -f f2.gz &&
14 ! test -f f1 && ! test -f f2 &&
15 zcat f1.gz f2.gz" "foo bar\n" "" ""
16 rm -f f1 f2 f1.gz f2.gz
24 echo -n "foo " > f1
26 testing "with input files and -c" "gzip -c f1 f2 > out.gz &&
27 ! test -f f1.gz && ! test -f f2.gz &&
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ppc/
vsx.d 18 1c: (f1 00 e5 67|67 e5 00 f1) xsabsdp vs40,vs60
19 20: (f1 12 e1 07|07 e1 12 f1) xsadddp vs40,vs50,vs60
22 2c: (f1 12 e5 87|87 e5 12 f1) xscpsgndp vs40,vs50,vs60
23 30: (f1 00 e4 27|27 e4 00 f1) xscvdpsp vs40,vs60
24 34: (f1 00 e5 63|63 e5 00 f1) xscvdpsxds vs40,vs6
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
dw2-decodedline-1.S 5 .globl f1
6 .type f1, %function
7 f1: label
10 .size f1, .-f1
dw2-decodedline.S 5 .globl f1
6 .type f1, %function
7 f1: label
10 .size f1, .-f1
  /toolchain/binutils/binutils-2.27/gold/testsuite/
pr12826_1.s 6 .global f1
9 .type f1, %function
10 f1: label
13 .size f1, .-f1
ifunc-sel.h 8 ifunc_sel (int (*f1) (void), int (*f2) (void), int (*f3) (void))
13 Similarly, "f1", "f2" and "f3" may be loaded from non-relocated
47 : "X" (&global), "X" (f1), "X" (f2), "X" (f3));
53 return f1;
63 ifunc_one (int (*f1) (void))
66 /* As above, PIC may use an unrelocated GOT entry for f1.
72 calls this function with f1 set to "one". But the address of
86 : "X" (f1));
89 return f1;
  /external/clang/test/CXX/except/except.spec/
template.cpp 5 template <int N> void f1() throw(int);
8 void (*t1)() throw(int) = &f1<0>;
9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}}
  /external/libcxx/test/std/language.support/support.exception/exception.terminate/set.terminate/
get_terminate.pass.cpp 16 void f1() {} function
21 std::set_terminate(f1);
22 assert(std::get_terminate() == f1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.exception/exception.terminate/set.terminate/
get_terminate.pass.cpp 16 void f1() {} function
21 std::set_terminate(f1);
22 assert(std::get_terminate() == f1);
  /external/clang/test/ASTMerge/Inputs/
function1.c 2 void f1(int, float);
  /external/clang/test/CodeGen/
2007-04-05-PackedBitFields-2.c 12 struct F f1; variable in typeref:struct:F
15 f1.l = 5;
  /external/clang/test/CodeGenCXX/
2007-10-01-StructResize.cpp 6 unsigned int f1 : 3; member in struct:Bork
11 hdr->f1 = 7;
  /external/libcxx/test/std/depr/exception.unexpected/unexpected/
unexpected.pass.cpp 18 void f1() function
25 std::set_unexpected(f1);
  /external/libcxx/test/std/language.support/support.exception/exception.terminate/terminate/
terminate.pass.cpp 16 void f1() function
23 std::set_terminate(f1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/exception.unexpected/unexpected/
unexpected.pass.cpp 18 void f1() function
25 std::set_unexpected(f1);

Completed in 1000 milliseconds

1 23 4 5 6 7 8 91011>>