HomeSort by relevance Sort by last modified time
    Searched refs:V2 (Results 101 - 125 of 224) sorted by null

1 2 3 45 6 7 8 9

  /prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/
smmintrin.h 79 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \
81 __m128d __V2 = (V2); \
86 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \
88 __m128 __V2 = (V2); \
116 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \
118 __m128i __V2 = (V2); \
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
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/misc/linux-x86/analyzer/lib/clang/3.3/include/
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/
smmintrin.h 74 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \
76 (__v2df)(__m128d)(V2), \
80 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \
81 (__m128)__builtin_shufflevector((__v4sf)(__m128)(V1), (__v4sf)(__m128)(V2), \
108 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \
110 (__v8hi)(__m128i)(V2), \
  /external/llvm/lib/Analysis/
DemandedBits.cpp 84 [&](unsigned BitWidth, const Value *V1, const Value *V2) {
91 if (V2) {
94 computeKnownBits(const_cast<Value *>(V2), KnownZero2, KnownOne2, DL,
AliasAnalysisEvaluator.cpp 93 const Value *V2, const Module *M) {
99 V2->printAsOperand(os2, true, M);
131 const Value *V2, const Module *M) {
134 << " <-> " << *V2 << '\n';
  /external/clang/test/Sema/
const-eval.c 62 static struct a V2 = (struct a)(struct a){ 1, 2};
  /external/llvm/unittests/ADT/
SmallVectorTest.cpp 915 SmallVector<int, 2> V2 = {1, 2, 3, 4};
916 EXPECT_TRUE(makeArrayRef(V2).equals({1, 2, 3, 4}));
917 V2.assign({4});
918 EXPECT_TRUE(makeArrayRef(V2).equals({4}));
919 V2.append({3, 2});
920 EXPECT_TRUE(makeArrayRef(V2).equals({4, 3, 2}));
921 V2.insert(V2.begin() + 1, 5);
922 EXPECT_TRUE(makeArrayRef(V2).equals({4, 5, 3, 2}));
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
PnPProblem.cpp 17 cv::Point3f CROSS(cv::Point3f v1, cv::Point3f v2);
18 double DOT(cv::Point3f v1, cv::Point3f v2);
19 cv::Point3f SUB(cv::Point3f v1, cv::Point3f v2);
25 cv::Point3f CROSS(cv::Point3f v1, cv::Point3f v2)
28 tmp_p.x = v1.y*v2.z - v1.z*v2.y;
29 tmp_p.y = v1.z*v2.x - v1.x*v2.z;
30 tmp_p.z = v1.x*v2.y - v1.y*v2.x
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonGenInsert.cpp 220 const BitTracker::BitValue &V2) const;
227 const BitTracker::BitValue &V2) const {
228 if (V1 == V2)
230 // V1==0 => true, V2==0 => false
231 if (V1.is(0) || V2.is(0))
233 // Neither of V1,V2 is 0, and V1!=V2.
234 // V2==1 => false, V1==1 => true
235 if (V2.is(1) || V1.is(1))
236 return !V2.is(1)
    [all...]
  /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 188 __declspec(property(put=SetV)) int V2;
198 int i = sp.V2; // expected-error{{no getter defined for property 'V2'}}
  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 216 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) {
217 iterator V1I = insert(V1), V2I = insert(V2);
  /external/vulkan-validation-layers/libs/glm/detail/
type_mat3x2.hpp 76 col_type const & v2);
89 template <typename V1, typename V2, typename V3>
92 tvec2<V2, P> const & v2,
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,
  /frameworks/opt/net/wifi/tests/wifitests/assets/
ruckus.PerProviderSubscription.conf 66 b:InnerMethod=a:MS-CHAP-V2
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 684 /// segments with the V1 value number with the V2 value number. This can
685 /// cause merging of V1/V2 values numbers and compaction of the value space.
686 VNInfo *LiveRange::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
687 assert(V1 != V2 && "Identical value#'s are always equivalent!");
694 // Make sure V2 is smaller than V1.
695 if (V1->id < V2->id) {
696 V1->copyFrom(*V2);
697 std::swap(V1, V2);
700 // Merge V1 segments into V2.
705 // 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/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; \
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_facade.hpp 435 , class Derived2, class V2, class TC2, class Reference2, class Difference2 \
440 , iterator_facade<Derived2, V2, TC2, Reference2, Difference2> const& rhs)
445 , class Derived2, class V2, class TC2, class Reference2, class Difference2 \
453 , iterator_facade<Derived2, V2, TC2, Reference2, Difference2> const& rhs)
  /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);

Completed in 989 milliseconds

1 2 3 45 6 7 8 9