/external/swiftshader/third_party/LLVM/lib/Target/ |
Mangler.cpp | 100 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix 116 const char *Prefix = MAI.getPrivateGlobalPrefix(); 117 OutName.append(Prefix, Prefix+strlen(Prefix)); 119 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix(); 120 OutName.append(Prefix, Prefix+strlen(Prefix)); 123 const char *Prefix = MAI.getGlobalPrefix() [all...] |
/external/clang/lib/Format/ |
BreakableToken.cpp | 138 return StartColumn + Prefix.size() + Postfix.size() + 140 StartColumn + Prefix.size(), 146 StringRef Prefix, StringRef Postfix, bool InPPDirective, 149 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix) { 152 Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size()); 157 StringRef Prefix, StringRef Postfix, bool InPPDirective, 159 : BreakableSingleLineToken(Tok, IndentLevel, StartColumn, Prefix, Postfix, 166 StartColumn + Prefix.size() + Postfix.size() [all...] |
/external/clang/lib/AST/ |
NestedNameSpecifier.cpp | 47 NestedNameSpecifier *Prefix, IdentifierInfo *II) { 49 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent"); 52 Mockup.Prefix.setPointer(Prefix); 53 Mockup.Prefix.setInt(StoredIdentifier); 60 NestedNameSpecifier *Prefix, 63 assert((!Prefix || 64 (Prefix->getAsType() == nullptr & [all...] |
/external/clang/include/clang/AST/ |
NestedNameSpecifier.h | 60 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix; 68 /// specifier as encoded within the prefix. 96 : Prefix(nullptr, StoredIdentifier), Specifier(nullptr) {} 101 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix), 113 /// \brief Builds a specifier combining a prefix and an identifier. 115 /// The prefix must be dependent, since nested name specifiers 119 NestedNameSpecifier *Prefix, 124 NestedNameSpecifier *Prefix, 129 NestedNameSpecifier *Prefix, [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
CVRecord.h | 70 const RecordPrefix *Prefix = 73 size_t RealLen = Prefix->RecordLen + 2; 80 Record R(static_cast<decltype(Record::Type)>((uint16_t)Prefix->RecordKind), 92 const RecordPrefix *Prefix = nullptr; 96 if (auto EC = Reader.readObject(Prefix)) 98 if (Prefix->RecordLen < 2) 100 Kind K = static_cast<Kind>(uint16_t(Prefix->RecordKind)); 104 if (auto EC = Reader.readBytes(RawData, Prefix->RecordLen + sizeof(uint16_t)))
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfStringPool.cpp | 18 StringRef Prefix) 19 : Pool(A), Prefix(Prefix), 29 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Prefix) : nullptr;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
GlobPattern.h | 43 Optional<StringRef> Prefix;
|
SpecialCaseList.h | 20 // prefix:wildcard_expression[=category] 22 // Definitions of "prefix" and "category" are sanitizer-specific. For example, 86 /// @Prefix:<E>=@Category 89 bool inSection(StringRef Section, StringRef Prefix, StringRef Query, 95 /// @Prefix:<E>=@Category 100 unsigned inSectionBlame(StringRef Section, StringRef Prefix, StringRef Query, 146 // Helper method for derived classes to search by Prefix, Query, and Category 148 unsigned inSectionBlame(const SectionEntries &Entries, StringRef Prefix,
|
/external/swiftshader/third_party/subzero/src/ |
IceTimerTree.cpp | 196 TTindex Prefix = StackTop; 197 while (Prefix) { 198 Nodes[Prefix].Time += Delta; 200 if (UpdateCounts && Prefix == StackTop) 201 ++Nodes[Prefix].UpdateCount; 202 TTindex Next = Nodes[Prefix].Parent; 203 assert(Next < Prefix); 204 Prefix = Next; 276 TTindex Prefix = i; 278 while (Prefix) { [all...] |
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
Other.cpp | 60 #define TestImpl(Prefix) \ 63 __ emitSegmentOverride(Prefix); \ 64 ASSERT_EQ(ByteCount, codeBytesSize()) << Prefix; \ 65 verifyBytes<ByteCount>(codeBytes(), Prefix); \
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
Mangler.cpp | 28 Private, ///< Emit "private" prefix before each symbol. 29 LinkerPrivate ///< Emit "linker private" prefix before each symbol. 35 const DataLayout &DL, char Prefix) { 48 Prefix = '\0'; 55 if (Prefix != '\0') 56 OS << Prefix; 65 char Prefix = DL.getGlobalPrefix(); 66 return getNameWithPrefixImpl(OS, GVName, PrefixTy, DL, Prefix); 77 char Prefix = DL.getGlobalPrefix(); 78 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix); [all...] |
/external/tensorflow/tensorflow/core/util/tensor_bundle/ |
tensor_bundle_test.cc | 38 string Prefix(const string& prefix) { 39 return strings::StrCat(testing::TmpDir(), "/", prefix); 42 string TestdataPrefix(const string& prefix) { 44 "/core/util/tensor_bundle/testdata/", prefix); 122 Status FlipEndiannessBit(const string& prefix) { 124 const string metadata_tmp_path = Prefix("some_tmp_path"); 131 const string filename = MetaFilename(prefix); 161 TF_RETURN_IF_ERROR(env->RenameFile(metadata_tmp_path, MetaFilename(prefix))); 168 BundleWriter writer(Env::Default(), Prefix("foo")) [all...] |
/external/clang/lib/Lex/ |
HeaderMap.cpp | 143 Result.Prefix = getEndianAdjustedWord(BucketPtr->Prefix); 190 StringRef Prefix = getStringOrInvalid(B.Prefix); 192 llvm::dbgs() << " " << i << ". " << Key << " -> '" << Prefix << "' '" 232 Optional<StringRef> Prefix = getString(B.Prefix); 236 if (LLVM_LIKELY(Prefix && Suffix)) { 237 DestPath.append(Prefix->begin(), Prefix->end()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/utils/FileCheck/ |
FileCheck.cpp | 46 "check-prefix", 47 cl::desc("Prefix to use from check file (defaults to 'CHECK')")); 52 "Alias for -check-prefix permitting multiple comma separated values")); 65 static cl::list<std::string> GlobalDefines("D", cl::Prefix, 168 bool ParsePattern(StringRef PatternStr, StringRef Prefix, SourceMgr &SM, 196 /// \p Prefix provides which prefix is being matched, \p SM provides the 200 bool Pattern::ParsePattern(StringRef PatternStr, StringRef Prefix, 216 "found empty check string with prefix '" + Prefix + ":'") [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/ |
Ip6Icmp.c | 456 Retrieve the Prefix address according to the PrefixLength by clear the useless
459 @param[in] PrefixLength The prefix length of the prefix.
460 @param[in, out] Prefix On input, points to the original prefix address
468 IN OUT EFI_IPv6_ADDRESS *Prefix
476 ASSERT ((Prefix != NULL) && (PrefixLength < IP6_PREFIX_MAX));
479 ZeroMem (Prefix, sizeof (EFI_IPv6_ADDRESS));
489 Value = Prefix->Addr[Byte];
492 ZeroMem (Prefix->Addr + Byte, 16 - Byte); [all...] |
/external/clang/lib/Analysis/ |
CocoaConventions.cpp | 25 bool cocoa::isRefType(QualType RetTy, StringRef Prefix, 30 if (TDName.startswith(Prefix) && TDName.endswith("Ref")) 46 // Does the name start with the prefix? 47 return Name.startswith(Prefix);
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
Intercept.cpp | 140 std::string Prefix = std::string(Name.begin(), Name.end()-9); 141 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false)) 143 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/ |
Intercept.cpp | 143 std::string Prefix = std::string(Name.begin(), Name.end()-9); 144 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false)) 146 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
|
/external/llvm/tools/bugpoint/ |
ListReducer.h | 33 KeepPrefix, // The prefix alone satisfies the predicate 42 // the prefix anyway, it can. 44 virtual TestResult doTest(std::vector<ElTy> &Prefix, 121 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid); 124 switch (doTest(Prefix, Suffix, Error)) { 126 // The property still holds. We can just drop the prefix elements, and 135 // The predicate still holds, shorten the list to the prefix elements. 136 TheList.swap(Prefix);
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
ListReducer.h | 33 KeepPrefix, // The prefix alone satisfies the predicate
42 // the prefix anyway, it can.
44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
116 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
119 switch (doTest(Prefix, Suffix, Error)) {
121 // The property still holds. We can just drop the prefix elements, and
130 // The predicate still holds, shorten the list to the prefix elements.
131 TheList.swap(Prefix);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
DwarfStringPool.cpp | 23 StringRef Prefix) 24 : Pool(A), Prefix(Prefix), 34 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Prefix) : nullptr;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
ContinuationRecordBuilder.cpp | 14 SegmentInjection(TypeLeafKind Kind) { Prefix.RecordKind = Kind; } 17 RecordPrefix Prefix; 73 // Seed the first trecord with an appropriate record prefix. 74 RecordPrefix Prefix; 75 Prefix.RecordLen = 0; 76 Prefix.RecordKind = Type.Type; 77 cantFail(SegmentWriter.writeObject(Prefix)); 165 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(Data.data()); 166 assert(Prefix->RecordKind == Type.Type); 167 Prefix->RecordLen = Data.size() - sizeof(RecordPrefix::RecordLen) [all...] |
TypeTableCollection.cpp | 41 const RecordPrefix *Prefix = 43 TypeLeafKind Kind = static_cast<TypeLeafKind>(uint16_t(Prefix->RecordKind));
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/ |
ListReducer.h | 33 KeepPrefix // The prefix alone satisfies the predicate 40 /// list still satisfies the property, but if it is going to check the prefix 42 virtual Expected<TestResult> doTest(std::vector<ElTy> &Prefix, 121 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin() + Mid); 124 Expected<TestResult> Result = doTest(Prefix, Suffix); 129 // The property still holds. We can just drop the prefix elements, and 138 // The predicate still holds, shorten the list to the prefix elements. 139 TheList.swap(Prefix);
|
/external/llvm/tools/llvm-split/ |
llvm-split.cpp | 36 static cl::opt<unsigned> NumOutputs("j", cl::Prefix, cl::init(2), 40 PreserveLocals("preserve-locals", cl::Prefix, cl::init(false),
|