Home
last modified time | relevance | path

Searched full:functiontypes (Results 1 – 25 of 31) sorted by relevance

12

/external/swiftshader/third_party/llvm-7.0/llvm/test/ObjectYAML/wasm/
Dfunction_section.yaml16 FunctionTypes: [ 1, 0 ]
31 # CHECK: FunctionTypes: [ 1, 0 ]
Dstart_section.yaml13 FunctionTypes: [ 0, 0, 0 ]
Dexport_section.yaml12 FunctionTypes: [ 0, 0 ]
Dweak_symbols.yaml12 FunctionTypes: [ 0, 0 ]
Dcode_section.yaml18 FunctionTypes:
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DWasm.h127 ArrayRef<uint32_t> functionTypes() const { return FunctionTypes; } in functionTypes() function
244 std::vector<uint32_t> FunctionTypes; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DWasmObjectWriter.cpp235 SmallVector<WasmFunctionType, 4> FunctionTypes; member in __anon46b4d5de0111::WasmObjectWriter
269 FunctionTypes.clear(); in reset()
298 void writeTypeSection(ArrayRef<WasmFunctionType> FunctionTypes);
700 ArrayRef<WasmFunctionType> FunctionTypes) { in writeTypeSection() argument
701 if (FunctionTypes.empty()) in writeTypeSection()
707 encodeULEB128(FunctionTypes.size(), W.OS); in writeTypeSection()
709 for (const WasmFunctionType &FuncTy : FunctionTypes) { in writeTypeSection()
1047 FunctionTypeIndices.insert(std::make_pair(F, FunctionTypes.size())); in registerFunctionType()
1049 FunctionTypes.push_back(F); in registerFunctionType()
1459 writeTypeSection(FunctionTypes); in writeObject()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DWasmObjectFile.cpp305 if (Functions.size() != FunctionTypes.size()) { in parseNameSection()
351 if (Functions.size() != FunctionTypes.size()) { in parseLinkingSection()
458 FunctionType = &Signatures[FunctionTypes[FuncIndex]]; in parseLinkingSectionSymtab()
756 FunctionTypes.reserve(Count); in parseFunctionSection()
763 FunctionTypes.push_back(Type); in parseFunctionSection()
853 return Index < NumImportedFunctions + FunctionTypes.size(); in isValidFunctionIndex()
905 if (FunctionCount != FunctionTypes.size()) { in parseCodeSection()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-nm/wasm/
Dexports.yaml16 FunctionTypes: [ 0 ]
Dweak-symbols.yaml22 FunctionTypes: [ 0 ]
/external/swiftshader/third_party/LLVM/lib/VMCore/
DLLVMContextImpl.h183 // TODO: Optimize FunctionTypes/AnonStructTypes!
184 std::map<std::vector<Type*>, FunctionType*> FunctionTypes; variable
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dmetafunctions.cpp236 namespace FunctionTypes { namespace
257 …ck4; // expected-error{{implicit instantiation of undefined template 'FunctionTypes::Arity<int (fl…
/external/deqp/external/vulkancts/scripts/
Dgen_framework.py863 def writeInterfaceDecl (api, filename, functionTypes, concrete): argument
867 if not function.getType() in functionTypes:
881 def writeFunctionPointers (api, filename, functionTypes): argument
884 if function.getType() in functionTypes:
893 def writeInitFunctionPointers (api, filename, functionTypes, cond = None): argument
896 if function.getType() in functionTypes and (cond == None or cond(function)):
909 def writeFuncPtrInterfaceImpl (api, filename, functionTypes, className): argument
912 if function.getType() in functionTypes and not function.isAlias:
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dwasm2yaml.cpp192 for (const auto &Func : Obj.functionTypes()) { in dump()
193 FuncSec->FunctionTypes.push_back(Func); in dump()
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/WebAssembly/
Dcomdat.ll52 ; CHECK-NEXT: FunctionTypes: [ 0, 0, 0 ]
Dglobal-ctor-dtor.ll57 ; CHECK-NEXT: FunctionTypes: [ 0, 1, 0, 1 ]
/external/pdfium/third_party/pymock/
Dmock.py161 elif not isinstance(func, FunctionTypes):
2188 if isinstance(spec, FunctionTypes):
2207 if isinstance(spec, FunctionTypes) and entry in FunctionAttributes:
2229 if not isinstance(original, FunctionTypes):
2234 if isinstance(spec, FunctionTypes):
2247 if isinstance(new, FunctionTypes):
2296 FunctionTypes = ( variable
/external/python/cpython3/Lib/unittest/
Dmock.py78 elif not isinstance(func, FunctionTypes):
325 if isinstance(value, FunctionTypes):
2206 if isinstance(spec, FunctionTypes):
2243 if not isinstance(original, FunctionTypes):
2248 if isinstance(spec, FunctionTypes):
2263 if isinstance(new, FunctionTypes):
2318 FunctionTypes = ( variable
/external/python/cpython2/Lib/test/
D_mock_backport.py88 elif not isinstance(func, FunctionTypes):
2142 if isinstance(spec, FunctionTypes):
2179 if not isinstance(original, FunctionTypes):
2184 if isinstance(spec, FunctionTypes):
2199 if isinstance(new, FunctionTypes):
2254 FunctionTypes = ( variable
/external/python/mock/mock/
Dmock.py184 elif not isinstance(func, FunctionTypes):
2322 if isinstance(spec, FunctionTypes):
2359 if not isinstance(original, FunctionTypes):
2364 if isinstance(spec, FunctionTypes):
2379 if isinstance(new, FunctionTypes):
2437 FunctionTypes = ( variable
/external/pdfium/third_party/lcms/src/
Dcmsgamma.c48 int FunctionTypes[MAX_TYPES_IN_LCMS_PLUGIN]; // The identification types member
150 memmove(fl->FunctionTypes, Plugin ->FunctionTypes, fl->nFunctions * sizeof(cmsUInt32Number)); in _cmsRegisterParametricCurvesPlugin()
169 if (abs(Type) == c ->FunctionTypes[i]) return i; in IsInSet()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DType.cpp301 auto I = pImpl->FunctionTypes.find_as(Key); in get()
304 if (I == pImpl->FunctionTypes.end()) { in get()
309 pImpl->FunctionTypes.insert(FT); in get()
/external/llvm/lib/IR/
DType.cpp295 auto I = pImpl->FunctionTypes.find_as(Key); in get()
298 if (I == pImpl->FunctionTypes.end()) { in get()
303 pImpl->FunctionTypes.insert(FT); in get()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp85 IO.mapOptional("FunctionTypes", Section.FunctionTypes); in sectionMapping()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2wasm.cpp312 encodeULEB128(Section.FunctionTypes.size(), OS); in writeSectionContent()
313 for (uint32_t FuncType : Section.FunctionTypes) { in writeSectionContent()

12