Home
last modified time | relevance | path

Searched refs:Taken (Results 1 – 25 of 70) sorted by relevance

123

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DStringRefTest.cpp984 StringRef Taken = Test.take_front(5); in TEST() local
985 EXPECT_EQ(Taken, "Strin"); in TEST()
987 Taken = Test.take_back(5); in TEST()
988 EXPECT_EQ(Taken, ":Take"); in TEST()
990 Taken = Test.take_front(Test.size()); in TEST()
991 EXPECT_EQ(Taken, Test); in TEST()
993 Taken = Test.take_back(Test.size()); in TEST()
994 EXPECT_EQ(Taken, Test); in TEST()
996 Taken = Test.take_front(0); in TEST()
997 EXPECT_TRUE(Taken.empty()); in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp437 BlockMass Taken = D.takeMass(W.Amount); in distributeMass() local
439 Working[W.TargetNode.Index].getMass() += Taken; in distributeMass()
440 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr)); in distributeMass()
449 OuterLoop->BackedgeMass[OuterLoop->getHeaderIndex(W.TargetNode)] += Taken; in distributeMass()
450 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "back")); in distributeMass()
456 OuterLoop->Exits.push_back(std::make_pair(W.TargetNode, Taken)); in distributeMass()
457 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "exit")); in distributeMass()
831 BlockMass Taken = D.takeMass(W.Amount); in adjustLoopHeaderMass() local
833 Working[W.TargetNode.Index].getMass() = Taken; in adjustLoopHeaderMass()
834 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr)); in adjustLoopHeaderMass()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-cov/Inputs/
Dtest_-b_-f.output34 Taken at least once:100.00% of 4
40 Taken at least once:81.82% of 11
56 Taken at least once:86.67% of 15
Dtest_-b.output10 Taken at least once:86.67% of 15
/external/llvm/test/tools/llvm-cov/Inputs/
Dtest_-b_-f.output34 Taken at least once:100.00% of 4
40 Taken at least once:81.82% of 11
56 Taken at least once:86.67% of 15
Dtest_-b.output4 Taken at least once:86.67% of 15
/external/cros/system_api/dbus/authpolicy/
Dactive_directory_info.proto110 // Unique id of the user account. Taken from the objectGUID property of the
113 // Display name of the user. Taken from the displayName property of the Active
116 // Given name of the user. AKA first name. Taken from the givenName property
119 // Logon name of the user (without @realm). Taken from the sAMAccountName
123 // https://msdn.microsoft.com/en-us/library/ms679430(v=vs.85).aspx. Taken from
128 // https://msdn.microsoft.com/en-us/library/ms680832(v=vs.85).aspx. Taken from
132 // Common name of the user, e.g. "John Doe [jdoe]". Taken from the commonName
220 // Unique id of the user account. Taken from the objectGUID property of the
230 // Unique id of the user account. Taken from the objectGUID property of the
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopDeletion.cpp107 BasicBlock *Taken, *NotTaken; in isLoopNeverExecuted() local
110 m_Br(m_ConstantInt(Cond), Taken, NotTaken))) in isLoopNeverExecuted()
113 std::swap(Taken, NotTaken); in isLoopNeverExecuted()
114 if (Taken == Preheader) in isLoopNeverExecuted()
/external/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp411 BlockMass Taken = D.takeMass(W.Amount); in distributeMass() local
413 Working[W.TargetNode.Index].getMass() += Taken; in distributeMass()
414 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr)); in distributeMass()
423 OuterLoop->BackedgeMass[OuterLoop->getHeaderIndex(W.TargetNode)] += Taken; in distributeMass()
424 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "back")); in distributeMass()
430 OuterLoop->Exits.push_back(std::make_pair(W.TargetNode, Taken)); in distributeMass()
431 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "exit")); in distributeMass()
790 BlockMass Taken = D.takeMass(W.Amount); in adjustLoopHeaderMass() local
792 Working[W.TargetNode.Index].getMass() = Taken; in adjustLoopHeaderMass()
793 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr)); in adjustLoopHeaderMass()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DBranchProbabilityInfo.cpp241 BasicBlock *Taken = BI->getSuccessor(0); in calcPointerHeuristics() local
250 std::swap(Taken, NonTaken); in calcPointerHeuristics()
252 BP->setEdgeWeight(BB, Taken, PH_TAKEN_WEIGHT); in calcPointerHeuristics()
372 BasicBlock *Taken = BI->getSuccessor(0); in calcZeroHeuristics() local
376 std::swap(Taken, NonTaken); in calcZeroHeuristics()
378 BP->setEdgeWeight(BB, Taken, ZH_TAKEN_WEIGHT); in calcZeroHeuristics()
/external/llvm/lib/Target/AMDGPU/
DSISchedule.td62 let BufferSize = 7; // Taken from S_WAITCNT
65 let BufferSize = 31; // Taken from S_WAITCNT
71 let BufferSize = 15; // Taken from S_WAITCNT
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSISchedule.td71 let BufferSize = 7; // Taken from S_WAITCNT
74 let BufferSize = 31; // Taken from S_WAITCNT
80 let BufferSize = 15; // Taken from S_WAITCNT
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DRWMutex.inc28 // Taken from WinNT.h
33 // Taken from WinBase.h
/external/llvm/lib/Support/Windows/
DRWMutex.inc29 // Taken from WinNT.h
34 // Taken from WinBase.h
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DRWMutex.inc29 // Taken from WinNT.h
34 // Taken from WinBase.h
/external/v8/tools/cfi/
Dblacklist.txt6 # Following entries Taken from chromium's tools/cfi/blacklist.txt
/external/u-boot/arch/arm/dts/
Dbcm2835-rpi-a.dts19 * Taken from Raspberry-Pi-Rev-1.0-Model-AB-Schematics.pdf
Dbcm2835-rpi-b.dts20 * Taken from Raspberry-Pi-Rev-1.0-Model-AB-Schematics.pdf
Dbcm2835-rpi-b-rev2.dts20 * Taken from Raspberry-Pi-Rev-2.0-Model-AB-Schematics.pdf
Dbcm2835-rpi-b-plus.dts27 * Taken from Raspberry-Pi-B-Plus-V1.2-Schematics.pdf
/external/v8/src/builtins/
Dbase.tq252 '<' macro BranchIfNumberLessThan(Number, Number): never labels Taken, NotTaken;
254 '<=' macro BranchIfNumberLessThanOrEqual(Number, Number): never labels Taken,
257 '>' macro BranchIfNumberGreaterThan(Number, Number): never labels Taken,
260 never labels Taken,
608 extern macro BranchIfFastJSArray(Object, Context): never labels Taken, NotTaken;
609 extern macro BranchIfNotFastJSArray(Object, Context): never labels Taken,
760 extern macro BranchIfToBooleanIsTrue(Object): never labels Taken, NotTaken;
/external/llvm/include/llvm/Analysis/
DScalarEvolution.h679 EdgeInfo(BasicBlock *Block, const SCEV *Taken, SCEVUnionPredicate &P) :
680 ExitBlock(Block), Taken(Taken), Pred(std::move(P)) {}
686 const SCEV *Taken;
/external/swiftshader/third_party/subzero/tests_lit/
Dlit.cfg2 # Taken from utils/lit/tests in the LLVM tree and hacked together to support
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonPseudo.td270 class JumpOpcStr<string Mnemonic, bit New, bit Taken> {
271 string S = Mnemonic # !if(Taken, ":t", ":nt");
/external/protobuf/objectivec/
DGPBRootObject.m48 // Taken from http://www.burtleburtle.net/bob/hash/doobs.html

123