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

1 2 3

  /external/clang/test/CodeGen/
2003-10-06-NegateExprType.c 5 void Func(int *B) {
2003-10-29-AsmRename.c 7 extern int Func(struct foo*) __asm__("Func64");
10 int Func(struct foo *F) {
20 Func(0); /* should be renamed to call Func64 */
2002-07-14-MiscTests3.c 28 unsigned PtrFunc(int (*Func)(int), int X) {
29 return Func(X);
75 int Func(int Param, long long Param2) {
103 int func(int i, int j) { function
107 j += func(2, i);
139 //func(argc, argc);
  /external/clang/test/CodeGenCXX/
2009-08-11-VectorRetTy.cpp 3 typedef void (*Func) ();
11 Func arr[] = {
  /external/clang/test/SemaTemplate/
instantiate-overloaded-arrow.cpp 17 void Func() {
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 19 enum Func {
58 bool has(LibFunc::Func F) const {
64 void setUnavailable(LibFunc::Func F) {
68 void setAvailable(LibFunc::Func F) {
  /external/clang/test/SemaCXX/
incomplete-call.cpp 20 typedef A (*Func)();
21 Func fp;
23 ((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}}
friend.cpp 36 void Func(int x);
40 friend void ::test2::foo::Func(int x);
abstract.cpp 53 typedef void (*Func)(C); // expected-error {{parameter type 'C' is an abstract class}}
54 void t6(Func);
explicit.cpp 170 using Func = void(*)(int);
173 operator Func();
176 explicit operator Func();
  /external/opencv/cxcore/include/
cxerror.h 106 #define OPENCV_ERROR(status,func,context) \
107 cvError((status),(func),(context),__FILE__,__LINE__)
109 #define OPENCV_ERRCHK(func,context) \
111 {OPENCV_ERROR(CV_StsBackTrace,(func),(context));}}
113 #define OPENCV_ASSERT(expr,func,context) \
115 {OPENCV_ERROR(CV_StsInternal,(func),(context));}}
119 #define OPENCV_CALL( Func ) \
121 Func; \
168 #define CV_CALL( Func ) \
170 Func; \
    [all...]
  /frameworks/compile/libbcc/lib/Disassembler/
Disassembler.h 39 unsigned char const *Func,
Disassembler.cpp 83 unsigned char const *Func,
109 const BufferMemoryObject *BufferMObj = new BufferMemoryObject(Func, FuncSize);
121 OS.write_hex((uint32_t)Func + Index);
123 OS.write_hex(*(uint32_t *)(Func + Index));
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 17 void Func() {}
23 Foo(Func<int>);
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.h 66 bool(*Func)(unsigned, bool),
71 bool(*Func)(unsigned, bool)) const;
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1.cpp 85 void Func();
91 void X2<T>::Bar<F>::Func() {}
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 56 typedef RET (*Func)(void *, P1, P2, P3, P4);
57 Func Fn;
60 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { }
68 typedef RET (*Func)(void *, P1, P2, P3);
69 Func Fn;
72 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { }
78 typedef RET (*Func)(void *, P1, P2);
79 Func Fn;
82 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { }
88 typedef RET (*Func)(void *, P1)
    [all...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 118 template <class _Iterator, class Func>
119 inline mapped_iterator<_Iterator, Func>
120 operator+(typename mapped_iterator<_Iterator, Func>::difference_type N,
121 const mapped_iterator<_Iterator, Func>& X) {
122 return mapped_iterator<_Iterator, Func>(X.getCurrent() - N, X.getFunc());
  /external/icu4c/test/perf/collperf/
collperf.cpp 79 typedef void (CmdKeyGen::* Func)(int32_t);
85 Func fn;
93 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t)
129 typedef void (CmdIter::* Func)(UErrorCode* , int32_t );
132 Func fn;
136 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t)
178 typedef void (CmdIterAll::* Func)(UErrorCode* status);
181 Func fn;
317 #define QFUNC(name, func, data) \
320 return func(da->data, db->data);
    [all...]
  /external/openssl/crypto/sha/asm/
sha512-s390x.pl 79 $Func="sha${label}_block_data_order";
212 .globl $Func
213 .type $Func,\@function
214 $Func:
291 .size $Func,.-$Func
  /external/llvm/lib/MC/
MCNullStreamer.cpp 41 virtual void EmitThumbFunc(MCSymbol *Func) {}
MCELFStreamer.cpp 67 void MCELFStreamer::EmitThumbFunc(MCSymbol *Func) {
70 getAssembler().setIsThumbFunc(Func);
72 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Func);
MCELFStreamer.h 47 virtual void EmitThumbFunc(MCSymbol *Func);
  /external/llvm/include/llvm/
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 102 ComparableFunction(Function *Func, TargetData *TD)
103 : Func(Func), Hash(profileFunction(Func)), TD(TD) {}
105 Function *getFunc() const { return Func; }
112 assert(Func &&
114 Func = NULL;
119 : Func(NULL), Hash(Hash), TD(NULL) {}
121 AssertingVH<Function> Func;

Completed in 240 milliseconds

1 2 3