HomeSort by relevance Sort by last modified time
    Searched defs:Suffix (Results 1 - 20 of 20) sorted by null

  /external/llvm/utils/llvm-lit/
Makefile 14 # llvm-lit needs suffix.py for multiprocess to find a main module.
16 Suffix := .py
19 all:: $(ToolDir)/llvm-lit$(Suffix)
21 $(ToolDir)/llvm-lit$(Suffix): llvm-lit.in Makefile $(ToolDir)/.dir
  /external/llvm/lib/TableGen/
TableGenBackend.cpp 24 StringRef Suffix) {
26 assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) &&
29 const size_t e = MAX_LINE_LEN - Suffix.size();
32 OS << Suffix << '\n';
41 StringRef Suffix(" *|");
43 size_t PSLen = Suffix.size() + Prefix.size();
47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix);
50 printLine(OS, Prefix, ' ', Suffix);
52 Suffix);
53 printLine(OS, Prefix, ' ', Suffix);
    [all...]
  /external/chromium_org/net/http/
http_byte_range.cc 44 HttpByteRange HttpByteRange::Suffix(int64 suffix_length) {
  /external/clang/unittests/Driver/
MultilibTest.cpp 334 std::string Suffix;
336 Suffix += "/el";
338 Suffix += "/sf";
340 ASSERT_EQ(Selection.gccSuffix(), Suffix) << "Selection picked " << Selection
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 44 StringRef Suffix;
46 Suffix = "$stub";
48 Suffix = "$non_lazy_ptr";
50 if (!Suffix.empty())
65 Name += Suffix;
91 // then add the suffix.
  /external/giflib/
gif_lib_private.h 51 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */
dgif_lib.c 784 GifByteType *Stack, *Suffix;
790 Suffix = Private->Suffix;
833 * until the prefix is a pixel, while pushing the suffix
839 * prefix code is last code and the suffix char is
843 Suffix[Private->RunningCode - 2] =
860 Stack[StackPtr++] = Suffix[CrntPrefix];
880 * prefix code is last code and the suffix char is
882 Suffix[Private->RunningCode - 2] =
885 Suffix[Private->RunningCode - 2]
    [all...]
  /external/clang/lib/Driver/
ToolChain.cpp 153 StringRef Suffix = A->getValue();
157 if (Suffix.empty() || Suffix == "ld")
161 LinkerName.append(Suffix);
246 StringRef Suffix = Triple.isOSBinFormatMachO()
249 bool ThumbDefault = Suffix.startswith("v6m") || Suffix.startswith("v7m") ||
250 Suffix.startswith("v7em") ||
251 (Suffix.startswith("v7") && getTriple().isOSBinFormatMachO());
270 Triple.setArchName(ArchName + Suffix.str())
    [all...]
Driver.cpp 778 StringRef Suffix(I->gccSuffix());
779 assert(Suffix.front() == '/');
780 llvm::outs() << Suffix.substr(1) << "\n";
    [all...]
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 667 const char *Suffix;
669 Suffix = "";
671 Suffix = " (framework directory)";
674 Suffix = " (headermap)";
676 llvm::errs() << " " << Name << Suffix << "\n";
  /external/clang/lib/Lex/
HeaderMap.cpp 41 uint32_t Suffix; // Offset (into strings) of value suffix.
149 Result.Suffix = 0;
156 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
195 const char *Suffix = getString(B.Suffix);
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
235 StringRef Suffix = getString(B.Suffix);
    [all...]
  /external/clang/tools/driver/
driver.cpp 210 // "x86_64-linux-clang" as interpreted as suffix "clang" with
214 const char *Suffix;
244 if (ProgNameRef.endswith(suffixes[i].Suffix)) {
257 ProgNameRef.size() - strlen(suffixes[i].Suffix));
  /external/lzma/C/
Ppmd7.h 37 CPpmd7_Context_Ref Suffix;
90 p->NS2BSIndx[Ppmd7_GetContext(p, p->MinContext->Suffix)->NumStats - 1] + \
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 79 StringRef Suffix;
87 Suffix = "$stub";
92 Suffix = "$non_lazy_ptr";
96 if (!Suffix.empty())
111 Name += Suffix;
178 // These affect the name of the symbol, not any suffix.
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 478 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
482 sys::fs::createUniqueFile(Bitcode + "-%%%%%%%" + Suffix, UniqueFile);
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
NeonEmitter.cpp 61 ClassI, // generic integer instruction, e.g., "i8" suffix
62 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
63 ClassW, // width-specific instruction, e.g., "8" suffix
66 // but we need to not emit any suffix for in our
1078 char Suffix = '\0';
1081 case 8: Suffix = 'b'; break;
1082 case 16: Suffix = 'h'; break;
1083 case 32: Suffix = 's'; break;
1084 case 64: Suffix = 'd'; break;
1085 default: llvm_unreachable("Bad suffix!");
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp     [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
lcms2_internal.h 685 char Prefix[33]; // Prefix and suffix are defined to be 32 characters at most
686 char Suffix[33];
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]

Completed in 867 milliseconds