Searched defs:_x (Results 1 - 25 of 31) sorted by relevance

12

/external/llvm/test/MC/COFF/
H A Dbad-expr.s6 _x: label
7 .long _x-__ImageBase
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp9.cpp4 void operator "" _x(const wchar_t *, size_t);
9 L"A" "B" "C"_x; local
10 "P"_x "Q" "R"_y; // expected-error {{differing user-defined suffixes ('_x' and '_y') in string literal concatenation}}
H A Dp12.cpp10 template<typename T, T... str> int operator""_x() { // #1 expected-warning {{string literal operator templates are a GNU extension}} function
14 void *operator""_x(const char*); // #2
15 void *a = 123_x; // ok, calls #2
16 int b = u8"\"ั‚ะตัั‚ ๐€€"_x; // ok, calls #1
17 int c = u8R"("ั‚ะตัั‚ ๐€€)"_x; // ok, calls #1
18 int d = "test"_x; // expected-note {{in instantiation of function template specialization 'operator "" _x<char, 't', 'e', 's', 't'>' requested here}}
19 int e = uR"("ั‚ะตัั‚ ๐€€)"_x;
20 int f = UR"("ั‚ะตัั‚ ๐€€)"_x;
21 int g = UR"("ั‚ะตัั‚_๐€€)"_x; // expecte
[all...]
/external/clang/test/Sema/
H A Dstatements.c10 int test(int _x) { argument
11 return (__byte_swap_int_var(_x));
/external/llvm/test/MC/MachO/
H A Dgen-dwarf.s13 _x: .long 1 label
/external/llvm/test/MC/X86/
H A Dgnux32-dwarf-gen.s23 _x: .long 1 label
/external/clang/test/SemaCXX/
H A Dcxx11-user-defined-literals-unused.cpp4 double operator"" _x(long double value) { return double(value); } function in namespace:__anon2539
9 template<class T> double value() { return 3.2_x; }
H A Dcxx0x-compat.cpp41 #define _x + 1 macro
42 char c = 'x'_x; // expected-warning {{will be treated as a user-defined literal suffix}}
/external/clang/test/CXX/over/over.oper/over.literal/
H A Dp2.cpp40 double operator"" _x(long double value) { return double(value); } // expected-error{{literal operator 'operator "" _x' must be in a namespace or global scope}} function in class:rdar13605348::C
41 double value() { return 3.2_x; } // expected-error{{no matching literal operator for call to}}
/external/clang/test/CodeGenCXX/
H A 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;
49 template<typename T> auto g(T t) -> decltype("foo"_x(t)) { return "foo"_x(t); }
50 template<typename T> auto i(T t) -> decltype(operator"" _x("foo", 3)(t)) { return operator"" _x("foo", 3)(t); } argument
/external/libopus/celt/
H A Decintrin.h56 static __inline int ec_bsr(unsigned long _x){ argument
58 _BitScanReverse(&ret,_x);
62 # define EC_CLZ(_x) (-ec_bsr(_x))
66 # define EC_CLZ(_x) (_lnorm(_x))
70 # define EC_CLZ(_x) (__builtin_clz(_x))
73 # define EC_CLZ(_x) (__builtin_clzl(_x))
[all...]
H A Dcelt_lpc.c91 void celt_fir(const opus_val16 *_x, argument
110 x[i+ord]=_x[i];
112 mem[i] = _x[N-i-1];
116 opus_val32 sum = SHL32(EXTEND32(_x[i]), SIG_SHIFT);
128 _y[i ] = SATURATE16(ADD32(EXTEND32(_x[i ]), PSHR32(sum[0], SIG_SHIFT)));
129 _y[i+1] = SATURATE16(ADD32(EXTEND32(_x[i+1]), PSHR32(sum[1], SIG_SHIFT)));
130 _y[i+2] = SATURATE16(ADD32(EXTEND32(_x[i+2]), PSHR32(sum[2], SIG_SHIFT)));
131 _y[i+3] = SATURATE16(ADD32(EXTEND32(_x[i+3]), PSHR32(sum[3], SIG_SHIFT)));
138 _y[i] = SATURATE16(ADD32(EXTEND32(_x[i]), PSHR32(sum, SIG_SHIFT)));
144 void celt_iir(const opus_val32 *_x, argument
[all...]
H A Dpitch.c253 celt_pitch_xcorr_c(const opus_val16 *_x, const opus_val16 *_y, opus_val32 *xcorr, int len, int max_pitch) argument
256 /*The EDSP version requires that max_pitch is at least 1, and that _x is
260 celt_assert((((unsigned char *)_x-(unsigned char *)NULL)&3)==0);
267 xcorr_kernel(_x, _y+i, sum, len);
284 sum = MAC16_16(sum, _x[j],_y[i+j]);
/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp146 RTDyldMemoryManager::getSymbolAddressInProcess("_x"));
151 int _x; local
153 llvm::sys::DynamicLibrary::AddSymbol("_x", &_x);
158 RTDyldMemoryManager::getSymbolAddressInProcess("_x"));
162 int _x; local
163 llvm::sys::DynamicLibrary::AddSymbol("_x", &_x);
166 EXPECT_EQ(reinterpret_cast<uint64_t>(&_x),
167 RTDyldMemoryManager::getSymbolAddressInProcess("_x"));
[all...]
/external/libopus/tests/
H A Dtest_opus_common.h28 static OPUS_INLINE void deb2_impl(unsigned char *_t,unsigned char **_p,int _k,int _x,int _y) argument
31 if(_x>2){
34 _t[_x]=_t[_x-_y];
35 deb2_impl(_t,_p,_k,_x+1,_y);
36 for(i=_t[_x-_y]+1;i<_k;i++){
37 _t[_x]=i;
38 deb2_impl(_t,_p,_k,_x+1,_x);
/external/eigen/unsupported/Eigen/src/NumericalDiff/
H A DNumericalDiff.h64 int df(const InputType& _x, JacobianType &jac) const argument
71 const typename InputType::Index n = _x.size();
74 InputType x = _x;
103 x[j] = _x[j];
111 x[j] = _x[j];
/external/speex/libspeex/
H A Dltp_sse.h57 void pitch_xcorr(const float *_x, const float *_y, float *corr, int len, int nb_pitch, char *stack) argument
68 x[i] = _mm_loadu_ps(_x+(i<<2));
H A Dfilters_bfin.h85 void filter_mem16(const spx_word16_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_word16_t *_y, int N, int ord, spx_mem_t *mem, char *stack) argument
118 "P0 = %1;\n\t" /* _x */
221 : : "m" (xy), "m" (_x), "m" (_y), "m" (numden), "m" (N), "m" (ord), "m" (mem)
230 void iir_mem16(const spx_word16_t *_x, const spx_coef_t *den, spx_word16_t *_y, int N, int ord, spx_mem_t *mem, char *stack) argument
347 : : "m" (yy), "m" (_x), "m" (_y), "m" (den), "m" (N), "m" (ord), "m" (mem)
468 void filter_mem2(const spx_sig_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_sig_t *_y, int N, int ord, spx_mem_t *mem)
478 x[i] = EXTRACT16(SHR32(_x[i],SIG_SHIFT));
489 _y[i] = ADD32(_x[i],SHL32(yi,1));
500 _y[i] = ADD32(_x[i],SHL32(yi,1));
H A Dltp_arm4.h88 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) argument
100 const spx_word16_t *x = _x;
H A Dltp_bfin.h66 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) argument
106 : : "m" (_x), "m" (_y), "m" (corr), "m" (len), "m" (nb_pitch)
/external/eigen/Eigen/src/Core/arch/SSE/
H A DMathFunctions.h23 Packet4f plog<Packet4f>(const Packet4f& _x) argument
25 Packet4f x = _x;
107 Packet4f pexp<Packet4f>(const Packet4f& _x) argument
109 Packet4f x = _x;
169 return pmax(pmul(y, Packet4f(_mm_castsi128_ps(emm0))), _x);
172 Packet2d pexp<Packet2d>(const Packet2d& _x) argument
174 Packet2d x = _x;
242 return pmax(pmul(x, Packet2d(_mm_castsi128_pd(emm0))), _x);
258 Packet4f psin<Packet4f>(const Packet4f& _x) argument
260 Packet4f x = _x;
359 pcos(const Packet4f& _x) argument
451 psqrt(const Packet4f& _x) argument
[all...]
/external/libopus/src/
H A Dopus.c36 OPUS_EXPORT void opus_pcm_soft_clip(float *_x, int N, int C, float *declip_mem) argument
42 if (C<1 || N<1 || !_x || !declip_mem) return;
49 _x[i] = MAX16(-2.f, MIN16(2.f, _x[i]));
56 x = _x+c;
/external/eigen/Eigen/src/Core/
H A DFunctors.h153 EIGEN_STRONG_INLINE const Scalar operator() (const Scalar& _x, const Scalar& _y) const argument
158 Scalar p = (max)(_x, _y);
159 Scalar q = (min)(_x, _y);
/external/eigen/unsupported/test/
H A Dlevenberg_marquardt.cpp989 static const double _x[11]; member in struct:MGH09_functor
996 double x = _x[i], xx=x*x;
1007 double x = _x[i], xx=x*x;
1017 const double MGH09_functor::_x[11] = { 4., 2., 1., 5.E-1 , 2.5E-01, 1.670000E-01, 1.250000E-01, 1.E-01, 8.330000E-02, 7.140000E-02, 6.250000E-02 }; member in class:MGH09_functor
1157 static const double _x[37]; member in struct:thurber_functor
1165 double x=_x[i], xx=x*x, xxx=xx*x;
1176 double x=_x[i], xx=x*x, xxx=xx*x;
1190 const double thurber_functor::_x[37] = { -3.067E0, -2.981E0, -2.921E0, -2.912E0, -2.840E0, -2.797E0, -2.702E0, -2.699E0, -2.633E0, -2.481E0, -2.363E0, -2.322E0, -1.501E0, -1.460E0, -1.274E0, -1.212E0, -1.100E0, -1.046E0, -0.915E0, -0.714E0, -0.566E0, -0.545E0, -0.400E0, -0.309E0, -0.109E0, -0.103E0, 0.010E0, 0.119E0, 0.377E0, 0.790E0, 0.963E0, 1.006E0, 1.115E0, 1.572E0, 1.841E0, 2.047E0, 2.200E0 }; member in class:thurber_functor
H A DNonLinearOptimization.cpp1383 static const double _x[11]; member in struct:MGH09_functor
1390 double x = _x[i], xx=x*x;
1401 double x = _x[i], xx=x*x;
1411 const double MGH09_functor::_x[11] = { 4., 2., 1., 5.E-1 , 2.5E-01, 1.670000E-01, 1.250000E-01, 1.E-01, 8.330000E-02, 7.140000E-02, 6.250000E-02 }; member in class:MGH09_functor
1551 static const double _x[37]; member in struct:thurber_functor
1559 double x=_x[i], xx=x*x, xxx=xx*x;
1570 double x=_x[i], xx=x*x, xxx=xx*x;
1584 const double thurber_functor::_x[37] = { -3.067E0, -2.981E0, -2.921E0, -2.912E0, -2.840E0, -2.797E0, -2.702E0, -2.699E0, -2.633E0, -2.481E0, -2.363E0, -2.322E0, -1.501E0, -1.460E0, -1.274E0, -1.212E0, -1.100E0, -1.046E0, -0.915E0, -0.714E0, -0.566E0, -0.545E0, -0.400E0, -0.309E0, -0.109E0, -0.103E0, 0.010E0, 0.119E0, 0.377E0, 0.790E0, 0.963E0, 1.006E0, 1.115E0, 1.572E0, 1.841E0, 2.047E0, 2.200E0 }; member in class:thurber_functor

Completed in 599 milliseconds

12