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

  /external/llvm/lib/IR/
DataLayout.cpp 235 StringRef &Rest = Split.second; // The rest of the string.
258 if (Rest.empty())
261 Split = split(Rest, ':');
267 if (Rest.empty())
270 Split = split(Rest, ':');
278 if (!Rest.empty()) {
279 Split = split(Rest, ':');
311 if (Rest.empty())
314 Split = split(Rest, ':')
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 297 const uint64_t Rest = OptimalCount - Prefixes;
298 for (uint64_t i = 0, e = Rest; i != e; i++)
299 OW->Write8(Nops[Rest - 1][i]);
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 272 StringRef Rest = TextToWrite;
273 while (!Rest.empty()) {
275 std::tie(LineText, Rest) = Rest.split(LocalEOL);
278 if (!Rest.empty())
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 411 StringRef Rest = AliasName.substr(Pos);
412 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
416 if (Symbol.isUndefined() && Rest.startswith("@@") &&
417 !Rest.startswith("@@@"))
    [all...]
  /external/llvm/lib/Option/
OptTable.cpp 178 StringRef Rest = Str.substr(Prefix.size());
180 ? Rest.startswith_lower(I->Name)
181 : Rest.startswith(I->Name);
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 108 StringRef Rest = Input.substr(n1 + 2);
109 if (Rest[0] >= '0' && Rest[0] <= '9') {
111 size_t n3 = Rest.find(' ');
113 if (Rest.getAsInteger(10, NumSamples))
116 if (Rest.substr(0, n3).getAsInteger(10, NumSamples))
120 n3 += Rest.substr(n3).find_first_not_of(' ');
121 Rest = Rest.substr(n3);
122 n3 = Rest.find(' ')
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 367 const uint8_t Rest = ThisNopLength - Prefixes;
368 for (uint8_t i = 0; i < Rest; i++)
369 OW->write8(Nops[Rest - 1][i]);
  /external/llvm/lib/Target/Hexagon/
RDFLiveness.cpp 838 NodeSet Rest;
861 Rest.insert(R);
867 for (auto R : Rest) {
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 745 StringRef CommandStr, Rest;
746 std::tie(CommandStr, Rest) = Line.split(' ');
747 Rest = Rest.trim();
748 if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"')
749 Rest = Rest.drop_front().drop_back();
760 auto BufOrErr = MemoryBuffer::getFile(Rest, -1, false)
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 191 int cell0, rest; local
206 rest = FIXED_REST_TO_INT(val3); // Rest is 16 LSB bits
212 Output[0] = LinearInterp(rest, y0, y1);
228 cmsFloat32Number val2, rest; local
245 // Rest is 16 LSB bits
246 rest = val2 - cell0;
251 Output[0] = y0 + (y1 - y0) * rest;
294 cmsFloat32Number val2, rest; local
312 // Rest is 16 LSB bit
1018 cmsFloat32Number rest; local
1105 cmsFloat32Number rest; local
1192 cmsFloat32Number rest; local
1277 cmsFloat32Number rest; local
1362 cmsFloat32Number rest; local
    [all...]
cmsopt.c 832 cmsS15Fixed16Number c0, c1, c2, c3, Rest;
908 Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001;
909 Output[OutChan] = (cmsUInt16Number)c0 + ((Rest + (Rest>>16))>>16);
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 741 StringRef Rest = Buffer.drop_front(Prefix.size() + 1);
742 if (Rest.startswith("NEXT:"))
745 if (Rest.startswith("SAME:"))
748 if (Rest.startswith("NOT:"))
751 if (Rest.startswith("DAG:"))
754 if (Rest.startswith("LABEL:"))
758 if (Rest.startswith("DAG-NOT:") || Rest.startswith("NOT-DAG:") ||
759 Rest.startswith("NEXT-NOT:") || Rest.startswith("NOT-NEXT:") |
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolutionExpander.cpp 386 // indexes into the array implied by the pointer operand; the rest of
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 404 // indexes into the array implied by the pointer operand; the rest of
797 /// Move parts of Base into Rest to leave Base with the minimal
800 static void ExposePointerBase(const SCEV *&Base, const SCEV *&Rest,
804 Rest = SE.getAddExpr(Rest,
813 NewAddOps.back() = Rest;
814 Rest = SE.getAddExpr(NewAddOps);
815 ExposePointerBase(Base, Rest, SE);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 227 StringRef Rest = AliasName.substr(Pos);
228 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
232 if (Symbol.isUndefined() && Rest.startswith("@@") &&
233 !Rest.startswith("@@@"))
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 560 llvm::BasicBlock *Rest = createBasicBlock("not.null");
561 Builder.CreateCondBr(IsNonNull, Rest, Done);
562 EmitBlock(Rest);
    [all...]

Completed in 683 milliseconds