Searched refs:Tmp (Results 1 - 25 of 66) sorted by relevance

123

/external/compiler-rt/
H A DMakefile114 $(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
[all...]
/external/llvm/include/llvm/ADT/
H A DOwningPtr.h43 T *Tmp = Ptr;
45 delete Tmp;
51 T *Tmp = Ptr; local
53 return Tmp;
67 T *Tmp = RHS.Ptr; local
69 Ptr = Tmp;
97 T *Tmp = Ptr;
99 delete [] Tmp;
105 T *Tmp = Ptr; local
107 return Tmp;
120 T *Tmp = RHS.Ptr; local
[all...]
/external/compiler-rt/make/
H A Dlib_util.mk19 $(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/
H A DOSAtomicChecker.cpp109 ExplodedNodeSet Tmp; local
123 Eng.evalLoad(Tmp, CE, theValueExpr, Pred,
126 if (Tmp.empty()) {
132 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end();
/external/openssl/crypto/sha/asm/
H A Dsha1-sparcv9a.pl95 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/Support/
H A DTriple.cpp494 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
495 return Tmp.split('-').first; // Isolate second component
499 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
500 Tmp = Tmp.split('-').second; // Strip second component
501 return Tmp.split('-').first; // Isolate third component
505 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
506 Tmp = Tmp.split('-').second; // Strip second component
507 return Tmp
[all...]
H A DAPInt.cpp771 uint64_t Tmp = Src[I];
772 Dst[I] = (Tmp >> Shift) | Carry;
773 Carry = Tmp << (64 - Shift);
846 APInt Tmp(width, mantissa);
847 Tmp = Tmp.shl((unsigned)exp - 52);
848 return isNeg ? -Tmp : Tmp;
874 APInt Tmp(isNeg ? -(*this) : (*this));
877 unsigned n = Tmp
[all...]
/external/llvm/include/llvm/Support/
H A DMathExtras.h173 uint32_t Tmp = Value >> Shift; local
174 if (Tmp) {
175 Value = Tmp;
210 uint64_t Tmp = Value >> Shift; local
211 if (Tmp) {
212 Value = Tmp;
/external/llvm/lib/Analysis/
H A DValueTracking.cpp1014 unsigned Tmp, Tmp2; local
1027 Tmp = TyBits - U->getOperand(0)->getType()->getScalarSizeInBits();
1028 return ComputeNumSignBits(U->getOperand(0), TD, Depth+1) + Tmp;
1031 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1);
1035 Tmp += ShAmt->getZExtValue();
1036 if (Tmp > TyBits) Tmp = TyBits;
1038 return Tmp;
1044 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1);
1047 Tmp2 >= Tmp) brea
[all...]
H A DPHITransAddr.cpp63 // If it's an instruction, it is either in Tmp or its operands recursively
95 SmallVector<Instruction*, 8> Tmp(InstInputs.begin(), InstInputs.end());
97 if (!VerifySubExpr(Addr, Tmp))
100 if (!Tmp.empty()) {
375 PHITransAddr Tmp(InVal, TD);
376 if (!Tmp.PHITranslateValue(CurBB, PredBB, &DT))
377 return Tmp.getAddr();
/external/clang/tools/scan-build/
H A Dc++-analyzer537 my $Tmp = $Arg;
541 $Tmp = $Arg . $ARGV[$i];
543 push @CompileOpts,$Tmp;
581 my $Tmp = $Arg;
585 $Tmp = $Arg . $ARGV[$i];
587 push @CompileOpts,$Tmp;
588 push @LinkOpts,$Tmp;
H A Dccc-analyzer537 my $Tmp = $Arg;
541 $Tmp = $Arg . $ARGV[$i];
543 push @CompileOpts,$Tmp;
581 my $Tmp = $Arg;
585 $Tmp = $Arg . $ARGV[$i];
587 push @CompileOpts,$Tmp;
588 push @LinkOpts,$Tmp;
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp113 ExplodedNodeSet Tmp; local
115 evalLoad(Tmp, B, LHS, *it, state, location);
117 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E;
206 ExplodedNodeSet Tmp; local
207 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx);
213 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this);
708 ExplodedNodeSet Tmp; local
709 VisitIncrementDecrementOperator(U, Pred, Tmp);
710 Bldr.addNodes(Tmp);
833 ExplodedNodeSet Tmp; local
[all...]
H A DExprEngine.cpp374 ExplodedNodeSet Tmp(Pred);
390 Tmp.clear();
391 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP);
401 NodeBuilder Bldr(Tmp, Dst, *currBldrCtx);
402 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; ++I) {
644 ExplodedNodeSet Tmp; local
645 StmtNodeBuilder Bldr2(preVisit, Tmp, *currBldrCtx);
660 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this);
710 ExplodedNodeSet Tmp; local
711 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Tmp); local
929 ExplodedNodeSet Tmp; local
1609 ExplodedNodeSet Tmp; local
1643 ExplodedNodeSet Tmp; local
1672 ExplodedNodeSet Tmp; local
1733 ExplodedNodeSet Tmp; local
[all...]
H A DExprEngineObjC.cpp90 ExplodedNodeSet Tmp; local
91 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx);
132 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this);
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp655 APInt Tmp(bits, StringRef(TokStart+3, len), 16);
656 uint32_t activeBits = Tmp.getActiveBits();
658 Tmp = Tmp.trunc(activeBits);
659 APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
777 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
779 uint32_t minBits = Tmp.getMinSignedBits();
781 Tmp = Tmp.trunc(minBits);
782 APSIntVal = APSInt(Tmp, fals
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1637 llvm::Value *Tmp = Builder.CreateExtractValue(Result, i, "asmresult"); local
1638 RegResults.push_back(Tmp);
1643 llvm::Value *Tmp = RegResults[i]; local
1653 Tmp = Builder.CreateFPTrunc(Tmp, TruncTy);
1654 else if (TruncTy->isPointerTy() && Tmp->getType()->isIntegerTy()) {
1656 Tmp = Builder.CreateTrunc(Tmp,
1658 Tmp = Builder.CreateIntToPtr(Tmp, TruncT
[all...]
H A DCGExprConstant.cpp202 llvm::APInt Tmp = FieldValue; local
208 Tmp = Tmp.lshr(NewFieldWidth);
209 Tmp = Tmp.trunc(BitsInPreviousByte);
214 Tmp = Tmp.trunc(BitsInPreviousByte);
222 Tmp = Tmp.zext(CharWidth);
225 Tmp
270 llvm::APInt Tmp; local
[all...]
/external/llvm/utils/TableGen/
H A DIntrinsicEmitter.cpp293 unsigned Tmp = 0; local
296 case MVT::iPTRAny: ++Tmp; // FALL THROUGH.
297 case MVT::vAny: ++Tmp; // FALL THROUGH.
298 case MVT::fAny: ++Tmp; // FALL THROUGH.
306 ArgCodes.push_back(Tmp);
309 return Sig.push_back((ArgNo << 2) | Tmp);
/external/clang/include/clang/AST/
H A DAttr.h200 specific_attr_iterator Tmp(*this);
202 return Tmp;
H A DCanonicalType.h417 CanTypeIterator Tmp(*this);
419 return Tmp;
436 CanTypeIterator Tmp(*this);
438 return Tmp;
/external/clang/lib/Frontend/
H A DCacheTokens.cpp294 Token Tmp = Tok; local
295 Tmp.setKind(tok::eod);
296 Tmp.clearFlag(Token::StartOfLine);
297 Tmp.setIdentifierInfo(0);
298 EmitToken(Tmp);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp659 unsigned Opc = I->getOpcode(), Tmp; local
673 !CanEvaluateZExtd(I->getOperand(1), Ty, Tmp))
676 if (BitsToClear == 0 && Tmp == 0)
681 if (Tmp == 0 &&
709 if (!CanEvaluateZExtd(I->getOperand(1), Ty, Tmp) ||
713 Tmp != BitsToClear)
725 if (!CanEvaluateZExtd(PN->getIncomingValue(i), Ty, Tmp) ||
728 Tmp != BitsToClear)
1739 BitCastInst *Tmp; local
1743 if (((Tmp
[all...]
/external/clang/lib/Lex/
H A DPPDirectives.cpp89 Token Tmp; local
91 LexUnexpandedToken(Tmp);
92 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
93 } while (Tmp.isNot(tok::eod));
168 Token Tmp; local
173 Lex(Tmp);
175 LexUnexpandedToken(Tmp);
179 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
180 LexUnexpandedToken(Tmp);
182 if (Tmp
[all...]
/external/llvm/lib/MC/
H A DMCStreamer.cpp96 SmallString<128> Tmp; local
97 raw_svector_ostream OSE(Tmp);
105 SmallString<128> Tmp; local
106 raw_svector_ostream OSE(Tmp);

Completed in 923 milliseconds

123