Home
last modified time | relevance | path

Searched refs:_x (Results 1 – 25 of 157) sorted by relevance

1234567

/external/libopus/celt/
Decintrin.h56 static __inline int ec_bsr(unsigned long _x){ in ec_bsr() argument
58 _BitScanReverse(&ret,_x); in ec_bsr()
62 # define EC_CLZ(_x) (-ec_bsr(_x)) argument
66 # define EC_CLZ(_x) (_lnorm(_x)) argument
70 # define EC_CLZ(_x) (__builtin_clz(_x)) argument
73 # define EC_CLZ(_x) (__builtin_clzl(_x)) argument
82 # define EC_ILOG(_x) (EC_CLZ0-EC_CLZ(_x)) argument
85 # define EC_ILOG(_x) (ec_ilog(_x)) argument
Dcelt_lpc.c92 const opus_val16 *_x, in celt_fir_c() argument
112 x[i+ord]=_x[i]; in celt_fir_c()
114 mem[i] = _x[N-i-1]; in celt_fir_c()
119 opus_val32 sum = SHL32(EXTEND32(_x[i]), SIG_SHIFT); in celt_fir_c()
131 _y[i ] = SATURATE16(ADD32(EXTEND32(_x[i ]), PSHR32(sum[0], SIG_SHIFT))); in celt_fir_c()
132 _y[i+1] = SATURATE16(ADD32(EXTEND32(_x[i+1]), PSHR32(sum[1], SIG_SHIFT))); in celt_fir_c()
133 _y[i+2] = SATURATE16(ADD32(EXTEND32(_x[i+2]), PSHR32(sum[2], SIG_SHIFT))); in celt_fir_c()
134 _y[i+3] = SATURATE16(ADD32(EXTEND32(_x[i+3]), PSHR32(sum[3], SIG_SHIFT))); in celt_fir_c()
141 _y[i] = SATURATE16(ADD32(EXTEND32(_x[i]), PSHR32(sum, SIG_SHIFT))); in celt_fir_c()
147 void celt_iir(const opus_val32 *_x, in celt_iir() argument
[all …]
/external/clang/test/CXX/lex/lex.literal/lex.ext/
Dp2.cpp6 int a = 123_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arg…
7 int b = 4.2_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arg…
8 int c = "foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with a…
9 int d = L"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with …
10 int e = u8"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with…
11 int f = u"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with …
12 int g = U"foo"_x; // expected-error {{no matching literal operator for call to 'operator""_x' with …
13 int h = 'y'_x; // expected-error {{no matching literal operator for call to 'operator""_x' with arg…
14 int i = L'y'_x; // expected-error {{no matching literal operator for call to 'operator""_x' with ar…
15 int j = u'y'_x; // expected-error {{no matching literal operator for call to 'operator""_x' with ar…
[all …]
Dp11.cpp9 int operator "" _x(); // expected-warning {{string literal operator templates are a GNU extension}}
11 double operator "" _x();
13 auto a="string"_x;
14 auto b=42_x;
18 char operator "" _x(const char *begin, size_t size);
19 auto c="string"_x;
20 auto d=L"string"_x;
Dp12.cpp10 template<typename T, T... str> int operator""_x() { // #1 expected-warning {{string literal operato… in operator ""_x()
14 void *operator""_x(const char*); // #2
15 void *a = 123_x; // ok, calls #2
16 int b = u8"\"тест ��"_x; // ok, calls #1
19 int e = uR"("тест ��)"_x;
21 int g = UR"("тест_��)"_x; // expected-note {{in instantiation of function template specialization '…
/external/clang/test/Lexer/
Dtoken-concat.cpp4 id("s")_x // CHECK: "s" _x
5 id(L"s")_x // CHECK: L"s" _x
6 id(u8"s")_x // CHECK: u8"s" _x
7 id(u"s")_x // CHECK: u"s" _x
8 id(U"s")_x // CHECK: U"s" _x
9 id('s')_x // CHECK: 's' _x
10 id(L's')_x // CHECK: L's' _x
11 id(u's')_x // CHECK: u's' _x
12 id(U's')_x // CHECK: U's' _x
13 id("s"_x)_y // CHECK: "s"_x _y
[all …]
/external/llvm/test/MC/ARM/
Dmacho-movwt.s5 movw r0, :lower16:_x
6 movt r0, :upper16:_x
8 movw r0, :lower16:_x+4
9 movt r0, :upper16:_x+4
11 movw r0, :lower16:_x+0x10000
12 movt r0, :upper16:_x+0x10000
15 movw r0, :lower16:_x
16 movt r0, :upper16:_x
18 movw r0, :lower16:_x+4
19 movt r0, :upper16:_x+4
[all …]
/external/libopus/celt/x86/
Dcelt_lpc_sse.c43 void celt_fir_sse4_1(const opus_val16 *_x, in celt_fir_sse4_1() argument
68 x[i+ord ]=_x[i ]; in celt_fir_sse4_1()
69 x[i+ord+1]=_x[i+1]; in celt_fir_sse4_1()
70 x[i+ord+2]=_x[i+2]; in celt_fir_sse4_1()
71 x[i+ord+3]=_x[i+3]; in celt_fir_sse4_1()
72 x[i+ord+4]=_x[i+4]; in celt_fir_sse4_1()
73 x[i+ord+5]=_x[i+5]; in celt_fir_sse4_1()
74 x[i+ord+6]=_x[i+6]; in celt_fir_sse4_1()
75 x[i+ord+7]=_x[i+7]; in celt_fir_sse4_1()
80 x[i+ord ]=_x[i ]; in celt_fir_sse4_1()
[all …]
/external/eigen/Eigen/src/Core/arch/AVX512/
DMathFunctions.h39 plog<Packet16f>(const Packet16f& _x) {
40 Packet16f x = _x;
132 pexp<Packet16f>(const Packet16f& _x) {
150 Packet16f x = pmax(pmin(_x, p16f_exp_hi), p16f_exp_lo);
178 return pmax(pmul(y, _mm512_castsi512_ps(emm0)), _x);
259 psqrt<Packet16f>(const Packet16f& _x) {
264 Packet16f neg_half = pmul(_x, p16f_minus_half);
268 __mmask16 non_zero_mask = _mm512_cmp_ps_mask(_x, p16f_flt_min, _CMP_GE_OQ);
269 Packet16f x = _mm512_mask_blend_ps(non_zero_mask, _mm512_rsqrt14_ps(_x),
277 return pmul(_x, x);
[all …]
/external/fio/
Dminmax.h6 typeof(x) _x = (x); \
8 (void) (&_x == &_y); \
9 _x < _y ? _x : _y; })
14 typeof(x) _x = (x); \
16 (void) (&_x == &_y); \
17 _x > _y ? _x : _y; })
/external/swiftshader/third_party/LLVM/include/llvm/Support/
Dsystem_error.h728 inline bool operator<(const error_condition& _x, const error_condition& _y) {
729 return _x.category() < _y.category()
730 || (_x.category() == _y.category() && _x.value() < _y.value());
791 inline bool operator<(const error_code& _x, const error_code& _y) {
792 return _x.category() < _y.category()
793 || (_x.category() == _y.category() && _x.value() < _y.value());
796 inline bool operator==(const error_code& _x, const error_code& _y) {
797 return _x.category() == _y.category() && _x.value() == _y.value();
800 inline bool operator==(const error_code& _x, const error_condition& _y) {
801 return _x.category().equivalent(_x.value(), _y)
[all …]
/external/libopus/celt/arm/
Dpitch_arm.h36 opus_val32 celt_pitch_xcorr_neon(const opus_val16 *_x, const opus_val16 *_y,
45 opus_val32 celt_pitch_xcorr_edsp(const opus_val16 *_x, const opus_val16 *_y,
57 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ argument
58 ((*CELT_PITCH_XCORR_IMPL[(arch)&OPUS_ARCHMASK])(_x, _y, \
65 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ argument
66 ((void)(arch),PRESUME_NEON(celt_pitch_xcorr)(_x, _y, xcorr, len, max_pitch))
101 void celt_pitch_xcorr_float_neon(const opus_val16 *_x, const opus_val16 *_y,
112 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ argument
113 ((*CELT_PITCH_XCORR_IMPL[(arch)&OPUS_ARCHMASK])(_x, _y, \
119 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ argument
[all …]
/external/libopus/tests/
Dtest_opus_common.h28 static OPUS_INLINE void deb2_impl(unsigned char *_t,unsigned char **_p,int _k,int _x,int _y) in deb2_impl() argument
31 if(_x>2){ in deb2_impl()
34 _t[_x]=_t[_x-_y]; in deb2_impl()
35 deb2_impl(_t,_p,_k,_x+1,_y); in deb2_impl()
36 for(i=_t[_x-_y]+1;i<_k;i++){ in deb2_impl()
37 _t[_x]=i; in deb2_impl()
38 deb2_impl(_t,_p,_k,_x+1,_x); in deb2_impl()
/external/ImageMagick/Magick++/lib/
DGeometry.cpp488 : _x(0), in Offset()
494 : _x(0), in Offset()
501 : _x(offset_._x), in Offset()
507 : _x(0), in Offset()
514 : _x(x_), in Offset()
532 _x=geometry_info.rho; in operator =()
535 _y=_x; in operator =()
544 _x=offset_._x; in operator =()
558 return(_x); in x()
569 offset.x=_x; in operator MagickCore::OffsetInfo()
[all …]
/external/clang/test/CodeGenCXX/
Dcxx11-user-defined-literal.cpp5 S operator"" _x(const char *, size_t);
29 "foo"_x, "bar"_x, L'a'_y, 42_z, 1.0_f; in f()
49 template<typename T> auto g(T t) -> decltype("foo"_x(t)) { return "foo"_x(t); } in g()
50 template<typename T> auto i(T t) -> decltype(operator"" _x("foo", 3)(t)) { return operator"" _x("fo… in i()
/external/eigen/Eigen/src/Core/arch/AVX/
DMathFunctions.h49 psin<Packet8f>(const Packet8f& _x) {
50 Packet8f x = _x;
121 plog<Packet8f>(const Packet8f& _x) {
122 Packet8f x = _x;
209 pexp<Packet8f>(const Packet8f& _x) {
227 Packet8f x = pmax(pmin(_x, p8f_exp_hi), p8f_exp_lo);
265 return pmax(pmul(y, _mm256_castsi256_ps(emm0)), _x);
277 pexp<Packet4d>(const Packet4d& _x) {
278 Packet4d x = _x;
352 return pmax(pmul(x, _mm256_castsi256_pd(e)), _x);
[all …]
/external/mesa3d/src/glsl/builtins/ir/
Dnoise4.ir5 (declare () float _x)
14 (assign (x) (var_ref _x) (expression float noise(var_ref p)))
19 (assign (x) (var_ref _r) (var_ref _x))
29 (declare () float _x)
38 (assign (x) (var_ref _x) (expression float noise(var_ref p)))
43 (assign (x) (var_ref _r) (var_ref _x))
53 (declare () float _x)
62 (assign (x) (var_ref _x) (expression float noise(var_ref p)))
67 (assign (x) (var_ref _r) (var_ref _x))
77 (declare () float _x)
[all …]
/external/eigen/Eigen/src/Core/arch/SSE/
DMathFunctions.h23 Packet4f plog<Packet4f>(const Packet4f& _x)
25 Packet4f x = _x;
107 Packet4f pexp<Packet4f>(const Packet4f& _x)
109 Packet4f x = _x;
169 return pmax(pmul(y, Packet4f(_mm_castsi128_ps(emm0))), _x);
172 Packet2d pexp<Packet2d>(const Packet2d& _x)
174 Packet2d x = _x;
242 return pmax(pmul(x, Packet2d(_mm_castsi128_pd(emm0))), _x);
258 Packet4f psin<Packet4f>(const Packet4f& _x)
260 Packet4f x = _x;
[all …]
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
Ds-c1.c400 long _x; /* Value X - Xavg */ member
531 Table[N]._x = Table[N].X - Xavg;
567 _q_o[0] += Table[r]._y_o * Table[r]._x;
568 _d_o[0] += Table[r]._x * Table[r]._x;
573 _q_o[2] += Table[r]._lny_o * Table[r]._x;
574 _d_o[2] += Table[r]._x * Table[r]._x;
580 _q_c[0] += Table[r]._y_c * Table[r]._x;
581 _d_c[0] += Table[r]._x * Table[r]._x;
586 _q_c[2] += Table[r]._lny_c * Table[r]._x;
587 _d_c[2] += Table[r]._x * Table[r]._x;
[all …]
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
Ds-c1.c409 long _x; /* Value X - Xavg */ member
540 Table[N]._x = Table[N].X - Xavg; in parse_measure()
575 _q_o[0] += Table[r]._y_o * Table[r]._x; in parse_measure()
576 _d_o[0] += Table[r]._x * Table[r]._x; in parse_measure()
581 _q_o[2] += Table[r]._lny_o * Table[r]._x; in parse_measure()
582 _d_o[2] += Table[r]._x * Table[r]._x; in parse_measure()
587 _q_c[0] += Table[r]._y_c * Table[r]._x; in parse_measure()
588 _d_c[0] += Table[r]._x * Table[r]._x; in parse_measure()
593 _q_c[2] += Table[r]._lny_c * Table[r]._x; in parse_measure()
594 _d_c[2] += Table[r]._x * Table[r]._x; in parse_measure()
[all …]
/external/eigen/Eigen/src/Core/arch/AltiVec/
DMathFunctions.h95 Packet4f plog<Packet4f>(const Packet4f& _x)
97 Packet4f x = _x;
156 Packet4f pexp<Packet4f>(const Packet4f& _x)
158 Packet4f x = _x;
194 Packet4ui isnumber_mask = reinterpret_cast<Packet4ui>(vec_cmpeq(_x, _x));
195 return vec_sel(_x, pmax(pmul(y, reinterpret_cast<Packet4f>(emm0)), _x),
248 Packet2d pexp<Packet2d>(const Packet2d& _x)
250 Packet2d x = _x;
312 Packet2ul isnumber_mask = reinterpret_cast<Packet2ul>(vec_cmpeq(_x, _x));
313 return vec_sel(_x, pmax(pmul(x, reinterpret_cast<Packet2d>(emm0)), _x),
/external/ImageMagick/Magick++/lib/Magick++/
DDrawable.h51 : _x(0), in Coordinate()
55 : _x(x_), in Coordinate()
60 void x(double x_) { _x=x_; } in x()
61 double x(void) const { return _x; } in x()
67 double _x;
321 : _x(x_), in DrawableAlpha()
337 _x=x_; in x()
342 return(_x); in x()
367 double _x;
688 : _x(x_), in DrawableColor()
[all …]
/external/clang/test/ASTMerge/Inputs/
Dinit-ctors-classes.cpp7 A_base(int _x) : x(static_cast<int>(_x)) { in A_base() argument
17 A(int _x) : A_base(_x), y(0), z(1), array{{2},{3}} { in A() argument
/external/libnl/include/netlink-private/
Dnetlink.h159 typeof(x) _x = (x); \
161 (void) (&_x == &_y); \
162 _x < _y ? _x : _y; })
165 typeof(x) _x = (x); \
167 (void) (&_x == &_y); \
168 _x > _y ? _x : _y; })
/external/valgrind/include/vki/
Dvki-xen-x86.h155 # define VKI_DECLARE_HVM_SAVE_TYPE(_x, _code, _type) \ argument
156 struct __VKI_HVM_SAVE_TYPE_##_x { _type t; char c[_code]; char cpt[1];}
158 #define VKI_HVM_SAVE_TYPE(_x) typeof (((struct __VKI_HVM_SAVE_TYPE_##_x *)(0))->t) argument
159 #define VKI_HVM_SAVE_LENGTH(_x) (sizeof (VKI_HVM_SAVE_TYPE(_x))) argument
160 #define VKI_HVM_SAVE_CODE(_x) (sizeof (((struct __VKI_HVM_SAVE_TYPE_##_x *)(0))->c)) argument

1234567