HomeSort by relevance Sort by last modified time
    Searched refs:Pos (Results 76 - 100 of 150) sorted by null

1 2 34 5 6

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
postproc.c 520 unsigned char *Pos = Start + i * Pitch;
525 if (Pos[j] < blackclamp[0])
526 Pos[j] = blackclamp[0];
528 if (Pos[j] > 255 + whiteclamp[0])
529 Pos[j] = 255 + whiteclamp[0];
531 Pos[j] += Ref[j];
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
TextDiagnostic.cpp 49 size_t Pos = Str.find(ToggleHighlight);
50 OS << Str.slice(0, Pos);
51 if (Pos == StringRef::npos)
54 Str = Str.substr(Pos + 1);
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp     [all...]
Preprocessor.cpp 828 std::vector<CommentHandler *>::iterator Pos
830 assert(Pos != CommentHandlers.end() && "Comment handler not registered");
831 CommentHandlers.erase(Pos);
PPMacroExpansion.cpp 40 macro_iterator Pos = Macros.find(II);
41 assert(Pos != Macros.end() && "Identifier macro info is missing!");
42 return Pos->second;
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 433 /// BB above the bundle or instruction at Pos.
435 MachineBasicBlock::iterator Pos)
436 : MBB(BB), Begin(Pos.getInstrIterator()), End(Begin) {}
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 886 MachineBasicBlock::iterator Pos = MI;
887 MI->getParent()->insert(Pos, DbgMI);
    [all...]
  /external/llvm/lib/CodeGen/
TargetInstrInfo.cpp 501 MachineBasicBlock::iterator Pos = MI;
505 storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI);
507 loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI);
508 return --Pos;
    [all...]
LiveIntervalAnalysis.cpp     [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 499 size_t Pos = AliasName.find('@');
500 if (Pos == StringRef::npos)
508 StringRef Rest = AliasName.substr(Pos);
    [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...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 647 size_t Pos = S1.find_first_not_of(S2);
648 if (Pos == StringRef::npos)
649 Pos = S1.size();
650 return ConstantInt::get(CI->getType(), Pos);
674 size_t Pos = S1.find_first_of(S2);
675 if (Pos == StringRef::npos)
676 Pos = S1.size();
677 return ConstantInt::get(CI->getType(), Pos);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp 339 llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
341 if (Pos != RedeclComments.end()) {
342 const RawCommentAndCacheFlags &Raw = Pos->second;
355 llvm::DenseMap<const Decl *, RawCommentAndCacheFlags>::iterator Pos =
357 if (Pos != RedeclComments.end()) {
358 const RawCommentAndCacheFlags &Raw = Pos->second;
447 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos =
450 if (Pos != ParsedComments.end()) {
452 comments::FullComment *FC = Pos->second;
456 return Pos->second
    [all...]
ASTImporter.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 326 static bool CommaSeparateAndAddOccurrence(Option *Handler, unsigned pos,
333 StringRef::size_type Pos = Val.find(',');
335 while (Pos != StringRef::npos) {
337 if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
340 Val = Val.substr(Pos + 1);
341 Value.substr(Pos + 1); // Increment the original value pointer as well.
343 Pos = Val.find(',');
349 if (Handler->addOccurrence(pos, ArgName, Value, MultiArg))
    [all...]
raw_ostream.cpp 537 pos = 0;
539 pos = static_cast<uint64_t>(loc);
568 pos += Size;
627 pos = ::lseek(FD, off, SEEK_SET);
628 if (pos == (uint64_t)-1)
630 return pos;
634 uint64_t Pos = tell();
637 seek(Pos);
671 pos -= len;
684 pos -= len
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 419 Pos = Diag.GetDiagStatePointForLoc(Loc);
420 DiagnosticsEngine::DiagState *State = Pos->State;
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 626 PathDiagnosticLocation Pos(ArgExpr, BRC.getSourceManager(),
628 return new PathDiagnosticEventPiece(Pos, "Data is allocated here.");
RetainCountChecker.cpp 862 void *Pos;
863 CachedSummaryNode *N = SimpleSummaries.FindNodeOrInsertPos(ID, Pos);
868 SimpleSummaries.InsertNode(N, Pos);
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 564 // Insert a node into the DAG at least before Pos. This will reposition
565 // the node as needed, and will assign it a node ID that is <= Pos's ID.
569 static void insertDAGNode(SelectionDAG *DAG, SDNode *Pos, SDValue N) {
571 N.getNode()->getNodeId() > Pos->getNodeId()) {
572 DAG->RepositionNode(Pos, N.getNode());
573 N.getNode()->setNodeId(Pos->getNodeId());
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 315 MachineBasicBlock::iterator Pos = SpillLabel.first;
316 ++Pos;
320 EmitCfiOffset(MBB, Pos, dl, TII, MMI, DRegNum, Offset);
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 537 MachineBasicBlock::iterator Pos = std::next(GPRCS1Push);
562 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
571 MachineBasicBlock::iterator Pos = std::next(GPRCS2Push);
586 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
598 MachineBasicBlock::iterator Pos = std::next(LastPush);
608 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
    [all...]

Completed in 909 milliseconds

1 2 34 5 6