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

1 2 3 45 6 7 8 910

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_vertex.h 66 GLfloat u1, v1, q1; member in struct:__anon13419::__anon13421
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 174 * @param q1
181 public Quaternion(Quaternion q1, Quaternion q2, float interp) {
182 slerp(q1, q2, interp);
622 * @param q1
629 public Quaternion slerp(Quaternion q1, Quaternion q2, float t) {
631 if (q1.x == q2.x && q1.y == q2.y && q1.z == q2.z && q1.w == q2.w) {
632 this.set(q1);
    [all...]
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
vp8_memcpy_neon.asm 32 vld1.8 {q0, q1}, [r1]! ;load src data
35 vst1.8 {q0, q1}, [r0]! ;copy to dst_ptr
vp8_mse16x16_neon.asm 40 vld1.8 {q1}, [r0], r1
68 vpaddl.u32 q1, q10
108 vpaddl.u32 q1, q9
  /external/libvpx/libvpx/vpx_scale/arm/neon/
vp8_vpxyv12_copysrcframe_func_neon.asm 53 vld1.8 {q0, q1}, [r2]!
63 vst1.8 {q0, q1}, [r3]!
110 vld1.8 {q0, q1}, [r2]!
116 vst1.8 {q0, q1}, [r3]!
167 vld1.8 {q0, q1}, [r2]!
173 vst1.8 {q0, q1}, [r3]!
216 vld1.8 {q0, q1}, [r2]!
220 vst1.8 {q0, q1}, [r3]!
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_vertex.h 66 GLfloat u1, v1, q1; member in struct:__anon23886::__anon23888
  /hardware/samsung_slsi/exynos5/libswconverter/
csc_tiled_to_linear_uv_neon.s 85 vld1.8 {q0, q1}, [r8]!
95 vst1.8 {q1}, [r7], r2
163 vld1.8 {q1}, [r8]!
165 vst1.8 {q1}, [r7], r2
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fractions.py 243 p0, q0, p1, q1 = 0, 1, 1, 0
247 q2 = q0+a*q1
250 p0, q0, p1, q1 = p1, q1, p0+a*p1, q2
253 k = (max_denominator-q0)//q1
254 bound1 = Fraction(p0+k*p1, q0+k*q1)
255 bound2 = Fraction(p1, q1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fractions.py 243 p0, q0, p1, q1 = 0, 1, 1, 0
247 q2 = q0+a*q1
250 p0, q0, p1, q1 = p1, q1, p0+a*p1, q2
253 k = (max_denominator-q0)//q1
254 bound1 = Fraction(p0+k*p1, q0+k*q1)
255 bound2 = Fraction(p1, q1)
  /external/opencv/cv/src/
cvmoments.cpp 539 double q0 = t0 * t0, q1 = t1 * t1; local
547 HuState->hu4 = q0 + q1;
548 HuState->hu6 = d * (q0 - q1) + n4 * t0 * t1;
550 t0 *= q0 - 3 * q1;
551 t1 *= 3 * q0 - q1;
554 q1 = 3 * nu21 - nu03;
556 HuState->hu3 = q0 * q0 + q1 * q1;
557 HuState->hu5 = q0 * t0 + q1 * t1;
558 HuState->hu7 = q1 * t0 - q0 * t1
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
dec.c 496 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
497 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];
506 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
514 p[ step] = clip1[255 + q1 - a3];
520 const int q0 = p[0], q1 = p[step], q2 = p[2*step]; local
521 const int a = sclip1[1020 + 3 * (q0 - p0) + sclip1[1020 + p1 - q1]];
529 p[ step] = clip1[255 + q1 - a2];
534 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
535 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
539 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step] local
546 const int q0 = p[0], q1 = p[step], q2 = p[2*step], q3 = p[3*step]; local
    [all...]
  /external/chromium_org/ui/gfx/
quad_unittest.cc 20 QuadF q1; local
24 EXPECT_EQ(q1.ToString(), q2.ToString());
44 EXPECT_NE(q1.ToString(), q4.ToString());
45 q1 = BoundingRect(a, c);
46 EXPECT_EQ(q1.ToString(), q4.ToString());
49 EXPECT_NE(q1.ToString(), q3.ToString());
50 q1 = q3;
51 EXPECT_EQ(q1.ToString(), q3.ToString());
61 QuadF q1(a, b, c, d);
62 QuadF added = q1 + v
    [all...]
  /external/webp/src/dsp/
dec.c 496 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
497 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];
506 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
514 p[ step] = clip1[255 + q1 - a3];
520 const int q0 = p[0], q1 = p[step], q2 = p[2*step]; local
521 const int a = sclip1[1020 + 3 * (q0 - p0) + sclip1[1020 + p1 - q1]];
529 p[ step] = clip1[255 + q1 - a2];
534 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
535 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
539 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step] local
546 const int q0 = p[0], q1 = p[step], q2 = p[2*step], q3 = p[3*step]; local
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_mblpf_vert_loopfilter_dspr2.c 34 uint32_t p7, p6, p5, p4, p3, p2, p1, p0, q0, q1, q2, q3, q4, q5, q6, q7; local
86 "lw %[q1], (%[s3]) \n\t"
93 : [q3] "=&r" (q3), [q2] "=&r" (q2), [q1] "=&r" (q1),
137 /* transpose q0, q1, q2, q3
142 q1 q1_0 q1_1 q1_2 q1_3
149 q1 q0_1 q1_1 q2_1 q3_1
155 "precrq.qb.ph %[prim3], %[q1], %[q0] \n\t"
156 "precr.qb.ph %[prim4], %[q1], %[q0] \n\t"
164 "precrq.ph.w %[q1], %[q0], %[sec4] \n\t
    [all...]
  /external/speex/libspeex/
kiss_fft.c 286 int u,k,q1,q; local
298 for ( q1=0 ; q1<p ; ++q1 ) {
299 scratchbuf[q1] = Fout[ k ];
301 C_FIXDIV(scratchbuf[q1],p);
307 for ( q1=0 ; q1<p ; ++q1 ) {
  /external/libvpx/libvpx/vp9/common/x86/
vp9_loopfilter_intrin_avx2.c 66 // mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > blimit) * -1;
69 // mask |= (abs(q1 - q0) > limit) * -1;
402 __m128i p4, p3, p2, p1, p0, q0, q1, q2, q3, q4; local
418 q1 = _mm_loadu_si128((__m128i *) (s + 1 * p));
426 const __m128i abs_q1q0 = _mm_or_si128(_mm_subs_epu8(q1, q0),
427 _mm_subs_epu8(q0, q1));
432 __m128i abs_p1q1 = _mm_or_si128(_mm_subs_epu8(p1, q1),
433 _mm_subs_epu8(q1, p1));
443 // mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > blimit) * -1;
446 // mask |= (abs(q1 - q0) > limit) * -1
    [all...]
  /external/clang/test/SemaCXX/
addr-of-overloaded-function.cpp 75 void q1(int); // expected-note{{possible target for call}}
87 q1<int>; // expected-error-re{{reference to non-static member function must be called$}}
  /external/eigen/unsupported/Eigen/src/FFT/
ei_kissfft_impl.h 234 int u,k,q1,q; local
242 for ( q1=0 ; q1<p ; ++q1 ) {
243 scratchbuf[q1] = Fout[ k ];
248 for ( q1=0 ; q1<p ; ++q1 ) {
  /external/libvpx/libvpx/vp8/common/arm/neon/
bilinearpredict8x4_neon.asm 38 vld1.u8 {q1}, [r0], r1 ;load src data
85 vmull.u8 q1, d22, d0 ;(src_ptr[0] * vp8_filter[0])
90 vmlal.u8 q1, d23, d1 ;(src_ptr[pixel_step] * vp8_filter[1])
97 vqrshrn.u16 d2, q1, #7 ;shift/round/saturate to u8
shortidct4x4llm_neon.asm 41 vld1.16 {q1, q2}, [r0]
116 vaddw.u8 q1, q1, d6
119 vqmovun.s16 d1, q1
vp8_subpixelvariance16x16_neon.asm 146 vmull.u8 q1, d11, d0
154 vmlal.u8 q1, d11, d1 ;(src_ptr[0] * Filter[1])
169 vqrshrn.u16 d16, q1, #7
196 vmull.u8 q1, d22, d0 ;(src_ptr[0] * Filter[0])
209 vmlal.u8 q1, d24, d1 ;(src_ptr[pixel_step] * Filter[1])
220 vqrshrn.u16 d2, q1, #7 ;shift/round/saturate to u8
323 vmull.u8 q1, d22, d0 ;(src_ptr[0] * Filter[0])
336 vmlal.u8 q1, d24, d1 ;(src_ptr[pixel_step] * Filter[1])
345 vqrshrn.u16 d2, q1, #7 ;shift/round/saturate to u8
378 vld1.8 {q1}, [r3]
    [all...]
  /frameworks/base/core/java/android/hardware/
SensorManager.java 1358 float q1 = rotationVector[0]; local
    [all...]
  /bionic/libc/arch-arm/krait/bionic/
memset.S 88 vmov q1, q0
  /external/llvm/test/MC/ARM/
neon-shiftaccum-encoding.s 15 vsra.u8 q1, q7, #8
50 @ CHECK: vsra.u8 q1, q7, #8 @ encoding: [0x5e,0x21,0x88,0xf3]
80 vrsra.s8 q1, q2, #8
115 @ CHECK: vrsra.s8 q1, q2, #8 @ encoding: [0x54,0x23,0x88,0xf2]
146 vsli.8 q1, q8, #7
154 vsri.8 q1, q8, #8
181 @ CHECK: vsli.8 q1, q8, #7 @ encoding: [0x70,0x25,0x8f,0xf3]
189 @ CHECK: vsri.8 q1, q8, #8 @ encoding: [0x70,0x24,0x88,0xf3]
neont2-shiftaccum-encoding.s 17 vsra.u8 q1, q7, #8
52 @ CHECK: vsra.u8 q1, q7, #8 @ encoding: [0x88,0xff,0x5e,0x21]
83 vrsra.s8 q1, q2, #8
118 @ CHECK: vrsra.s8 q1, q2, #8 @ encoding: [0x88,0xef,0x54,0x23]
149 vsli.8 q1, q8, #7
157 vsri.8 q1, q8, #8
184 @ CHECK: vsli.8 q1, q8, #7 @ encoding: [0x8f,0xff,0x70,0x25]
192 @ CHECK: vsri.8 q1, q8, #8 @ encoding: [0x88,0xff,0x70,0x24]

Completed in 236 milliseconds

1 2 3 45 6 7 8 910