/external/compiler-rt/ |
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.Name)-% [all...] |
/external/llvm/include/llvm/ADT/ |
OwningPtr.h | 53 T *Tmp = Ptr; 55 delete Tmp; 61 T *Tmp = Ptr; 63 return Tmp; 77 T *Tmp = RHS.Ptr; 79 Ptr = Tmp; 116 T *Tmp = Ptr; 118 delete [] Tmp; 124 T *Tmp = Ptr; 126 return Tmp; [all...] |
/external/compiler-rt/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/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/Support/ |
Triple.cpp | 481 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 482 return Tmp.split('-').first; // Isolate second component 486 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 487 Tmp = Tmp.split('-').second; // Strip second component 488 return Tmp.split('-').first; // Isolate third component 492 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 493 Tmp = Tmp.split('-').second; // Strip second component 494 return Tmp.split('-').second; // Strip third componen [all...] |
APInt.cpp | 651 APInt tmp(sufficient, StringRef(p, slen), radix); 655 unsigned log = tmp.logBase2(); 771 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; [all...] |
/external/llvm/include/llvm/Support/ |
MathExtras.h | 177 uint32_t Tmp = Value >> Shift; 178 if (Tmp) { 179 Value = Tmp; 214 uint64_t Tmp = Value >> Shift; 215 if (Tmp) { 216 Value = Tmp;
|
/external/clang/include/clang/AST/ |
AttrIterator.h | 94 specific_attr_iterator Tmp(*this); 96 return Tmp;
|
/external/clang/tools/scan-build/ |
c++-analyzer | 549 my $Tmp = $Arg; 553 $Tmp = $Arg . $ARGV[$i]; 555 push @CompileOpts,$Tmp; 593 my $Tmp = $Arg; 597 $Tmp = $Arg . $ARGV[$i]; 599 push @CompileOpts,$Tmp; 600 push @LinkOpts,$Tmp;
|
ccc-analyzer | 549 my $Tmp = $Arg; 553 $Tmp = $Arg . $ARGV[$i]; 555 push @CompileOpts,$Tmp; 593 my $Tmp = $Arg; 597 $Tmp = $Arg . $ARGV[$i]; 599 push @CompileOpts,$Tmp; 600 push @LinkOpts,$Tmp;
|
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineC.cpp | 114 ExplodedNodeSet Tmp; 116 evalLoad(Tmp, B, LHS, *it, state, location); 118 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; 207 ExplodedNodeSet Tmp; 208 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx); 214 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this); 736 ExplodedNodeSet Tmp; 737 VisitIncrementDecrementOperator(U, Pred, Tmp); 738 Bldr.addNodes(Tmp); [all...] |
ExprEngine.cpp | 427 ExplodedNodeSet Tmp(Pred); 443 Tmp.clear(); 444 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP); 454 NodeBuilder Bldr(Tmp, Dst, *currBldrCtx); 455 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; ++I) { 686 ExplodedNodeSet Tmp; 687 StmtNodeBuilder Bldr2(PreVisit, Tmp, *currBldrCtx); 713 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this); 728 ExplodedNodeSet Tmp; [all...] |
ExprEngineObjC.cpp | 90 ExplodedNodeSet Tmp; 91 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx); 132 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this);
|
/external/llvm/lib/AsmParser/ |
LLLexer.cpp | 694 APInt Tmp(bits, StringRef(TokStart+3, len), 16); 695 uint32_t activeBits = Tmp.getActiveBits(); 697 Tmp = Tmp.trunc(activeBits); 698 APSIntVal = APSInt(Tmp, TokStart[0] == 'u'); 818 APInt Tmp(numBits, StringRef(TokStart, Len), 10); 820 uint32_t minBits = Tmp.getMinSignedBits(); 822 Tmp = Tmp.trunc(minBits); 823 APSIntVal = APSInt(Tmp, false) [all...] |
/external/llvm/lib/Analysis/ |
PHITransAddr.cpp | 63 // 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();
|
ValueTracking.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGStmt.cpp | [all...] |
CGExprConstant.cpp | 202 llvm::APInt Tmp = FieldValue; 208 Tmp = Tmp.lshr(NewFieldWidth); 209 Tmp = Tmp.trunc(BitsInPreviousByte); 214 Tmp = Tmp.trunc(BitsInPreviousByte); 222 Tmp = Tmp.zext(CharWidth); 225 Tmp = Tmp.shl(BitsInPreviousByte - FieldValue.getBitWidth()) [all...] |
/external/llvm/utils/TableGen/ |
IntrinsicEmitter.cpp | 296 unsigned Tmp = 0; 299 case MVT::iPTRAny: ++Tmp; // FALL THROUGH. 300 case MVT::vAny: ++Tmp; // FALL THROUGH. 301 case MVT::fAny: ++Tmp; // FALL THROUGH. 309 ArgCodes.push_back(Tmp); 312 return Sig.push_back((ArgNo << 2) | Tmp);
|
/external/clang/tools/driver/ |
driver.cpp | 437 llvm::sys::Path Tmp = llvm::sys::Program::FindProgramByName( 439 if (!Tmp.empty()) 440 InstalledPath = Tmp.str();
|
/external/clang/lib/Analysis/ |
AnalysisDeclContext.cpp | 111 bool Tmp; 112 return getBody(Tmp); 116 bool Tmp; 117 getBody(Tmp); 118 return Tmp;
|
/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 | 668 unsigned Opc = I->getOpcode(), Tmp; 682 !CanEvaluateZExtd(I->getOperand(1), Ty, Tmp)) 685 if (BitsToClear == 0 && Tmp == 0) 690 if (Tmp == 0 && 718 if (!CanEvaluateZExtd(I->getOperand(1), Ty, Tmp) || 722 Tmp != BitsToClear) 734 if (!CanEvaluateZExtd(PN->getIncomingValue(i), Ty, Tmp) || 737 Tmp != BitsToClear) [all...] |
/external/clang/lib/Lex/ |
PPDirectives.cpp | 92 Token Tmp; 94 LexUnexpandedToken(Tmp); 95 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens"); 96 } while (Tmp.isNot(tok::eod)); 170 Token Tmp; 175 Lex(Tmp); 177 LexUnexpandedToken(Tmp); 181 while (Tmp.is(tok::comment)) // Skip comments in -C mode. 182 LexUnexpandedToken(Tmp); 184 if (Tmp.isNot(tok::eod)) [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | [all...] |