Home
last modified time | relevance | path

Searched refs:somefunc (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/WebAssembly/
Dstack-alignment.ll6 declare void @somefunc(i32*)
16 ; CHECK-NEXT: call somefunc@FUNCTION, $pop[[underaligned]]
24 call void @somefunc(i32* %underaligned)
38 ; CHECK: call somefunc@FUNCTION, $pop[[M5]]{{$}}
45 call void @somefunc(i32* %overaligned)
58 ; CHECK-NEXT: call somefunc@FUNCTION, $pop[[L6]]
61 ; CHECK-NEXT: call somefunc@FUNCTION, $pop[[L8]]
69 call void @somefunc(i32* %over)
70 call void @somefunc(i32* %normal)
81 ; CHECK: call somefunc@FUNCTION, $pop[[M8]]
[all …]
/external/llvm/test/CodeGen/AArch64/
Dtailcall-ccmismatch.ll4 declare void @somefunc()
6 ; Ensure that no tail call is used here, as the called function somefunc does
9 ; CHECK-NOT: b somefunc
10 ; CHECK: bl somefunc
11 tail call void @somefunc()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dtailcall-ccmismatch.ll4 declare void @somefunc()
6 ; Ensure that no tail call is used here, as the called function somefunc does
9 ; CHECK-NOT: b somefunc
10 ; CHECK: bl somefunc
11 tail call void @somefunc()
/external/clang/test/SemaCXX/
Dfunction-overload-typo-crash.cpp14 template <typename T> void somefunc(T*, T*); //expected-note {{'somefunc' declared here}}
15 template <typename T> void somefunc(const T[]); //expected-note {{'somefunc' declared here}}
16 template <typename T1, typename T2> void somefunc(T1*, T2*); //expected-note {{'somefunc' declared …
17 template <typename T1, typename T2> void somefunc(T1*, const T2[]); //expected-note 2 {{'somefunc' …
Dtypo-correction.cpp235 void somefunc(); // expected-note{{'::outer::somefunc' declared here}}
236 void somefunc(int, int); // expected-note{{'::outer::somefunc' declared here}}
239 void somefunc(int) { in somefunc() function
/external/clang/test/Sema/
Dconstant-builtins.c24 short somefunc();
26 short t = __builtin_constant_p(5353) ? 42 : somefunc();
/external/clang/test/CodeGenObjC/
Dobjc2-write-barrier-2.m10 extern id **somefunc(void); function
50 id **ppptr = somefunc();
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/IndVarSimplify/
Dpr25051.ll6 define i32 @somefunc(double* %arr) {
7 ; CHECK-LABEL: @somefunc(
/external/llvm/test/Transforms/IndVarSimplify/
Dpr25051.ll6 define i32 @somefunc(double* %arr) {
7 ; CHECK-LABEL: @somefunc(
/external/clang/test/CodeGen/
Ddebug-info-args.c3 int somefunc(char *x, int y, double z) { in somefunc() function
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Dcxx-tlscc.ll129 declare void @somefunc()
131 ; A tail call is not possible here because somefunc does not preserve enough
136 tail call void @somefunc()
/external/llvm/test/CodeGen/ARM/
Dcxx-tlscc.ll129 declare void @somefunc()
131 ; A tail call is not possible here because somefunc does not preserve enough
136 tail call void @somefunc()
/external/clang/test/SemaObjC/
Dmethod-bad-param.m23 void somefunc(foo x) {} // expected-error {{interface type 'foo' cannot be passed by value; did you… function
/external/llvm/docs/
DCodingStandards.rst1456 somefunc(42);
1469 somefunc (42);
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCodingStandards.rst1536 somefunc(42);
1549 somefunc (42);
/external/python/cffi/doc/source/
Dcdef.rst430 int somefunc(int somearg) { return real_cpp_func(somearg); }