/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 170 Value* V2 = dyn_cast<Value>(*I); 172 if (V2) { 173 if (IsIndirect(V2, Visited)) { 303 Value* V2 = dyn_cast<Value>(Users[i]); 305 if (V2) { 306 Propagate(V2, Name, IsIndirect);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 170 Value* V2 = dyn_cast<Value>(*I); 172 if (V2) { 173 if (IsIndirect(V2, Visited)) { 303 Value* V2 = dyn_cast<Value>(Users[i]); 305 if (V2) { 306 Propagate(V2, Name, IsIndirect);
|
/external/llvm/unittests/IR/ |
MetadataTest.cpp | 136 Value *const V2 = C2; 138 MDNode *n2 = MDNode::get(Context, V2);
|
/external/llvm/include/llvm/ADT/ |
APSInt.h | 298 inline bool operator==(int64_t V1, const APSInt& V2) { 299 return V2 == V1; 301 inline bool operator!=(int64_t V1, const APSInt& V2) { 302 return V2 != V1;
|
EquivalenceClasses.h | 215 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) { 216 iterator V1I = insert(V1), V2I = insert(V2);
|
/external/llvm/lib/Target/Mips/ |
Mips16ISelDAGToDAG.cpp | 75 unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(); 81 V2 = RegInfo.createVirtualRegister(RC); 87 BuildMI(MBB, I, DL, TII.get(Mips::SllX16), V2).addReg(V0).addImm(16); 89 .addReg(V1).addReg(V2);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTX.h | 127 V2 = 2,
|
NVPTXUtilities.cpp | 360 const Value *V2 = V->stripPointerCasts(); 361 if (V2 != V && processed.find(V2) != processed.end()) 363 processed.insert(V2); 365 V = V2; 377 if (V != V2 && processed.find(V) != processed.end())
|
/external/llvm/unittests/Transforms/Utils/ |
Cloning.cpp | 33 Value *V2 = V1->clone(); 35 Clones.insert(V2); 36 return cast<T>(V2);
|
/external/llvm/lib/Transforms/IPO/ |
MergeFunctions.cpp | 181 bool enumerate(const Value *V1, const Value *V2); 383 bool FunctionComparator::enumerate(const Value *V1, const Value *V2) { 387 if (V1 == F1 && V2 == F2) 389 if (V1 == F2 && V2 == F1) 393 if (V1 == V2) return true; 394 const Constant *C2 = dyn_cast<Constant>(V2); 406 if (isa<InlineAsm>(V1) || isa<InlineAsm>(V2)) 407 return V1 == V2; 409 // Check that V1 maps to V2. If we find a value that V1 maps to then we simply 410 // check whether it's equal to V2. When there is no mapping then we need t [all...] |
/external/clang/lib/Headers/ |
avxintrin.h | 292 #define _mm256_permute2f128_pd(V1, V2, M) __extension__ ({ \ 294 __m256d __V2 = (V2); \ 297 #define _mm256_permute2f128_ps(V1, V2, M) __extension__ ({ \ 299 __m256 __V2 = (V2); \ 302 #define _mm256_permute2f128_si256(V1, V2, M) __extension__ ({ \ 304 __m256i __V2 = (V2); \ 308 #define _mm256_blend_pd(V1, V2, M) __extension__ ({ \ 310 __m256d __V2 = (V2); \ 313 #define _mm256_blend_ps(V1, V2, M) __extension__ ({ \ 315 __m256 __V2 = (V2); \ [all...] |
smmintrin.h | 79 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \ 81 __m128d __V2 = (V2); \ 84 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \ 86 __m128 __V2 = (V2); \ 110 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \ 112 __m128i __V2 = (V2); \
|
/prebuilts/sdk/renderscript/clang-include/ |
avxintrin.h | 292 #define _mm256_permute2f128_pd(V1, V2, M) __extension__ ({ \ 294 __m256d __V2 = (V2); \ 297 #define _mm256_permute2f128_ps(V1, V2, M) __extension__ ({ \ 299 __m256 __V2 = (V2); \ 302 #define _mm256_permute2f128_si256(V1, V2, M) __extension__ ({ \ 304 __m256i __V2 = (V2); \ 308 #define _mm256_blend_pd(V1, V2, M) __extension__ ({ \ 310 __m256d __V2 = (V2); \ 313 #define _mm256_blend_ps(V1, V2, M) __extension__ ({ \ 315 __m256 __V2 = (V2); \ [all...] |
smmintrin.h | 79 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \ 81 __m128d __V2 = (V2); \ 84 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \ 86 __m128 __V2 = (V2); \ 110 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \ 112 __m128i __V2 = (V2); \
|
/external/clang/test/Misc/ |
diag-template-diffing.cpp | 92 int V1, V2, V3; 95 void set3(I3<&V1, &V2>) {}; 97 set3(I3<&V3, &V2>()); 102 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, &V2>' to 'I3<&V1, &V2>' for 1st argument 112 // CHECK-NOELIDE-TREE: &V2> [all...] |
/external/chromium_org/chrome/browser/sync_file_system/ |
remote_file_sync_service.h | 76 V2,
|
/external/chromium_org/content/browser/dom_storage/ |
dom_storage_database_unittest.cc | 107 EXPECT_EQ(DOMStorageDatabase::V2, db.DetectSchemaVersion()); 212 EXPECT_EQ(DOMStorageDatabase::V2, db.DetectSchemaVersion()); 232 EXPECT_EQ(DOMStorageDatabase::V2, db.DetectSchemaVersion()); 281 EXPECT_EQ(DOMStorageDatabase::V2, db.DetectSchemaVersion());
|
dom_storage_database.cc | 186 if (current_version == V2) { 226 return V2; 275 // the data into the new V2 table.
|
/external/clang/test/Sema/ |
const-eval.c | 62 static struct a V2 = (struct a)(struct a){ 1, 2};
|
/external/llvm/lib/Analysis/ |
AliasAnalysisEvaluator.cpp | 92 const Value *V2, const Module *M) { 98 WriteAsOperand(os2, V2, true, M); 130 const Value *V2, const Module *M) { 133 << " <-> " << *V2 << '\n';
|
/external/llvm/lib/CodeGen/ |
LiveInterval.cpp | 523 /// LiveRanges with the V1 value number with the V2 value number. This can 524 /// cause merging of V1/V2 values numbers and compaction of the value space. 525 VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) { 526 assert(V1 != V2 && "Identical value#'s are always equivalent!"); 533 // Make sure V2 is smaller than V1. 534 if (V1->id < V2->id) { 535 V1->copyFrom(*V2); 536 std::swap(V1, V2); 539 // Merge V1 live ranges into V2. 544 // Okay, we found a V1 live range. If it had a previous, touching, V2 liv [all...] |
/external/llvm/unittests/Analysis/ |
ScalarEvolutionTest.cpp | 50 Value *V2 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V2"); 58 const SCEV *S2 = SE.getSCEV(V2); 78 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2); 81 V2->replaceAllUsesWith(V1);
|
/cts/suite/audio_quality/test/ |
TaskCaseTest.cpp | 82 const android::String8 V2("v2"); 87 ASSERT_TRUE(mTaskCase->registerValue(V2, val2));
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
BasicValueFactory.h | 185 const llvm::APSInt& V2); 191 getPersistentSValPair(const SVal& V1, const SVal& V2);
|
/external/clang/test/SemaCXX/ |
MicrosoftExtensions.cpp | 220 __declspec(property(put=SetV)) int V2; 230 int i = sp.V2; // expected-error{{no getter defined for property 'V2'}}
|