HomeSort by relevance Sort by last modified time
    Searched refs:f3 (Results 1 - 25 of 563) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
stack-fcall-2.c 1 int f3(int i);
5 return f3(i) - i;
stack-fcall-3.c 3 int f3(int i) function
  /external/clang/test/CodeGen/
mangle-windows-rtd.c 9 void __fastcall f3(void) {} function
10 // CHECK: define x86_fastcallcc void @"\01@f3@0"
redef-ext-inline.c 5 int f3 (void) {return f1();} function
ppc64-extend.c 10 int f3(void) { return 0; } function
11 // CHECK: define signext i32 @f3() [[NUW]]
ms_abi.c 6 void f3(void) { function
7 // FREEBSD: define void @f3()
8 // WIN64: define void @f3()
inline2.c 19 // CHECK-GNU89-LABEL: define i32 @f3()
20 // CHECK-C99-LABEL: define i32 @f3()
21 extern inline int f3(void);
22 int f3(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
always_inline.c 19 int f3(void) { return f2(); } function
attr-availability.c 11 // CHECK-10_4-LABEL: define void @f3
12 // CHECK-10_5-LABEL: define void @f3
13 // CHECK-10_6-LABEL: define void @f3
14 void f3() __attribute__((availability(macosx,introduced=10.5)));
15 void f3() { } function
  /external/clang/test/Sema/
pragma-pack-5.c 12 char f3; member in struct:s0
19 char f3; member in struct:s1
26 unsigned f3 : 8; member in struct:s2
34 unsigned f3 : 16; member in struct:s3
43 char f3; member in struct:s4
46 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
arg-duplicate.c 3 int f3(y, x, function
13 f3 (1, 1, 2, 3, 4); // expected-warning{{too many arguments}}
implicit-builtin-redecl.c 22 int f3() { function
  /external/clang/test/ASTMerge/Inputs/
function1.c 4 void f3(void);
function2.c 5 void f3(int);
  /external/clang/test/SemaTemplate/
function-template-specialization-noreturn.cpp 7 template <int N> void __attribute__((noreturn)) f3() { __builtin_unreachable(); } function
8 template <> void f3<1>() { } // expected-warning {{function declared 'noreturn' should not return}} function
  /external/clang/test/Modules/Inputs/
linkage-merge-sub.h 4 static int f3(int);
  /external/lldb/test/functionalities/dead-strip/
main.c 14 int f3 (char *s);
37 // We want f3 to start on line 40
38 int f3 (char *s) function
40 return printf("f3: %s\n", s);
51 f3("dong");
  /external/lldb/test/macosx/order/
main.c 14 int f3 (char *s);
37 // We want f3 to start on line 40
38 int f3 (char *s) function
40 return printf("f3: %s\n", s);
52 f3("dong");
  /external/clang/test/CodeGenCXX/
call-with-static-chain.cpp 16 _Complex float f3(void);
32 // CHECK32: call i64 bitcast (i64 ()* @f3 to i64 (i8*)*)(i8* nest bitcast (i64 ()* @f3 to i8*))
33 // CHECK64: call <2 x float> bitcast (<2 x float> ()* @f3 to <2 x float> (i8*)*)(i8* nest bitcast (<2 x float> ()* @f3 to i8*))
34 __builtin_call_with_static_chain(f3(), f3); local
int64_uint64.cpp 20 void f3(int64_t *ptr) {} function
  /external/clang/test/SemaCXX/
attr-regparm.cpp 9 void f3(); // expected-note{{previous declaration is here}}
15 void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function declared with regparm(2) attribute was previously declared without the regparm attribute}} function in class:X0
  /external/libcxx/test/std/depr/exception.unexpected/set.unexpected/
set_unexpected.pass.cpp 19 void f3() function
32 std::set_terminate(f3);
  /external/selinux/scripts/
Lindent 4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
5 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2`
6 V3=`echo $RES | cut -d' ' -f3 | cut -d'.' -f3`
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/set.unexpected/
set_unexpected.pass.cpp 19 void f3() function
32 std::set_terminate(f3);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
rasterize.rs 41 triangleSetup(float3 f1, float3 f2, float3 f3) {
42 if (((f1.x - f2.x) * (f3.y - f2.y) - (f1.y - f2.y) * (f3.x - f2.x)) < 0) {
50 double d = (f1.x * (f3.y - f2.y) - f2.x * f3.y + f3.x * f2.y + (f2.x - f3.x)
57 slope[total].x = (-(f1.y * (f3.z - f2.z) - f2.y * f3.z + f3.y * f2.z + (f2.y - f3.y) * f1.z
    [all...]

Completed in 2431 milliseconds

1 2 3 4 5 6 7 8 91011>>