/external/clang/test/PCH/ |
reinclude2.h | 1 int q1 = A::x; variable
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/ |
swap.pass.cpp | 21 std::priority_queue<int> q1; local 23 q1.push(1); 24 q1.push(3); 25 q1.push(2); 26 q1.swap(q2); 27 assert(q1.empty());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.special/ |
swap.pass.cpp | 23 std::priority_queue<int> q1; local 25 q1.push(1); 26 q1.push(3); 27 q1.push(2); 28 swap(q1, q2); 29 assert(q1.empty());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.ops/ |
lt.pass.cpp | 39 std::queue<int> q1 = make<std::queue<int> >(5); local 41 assert(q1 < q2); 42 assert(q2 > q1); 43 assert(q1 <= q2); 44 assert(q2 >= q1);
|
eq.pass.cpp | 33 std::queue<int> q1 = make<std::queue<int> >(5); local 35 std::queue<int> q1_save = q1; 37 assert(q1 == q1_save); 38 assert(q1 != q2);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.ops/ |
lt.pass.cpp | 39 std::stack<int> q1 = make<std::stack<int> >(5); local 41 assert(q1 < q2); 42 assert(q2 > q1); 43 assert(q1 <= q2); 44 assert(q2 >= q1);
|
eq.pass.cpp | 33 std::stack<int> q1 = make<std::stack<int> >(5); local 35 std::stack<int> q1_save = q1; 37 assert(q1 == q1_save); 38 assert(q1 != q2);
|
/external/chromium_org/third_party/skia/src/opts/ |
memset32_neon.S | 33 vmov q1, q0 44 vst1.64 {q0, q1}, [r0]! 45 vst1.64 {q0, q1}, [r0]! 46 vst1.64 {q0, q1}, [r0]! 47 vst1.64 {q0, q1}, [r0]! 48 vst1.64 {q0, q1}, [r0]! 49 vst1.64 {q0, q1}, [r0]! 50 vst1.64 {q0, q1}, [r0]! 51 vst1.64 {q0, q1}, [r0]! 52 vst1.64 {q0, q1}, [r0] [all...] |
/external/skia/src/opts/ |
memset32_neon.S | 33 vmov q1, q0 44 vst1.64 {q0, q1}, [r0]! 45 vst1.64 {q0, q1}, [r0]! 46 vst1.64 {q0, q1}, [r0]! 47 vst1.64 {q0, q1}, [r0]! 48 vst1.64 {q0, q1}, [r0]! 49 vst1.64 {q0, q1}, [r0]! 50 vst1.64 {q0, q1}, [r0]! 51 vst1.64 {q0, q1}, [r0]! 52 vst1.64 {q0, q1}, [r0] [all...] |
/external/chromium_org/net/dns/ |
dns_query_unittest.cc | 41 DnsQuery q1(0xbeef, qname, dns_protocol::kTypeA); 42 EXPECT_EQ(dns_protocol::kTypeA, q1.qtype()); 44 ASSERT_EQ(static_cast<int>(sizeof(query_data)), q1.io_buffer()->size()); 45 EXPECT_EQ(0, memcmp(q1.io_buffer()->data(), query_data, sizeof(query_data))); 46 EXPECT_EQ(qname, q1.qname()); 50 EXPECT_EQ(question, q1.question()); 58 DnsQuery q1(0, qname, dns_protocol::kTypeA); 59 EXPECT_EQ(0, q1.id()); 60 scoped_ptr<DnsQuery> q2(q1.CloneWithNewId(42)); 62 EXPECT_EQ(q1.io_buffer()->size(), q2->io_buffer()->size()) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.defn/ |
swap.pass.cpp | 29 std::queue<int> q1 = make<std::queue<int> >(5); local 31 std::queue<int> q1_save = q1; 33 q1.swap(q2); 34 assert(q1 == q2_save);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.special/ |
swap.pass.cpp | 30 std::queue<int> q1 = make<std::queue<int> >(5); local 32 std::queue<int> q1_save = q1; 34 swap(q1, q2); 35 assert(q1 == q2_save);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
swap.pass.cpp | 29 std::stack<int> q1 = make<std::stack<int> >(5); local 31 std::stack<int> q1_save = q1; 33 q1.swap(q2); 34 assert(q1 == q2_save);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.special/ |
swap.pass.cpp | 30 std::stack<int> q1 = make<std::stack<int> >(5); local 32 std::stack<int> q1_save = q1; 34 swap(q1, q2); 35 assert(q1 == q2_save);
|
/hardware/invensense/60xx/mlsdk/mllite/ |
mlMathFunc.c | 97 void inv_q_mult(const long *q1, const long *q2, long *qProd) 100 qProd[0] = (long)(((long long)q1[0] * q2[0] - (long long)q1[1] * q2[1] - 101 (long long)q1[2] * q2[2] - 102 (long long)q1[3] * q2[3]) >> 30); 104 (int)(((long long)q1[0] * q2[1] + (long long)q1[1] * q2[0] + 105 (long long)q1[2] * q2[3] - (long long)q1[3] * q2[2]) >> 30); 107 (long)(((long long)q1[0] * q2[2] - (long long)q1[1] * q2[3] [all...] |
/external/eigen/test/ |
geo_quaternion.cpp | 24 template<typename QuatType> void check_slerp(const QuatType& q0, const QuatType& q1) 32 Scalar theta_tot = AA(q1*q0.inverse()).angle(); 37 QuatType q = q0.slerp(t,q1); 72 Quaternionx q1, q2; 75 q1.coeffs().setRandom(); 76 VERIFY_IS_APPROX(q1.coeffs(), (q1*q2).coeffs()); 79 q1 *= q2; 81 q1 = AngleAxisx(a, v0.normalized()); 85 Scalar refangle = internal::abs(AngleAxisx(q1.inverse()*q2).angle()) 188 Quaternionx q1 = MQuaternionA(array1); local 211 QuaternionA *q1 = ::new(reinterpret_cast<void*>(array1)) QuaternionA; local [all...] |
/external/valgrind/main/none/tests/arm/ |
neon128.c | 356 TESTINSN_imm("vmov.i16 q1", q1, 0x7); 370 TESTINSN_imm("vmvn.i16 q1", q1, 0x7); 397 TESTINSN_un("vmvn q0, q1", q0, q1, i32, 24); 402 TESTINSN_un("vmov q0, q1", q0, q1, i32, 24); 407 TESTINSN_un("vmov q0, q1", q0, q1, i8, 7) [all...] |
/external/llvm/test/MC/ARM/ |
neon-vswp.s | 4 vswp q1, q2 7 @ CHECK: vswp q1, q2 @ encoding: [0x44,0x20,0xb2,0xf3]
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_sqrt.c | 100 u_int32_t r,t1,s1,ix1,q1; local 138 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */ 163 q1 += r; 175 if (q1==(u_int32_t)0xffffffff) { q1=0; q += 1;} 177 if (q1==(u_int32_t)0xfffffffe) q+=1; 178 q1+=2; 180 q1 += (q1&1) [all...] |
/external/fdlibm/ |
e_sqrt.c | 100 unsigned r,t1,s1,ix1,q1; local 140 q = q1 = s0 = s1 = 0; /* [q,q1] = ieee_sqrt(x) */ 165 q1 += r; 177 if (q1==(unsigned)0xffffffff) { q1=0; q += 1;} 179 if (q1==(unsigned)0xfffffffe) q+=1; 180 q1+=2; 182 q1 += (q1&1) [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_DeBlockPixel.c | 35 * [in] Step Step between pixels q0 and q1 47 int Step, /* step between pixels q0 and q1 */ 55 int p3, p2, p1, p0, q0, q1, q2, q3; local 68 q1 = pQ0[ 1*Step]; 72 if (armAbs(p0-q0)>=alpha || armAbs(p1-p0)>=beta || armAbs(q1-q0)>=beta) 75 p3, p2, p1, p0, q0, q1, q2, q3, alpha, beta); 102 delta = (((q0-p0)<<2) + (p1-q1) + 4) >> 3; 117 delta = (q2 + ((p0+q0+1)>>1) - (q1<<1))>>1; 119 pQ0[ 1*Step] = (OMX_U8)(q1 + delta); 126 pQ0[-1*Step] = (OMX_U8)((p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4)>>3) [all...] |
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
vp9_loopfilter_masks_dspr2.h | 26 uint32_t q0, uint32_t q1, 61 /* mask |= (abs(q1 - q0) > limit) 62 * hev |= (abs(q1 - q0) > thresh) 64 "subu_s.qb %[c], %[q1], %[q0] \n\t" 65 "subu_s.qb %[r_k], %[q0], %[q1] \n\t" 72 /* mask |= (abs(q2 - q1) > limit) */ 73 "subu_s.qb %[c], %[q2], %[q1] \n\t" 74 "subu_s.qb %[r_k], %[q1], %[q2] \n\t" 90 [p1] "r" (p1), [p0] "r" (p0), [q1] "r" (q1), [q0] "r" (q0) [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_loopfilter_filters.c | 24 uint8_t q0, uint8_t q1, 30 mask |= (abs(q1 - q0) > limit) * -1; 31 mask |= (abs(q2 - q1) > limit) * -1; 33 mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > blimit) * -1; 40 uint8_t q0, uint8_t q1, 44 mask |= (abs(q1 - q0) > thresh) * -1; 56 uint8_t q1, uint8_t q2, 58 int8_t mask = ~flat_mask4(thresh, p3, p2, p1, p0, q0, q1, q2, q3); 66 uint8_t q0, uint8_t q1) { 69 hev |= (abs(q1 - q0) > thresh) * -1 115 const uint8_t q0 = s[0 * p], q1 = s[1 * p], q2 = s[2 * p], q3 = s[3 * p]; local 135 const uint8_t q0 = s[0], q1 = s[1], q2 = s[2], q3 = s[3]; local 151 const uint8_t q0 = *oq0, q1 = *oq1, q2 = *oq2, q3 = *oq3; local 176 const uint8_t q0 = s[0 * p], q1 = s[1 * p], q2 = s[2 * p], q3 = s[3 * p]; local 197 const uint8_t q0 = s[0], q1 = s[1], q2 = s[2], q3 = s[3]; local 222 const uint8_t q0 = *oq0, q1 = *oq1, q2 = *oq2, q3 = *oq3, local 270 const uint8_t q0 = s[0 * p], q1 = s[1 * p], q2 = s[2 * p], q3 = s[3 * p]; local 296 const uint8_t q0 = s[0], q1 = s[1], q2 = s[2], q3 = s[3]; local [all...] |
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/ |
ml_math_func.c | 41 float cgcross[4], q1[4], q2[4], qi[4]; local 51 inv_q_multf(quat, cgcross, q1); 53 inv_q_multf(q1, qi, q2); 157 * @param[in] q1 First Quaternion Multicand, length 4. 1.0 scaled 164 void inv_q_mult(const long *q1, const long *q2, long *qProd) 167 qProd[0] = inv_q30_mult(q1[0], q2[0]) - inv_q30_mult(q1[1], q2[1]) - 168 inv_q30_mult(q1[2], q2[2]) - inv_q30_mult(q1[3], q2[3]); 170 qProd[1] = inv_q30_mult(q1[0], q2[1]) + inv_q30_mult(q1[1], q2[0]) [all...] |
/external/chromium_org/third_party/libwebp/dsp/ |
dec_sse2.c | 281 #define GET_NOTHEV(p1, p0, q0, q1, hev_thresh, not_hev) { \ 284 const __m128i t_2 = MM_ABS(q1, q0); \ 288 const __m128i t_4 = _mm_subs_epu8(t_2, h); /* abs(q1 - q0) - hev_tresh */ \ 294 #define GET_BASE_DELTA(p1, p0, q0, q1, o) { \ 296 o = _mm_subs_epi8(p1, q1); /* p1 - q1 */ \ 297 o = _mm_adds_epi8(o, qp0); /* p1 - q1 + 1 * (q0 - p0) */ \ 298 o = _mm_adds_epi8(o, qp0); /* p1 - q1 + 2 * (q0 - p0) */ \ 299 o = _mm_adds_epi8(o, qp0); /* p1 - q1 + 3 * (q0 - p0) */ \ 329 const __m128i* q1, int thresh, __m128i *mask) 604 __m128i q1 = _mm_loadu_si128((__m128i*)&p[stride]); local 614 __m128i p1, p0, q0, q1; local 693 __m128i p2, p1, p0, q0, q1, q2; local 718 __m128i p3, p2, p1, p0, q0, q1, q2, q3; local 739 __m128i t1, t2, p1, p0, q0, q1; local 768 __m128i t1, t2, p1, p0, q0, q1; local 793 __m128i t1, p2, p1, p0, q0, q1, q2; local 818 __m128i p3, p2, p1, p0, q0, q1, q2, q3; local 838 __m128i t1, t2, p1, p0, q0, q1; local 864 __m128i t1, t2, p1, p0, q0, q1; local [all...] |