/external/llvm/lib/Target/NVPTX/InstPrinter/ |
NVPTXInstPrinter.cpp | 255 if (Imm == NVPTX::PTXLdStInstCode::V2) 256 O << ".v2";
|
/external/llvm/lib/Transforms/Scalar/ |
Reassociate.cpp | [all...] |
CodeGenPrepare.cpp | 364 const Value *V2 = PN->getIncomingValueForBlock(BB); 366 // If V2 is a phi node in BB, look up what the mapped value will be. 367 if (const PHINode *V2PN = dyn_cast<PHINode>(V2)) 369 V2 = V2PN->getIncomingValueForBlock(Pred); 372 if (V1 != V2) return false; [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineAndOrXor.cpp | [all...] |
InstCombineLoadStoreAlloca.cpp | 415 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2). 421 LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2), 424 V2->setAlignment(Align); 425 return SelectInst::Create(SI->getCondition(), V1, V2); 685 /// if () { *P = v1; } else { *P = v2 } 689 /// *P = v1; if () { *P = v2; }
|
InstCombineShifts.cpp | 406 Value *V1, *V2; 464 m_And(m_OneUse(m_Shr(m_Value(V1), m_Value(V2))), 465 m_ConstantInt(CC))) && V2 == Op1) {
|
InstCombineCasts.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelDAGToDAG.cpp | 279 SDNode *createQuadSRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3); 280 SDNode *createQuadDRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3); 281 SDNode *createQuadQRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3); [all...] |
/external/llvm/lib/IR/ |
Verifier.cpp | 353 const Value *V1 = 0, const Value *V2 = 0, 357 WriteValue(V2); 394 #define Assert2(C, M, V1, V2) \ 395 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0) 396 #define Assert3(C, M, V1, V2, V3) \ 397 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0) 398 #define Assert4(C, M, V1, V2, V3, V4) \ 399 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0) [all...] |
Constants.cpp | [all...] |
Instructions.cpp | [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | 520 std::vector<ValueEqualityComparisonCase> *V1 = &C1, *V2 = &C2; 522 // Make V1 be smaller than V2. 523 if (V1->size() > V2->size()) 524 std::swap(V1, V2); 528 // Just scan V2. 530 for (unsigned i = 0, e = V2->size(); i != e; ++i) 531 if (TheVal == (*V2)[i].Value) 537 array_pod_sort(V2->begin(), V2->end()); 538 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size() [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveInterval.h | 258 /// LiveRanges with the V1 value number with the V2 value number. This can 259 /// cause merging of V1/V2 values numbers and compaction of the value space. 260 VNInfo* MergeValueNumberInto(VNInfo *V1, VNInfo *V2);
|
/external/llvm/include/llvm/IR/ |
Constants.h | [all...] |
IRBuilder.h | [all...] |
Instructions.h | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | [all...] |
/external/chromium_org/third_party/libwebp/dsp/ |
lossless.c | 298 const __m128i V2 = _mm_sub_epi16(V1, C2); 299 const __m128i b = _mm_packus_epi16(V2, V2); [all...] |
/external/webp/src/dsp/ |
lossless.c | 298 const __m128i V2 = _mm_sub_epi16(V1, C2); 299 const __m128i b = _mm_packus_epi16(V2, V2); [all...] |
/external/chromium_org/chrome/browser/sync_file_system/ |
sync_file_system_service.cc | 51 const char kRemoteSyncNameV2[] = "Remote sync (v2)"; 737 RemoteFileSyncService::V2, profile_);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXISelDAGToDAG.cpp | 222 vecType = NVPTX::PTXLdStInstCode::V2; 479 VecType = NVPTX::PTXLdStInstCode::V2; [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | [all...] |
/external/chromium_org/remoting/webapp/ |
remoting.js | 13 * @type {boolean} True if this is a v2 app; false if it is a legacy app. 42 // Determine whether or not this is a V2 web-app. In order to keep the apps 43 // v2 patch as small as possible, all JS changes needed for apps v2 are done 49 htmlNode.classList.add('apps-v2'); 251 var v2OrLegacy = remoting.isAppsV2 ? " (v2)" : " (legacy)";
|
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_exec_api.c | 405 #define ATTR( A, N, T, V0, V1, V2, V3 ) \ 419 if (N>2) dest[2] = V2; \ [all...] |