/external/eigen/unsupported/test/ |
forward_adolc.cpp | 101 template<typename Func> void adolc_forward_jacobian(const Func& f) 103 typename Func::InputType x = Func::InputType::Random(f.inputs()); 104 typename Func::ValueType y(f.values()), yref(f.values()); 105 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs()); 115 AdolcForwardJacobian<Func> autoj(f);
|
autodiff.cpp | 107 template<typename Func> void forward_jacobian(const Func& f) 109 typename Func::InputType x = Func::InputType::Random(f.inputs()); 110 typename Func::ValueType y(f.values()), yref(f.values()); 111 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs()); 121 AutoDiffJacobian<Func> autoj(f);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
concept_check.hpp | 302 BOOST_concept(Generator,(Func)(Return)) 319 Func f; 322 BOOST_concept(UnaryFunction,(Func)(Return)(Arg)) 348 Func f; 352 BOOST_concept(BinaryFunction,(Func)(Return)(First)(Second)) 377 Func f; 382 BOOST_concept(UnaryPredicate,(Func)(Arg)) 397 Func f; 401 BOOST_concept(BinaryPredicate,(Func)(First)(Second)) 415 Func f [all...] |
/external/llvm/include/llvm/ADT/ |
VariadicFunction.h | 105 ResultT (*Func)(ArrayRef<const ArgT *>)> 108 return Func(ArrayRef<const ArgT *>()); 114 return Func(makeArrayRef(Args)); \ 152 ResultT (*Func)(Param0T, ArrayRef<const ArgT *>)> 155 return Func(P0, ArrayRef<const ArgT *>()); 161 return Func(P0, makeArrayRef(Args)); \ 199 ResultT (*Func)(Param0T, Param1T, ArrayRef<const ArgT *>)> 202 return Func(P0, P1, ArrayRef<const ArgT *>()); 209 return Func(P0, P1, makeArrayRef(Args)); \ 248 ResultT (*Func)(Param0T, Param1T, Param2T, ArrayRef<const ArgT *>) [all...] |
STLExtras.h | 128 template <class _Iterator, class Func> 129 inline mapped_iterator<_Iterator, Func> 130 operator+(typename mapped_iterator<_Iterator, Func>::difference_type N, 131 const mapped_iterator<_Iterator, Func>& X) { 132 return mapped_iterator<_Iterator, Func>(X.getCurrent() - N, X.getFunc());
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeRewriter.cs | 40 System.Func<IAstRuleReturnScope<TTree>> topdown_func; 41 System.Func<IAstRuleReturnScope<TTree>> bottomup_func; 54 public virtual object ApplyOnce(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) { 86 public virtual object ApplyRepeatedly(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) {
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeRewriter.cs | 46 Func<IAstRuleReturnScope> topdown_func; 47 Func<IAstRuleReturnScope> bottomup_func; 62 public virtual object ApplyOnce( object t, Func<IAstRuleReturnScope> whichRule ) 94 public virtual object ApplyRepeatedly( object t, Func<IAstRuleReturnScope> whichRule )
|
TreeFilter.cs | 76 Func<object, object> pre = ( o ) => 81 Func<object, object> post = ( o ) =>
|
/external/chromium_org/third_party/re2/re2/ |
variadic_function.h | 11 Result (*Func)(Param0, Param1, const Arg* const [], int count)> 15 return Func(p0, p1, 0, 0); 20 return Func(p0, p1, args, 1); 25 return Func(p0, p1, args, 2); 31 return Func(p0, p1, args, 3); 37 return Func(p0, p1, args, 4); 43 return Func(p0, p1, args, 5); 49 return Func(p0, p1, args, 6); 56 return Func(p0, p1, args, 7); 63 return Func(p0, p1, args, 8) [all...] |
/external/regex-re2/re2/ |
variadic_function.h | 11 Result (*Func)(Param0, Param1, const Arg* const [], int count)> 17 return Func(p0, p1, 0, 0); 22 return Func(p0, p1, args, 1); 27 return Func(p0, p1, args, 2); 33 return Func(p0, p1, args, 3); 39 return Func(p0, p1, args, 4); 45 return Func(p0, p1, args, 5); 51 return Func(p0, p1, args, 6); 58 return Func(p0, p1, args, 7); 65 return Func(p0, p1, args, 8) [all...] |
/external/llvm/lib/Target/ARM/ |
ARMFrameLowering.h | 66 bool(*Func)(unsigned, bool), unsigned NumAlignedDPRCS2Regs, 71 bool(*Func)(unsigned, bool),
|
/external/llvm/include/llvm/Target/ |
TargetLibraryInfo.h | 20 enum Func { 656 void setState(LibFunc::Func F, AvailabilityState State) { 660 AvailabilityState getState(LibFunc::Func F) const { 672 bool getLibFunc(StringRef funcName, LibFunc::Func &F) const; 676 bool has(LibFunc::Func F) const { 682 bool hasOptimizedCodeGen(LibFunc::Func F) const { 707 StringRef getName(LibFunc::Func F) const { 719 void setUnavailable(LibFunc::Func F) { 723 void setAvailable(LibFunc::Func F) { 727 void setAvailableWithName(LibFunc::Func F, StringRef Name) [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/ |
CheckerManager.h | 54 typedef RET (*Func)(void *, P1, P2, P3, P4, P5); 55 Func Fn; 58 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } 66 typedef RET (*Func)(void *, P1, P2, P3, P4); 67 Func Fn; 70 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } 78 typedef RET (*Func)(void *, P1, P2, P3); 79 Func Fn; 82 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } 88 typedef RET (*Func)(void *, P1, P2) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
depth.c | 68 _mesa_DepthFunc( GLenum func ) 74 _mesa_debug(ctx, "glDepthFunc %s\n", _mesa_lookup_enum_by_nr(func)); 76 switch (func) { 87 _mesa_error( ctx, GL_INVALID_ENUM, "glDepth.Func" ); 91 if (ctx->Depth.Func == func) 95 ctx->Depth.Func = func; 98 ctx->Driver.DepthFunc( ctx, func ); 170 ctx->Depth.Func = GL_LESS [all...] |
/external/clang/test/SemaCXX/ |
explicit.cpp | 161 using Func = void(*)(int); 164 operator Func(); 167 explicit operator Func();
|
/external/mesa3d/src/mesa/main/ |
depth.c | 68 _mesa_DepthFunc( GLenum func ) 74 _mesa_debug(ctx, "glDepthFunc %s\n", _mesa_lookup_enum_by_nr(func)); 76 switch (func) { 87 _mesa_error( ctx, GL_INVALID_ENUM, "glDepth.Func" ); 91 if (ctx->Depth.Func == func) 95 ctx->Depth.Func = func; 98 ctx->Driver.DepthFunc( ctx, func ); 170 ctx->Depth.Func = GL_LESS [all...] |
/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/llvm/lib/Target/X86/ |
X86FixupLEAs.cpp | 136 bool FixupLEAPass::runOnMachineFunction(MachineFunction &Func) { 137 MF = &Func; 143 for (MachineFunction::iterator I = Func.begin(), E = Func.end(); I != E; ++I) 144 processBasicBlock(Func, I);
|
/external/clang/test/CodeGen/ |
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/marisa-trie/lib/marisa/ |
trie-c.cc | 9 typedef int (*Func)(void *, marisa_uint32, size_t); 11 FindCallback(Func func, void *first_arg) 12 : func_(func), first_arg_(first_arg) {} 21 Func func_; 30 typedef int (*Func)(void *, marisa_uint32, const char *, size_t); 32 PredictCallback(Func func, void *first_arg) 33 : func_(func), first_arg_(first_arg) {} 42 Func func_ [all...] |
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITTestBase.h | 61 void endFunctionWithRet(Function *Func, Value *RetValue) { 120 Function *insertExternalReferenceToFunction(Module *M, Function *Func) { 121 Function *Result = Function::Create(Func->getFunctionType(), 123 Func->getName(), M);
|
/external/chromium_org/third_party/icu/source/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/icu4c/test/perf/collperf/ |
collperf.cpp | 82 typedef void (CmdKeyGen::* Func)(int32_t); 88 Func fn; 96 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t) 134 typedef void (CmdIter::* Func)(UErrorCode* , int32_t ); 137 Func fn; 141 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t) 183 typedef void (CmdIterAll::* Func)(UErrorCode* status); 186 Func fn; 324 #define QFUNC(name, func, data) \ 327 return func(da->data, db->data); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/ |
sha512-s390x.pl | 99 $Func="sha${label}_block_data_order"; 233 .globl $Func 234 .type $Func,\@function 235 $Func: 312 .size $Func,.-$Func
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
trie-c.cc | 9 typedef int (*Func)(void *, marisa_alpha_uint32, size_t); 11 FindCallback(Func func, void *first_arg) 12 : func_(func), first_arg_(first_arg) {} 21 Func func_; 30 typedef int (*Func)(void *, marisa_alpha_uint32, const char *, size_t); 32 PredictCallback(Func func, void *first_arg) 33 : func_(func), first_arg_(first_arg) {} 42 Func func_ [all...] |