HomeSort by relevance Sort by last modified time
    Searched refs:Suffix (Results 26 - 50 of 64) sorted by null

12 3

  /external/lzma/C/
Ppmd7Dec.c 146 if (!p->MinContext->Suffix)
148 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
Ppmd7Enc.c 147 if (!p->MinContext->Suffix)
149 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
Ppmd7.c 30 #define SUFFIX(ctx) CTX((ctx)->Suffix)
300 p->MinContext->Suffix = 0;
352 while (c->Suffix)
356 c = SUFFIX(c);
405 c1->Suffix = REF(c);
427 if (p->FoundState->Freq < MAX_FREQ / 4 && p->MinContext->Suffix != 0)
429 c = SUFFIX(p->MinContext);
503 for (c = p->MaxContext; c != p->MinContext; c = SUFFIX(c))
641 (nonMasked < (unsigned)SUFFIX(p->MinContext)->NumStats - p->MinContext->NumStats) +
    [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/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 139 void emitInst(uint32_t Inst, char Suffix = '\0') override;
269 void ARMTargetAsmStreamer::emitInst(uint32_t Inst, char Suffix) {
271 if (Suffix)
272 OS << "." << Suffix;
413 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);
525 llvm_unreachable("Invalid Suffix");
    [all...]
  /external/giflib/
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/llvm/lib/Support/
Path.cpp 744 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD,
746 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%.";
747 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath,
751 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
754 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File);
757 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
760 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
  /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/clang/include/clang/Lex/
LiteralSupport.h 66 uint8_t MicrosoftInteger; // Microsoft suffix extension i8, i16, i32, or i64.
87 static bool isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix);
175 assert(!UDSuffixBuf.empty() && "no ud-suffix");
240 /// Get the index of a token containing a ud-suffix.
242 assert(!UDSuffixBuf.empty() && "no ud-suffix");
245 /// Get the spelling offset of the first byte of the ud-suffix.
247 assert(!UDSuffixBuf.empty() && "no ud-suffix");
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 63 std::vector<std::string> &Suffix,
85 << getPassesString(Suffix) << ": ";
87 if (BD.runPasses(BD.getProgram(), Suffix)) {
88 delete OrigProgram; // The suffix crashes alone...
  /external/clang/include/clang/Driver/
Driver.h 379 /// as part of compilation; the file will have the given prefix and suffix.
382 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
  /external/clang/lib/Lex/
LiteralSupport.cpp 455 /// decimal-constant integer-suffix
456 /// octal-constant integer-suffix
457 /// hexadecimal-constant integer-suffix
458 /// binary-literal integer-suffix [GNU, C++1y]
460 /// decimal-literal ud-suffix
461 /// octal-literal ud-suffix
462 /// hexadecimal-literal ud-suffix
463 /// binary-literal ud-suffix [GNU, C++1y]
479 /// integer-suffix:
480 /// unsigned-suffix [long-suffix
    [all...]
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 305 /// base, with the specified suffix.
307 StringRef Suffix) const;
  /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/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
  /external/clang/lib/Driver/
Driver.cpp 778 StringRef Suffix(I->gccSuffix());
779 assert(Suffix.front() == '/');
780 llvm::outs() << Suffix.substr(1) << "\n";
    [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 562 /// The filename is of the form prefix-random_chars.suffix. Since the directory
563 /// is not know to the caller, Prefix and Suffix cannot have path separators.
568 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
573 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
  /external/ppp/pppd/plugins/radius/etc/
dictionary 116 ATTRIBUTE Suffix 1004 string
  /external/chromium_org/net/http/
partial_data.cc 151 HttpByteRange::Suffix(end).GetHeaderValue());
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp     [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/chromium_org/content/browser/fileapi/
blob_url_request_job_unittest.cc 383 net::HttpByteRange::Suffix(10).GetHeaderValue());
  /external/llvm/include/llvm/MC/
MCStreamer.h 141 virtual void emitInst(uint32_t Inst, char Suffix = '\0');

Completed in 773 milliseconds

12 3