HomeSort by relevance Sort by last modified time
    Searched refs:Suffix (Results 51 - 75 of 221) sorted by null

1 23 4 5 6 7 8 9

  /external/clang/unittests/Driver/
MultilibTest.cpp 330 std::string Suffix;
332 Suffix += "/el";
334 Suffix += "/sf";
336 ASSERT_EQ(Selection.gccSuffix(), Suffix) << "Selection picked " << Selection
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
Miscompilation.cpp 54 std::vector<std::string> &Suffix) override;
63 std::vector<std::string> &Suffix) {
64 // First, run the program with just the Suffix passes. If it is still broken
66 outs() << "Checking to see if '" << getPassesString(Suffix)
70 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false /*delete*/,
74 BD.setPassesToRun(Suffix);
89 if (Suffix.empty()) {
135 // Ok, so now we know that the prefix passes work, try running the suffix
147 // Don't check if there are no passes in the suffix.
148 if (Suffix.empty()
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
UefiShellDebug1CommandsLib.c 409 UINTN Suffix;
412 Suffix = 0;
415 FileNameTmp = CatSPrint (NULL, L"NewFile%d.%s", Suffix, Extension);
428 Suffix++;
429 } while (Suffix != 0);
  /external/llvm/lib/Support/
StringRef.cpp 66 /// Check if this string ends with the given \p Suffix, ignoring case.
67 bool StringRef::endswith_lower(StringRef Suffix) const {
68 return Length >= Suffix.Length &&
69 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
Path.cpp 775 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD,
777 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%.";
778 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath,
782 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
785 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File);
788 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
791 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
Build_IFWI.bat 169 echo Usage: Build_IFWI.bat [options] PlatformType BuildTarget [IFWI Suffix]
178 echo IFWI Suffix: Suffix to append to end of IFWI filename (default: MM_DD_YYYY)
  /external/clang/unittests/Lex/
HeaderMapTest.cpp 75 void addBucket(unsigned Hash, unsigned Key, unsigned Prefix, unsigned Suffix) {
82 File.Buckets[I].Suffix = Suffix;
217 // The string for "c" runs to the end of File. Check that the suffix
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
ARMTargetStreamer.cpp 52 void ARMTargetStreamer::emitInst(uint32_t Inst, char Suffix) {
57 switch (Suffix) {
69 Size = (Suffix == 'n' ? 2 : 4);
82 llvm_unreachable("Invalid Suffix");
ARMELFStreamer.cpp 100 void emitInst(uint32_t Inst, char Suffix = '\0') override;
255 void ARMTargetAsmStreamer::emitInst(uint32_t Inst, char Suffix) {
257 if (Suffix)
258 OS << "." << Suffix;
411 void emitInst(uint32_t Inst, char Suffix = '\0') override;
493 void emitInst(uint32_t Inst, char Suffix) {
498 switch (Suffix) {
512 Size = (Suffix == 'n' ? 2 : 4);
527 llvm_unreachable("Invalid Suffix");
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/
TargetLoweringObjectFile.h 128 /// base, with the specified suffix.
130 StringRef Suffix,
  /external/swiftshader/third_party/subzero/bloat/
bloat.py 103 class Suffix:
104 def __init__(self, suffix, replacement):
105 self.pattern = '^(.*)' + suffix + '(.*)$'
110 """Pre-compile suffix regular expressions."""
113 Suffix('\.part\.([0-9]+)', 'part'),
114 Suffix('\.constprop\.([0-9]+)', 'constprop'),
115 Suffix('\.isra\.([0-9]+)', 'isra'),
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 129 StringRef Suffix;
138 Suffix = "$non_lazy_ptr";
142 if (!Suffix.empty())
151 assert(Suffix.empty());
155 Name += Suffix;
191 // These affect the name of the symbol, not any suffix.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86MCInstLower.cpp 128 StringRef Suffix;
137 Suffix = "$non_lazy_ptr";
141 if (!Suffix.empty())
150 assert(Suffix.empty());
154 Name += Suffix;
191 // These affect the name of the symbol, not any suffix.
    [all...]
  /external/giflib/
dgif_lib.c 806 GifByteType *Stack, *Suffix;
812 Suffix = Private->Suffix;
855 * until the prefix is a pixel, while pushing the suffix
863 * prefix code is last code and the suffix char is
866 Suffix[Private->RunningCode - 2] =
871 Suffix[Private->RunningCode - 2] =
885 Stack[StackPtr++] = Suffix[CrntPrefix];
905 * prefix code is last code and the suffix char is
907 Suffix[Private->RunningCode - 2]
    [all...]
  /external/lzma/C/
Ppmd7Dec.c 150 if (!p->MinContext->Suffix)
152 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
Ppmd7Enc.c 149 if (!p->MinContext->Suffix)
151 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 630 const char *Suffix;
632 Suffix = "";
634 Suffix = " (framework directory)";
637 Suffix = " (headermap)";
639 llvm::errs() << " " << Name << Suffix << "\n";
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
StringRef.cpp 52 /// Check if this string ends with the given \p Suffix, ignoring case.
53 bool StringRef::endswith_lower(StringRef Suffix) const {
54 return Length >= Suffix.Length &&
55 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
Path.cpp 795 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD,
797 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%.";
798 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath,
802 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
805 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File);
808 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
811 auto EC = createTemporaryFile(Prefix, Suffix, FD, ResultPath);
837 getPotentiallyUniqueTempFileName(const Twine &Prefix, StringRef Suffix,
840 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
StringRef.cpp 66 /// Check if this string ends with the given \p Suffix, ignoring case.
67 bool StringRef::endswith_lower(StringRef Suffix) const {
68 return Length >= Suffix.Length &&
69 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
Path.cpp 777 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD,
779 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%.";
780 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath,
784 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
787 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File);
790 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
793 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 87 void emitInst(uint32_t Inst, char Suffix = '\0') override;
226 void ARMTargetAsmStreamer::emitInst(uint32_t Inst, char Suffix) {
228 if (Suffix)
229 OS << "." << Suffix;
382 void emitInst(uint32_t Inst, char Suffix = '\0') override;
464 void emitInst(uint32_t Inst, char Suffix) {
469 switch (Suffix) {
483 Size = (Suffix == 'n' ? 2 : 4);
496 llvm_unreachable("Invalid Suffix");
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLowering.cpp     [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 318 bool consumeNameSuffix(StringRef &FullName, StringRef Suffix) {
320 if (!Name.endswith(Suffix))
322 Name = Name.drop_back(Suffix.size());
369 /// Consumes the name suffix from each pattern in the set and removes the ones
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
DataMov.cpp 21 #define MovRegImm(Reg, Suffix, Size) \
27 __ mov(IceType_i##Size, Encoded_GPR_##Reg##Suffix(), Immediate(Value)); \
32 ASSERT_EQ(Value, test.Reg##Suffix()) << TestString; \
156 #define TestRegReg(Dst, Src, Suffix, Size) \
159 "(" #Dst ", " #Src ", " #Suffix ", " #Size ")"; \
175 ASSERT_EQ(Value, test.Dst##Suffix()) << TestString; \
217 #define TestRegAddr(Dst, Suffix, Size) \
220 "(" #Dst ", Addr, " #Suffix ", " #Size ")"; \
235 ASSERT_EQ(Value, test.Dst##Suffix()) << TestString; \
296 #define TestImplRegReg(Dst, Src, Suffix, Size)
    [all...]

Completed in 2370 milliseconds

1 23 4 5 6 7 8 9