HomeSort by relevance Sort by last modified time
    Searched defs:Pos (Results 51 - 75 of 86) sorted by null

1 23 4

  /external/llvm/lib/CodeGen/
MachineLICM.cpp     [all...]
RegisterCoalescer.cpp 651 MachineBasicBlock::iterator Pos = DefMI;
652 MBB->insert(Pos, NewMI);
    [all...]
  /external/llvm/lib/IR/
LegacyPassManager.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 375 MachineBasicBlock::iterator Pos = ++GPRCS1Push;
376 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
401 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
435 MachineBasicBlock::iterator Pos = ++GPRCS2Push;
440 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
457 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 472 int Pos = -1) {
474 if (Pos == -1)
477 Members[Pos] = NI;
491 std::vector<std::string>::iterator &Pos) {
502 Pos = MI;
548 int Pos = Ret.size();
555 InsertPos = Pos;
557 InsertPos = Pos + 1;
596 int Pos = InsertPos;
599 I != E; ++I, ++Pos) {
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
miniport.h 91 Pos,
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/lib/Lex/
Lexer.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaLookup.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 524 MachineBasicBlock::iterator Pos = CopyUseMI;
525 EntryMBB->insertAfter(Pos, NewMI);
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 522 size_t Pos = AliasName.find('@');
523 if (Pos == StringRef::npos)
531 StringRef Rest = AliasName.substr(Pos);
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 274 static bool CommaSeparateAndAddOccurrence(Option *Handler, unsigned pos,
281 StringRef::size_type Pos = Val.find(',');
283 while (Pos != StringRef::npos) {
285 if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
288 Val = Val.substr(Pos+1);
289 Value.substr(Pos+1); // Increment the original value pointer as well.
291 Pos = Val.find(',');
297 if (Handler->addOccurrence(pos, ArgName, Value, MultiArg))
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 242 Value *getShadowAddress(Value *Addr, Instruction *Pos);
243 Value *combineShadows(Value *V1, Value *V2, Instruction *Pos);
285 Value *getArgTLS(unsigned Index, Instruction *Pos);
291 Instruction *Pos);
293 Instruction *Pos);
476 size_t Pos = Asm.find(SearchStr);
477 if (Pos != std::string::npos) {
478 Asm.replace(Pos, SearchStr.size(),
777 Instruction *Pos;
779 Pos = I->getNextNode()
    [all...]
AddressSanitizer.cpp 256 auto Pos = SourceLocation.find(G);
257 return (Pos != SourceLocation.end()) ? Pos->second : nullptr;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 888 size_t Pos = S1.find_first_not_of(S2);
889 if (Pos == StringRef::npos) Pos = S1.size();
890 return ConstantInt::get(CI->getType(), Pos);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 115 UInt32 pos = 0; local
117 while (pos < BufferSize)
121 if (GetVal(res, 1) == 0 || pos < 1024)
122 Buffer[pos++] = (Byte)(res & 0xFF);
139 while (rep0 >= pos);
143 for (UInt32 i = 0; i < len && pos < BufferSize; i++, pos++)
144 Buffer[pos] = Buffer[pos - rep0];
156 size_t Pos;
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 1074 size_t Pos = S.find('_');
1075 S.insert(Pos, "q");
1089 size_t Pos = S.find('_');
1090 S.insert(Pos, &Suffix, 1);
1098 size_t Pos = S.find('$');
1099 size_t End = Pos + 1;
1103 std::string VarName = S.substr(Pos + 1, End - Pos - 1);
1106 S.replace(Pos, End - Pos, Variables.find(VarName)->second.getName())
    [all...]

Completed in 3186 milliseconds

1 23 4