Searched defs:Function (Results 101 - 125 of 230) sorted by relevance

12345678910

/external/syslinux/efi32/include/efi/
H A Defilib.h737 UINT8 Function; member in struct:__anon23907
/external/syslinux/efi64/include/efi/
H A Defilib.h737 UINT8 Function; member in struct:__anon24087
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
H A Defilib.h737 UINT8 Function; member in struct:__anon24290
/external/v8/src/asmjs/
H A Dasm-types.h183 std::string Name() override { return "Function"; }
241 static AsmType* Function(Zone* zone, AsmType* ret) { function in class:v8::internal::wasm::AsmValueType::AsmType
/external/llvm/lib/IR/
H A DFunction.cpp1 //===-- Function.cpp - Implement the Global object classes ----------------===//
10 // This file implements the Function class for the IR library.
14 #include "llvm/IR/Function.h"
46 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
55 void Argument::setParent(Function *parent) {
62 const Function *F = getParent();
65 Function::const_arg_iterator AI = F->arg_begin();
217 // Helper Methods in Function
220 bool Function::isMaterializable() const {
224 void Function
258 Function::Function(FunctionType *Ty, LinkageTypes Linkage, const Twine &name, function in class:Function
[all...]
/external/clang/include/clang/Index/
H A DIndexSymbol.h39 Function, member in class:clang::index::SymbolKind
/external/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp104 WorkerFn = llvm::Function::Create(
266 /// \param Function OpenMP runtime function.
269 CGOpenMPRuntimeNVPTX::createNVPTXRuntimeFunction(unsigned Function) { argument
271 switch (static_cast<OpenMPRTLFunctionNVPTX>(Function)) {
288 auto *F = dyn_cast<llvm::Function>(Addr);
309 llvm::Function *&OutlinedFn, llvm::Constant *&OutlinedFnID,
365 llvm::Function *OutlinedFun = nullptr;
370 OutlinedFun = cast<llvm::Function>(OutlinedFunVal);
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc439 ValueHandle Function,
449 SymbolizedStackHolder FLoc(getSymbolizedLocation(Function));
462 ValueHandle Function) {
464 handleFunctionTypeMismatch(Data, Function, Opts);
468 FunctionTypeMismatchData *Data, ValueHandle Function) {
470 handleFunctionTypeMismatch(Data, Function, Opts);
526 static void handleCFIBadIcall(CFICheckFailData *Data, ValueHandle Function, argument
543 SymbolizedStackHolder FLoc(getSymbolizedLocation(Function));
438 handleFunctionTypeMismatch(FunctionTypeMismatchData *Data, ValueHandle Function, ReportOptions Opts) argument
461 __ubsan_handle_function_type_mismatch(FunctionTypeMismatchData *Data, ValueHandle Function) argument
467 __ubsan_handle_function_type_mismatch_abort( FunctionTypeMismatchData *Data, ValueHandle Function) argument
/external/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp74 createFunctionView(const FunctionRecord &Function, CoverageMapping &Coverage);
187 SourceCoverageView::create(Expansion.Function.Name, SourceBuffer.get(),
195 CodeCoverageTool::createFunctionView(const FunctionRecord &Function, argument
197 auto FunctionCoverage = Coverage.getCoverageForFunction(Function);
205 auto View = SourceCoverageView::create(Function.Name, SourceBuffer.get(),
227 for (auto Function : Coverage.getInstantiations(SourceFile)) {
228 auto SubViewCoverage = Coverage.getCoverageForFunction(*Function);
231 SourceCoverageView::create(Function->Name, SourceBuffer.get(), ViewOpts,
236 unsigned FileID = Function->CountedRegions.front().FileID;
238 for (const auto &CR : Function
[all...]
/external/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp19 // | Function Entry Address |
41 // | Function Entry Address |
596 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
597 if (!Function)
598 Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
604 if (!RF.BeginAddress && !Function)
611 if (Function) {
612 Expected<StringRef> FunctionNameOrErr = Function->getName();
621 Expected<uint64_t> FunctionAddressOrErr = Function->getAddress();
637 SW.printString("Function", formatSymbo
695 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset); local
[all...]
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp153 Function = nullptr;
170 Function = LLVMAddFunction(Module, "simple_function",
172 LLVMSetFunctionCallConv(Function, LLVMCCallConv);
174 LLVMBasicBlockRef entry = LLVMAppendBasicBlock(Function, "entry");
196 Function = LLVMAddFunction(Module, "simple_function",
199 LLVMBasicBlockRef entry = LLVMAppendBasicBlock(Function, "entry");
225 Function = LLVMAddFunction(Module, "getGlobal",
227 LLVMSetFunctionCallConv(Function, LLVMCCallConv);
229 LLVMBasicBlockRef Entry = LLVMAppendBasicBlock(Function, "entry");
325 LLVMValueRef Function; member in class:__anon14983::MCJITCAPITest
[all...]
/external/python/cpython2/Mac/Modules/cf/
H A Dcfsupport.py516 Function = OSErrWeakLinkFunctionGenerator variable
/external/python/cpython2/Mac/Modules/file/
H A Dfilesupport.py822 Function = OSErrFunctionGenerator variable
/external/swiftshader/third_party/LLVM/include/llvm/
H A DFunction.h1 //===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
10 // This file contains the declaration of the Function class, which represents a
35 : public SymbolTableListTraits<BasicBlock, Function> {
48 static ValueSymbolTable *getSymTab(Function *ItemParent);
54 : public SymbolTableListTraits<Argument, Function> {
65 static ValueSymbolTable *getSymTab(Function *ItemParent);
70 class Function : public GlobalValue, class in namespace:llvm
71 public ilist_node<Function> {
98 friend class SymbolTableListTraits<Function, Module>;
117 Function(cons
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCLoggingStreamer.cpp27 void LogCall(const char *Function) { argument
28 OS << Function << "\n"; local
31 void LogCall(const char *Function, const Twine &Message) { argument
32 OS << Function << ": " << Message << "\n";
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
H A DPciRootBridgeIo.h76 UINT8 Function; member in struct:__anon25030
/external/webrtc/webrtc/base/
H A Dvirtualsocketserver.h105 typedef std::vector<Point> Function; typedef in class:rtc::VirtualSocketServer
107 static Function* CreateDistribution(uint32_t mean,
188 static Function* Accumulate(Function* f);
189 static Function* Invert(Function* f);
190 static Function* Resample(Function* f,
194 static double Evaluate(Function* f, double x);
246 Function* delay_dist
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp82 enum Function enum in class:deqp::gles3::Functional::PrimitiveRestartCase
91 PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts);
122 Function m_function;
131 PrimitiveRestartCase::PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts)
700 (PrimitiveRestartCase::Function)function,
/external/giflib/
H A Dgif_lib.h56 int Function; /* The block function code */ member in struct:ExtensionBlock
257 int Function,
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
H A DPerfTest.java36 * PerfTest.Function testTheName()
118 public PerfTest.Function getTestCmd(String name);
178 public Function getTestCmd(String aname) {
187 return (Function) m.invoke(refer, new Object[] {});
197 * Subclasses of PerfTest will need to create subclasses of Function that
202 public abstract static class Function { class in class:PerfTest
272 public FunctionRunner(Function f, long loops, int id) {
284 private Function f;
390 Function testFunction = testProvider.getTestCmd(meth);
571 private long getIteration(String methName, Function f
[all...]
/external/llvm/include/llvm/IR/
H A DFunction.h1 //===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
10 // This file contains the declaration of the Function class, which represents a
41 class Function : public GlobalObject, public ilist_node<Function> { class in namespace:llvm
78 friend class SymbolTableListTraits<Function>;
98 Function(const Function&) = delete;
99 void operator=(const Function&) = delete;
101 /// Function ctor - If the (optional) Module argument is specified, the
105 Function(FunctionTyp
[all...]
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp208 assert(!Record.MappingRegions.empty() && "Function has no regions");
216 FunctionRecord Function(OrigFuncName, Record.Filenames);
223 Function.pushRegion(Region, *ExecutionCount);
225 if (Function.CountedRegions.size() != Record.MappingRegions.size()) {
230 Coverage->Functions.push_back(std::move(Function));
265 void insert(const FunctionRecord &Function, unsigned FileID) { argument
266 auto I = Function.CountedRegions.begin(), E = Function.CountedRegions.end();
271 Functions.push_back(&Function);
415 for (const auto &Function
424 gatherFileIDs(StringRef SourceFile, const FunctionRecord &Function) argument
434 findMainViewFileID(const FunctionRecord &Function) argument
447 findMainViewFileID(StringRef SourceFile, const FunctionRecord &Function) argument
501 getCoverageForFunction(const FunctionRecord &Function) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/osmesa/
H A Dosmesa.c968 OSMESAproc Function; member in struct:name_function
995 return functions[i].Function;
/external/mesa3d/src/mesa/drivers/osmesa/
H A Dosmesa.c1222 OSMESAproc Function; member in struct:name_function
1249 return functions[i].Function;
/external/python/cpython2/Lib/compiler/
H A Dast.py546 class Function(Node): class in inherits:Node
583 return "Function(%s, %s, %s, %s, %s, %s, %s)" % (repr(self.decorators), repr(self.name), repr(self.argnames), repr(self.defaults), repr(self.flags), repr(self.doc), repr(self.code))

Completed in 7166 milliseconds

12345678910