Searched defs:Function (Results 76 - 100 of 230) sorted by relevance

12345678910

/external/python/cpython2/Tools/framer/framer/
H A Dfunction.py124 class Function: class in inherits:
171 class Method(Function):
/external/swiftshader/third_party/LLVM/include/llvm/
H A DDefaultPasses.h68 Function, enumerator in enum:llvm::StandardPass::StandardSet
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCWin64EH.h65 Function(0), PrologEnd(0), Symbol(0),
72 const MCSymbol *Function; member in struct:llvm::MCWin64EHUnwindInfo
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetJITInfo.h25 class Function;
69 virtual void *emitFunctionStub(const Function* F, void *Target,
107 virtual void relocate(void *Function, MachineRelocation *MR, argument
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMJITInfo.cpp20 #include "llvm/Function.h"
159 void *ARMJITInfo::emitFunctionStub(const Function* F, void *Fn,
267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR, argument
270 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsJITInfo.cpp19 #include "llvm/Function.h"
157 void *MipsJITInfo::emitFunctionStub(const Function* F, void *Fn,
195 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, argument
199 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
/external/swiftshader/third_party/subzero/src/
H A DIceThreading.h195 std::unique_ptr<Assembler> Function; member in class:Ice::EmitterWorkItem
/external/toolchain-utils/cros_utils/
H A Dperf_diff.py94 class Function(object): class in inherits:object
95 """Function for formatting."""
128 function = Function()
/external/clang/test/SemaTemplate/
H A Dtemp_arg_nontype_cxx1z.cpp28 namespace Function { namespace
/external/deqp/framework/randomshaders/
H A DrsgShader.hpp39 class Function class in namespace:rsg
42 Function (void);
43 Function (const char* name);
44 ~Function (void);
100 Function& getMain (void) { return m_mainFunction; }
101 Function& allocateFunction (void);
126 std::vector<Function*> m_functions;
127 Function m_mainFunction;
/external/giflib/
H A Dgifalloc.c226 int Function,
248 ep->Function = Function;
283 /* Private Function:
224 GifAddExtensionBlock(int *ExtensionBlockCount, ExtensionBlock **ExtensionBlocks, int Function, unsigned int Len, unsigned char ExtData[]) argument
/external/google-breakpad/src/common/
H A Dmodule.h66 struct Function;
70 // Addresses appearing in File, Function, and Line structures are
89 struct Function { struct in class:google_breakpad::Module
90 Function(const string &name_input, const Address &address_input) : function in struct:google_breakpad::Module::Function
95 static bool CompareByAddress(const Function *x, const Function *y) {
164 bool operator() (const Function *lhs,
165 const Function *rhs) const {
189 // file will be the same as they appear in the Function, Line, and
200 // This module owns all Function object
[all...]
/external/llvm/bindings/python/llvm/
H A Dcore.py28 "Function",
239 if not isinstance(self.function, Function):
256 return Function(lib.LLVMGetFirstFunction(self))
260 return Function(lib.LLVMGetLastFunction(self))
269 class Function(Value): class in inherits:Value
277 return f and Function(f)
282 return f and Function(f)
317 return Function.__bb_iterator(self)
320 return Function.__bb_iterator(self, reverse=True)
532 library.LLVMGetNextFunction.argtypes = [Function]
[all...]
/external/llvm/lib/CodeGen/
H A DStackProtector.cpp29 #include "llvm/IR/Function.h"
86 bool StackProtector::runOnFunction(Function &Fn) {
318 static bool CreatePrologue(Function *F, Module *M, ReturnInst *RI,
342 for (Function::iterator I = F->begin(), E = F->end(); I != E;) {
373 llvm::Function *Function = cast<llvm::Function>(GuardCheck); local
374 Call->setAttributes(Function->getAttributes());
375 Call->setCallingConv(Function->getCallingConv());
/external/llvm/unittests/DebugInfo/PDB/
H A DPDBApiTest.cpp332 InsertItemWithTag(PDB_SymType::Function); variable
394 VerifyDyncast<PDBSymbolFunc>(PDB_SymType::Function);
/external/python/cpython2/Lib/
H A Dsymtable.py10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"]
22 return Function(table, filename)
118 class Function(SymbolTable): class in inherits:SymbolTable
/external/python/cpython2/Mac/Modules/app/
H A Dappsupport.py118 Function = OSErrWeakLinkFunctionGenerator variable
/external/python/cpython2/Mac/Modules/drag/
H A Ddragsupport.py213 Function = OSErrWeakLinkFunctionGenerator variable
/external/python/cpython2/Mac/Modules/mlte/
H A Dmltesupport.py160 Function = OSErrWeakLinkFunctionGenerator variable
/external/python/cpython2/Mac/Modules/qd/
H A Dqdsupport.py264 Function = OSErrWeakLinkFunctionGenerator variable
/external/python/cpython2/Mac/Modules/win/
H A Dwinsupport.py78 /* Function to dispose a window, with a "normal" calling sequence */
188 Function = OSErrWeakLinkFunctionGenerator variable
/external/python/cpython3/Lib/
H A Dsymtable.py10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"]
22 return Function(table, filename)
113 class Function(SymbolTable): class in inherits:SymbolTable
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DInlineCost.cpp26 bool llvm::callIsSmall(const Function *F) {
71 if (const Function *F = CS.getCalledFunction()) {
227 void CodeMetrics::analyzeFunction(Function *F, const TargetData *TD) {
236 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
242 void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F,
255 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
269 int InlineCostAnalyzer::getSpecializationBonus(Function *Callee,
290 for (Function::arg_iterator I = Callee->arg_begin(), E = Callee->arg_end();
315 Function *F = dyn_cast<Function>(
473 getInlineCost(CallSite CS, SmallPtrSet<const Function*, 16> &NeverInline) argument
478 getInlineCost(CallSite CS, Function *Callee, SmallPtrSet<const Function*, 16> &NeverInline) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCJITInfo.cpp18 #include "llvm/Function.h"
363 void *PPCJITInfo::emitFunctionStub(const Function* F, void *Fn,
410 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, argument
413 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86JITInfo.cpp19 #include "llvm/Function.h"
465 void *X86JITInfo::emitFunctionStub(const Function* F, void *Target,
527 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, argument
530 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
543 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());

Completed in 997 milliseconds

12345678910