HomeSort by relevance Sort by last modified time
    Searched refs:V2 (Results 201 - 225 of 391) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/services/Car/tests/EmbeddedKitchenSinkApp/
Android.mk 43 android.hardware.automotive.vehicle-V2.0-java-static \
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/testdata/
exports.go 79 V2 float32 = 1.2
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/testdata/
exports.go 79 V2 float32 = 1.2
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 687 /// segments with the V1 value number with the V2 value number. This can
688 /// cause merging of V1/V2 values numbers and compaction of the value space.
689 VNInfo *LiveRange::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
690 assert(V1 != V2 && "Identical value#'s are always equivalent!");
697 // Make sure V2 is smaller than V1.
698 if (V1->id < V2->id) {
699 V1->copyFrom(*V2);
700 std::swap(V1, V2);
703 // Merge V1 segments into V2.
708 // Okay, we found a V1 live range. If it had a previous, touching, V2 liv
    [all...]
MachineModuleInfo.cpp 51 void allUsesReplacedWith(Value *V2) override;
182 void MMIAddrLabelMapCallbackPtr::allUsesReplacedWith(Value *V2) {
183 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 162 void add(Ty1 V1, Ty2 V2) {
164 RevMap[V2] = V1;
167 Map[V1] = V2;
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp 62 SDValue V2);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 292 static llvm::Optional<APInt> calculateOffsetDiff(APInt V1, APInt V2)
295 unsigned BW = V1.getBitWidth() > V2.getBitWidth() ?
296 V1.getBitWidth() : V2.getBitWidth();
298 uint64_t LimVal2 = V2.getLimitedValue();
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 61 Value *V2 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V2");
67 const SCEV *S2 = SE.getSCEV(V2);
87 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2);
90 V2->replaceAllUsesWith(V1);
  /external/mesa3d/src/mesa/main/
macros.h 349 #define ASSIGN_4V( V, V0, V1, V2, V3 ) \
353 V[2] = V2; \
479 #define ASSIGN_3V( V, V0, V1, V2 ) \
483 V[2] = V2; \
  /external/swiftshader/third_party/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);
  /device/linaro/bootloader/edk2/ArmPkg/Library/DefaultExceptionHandlerLib/AArch64/
DefaultExceptionHandler.c 165 DEBUG ((EFI_D_ERROR, " V2 0x%016lx %016lx V3 0x%016lx %016lx\n", SystemContext.SystemContextAArch64->V2[1], SystemContext.SystemContextAArch64->V2[0], SystemContext.SystemContextAArch64->V3[1], SystemContext.SystemContextAArch64->V3[0]));
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 256 __declspec(property(put=SetV)) int V2;
266 int i = sp.V2; // expected-error{{no getter defined for property 'V2'}}
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 252 Constant *CreateShuffleVector(Constant *V1, Constant *V2,
254 return Fold(ConstantExpr::getShuffleVector(V1, V2, Mask));
  /external/llvm/include/llvm/IR/
ConstantFolder.h 227 Constant *CreateShuffleVector(Constant *V1, Constant *V2,
229 return ConstantExpr::getShuffleVector(V1, V2, Mask);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
ConstantFolder.h 220 Constant *CreateShuffleVector(Constant *V1, Constant *V2,
222 return ConstantExpr::getShuffleVector(V1, V2, Mask);
NoFolder.h 268 Instruction *CreateShuffleVector(Constant *V1, Constant *V2,
270 return new ShuffleVectorInst(V1, V2, Mask);
TargetFolder.h 237 Constant *CreateShuffleVector(Constant *V1, Constant *V2,
239 return Fold(ConstantExpr::getShuffleVector(V1, V2, Mask));
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysisEvaluator.cpp 90 const Value *V2, const Module *M) {
96 WriteAsOperand(os2, V2, true, M);
  /external/vulkan-validation-layers/libs/glm/detail/
type_mat3x4.hpp 76 col_type const & v2);
89 template <typename V1, typename V2, typename V3>
92 tvec4<V2, P> const & v2,
type_mat4x2.hpp 77 col_type const & v2,
94 template <typename V1, typename V2, typename V3, typename V4>
97 tvec2<V2, P> const & v2,
type_mat4x3.hpp 77 col_type const & v2,
94 template <typename V1, typename V2, typename V3, typename V4>
97 tvec3<V2, P> const & v2,
  /prebuilts/go/darwin-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 27 V2 = ptwo.G()
  /prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 27 V2 = ptwo.G()
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTraverse.h 323 void enterScope(const Variable* V1, const Variable* V2) { }
326 bool compareVariableRefs(const Variable* V1, const Variable* V2) {
327 return V1 == V2;
363 void enterScope(const Variable* V1, const Variable* V2) { }
366 bool compareVariableRefs(const Variable* V1, const Variable* V2) {
367 return V1 == V2;

Completed in 2670 milliseconds

1 2 3 4 5 6 7 891011>>