HomeSort by relevance Sort by last modified time
    Searched refs:Tmp (Results 1 - 25 of 68) sorted by null

1 2 3

  /frameworks/compile/libbcc/runtime/
Makefile 114 $(call Set,Tmp.Key,$(1))
115 $(call Set,Tmp.Name,$($(Tmp.Key).Name))
116 $(call Set,Tmp.Configs,$($(Tmp.Key).Configs))
117 $(call Set,Tmp.ObjPath,$(ProjObjRoot)/$(Tmp.Name))
120 $(Tmp.Name):: $(Tmp.Configs:%=$(Tmp.ObjPath)/%/libcompiler_rt.a
    [all...]
  /external/llvm/include/llvm/ADT/
OwningPtr.h 43 T *Tmp = Ptr;
45 delete Tmp;
51 T *Tmp = Ptr;
53 return Tmp;
67 T *Tmp = RHS.Ptr;
69 Ptr = Tmp;
97 T *Tmp = Ptr;
99 delete [] Tmp;
105 T *Tmp = Ptr;
107 return Tmp;
    [all...]
  /frameworks/compile/libbcc/runtime/make/
lib_util.mk 19 $(call Set,Tmp.SelectFunctionDir,$(call SelectFunctionDirs,$(1),$(2),$(3),$(4)))\
20 $(if $(call streq,1,$(words $(Tmp.SelectFunctionDir))),\
21 $(Tmp.SelectFunctionDir),\
23 $(if $(call streq,0,$(words $(Tmp.SelectFunctionDir))),\
  /external/clang/lib/StaticAnalyzer/Checkers/
OSAtomicChecker.cpp 99 ExplodedNodeSet Tmp;
113 Engine.evalLoad(Tmp, theValueExpr, C.getPredecessor(),
116 if (Tmp.empty()) {
125 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end();
  /external/llvm/lib/Support/
Triple.cpp 526 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
527 return Tmp.split('-').first; // Isolate second component
531 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
532 Tmp = Tmp.split('-').second; // Strip second component
533 return Tmp.split('-').first; // Isolate third component
537 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
538 Tmp = Tmp.split('-').second; // Strip second component
539 return Tmp.split('-').second; // Strip third componen
    [all...]
APInt.cpp 658 APInt tmp(sufficient, StringRef(p, slen), radix);
662 unsigned log = tmp.logBase2();
883 char Tmp = pByte[i];
885 pByte[BitWidth / APINT_WORD_SIZE - i - 1] = Tmp;
933 APInt Tmp(width, mantissa);
934 Tmp = Tmp.shl((unsigned)exp - 52);
935 return isNeg ? -Tmp : Tmp;
961 APInt Tmp(isNeg ? -(*this) : (*this))
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 263 ExplodedNodeSet Tmp;
266 Tmp.Add(EntryNode);
279 getCheckerManager().runCheckersForDeadSymbols(Tmp, Tmp2,
283 Tmp.Add(EntryNode);
288 for (ExplodedNodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) {
607 ExplodedNodeSet Tmp;
608 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Tmp);
609 evalEagerlyAssume(Dst, Tmp, cast<Expr>(S));
789 ExplodedNodeSet Tmp;
    [all...]
CXXExprEngine.cpp 53 ExplodedNodeSet Tmp;
58 Visit(*Item.I, Item.N, Tmp);
60 for (ExplodedNodeSet::iterator NI=Tmp.begin(), NE=Tmp.end(); NI != NE; ++NI)
108 ExplodedNodeSet Tmp;
109 Visit(Ex, Pred, Tmp);
110 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; ++I) {
  /external/llvm/include/llvm/Support/
MathExtras.h 159 uint32_t Tmp = Value >> Shift;
160 if (Tmp) {
161 Value = Tmp;
196 uint64_t Tmp = Value >> Shift;
197 if (Tmp) {
198 Value = Tmp;
  /external/openssl/crypto/sha/asm/
sha1-sparcv9a.pl 95 fxor @X[($j+2)%16],@X[($j+8)%16],%f18! 1/ 1/ 1:Tmp=X[2,3]^X[8,9]
97 faligndata @X[$j],@X[$j],%f18 ! 3/ 7/ 5:Tmp=X[0,1]>>>24
99 fmul8ulx16 %f18,$fmul,%f18 ! 5/10/ 7:Tmp>>=7, Tmp&=1
101 for %f18,@X[$j],@X[$j] ! 8/14/10:X[0,1]|=Tmp
156 fxor @X[($j+2)%16],@X[($j+8)%16],%f18! 1/ 1/ 1:Tmp=X[2,3]^X[8,9]
166 faligndata @X[$j],@X[$j],%f18 ! 3/ 7/ 5:Tmp=X[0,1]>>>24
175 fmul8ulx16 %f18,$fmul,%f18 ! 5/10/ 7:Tmp>>=7, Tmp&=1
184 fxor %f18,@X[$j],@X[$j] ! 8/14/10:X[0,1]|=Tmp
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
PHITransAddr.cpp 60 // If it's an instruction, it is either in Tmp or its operands recursively
93 SmallVector<Instruction*, 8> Tmp(InstInputs.begin(), InstInputs.end());
95 if (!VerifySubExpr(Addr, Tmp))
98 if (!Tmp.empty()) {
374 PHITransAddr Tmp(InVal, TD);
375 if (!Tmp.PHITranslateValue(CurBB, PredBB, &DT))
376 return Tmp.getAddr();
  /external/clang/lib/CodeGen/
CGStmt.cpp 859 Builder.CreateSub(SwitchInsn->getCondition(), Builder.getInt(LHS), "tmp");
    [all...]
CGExprConstant.cpp 173 llvm::APInt Tmp = FieldValue;
179 Tmp = Tmp.lshr(NewFieldWidth);
180 Tmp = Tmp.trunc(BitsInPreviousByte);
185 Tmp = Tmp.trunc(BitsInPreviousByte);
193 Tmp = Tmp.zext(CharWidth);
196 Tmp = Tmp.shl(BitsInPreviousByte - FieldValue.getBitWidth())
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 152 char Tmp = BIn[3]; BIn[3] = 0; // Terminate string
154 BIn[3] = Tmp; // Restore character
648 APInt Tmp(bits, StringRef(TokStart+3, len), 16);
649 uint32_t activeBits = Tmp.getActiveBits();
651 Tmp = Tmp.trunc(activeBits);
652 APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
766 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
768 uint32_t minBits = Tmp.getMinSignedBits();
770 Tmp = Tmp.trunc(minBits)
    [all...]
  /external/clang/tools/scan-build/
c++-analyzer 509 my $Tmp = $Arg;
513 $Tmp = $Arg . $ARGV[$i];
515 push @CompileOpts,$Tmp;
553 my $Tmp = $Arg;
557 $Tmp = $Arg . $ARGV[$i];
559 push @CompileOpts,$Tmp;
560 push @LinkOpts,$Tmp;
ccc-analyzer 509 my $Tmp = $Arg;
513 $Tmp = $Arg . $ARGV[$i];
515 push @CompileOpts,$Tmp;
553 my $Tmp = $Arg;
557 $Tmp = $Arg . $ARGV[$i];
559 push @CompileOpts,$Tmp;
560 push @LinkOpts,$Tmp;
  /external/clang/include/clang/AST/
Attr.h 194 specific_attr_iterator Tmp(*this);
196 return Tmp;
CanonicalType.h 414 CanTypeIterator Tmp(*this);
416 return Tmp;
433 CanTypeIterator Tmp(*this);
435 return Tmp;
  /external/llvm/lib/MC/
MCDwarf.cpp 329 SmallString<256> Tmp;
330 raw_svector_ostream OS(Tmp);
338 SmallString<256> Tmp;
339 raw_svector_ostream OS(Tmp);
376 SmallString<32> Tmp;
377 raw_svector_ostream OSE(Tmp);
415 SmallString<32> Tmp;
416 raw_svector_ostream OSE(Tmp);
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 86 Token Tmp;
88 LexUnexpandedToken(Tmp);
89 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
90 } while (Tmp.isNot(tok::eod));
155 Token Tmp;
160 Lex(Tmp);
162 LexUnexpandedToken(Tmp);
166 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
167 LexUnexpandedToken(Tmp);
169 if (Tmp.isNot(tok::eod))
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]
  /external/clang/lib/Frontend/
CacheTokens.cpp 294 Token Tmp = Tok;
295 Tmp.setKind(tok::eod);
296 Tmp.clearFlag(Token::StartOfLine);
297 Tmp.setIdentifierInfo(0);
298 EmitToken(Tmp);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 124 Amt = AllocaBuilder.CreateMul(Amt, NumElements, "tmp");
130 Amt = AllocaBuilder.CreateAdd(Amt, Off, "tmp");
459 Src = Builder->CreateAnd(Src, One, "tmp");
521 In = Builder->CreateIntCast(In, CI.getType(), false/*ZExt*/, "tmp");
575 In = Builder->CreateXor(In, One, "tmp");
666 unsigned Opc = I->getOpcode(), Tmp;
680 !CanEvaluateZExtd(I->getOperand(1), Ty, Tmp))
683 if (BitsToClear == 0 && Tmp == 0)
688 if (Tmp == 0 &&
716 if (!CanEvaluateZExtd(I->getOperand(1), Ty, Tmp) ||
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 323 const LiveRange *Tmp = I;
324 if (Tmp != LR && Tmp->valno == LR->valno)

Completed in 771 milliseconds

1 2 3