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

1 23 4 5 6 7

  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/llvm/lib/Support/
Host.cpp 698 size_t Pos = Lines[I].find(":");
699 if (Pos != StringRef::npos) {
700 Lines[I].drop_front(Pos + 1).split(CPUFeatures, ' ');
717 size_t Pos = Lines[I].find("machine = ");
718 if (Pos != StringRef::npos) {
719 Pos += sizeof("machine = ") - 1;
721 if (!Lines[I].drop_front(Pos).getAsInteger(10, Id)) {
Triple.cpp 706 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
707 if (Found[Pos])
718 switch (Pos) {
750 if (Pos < Idx) {
756 // Insert the component being moved at Pos, displacing any existing
758 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
766 } else if (Pos > Idx) {
768 // reaches the target position Pos. For example, pc-a -> -pc-a whe
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
lnc_hostcode.c     [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 610 unsigned insertFrom(unsigned &Pos, unsigned Size, KeyT a, KeyT b, ValT y);
616 /// @param Pos Starting index = insertFrom(0, size, a)
624 insertFrom(unsigned &Pos, unsigned Size, KeyT a, KeyT b, ValT y) {
625 unsigned i = Pos;
636 Pos = i - 1;
    [all...]
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 220 const char *Pos = strchr(FromFile.getBufferStart(), '\n');
221 if (!Pos)
223 if (Pos - 1 >= FromFile.getBufferStart() && Pos[-1] == '\r')
225 if (Pos + 1 < FromFile.getBufferEnd() && Pos[1] == '\r')
  /external/llvm/lib/Option/
ArgList.cpp 221 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const {
222 if (Arg *A = getLastArg(Pos, Neg))
223 return A->getOption().matches(Pos);
227 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg,
229 if (Arg *A = getLastArg(Pos, PosAlias, Neg))
230 return A->getOption().matches(Pos) || A->getOption().matches(PosAlias);
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypeChecker.cpp 149 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
151 return new PathDiagnosticEventPiece(Pos, OS.str(), true, nullptr);
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 171 void setIVIncInsertPos(const Loop *L, Instruction *Pos) {
175 IVIncInsertPos = Pos;
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 397 /// @p Pos that are part of any liverange of physical register @p Reg or one
399 void removePhysRegDefAt(unsigned Reg, SlotIndex Pos);
402 /// that start at position @p Pos.
403 void removeVRegDefAt(LiveInterval &LI, SlotIndex Pos);
RegisterPressure.h 314 MachineBasicBlock::const_iterator pos,
329 void setPos(MachineBasicBlock::const_iterator Pos) { CurrPos = Pos; }
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 166 unsigned Pos = 16 + Constraint * 4;
167 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /external/opencv3/3rdparty/zlib/
deflate.h 89 typedef ush Pos;
90 typedef Pos FAR Posf;
93 /* A Pos is an index in the character window. We use short instead of int to
deflate.c 184 s->head[s->ins_h] = (Pos)(str))
189 s->head[s->ins_h] = (Pos)(str))
294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
372 s->head[s->ins_h] = (Pos)str;
    [all...]
  /external/pdfium/third_party/zlib_v128/
deflate.h 89 typedef ush Pos;
90 typedef Pos FAR Posf;
93 /* A Pos is an index in the character window. We use short instead of int to
deflate.c 184 s->head[s->ins_h] = (Pos)(str))
189 s->head[s->ins_h] = (Pos)(str))
293 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
294 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
371 s->head[s->ins_h] = (Pos)str;
    [all...]
  /external/skia/gm/
textblob.cpp 17 enum Pos {
25 Pos pos; member in struct:__anon22174::BlobCfg
142 switch (cfg->pos) {
152 SkTDArray<SkScalar> pos; local
154 *pos.append() = offset.x() + i * advanceX;
158 memcpy(buf.pos, pos.begin(), count * sizeof(SkScalar));
163 SkTDArray<SkScalar> pos; local
165 *pos.append() = offset.x() + i * advanceX
    [all...]
  /external/zlib/src/
deflate.h 89 typedef ush Pos;
90 typedef Pos FAR Posf;
93 /* A Pos is an index in the character window. We use short instead of int to
deflate.c 184 s->head[s->ins_h] = (Pos)(str))
189 s->head[s->ins_h] = (Pos)(str))
294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
372 s->head[s->ins_h] = (Pos)str;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 353 FullSourceLoc Pos = P.getLocation().asLocation();
355 if (!Pos.isValid())
359 assert(&Pos.getManager() == &SM && "SourceManagers are different!");
360 std::pair<FileID, unsigned> LPosInfo = SM.getDecomposedExpansionLoc(Pos);
371 const char *TokInstantiationPtr =Pos.getExpansionLoc().getCharacterData();
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /external/vboot_reference/utility/
eficompress.c 1133 UINT32 i, k, Flags, Root, Pos, Size;
1162 Pos = 0;
1165 Flags = mBuf[Pos++];
1170 EncodeC(mBuf[Pos++] + (1U << UINT8_BIT));
1171 k = mBuf[Pos++] << UINT8_BIT;
1172 k += mBuf[Pos++];
1175 EncodeC(mBuf[Pos++]);
  /external/clang/lib/AST/
DeclBase.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 557 auto Pos = SeenExprs.find(CandidateExpr);
558 if (Pos == SeenExprs.end())
561 auto &Candidates = Pos->second;
  /external/clang/include/clang/Lex/
LiteralSupport.h 113 void checkSeparator(SourceLocation TokLoc, const char *Pos,

Completed in 534 milliseconds

1 23 4 5 6 7