Searched defs:c7 (Results 1 - 22 of 22) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dinstantiation-default-2.cpp18 Constant<float, 0> *c7; // expected-note{{while substituting}} variable
/external/fio/lib/
H A Dbswap.h21 uint64_t c1, c2, c3, c4, c5, c6, c7, c8; local
29 c7 = (val >> 8) & 0xff;
32 return c1 | c2 << 8 | c3 << 16 | c4 << 24 | c5 << 32 | c6 << 40 | c7 << 48 | c8 << 56;
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dtranspose_vsx.h41 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
69 c7 = vec_mergel(b3, b7);
79 // c7: 16 36 56 76 17 37 57 77
87 v[6] = vec_mergeh(c3, c7);
88 v[7] = vec_mergel(c3, c7);
H A Dhadamard_vsx.c33 const int16x8_t c7 = vec_sub(b5, b7); local
39 v[4] = vec_add(c3, c7);
40 v[5] = vec_sub(c3, c7);
/external/clang/test/CodeGenCXX/
H A Dlto-visibility-inference.cpp68 void f(C1 *c1, C2 *c2, C3 *c3, C4 *c4, C5 *c5, C6 *c6, std::C7 *c7, argument
91 c7->f();
H A Dmangle-ms-return-qualifiers.cpp74 const volatile A* c7() { return 0; } function
75 // CHECK: "\01?c7@@YAPDVA@@XZ"
/external/webrtc/talk/media/base/
H A Dcodec_unittest.cc97 AudioCodec c7; local
100 EXPECT_TRUE(c8 == c7);
101 EXPECT_TRUE(c9 != c7);
176 VideoCodec c7; local
179 EXPECT_TRUE(c8 == c7);
180 EXPECT_TRUE(c9 != c7);
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dhadamard_neon.c38 const int16x8_t c7 = vsubq_s16(b5, b7); local
44 *a4 = vaddq_s16(c3, c7);
45 *a5 = vsubq_s16(c3, c7);
H A Dhighbd_idct4x4_add_neon.c100 int64x2_t c0, c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11; local
112 c7 = vmull_lane_s32(vget_high_s32(*a1), vget_low_s32(cospis), 1);
120 c7 = vaddq_s64(c7, c11);
128 vrshrn_n_s64(c7, DCT_CONST_BITS));
H A Dhighbd_idct8x8_add_neon.c300 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
317 b6, b7, &c0, &c1, &c2, &c3, &c4, &c5, &c6, &c7);
325 c7 = vrshrq_n_s16(c7, 5);
353 c7 = vcombine_s16(vrshrn_n_s32(a11, 5), vrshrn_n_s32(a15, 5));
355 highbd_add8x8(c0, c1, c2, c3, c4, c5, c6, c7, dest, stride, bd);
572 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
597 c7 = vrshrq_n_s16(b7, 5);
628 c7 = vcombine_s16(vrshrn_n_s32(a11, 5), vrshrn_n_s32(a15, 5));
630 highbd_add8x8(c0, c1, c2, c3, c4, c5, c6, c7, des
[all...]
H A Dtranspose_neon.h753 // c7: 45 55 65 75 47 57 67 77
761 const int32x4x2_t c7 = vpx_vtrnq_s64_to_s32(b6.val[1], b7.val[1]); local
783 a5->val[1] = c7.val[0];
787 a7->val[1] = c7.val[1];
1073 // c7.val[0]: C1 D1 E1 F1 C5 D5 E5 F5 C9 D9 E9 F9 CD DD ED FD
1074 // c7.val[1]: C3 D3 E3 F3 C7 D7 E7 F7 CB DB EB FB CF DF EF FF
1089 const uint16x8x2_t c7 = vtrnq_u16(vreinterpretq_u16_u8(b6.val[1]), local
1122 vreinterpretq_u32_u16(c7.val[0]));
1124 vreinterpretq_u32_u16(c7.val[1]));
H A Didct_neon.h226 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
252 c7 = vrsraq_n_s16(vreinterpretq_s16_u16(vmovl_u8(b7)), a7, 6);
261 b7 = vqmovun_s16(c7);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilterbanks_mips.c116 int32_t c4, c5, c6, c7; local
133 "lh %[c7], 14(%[coeff_ptr]) \n\t"
137 [c4] "=&r" (c4), [c5] "=&r" (c5), [c6] "=&r" (c6), [c7] "=&r" (c7),
156 "mul %[t3], %[c7], %[state1_lo] \n\t"
158 "mul %[b1], %[c7], %[state1_hi] \n\t"
212 [c4] "r" (c4), [c5] "r" (c5), [c6] "r" (c6), [c7] "r" (c7),
/external/libvpx/libvpx/vpx_dsp/
H A Davg.c55 int16_t c7 = b5 - b7; local
60 coeff[4] = c3 + c7;
64 coeff[5] = c3 - c7;
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp186 int c7[] = {1,2,3}; variable
193 set7(class7<c7>());
199 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'class7<c7>' to 'class7<&a7>' for 1st argument
205 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'class7<c7>' to 'class7<&a7>' for 1st argument
215 // CHECK-ELIDE-TREE: [c7 != &a7]>
227 // CHECK-NOELIDE-TREE: [c7 != &a7]>
/external/ImageMagick/MagickCore/
H A Dresize.c461 const double c7 = -0.586110644039348333520104379959307242711e-12L;
463 c0+xx*(c1+xx*(c2+xx*(c3+xx*(c4+xx*(c5+xx*(c6+xx*c7))))));
476 const double c7 = -0.187208577776590710853865174371617338991e-11L;
480 c0+xx*(c1+xx*(c2+xx*(c3+xx*(c4+xx*(c5+xx*(c6+xx*(c7+xx*(c8+xx*c9))))))));
493 const double c7 = -0.118218971804934245819960233886876537953e-13L;
495 c0+xx*(c1+xx*(c2+xx*(c3+xx*(c4+xx*(c5+xx*(c6+xx*c7))))));
457 const double c7 = -0.586110644039348333520104379959307242711e-12L; local
/external/swiftshader/src/Shader/
H A DSamplerCore.cpp1348 Vector4f c7 = sampleTexel(x1, y1, z1, w, mipmap, buffer, function); local
1372 if(componentCount >= 1) c6.x = c6.x + fu * (c7.x - c6.x);
1373 if(componentCount >= 2) c6.y = c6.y + fu * (c7.y - c6.y);
1374 if(componentCount >= 3) c6.z = c6.z + fu * (c7.z - c6.z);
1375 if(componentCount >= 4) c6.w = c6.w + fu * (c7.w - c6.w);
/external/clang/test/SemaCXX/
H A Duninitialized.cpp1190 C c7 = { 0, c7.a, 0 }; member in namespace:U::init_list
1279 C c7 = { 0, c7.a, 0 }; member in struct:U::init_list::Cwrapper
1289 c7{ 0, c7.a, 0 }
/external/swiftshader/src/Renderer/
H A DSurface.cpp3871 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 4 * x)); local
3876 c6 = _mm_avg_epu8(c6, c7);
3907 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 4 * x)); local
3920 c6 = _mm_avg_epu8(c6, c7);
4016 unsigned int c7 = *(unsigned int*)(source7 + 4 * x); local
4021 c6 = AVERAGE(c6, c7);
4052 unsigned int c7 = *(unsigned int*)(source7 + 4 * x); local
4065 c6 = AVERAGE(c6, c7);
4165 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 4 * x)); local
4170 c6 = _mm_avg_epu16(c6, c7);
4201 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 4 * x)); local
4310 unsigned int c7 = *(unsigned int*)(source7 + 4 * x); local
4346 unsigned int c7 = *(unsigned int*)(source7 + 4 * x); local
4458 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 8 * x)); local
4494 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 8 * x)); local
4603 unsigned int c7 = *(unsigned int*)(source7 + 4 * x); local
4639 unsigned int c7 = *(unsigned int*)(source7 + 4 * x); local
4753 __m128 c7 = _mm_load_ps((float*)(source7 + 4 * x)); local
4790 __m128 c7 = _mm_load_ps((float*)(source7 + 4 * x)); local
4900 float c7 = *(float*)(source7 + 4 * x); local
4937 float c7 = *(float*)(source7 + 4 * x); local
5050 __m128 c7 = _mm_load_ps((float*)(source7 + 8 * x)); local
5087 __m128 c7 = _mm_load_ps((float*)(source7 + 8 * x)); local
5197 float c7 = *(float*)(source7 + 4 * x); local
5234 float c7 = *(float*)(source7 + 4 * x); local
5347 __m128 c7 = _mm_load_ps((float*)(source7 + 16 * x)); local
5384 __m128 c7 = _mm_load_ps((float*)(source7 + 16 * x)); local
5494 float c7 = *(float*)(source7 + 4 * x); local
5531 float c7 = *(float*)(source7 + 4 * x); local
5670 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 2 * x)); local
5735 __m128i c7 = _mm_load_si128((__m128i*)(source7 + 2 * x)); local
5897 unsigned short c7 = *(unsigned short*)(source7 + 2 * x); local
5933 unsigned short c7 = *(unsigned short*)(source7 + 2 * x); local
[all...]
/external/boringssl/src/crypto/curve25519/
H A Dcurve25519.c4166 int64_t c7 = 2097151 & (load_3(c + 18) >> 3); local
4226 s7 = c7 + a0 * b7 + a1 * b6 + a2 * b5 + a3 * b4 + a4 * b3 + a5 * b2 +
/external/swiftshader/src/Reactor/
H A DLLVMReactor.cpp3114 Short8::Short8(short c0, short c1, short c2, short c3, short c4, short c5, short c6, short c7) argument
3116 int64_t constantVector[8] = {c0, c1, c2, c3, c4, c5, c6, c7};
3186 UShort8::UShort8(unsigned short c0, unsigned short c1, unsigned short c2, unsigned short c3, unsigned short c4, unsigned short c5, unsigned short c6, unsigned short c7) argument
3188 int64_t constantVector[8] = {c0, c1, c2, c3, c4, c5, c6, c7};
/external/r8/deps/
H A Dcommons-compress-1.12.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/compress/ ...

Completed in 817 milliseconds