/external/swiftshader/third_party/llvm-7.0/llvm/test/ObjectYAML/wasm/ |
D | function_section.yaml | 16 FunctionTypes: [ 1, 0 ] 31 # CHECK: FunctionTypes: [ 1, 0 ]
|
D | start_section.yaml | 13 FunctionTypes: [ 0, 0, 0 ]
|
D | export_section.yaml | 12 FunctionTypes: [ 0, 0 ]
|
D | weak_symbols.yaml | 12 FunctionTypes: [ 0, 0 ]
|
D | code_section.yaml | 18 FunctionTypes:
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | Wasm.h | 127 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/ |
D | WasmObjectWriter.cpp | 235 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/ |
D | WasmObjectFile.cpp | 305 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/ |
D | exports.yaml | 16 FunctionTypes: [ 0 ]
|
D | weak-symbols.yaml | 22 FunctionTypes: [ 0 ]
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | LLVMContextImpl.h | 183 // TODO: Optimize FunctionTypes/AnonStructTypes! 184 std::map<std::vector<Type*>, FunctionType*> FunctionTypes; variable
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | metafunctions.cpp | 236 namespace FunctionTypes { namespace 257 …ck4; // expected-error{{implicit instantiation of undefined template 'FunctionTypes::Arity<int (fl…
|
/external/deqp/external/vulkancts/scripts/ |
D | gen_framework.py | 863 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/ |
D | wasm2yaml.cpp | 192 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/ |
D | comdat.ll | 52 ; CHECK-NEXT: FunctionTypes: [ 0, 0, 0 ]
|
D | global-ctor-dtor.ll | 57 ; CHECK-NEXT: FunctionTypes: [ 0, 1, 0, 1 ]
|
/external/pdfium/third_party/pymock/ |
D | mock.py | 161 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/ |
D | mock.py | 78 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.py | 88 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/ |
D | mock.py | 184 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/ |
D | cmsgamma.c | 48 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/ |
D | Type.cpp | 301 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/ |
D | Type.cpp | 295 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/ |
D | WasmYAML.cpp | 85 IO.mapOptional("FunctionTypes", Section.FunctionTypes); in sectionMapping()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/ |
D | yaml2wasm.cpp | 312 encodeULEB128(Section.FunctionTypes.size(), OS); in writeSectionContent() 313 for (uint32_t FuncType : Section.FunctionTypes) { in writeSectionContent()
|