HomeSort by relevance Sort by last modified time
    Searched refs:vY (Results 1 - 20 of 20) sorted by null

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
frontend.h 42 void triangleSetupAB(const __m128 vX, const __m128 vY, __m128 & vA, __m128 & vB)
45 __m128 vYsub = _mm_shuffle_ps(vY, vY, _MM_SHUFFLE(3, 0, 2, 1));
46 // vY = y0 y1 y2 dc
47 vA = _mm_sub_ps(vY, vYsub);
66 void triangleSetupABVertical(const simdscalar vX[3], const simdscalar vY[3], simdscalar (&vA)[3], simdscalar (&vB)[3])
71 vA[0] = _simd_sub_ps(vY[0], vY[1]);
72 vA[1] = _simd_sub_ps(vY[1], vY[2])
    [all...]
multisample.h 67 INLINE static simdscalar vY(uint32_t sampleNum) = delete;
98 INLINE static simdscalar vY(uint32_t sampleNum)
154 INLINE static simdscalar vY(uint32_t sampleNum)
207 INLINE static simdscalar vY(uint32_t sampleNum)
268 INLINE static simdscalar vY(uint32_t sampleNum)
327 INLINE static simdscalar vY(uint32_t sampleNum)
389 INLINE static simdscalar vY(uint32_t sampleNum)
451 INLINE static simdscalar vY(uint32_t sampleNum)
514 INLINE static simdscalar vY(uint32_t sampleNum)
582 INLINE static simdscalar vY(uint32_t sampleNum
    [all...]
backend.h 382 psContext.vY.centroid = _simd_blendv_ps(vYSample, psContext.vY.center, _simd_castsi_ps(vEvalAtCenter));
397 psContext.vY.centroid = _simd_blendv_ps(psContext.vY.centroid, vYSample, _simd_castsi_ps(vCase3a));
404 psContext.vI.centroid = vplaneps(coeffs.vIa, coeffs.vIb, coeffs.vIc, psContext.vX.centroid, psContext.vY.centroid);
405 psContext.vJ.centroid = vplaneps(coeffs.vJa, coeffs.vJb, coeffs.vJc, psContext.vX.centroid, psContext.vY.centroid);
514 psContext->vY.centroid = psContext->vY.center;
527 CalcCentroidPos<T>(*psContext, coverageMask, sampleMask, psContext->vX.UL, psContext->vY.UL);
532 psContext->vY.centroid = _simd_add_ps(psContext->vY.UL, _simd_set1_ps(0.5f))
    [all...]
backend.cpp 475 psContext.vY.UL = _simd_add_ps(vULOffsetsY, _simd_set1_ps(static_cast<float>(y)));
476 psContext.vY.center = _simd_add_ps(vCenterOffsetsY, _simd_set1_ps(static_cast<float>(y)));
642 psContext.vY.UL = _simd_add_ps(psContext.vY.UL, dy);
643 psContext.vY.center = _simd_add_ps(psContext.vY.center, dy);
670 psContext.vY.UL = _simd_add_ps(vULOffsetsY, _simd_set1_ps(static_cast<float>(y)));
671 psContext.vY.center = _simd_add_ps(vCenterOffsetsY, _simd_set1_ps(static_cast<float>(y)));
729 psContext.vY.sample = _simd_add_ps(psContext.vY.UL, T::MultisampleT::vY(sample))
    [all...]
binner.cpp 79 /// @param vY: fixed point Y position for triangle verts
81 /// *Note*: expects vX, vY to be in the correct precision for the type
84 INLINE void calcBoundingBoxIntVertical(const simdvector * const tri, simdscalari(&vX)[3], simdscalari(&vY)[3], simdBBox &bbox)
94 simdscalari vMinY = vY[0];
95 vMinY = _simd_min_epi32(vMinY, vY[1]);
96 vMinY = _simd_min_epi32(vMinY, vY[2]);
98 simdscalari vMaxY = vY[0];
99 vMaxY = _simd_max_epi32(vMaxY, vY[1]);
100 vMaxY = _simd_max_epi32(vMaxY, vY[2]);
112 INLINE void calcBoundingBoxIntVertical<FEConservativeRastT>(const simdvector * const tri, simdscalari(&vX)[3], simdscalari(&vY)[3], simdBBox &bbox
    [all...]
rasterizer.cpp     [all...]
state.h 306 PixelPositions vY; // IN: x location(s) of pixels
    [all...]
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/extension/views/
PinView.java 54 float vY = vPin.y - pin.getHeight();
55 canvas.drawBitmap(pin, vX, vY, paint);
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
NotificationShadeActivity.java 65 public boolean onFling(MotionEvent e1, MotionEvent e2, float vX, float vY) {
69 mScroller.fling(0, mFullHeight, 0, (int) vY, 0, 0, 0, getHeight());
  /packages/apps/Launcher3/src/com/android/launcher3/views/
BaseDragLayer.java 230 int vY = loc[1];
233 int top = vY - y;
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
copylock.go 183 vY := vX
184 vY = vX
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
copylock.go 183 vY := vX
184 vY = vX
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
builder_misc.h 67 Value *VPLANEPS(Value* vA, Value* vB, Value* vC, Value* &vX, Value* &vY);
builder_misc.cpp 358 Value *Builder::VPLANEPS(Value* vA, Value* vB, Value* vC, Value* &vX, Value* &vY)
361 vOut = FMADDPS(vB, vY, vOut);
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoCarousel.java 114 public boolean onFling(MotionEvent e1, MotionEvent e2, float vX, float vY) {
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
simdintrin.h     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 351 int vY = loc[1];
354 int top = vY - y;
Workspace.java     [all...]
  /external/webrtc/talk/media/testdata/
h264-svc-99-640x360.rtpdump 375 ?u[?F???9???m?g??Z???f?t?X?j????c%g??'??f??fF??T?r8>????4?{`??!?ya?D?|]??.0 I?c?c[<?Of???E?[?F?_ ?P6???;=+?Xh????h?d+???v????????5?jj??L5?????N(?A?L?E{B?E*????C{'??k?{Un?:?7??hv7?%???P;•??3?e??.?B?\?wR?????2???&??!?SZ?s??+???????^Laww??YQ-?)??skd???^X?x??rj??it??4????7? j???T?A?c [r??V ?D?3(?^?[?????`k1}?{%3K?Y??F1???!????q?cnF????/?}???N??vY????????9?}??T%?1????????x????E??Ss?lg????*?|l1??g???;???q?j]???? A??_?f?s?xS?;MsPs??+?sY?/?`?B?????? ;???@J???~?K??<u(?
    [all...]
  /external/webrtc/data/voice_engine/stereo_rtp_files/
toggling_stereo_g729_pt18_pt125.rtp 281 ???*?I??X(b?j 3?1?#???*?I??XUB????#???+5I??X(b???y?O??( #(?}??+?I??XH??@qr?X?H??@qr?X?( #2?}??+?I??X.j??????F.j??????F( #<?}??,%I??X(??S@??(??S@??( #F?}??,uI??X0x[?_:c?0x[?_:c?#P?}??,?I??XHHHH#Z#d#n?}??-?I??X?D?D( #x?}??.I??X????j????????j????( #??}??.UI??X3??????m??3??????m??( #??}??.?I??X?'?W???#D?'?W???#D( #??}??.?I??X???T6?A?????T6?A??( #??}??/EI??X@???+8? ??@???+8? ??( #??}??/?I??Xp?q]T??Hp?q]T??H( #??}??/?I??Xy??C:#?*Nty??C:#?*Nt( #??}??05I??X???. ? ???. ? ( #?}??0?I??Xx??=??:?x??=??:?( #?}??0?I??Xh???? ?}4h???? ?}4( #?}??1%I??XeczvY7l?eczvY7l?( #?}??1uI??X???Xf?? ????Xf?? ?( #??}??1?I??X??????????????( #??}??2I??Xu????h?V??u????h?V??( $?}??2eI??X?????zY????????zY???( $?}??2?I??X?~?=??? ?~?=??? ?( $?}??3I??X???F????F?( $"?}??3UI??Xq&??&r?Rq&??&r?R( $,?}??3?I??X5??@?0??U5??@?0??U( $6?}??3?I??X?X??E??X??E?( $@?}??4EI??XcP?Jr1??cP?Jr1??( $J?}??4?I??X{????9r{????9r( $T?}??4?I??X'??\"%?'??\"%?( $^?}??55I??X'???e*?ß'???e*?ß( $h?}??5?I??Xl?X3XCS_?l?X3XCS_?( $r?}??5?I??X3K?a?Z?0??3K?a?Z?0??( $|?}??6%I??X???+? 7N????+? 7N?( $??}??6uI??X?d*?<?Yb??d*?<?Yb?( $??}??6?I??X ??~2??O ??~2??O( $??}??7I??X3S?&????3S?&????( $??}??7eI??X3?VLDr-Y3?VLDr-Y( $??}??7?I??X`????q?Ky`????q?Ky( $??}??8I??Xf?? i3/???f?? i3/???( $€}??8UI??X??0_/tr???0_/tr?( $?}??8?I??X?????_q?H?????_q?H( $?}??8?I??X%??W?Q'??%??W?Q'??( $??}??9EI??XM??cxr4?M??cxr4?( $?}??9?I??X??UF?|Z??UF?|Z?( $?}??9?I??XP?Y?0?NP?Y?0?N( $??}??:5I??XiTn????iTn????( %?}??:?I??X*?U??Y??*?U??Y??( %?}??:?I??X??U??S?????U??S???( %?}??;%I??X?j?J?pj???j?J?pj??( %&?}??;uI??X????p9?????p9?( %0?}??;?I??X3n?L0:q???3n?L0:q???( %:?}??<I??X?fS??????fS?????( %D?}??<eI??X??S?4T???S?4T?( %N?}??<?I??X?~?%??4@d??~?%??4@d?( %X?}??=I??X????nB?????nB?( %b?}??=UI??X?U?D??????U?D?????( %l?}??=?I??X?'?+??????'?+?????( %v?}??=?I??X??W?u>,? ???W?u>,? ?( %??}??>EI??X??????UX??????UX( %??}??>?I??X ?X?2?@? ?X?2?@?( %??}??>?I??X?`?????,?`?????,?( %??}???5I??X?{S??b????{S??b???( %??}????I??X?W???-+??W???-+?( %??}????I??Xy?????c??y?????c??( %??}??@%I??X.???G?0{_.???G?0{_( %?}??@uI??Xi????!ai????!a( %?}??@?I??Xe?`?[
    [all...]

Completed in 752 milliseconds