/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; 78 T *Tmp = RHS.Ptr; 80 Ptr = Tmp; 117 T *Tmp = Ptr; 119 delete [] Tmp; 125 T *Tmp = Ptr; 127 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/chromium_org/third_party/lcov/contrib/galaxy/ |
conglomerate_functions.pl | 11 my $Tmp; 21 #TMPFILE=`mktemp ${TMPDIR:-/tmp}/$$.XXXXXX` 26 foreach $Tmp (@ARGV) { 27 $ArgList .= "'$Tmp' ";
|
/external/chromium_org/third_party/openssl/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/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 | 491 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 492 return Tmp.split('-').first; // Isolate second component 496 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 497 Tmp = Tmp.split('-').second; // Strip second component 498 return Tmp.split('-').first; // Isolate third component 502 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 503 Tmp = Tmp.split('-').second; // Strip second component 504 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/clang/include/clang/AST/ |
AttrIterator.h | 94 specific_attr_iterator Tmp(*this); 96 return Tmp;
|
/external/clang/tools/scan-build/ |
ccc-analyzer | 541 my $Tmp = $Arg; 545 $Tmp = $Arg . $ARGV[$i]; 547 push @CompileOpts,$Tmp; 582 my $Tmp = $Arg; 586 $Tmp = $Arg . $ARGV[$i]; 588 push @CompileOpts,$Tmp; 589 push @LinkOpts,$Tmp;
|
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineC.cpp | 116 ExplodedNodeSet Tmp; 118 evalLoad(Tmp, B, LHS, *it, state, location); 120 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; 209 ExplodedNodeSet Tmp; 210 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx); 216 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this); 745 ExplodedNodeSet Tmp; 746 VisitIncrementDecrementOperator(U, Pred, Tmp); 747 Bldr.addNodes(Tmp); [all...] |
ExprEngine.cpp | 455 ExplodedNodeSet Tmp(Pred); 496 assert(Tmp.size() == 1 && "have not generated any new nodes yet"); 497 assert(*Tmp.begin() == Pred && "have not generated any new nodes yet"); 498 Tmp.clear(); 501 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP); 512 NodeBuilder Bldr(Tmp, Dst, *currBldrCtx); 513 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; ++I) { 750 ExplodedNodeSet Tmp; 751 StmtNodeBuilder Bldr2(PreVisit, Tmp, *currBldrCtx) [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 | 699 APInt Tmp(bits, StringRef(TokStart+3, len), 16); 700 uint32_t activeBits = Tmp.getActiveBits(); 702 Tmp = Tmp.trunc(activeBits); 703 APSIntVal = APSInt(Tmp, TokStart[0] == 'u'); 823 APInt Tmp(numBits, StringRef(TokStart, Len), 10); 825 uint32_t minBits = Tmp.getMinSignedBits(); 827 Tmp = Tmp.trunc(minBits); 828 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 | 314 unsigned Tmp = 0; 317 case MVT::iPTRAny: ++Tmp; // FALL THROUGH. 318 case MVT::vAny: ++Tmp; // FALL THROUGH. 319 case MVT::fAny: ++Tmp; // FALL THROUGH. 327 ArgCodes.push_back(Tmp); 330 return Sig.push_back((ArgNo << 2) | Tmp);
|
/external/clang/lib/Analysis/ |
AnalysisDeclContext.cpp | 114 bool Tmp; 115 return getBody(Tmp); 119 bool Tmp; 120 getBody(Tmp); 121 return Tmp;
|
/external/clang/lib/Frontend/ |
CacheTokens.cpp | 293 Token Tmp = Tok; 294 Tmp.setKind(tok::eod); 295 Tmp.clearFlag(Token::StartOfLine); 296 Tmp.setIdentifierInfo(0); 297 EmitToken(Tmp);
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCasts.cpp | 668 unsigned Opc = I->getOpcode(), Tmp; 681 !CanEvaluateZExtd(I->getOperand(1), Ty, Tmp)) 684 if (BitsToClear == 0 && Tmp == 0) 689 if (Tmp == 0 && 728 if (!CanEvaluateZExtd(I->getOperand(1), Ty, Tmp) || 732 Tmp != BitsToClear) 744 if (!CanEvaluateZExtd(PN->getIncomingValue(i), Ty, Tmp) || 747 Tmp != BitsToClear) [all...] |
/external/clang/lib/Lex/ |
PPDirectives.cpp | 124 Token Tmp; 126 LexUnexpandedToken(Tmp); 127 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens"); 128 } while (Tmp.isNot(tok::eod)); 202 Token Tmp; 207 Lex(Tmp); 209 LexUnexpandedToken(Tmp); 213 while (Tmp.is(tok::comment)) // Skip comments in -C mode. 214 LexUnexpandedToken(Tmp); 216 if (Tmp.isNot(tok::eod)) [all...] |
/external/clang/tools/driver/ |
driver.cpp | 362 std::string Tmp = llvm::sys::FindProgramByName( 364 if (!Tmp.empty()) 365 InstalledPath = Tmp;
|
/external/llvm/include/llvm/Support/ |
MathExtras.h | 128 T Tmp = Val >> Shift; 129 if (Tmp) 130 Val = Tmp;
|