HomeSort by relevance Sort by last modified time
    Searched refs:Prefix (Results 101 - 125 of 376) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringRef.h 131 // Check the prefix for a mismatch.
196 /// startswith - Check if this string starts with the given \arg Prefix.
197 bool startswith(StringRef Prefix) const {
198 return Length >= Prefix.Length &&
199 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
AccelTable.h 179 void finalize(AsmPrinter *Asm, StringRef Prefix);
298 StringRef Prefix, const MCSymbol *SecBegin,
306 StringRef Prefix, const MCSymbol *SecBegin) {
308 emitAppleAccelTableImpl(Asm, Contents, Prefix, SecBegin, DataT::Atoms);
  /external/llvm/lib/Option/
OptTable.cpp 28 // beginning (thus options precede any other options which prefix them).
40 if (a == '\0') // A is a prefix of B.
42 if (b == '\0') // B is a prefix of A.
139 // Build prefix chars.
142 StringRef Prefix = I->getKey();
143 for (StringRef::const_iterator C = Prefix.begin(), CE = Prefix.end();
176 StringRef Prefix(*Pre);
177 if (Str.startswith(Prefix)) {
178 StringRef Rest = Str.substr(Prefix.size())
    [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 52 TestResult doTest(std::vector<std::string> &Prefix,
62 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix,
66 // with JUST the kept passes, discard the prefix passes.
96 if (Prefix.empty()) return NoFailure;
98 // Next, see if the program is broken if we run the "prefix" passes first,
100 outs() << "Checking to see if '" << getPassesString(Prefix)
103 // If it is not broken with the kept passes, it's possible that the prefix
105 // WORKS after the prefix passes, but then fails if running the prefix AND
107 // prefix passes, then discard the prefix passes
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
Miscompilation.cpp 51 virtual TestResult doTest(std::vector<std::string> &Prefix,
61 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix,
65 // with JUST the kept passes, discard the prefix passes.
95 if (Prefix.empty()) return NoFailure;
97 // Next, see if the program is broken if we run the "prefix" passes first,
99 outs() << "Checking to see if '" << getPassesString(Prefix)
102 // If it is not broken with the kept passes, it's possible that the prefix
104 // WORKS after the prefix passes, but then fails if running the prefix AND
106 // prefix passes, then discard the prefix passes.
    [all...]
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 656 OperandMatchResultTy parseIntWithPrefix(const char *Prefix, int64_t &Int);
657 OperandMatchResultTy parseIntWithPrefix(const char *Prefix,
663 OperandMatchResultTy parseStringWithPrefix(StringRef Prefix, StringRef &Value);
722 OperandMatchResultTy parseSDWASel(OperandVector &Operands, StringRef Prefix,
    [all...]
  /external/pdfium/third_party/lcms/src/
cmsnamed.c 532 cmsNAMEDCOLORLIST* CMSEXPORT cmsAllocNamedColorList(cmsContext ContextID, cmsUInt32Number n, cmsUInt32Number ColorantCount, const char* Prefix, const char* Suffix)
549 strncpy(v ->Prefix, Prefix, sizeof(v ->Prefix)-1);
551 v->Prefix[32] = v->Suffix[32] = 0;
572 NewNC= cmsAllocNamedColorList(v ->ContextID, v -> nColors, v ->ColorantCount, v ->Prefix, v ->Suffix);
583 memmove(NewNC ->Prefix, v ->Prefix, sizeof(v ->Prefix));
635 char* Prefix,
    [all...]
  /external/libexif/
libexif.spec 12 Prefix: %{_prefix}
  /external/llvm/include/llvm/ADT/
SmallString.h 129 /// startswith - Check if this string starts with the given \p Prefix.
130 bool startswith(StringRef Prefix) const {
131 return str().startswith(Prefix);
StringRef.h 165 // Check the prefix for a mismatch.
230 /// Check if this string starts with the given \p Prefix.
232 bool startswith(StringRef Prefix) const {
233 return Length >= Prefix.Length &&
234 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
237 /// Check if this string starts with the given \p Prefix, ignoring case.
238 bool startswith_lower(StringRef Prefix) const;
  /external/lzma/CPP/7zip/UI/Common/
Update.h 28 UString Prefix; // path(folder) prefix including slash
40 UString GetPathWithoutExt() const { return Prefix + Name; }
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
SmallString.h 129 /// startswith - Check if this string starts with the given \p Prefix.
130 bool startswith(StringRef Prefix) const {
131 return str().startswith(Prefix);
StringRef.h 185 // Check the prefix for a mismatch.
264 /// Check if this string starts with the given \p Prefix.
267 bool startswith(StringRef Prefix) const {
268 return Length >= Prefix.Length &&
269 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
272 /// Check if this string starts with the given \p Prefix, ignoring case.
274 bool startswith_lower(StringRef Prefix) const;
625 /// Return the longest prefix of 'this' such that every character
626 /// in the prefix satisfies the given predicate
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallString.h 129 /// startswith - Check if this string starts with the given \p Prefix.
130 bool startswith(StringRef Prefix) const {
131 return str().startswith(Prefix);
StringRef.h 182 // Check the prefix for a mismatch.
261 /// Check if this string starts with the given \p Prefix.
264 bool startswith(StringRef Prefix) const {
265 return Length >= Prefix.Length &&
266 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
269 /// Check if this string starts with the given \p Prefix, ignoring case.
271 bool startswith_lower(StringRef Prefix) const;
614 /// Return the longest prefix of 'this' such that every character
615 /// in the prefix satisfies the given predicate
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Format.h 166 bool Prefix)
168 HexPrefix(Prefix) {}
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Nd.h 86 EFI_IPv6_ADDRESS Prefix;
151 EFI_IPv6_ADDRESS Prefix;
175 of prefix entries is also returned.
178 @param[out] PrefixCount The number of returned prefix entries.
181 @retval EFI_SUCCESS The prefix table successfully built.
182 @retval EFI_OUT_OF_RESOURCES Failed to allocate the memory for the prefix table.
311 Allocate and initialize a IP6 prefix list entry.
314 @param[in] OnLinkOrAuto If TRUE, the entry is created for the on link prefix list.
315 Otherwise, it is created for the autoconfiguration prefix list.
316 @param[in] ValidLifetime The length of time in seconds that the prefix
    [all...]
  /external/llvm/lib/TableGen/
Main.cpp 46 cl::value_desc("directory"), cl::Prefix);
  /external/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 330 StringRef Prefix(".sbss");
331 SmallString<128> Name(Prefix);
374 StringRef Prefix(".sdata");
375 SmallString<128> Name(Prefix);
  /external/swiftshader/third_party/LLVM/lib/TableGen/
Main.cpp 45 cl::value_desc("directory"), cl::Prefix);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86RecognizableInstr.h 42 /// The prefix field from the record
43 uint8_t Prefix;
61 /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set
136 /// mandatory OpSize prefix.
138 /// prefix. If it does, 32-bit register operands stay
141 /// prefix. If it does not, then 16-bit register
155 /// prefix. If it does not, then 16-bit immediate
  /external/clang/lib/Basic/
Warnings.cpp 36 diag::Flavor Flavor, StringRef Prefix,
40 << (Flavor == diag::Flavor::WarningOrError ? 0 : 1) << (Prefix.str() += Opt)
41 << !Suggestion.empty() << (Prefix.str() += Suggestion);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/
Print.c 30 '+' - Prefix a sign
31 ' ' - Prefix a blank
33 '0' - Prefix for width with zeros
43 'X' - argument is a UINTN hex number, prefix '0'
440 CHAR8 Prefix;
460 Prefix = '0';
462 Prefix = ' ';
464 Prefix = 0x00;
467 *(TempStr++) = Prefix;
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
PrintLib.c     [all...]
  /external/clang/lib/Driver/
ToolChain.cpp 141 // If there is a match, the function tries to identify a target as prefix.
143 // prefix "x86_64-linux". If such a target prefix is found, it may be
177 // Infer target from the prefix.
178 StringRef Prefix(ProgName);
179 Prefix = Prefix.slice(0, LastComponent);
182 if (llvm::TargetRegistry::lookupTarget(Prefix, IgnoredError)) {
183 Target = Prefix;
295 const char *Prefix = IsITANMSVCWindows ? "" : "lib"
    [all...]

Completed in 1635 milliseconds

1 2 3 45 6 7 8 91011>>