/external/libopus/celt/ |
D | ecintrin.h | 56 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
|
D | celt_lpc.c | 91 void celt_fir(const opus_val16 *_x, in celt_fir() argument 110 x[i+ord]=_x[i]; in celt_fir() 112 mem[i] = _x[N-i-1]; in celt_fir() 116 opus_val32 sum = SHL32(EXTEND32(_x[i]), SIG_SHIFT); in celt_fir() 128 _y[i ] = SATURATE16(ADD32(EXTEND32(_x[i ]), PSHR32(sum[0], SIG_SHIFT))); in celt_fir() 129 _y[i+1] = SATURATE16(ADD32(EXTEND32(_x[i+1]), PSHR32(sum[1], SIG_SHIFT))); in celt_fir() 130 _y[i+2] = SATURATE16(ADD32(EXTEND32(_x[i+2]), PSHR32(sum[2], SIG_SHIFT))); in celt_fir() 131 _y[i+3] = SATURATE16(ADD32(EXTEND32(_x[i+3]), PSHR32(sum[3], SIG_SHIFT))); in celt_fir() 138 _y[i] = SATURATE16(ADD32(EXTEND32(_x[i]), PSHR32(sum, SIG_SHIFT))); in celt_fir() 144 void celt_iir(const opus_val32 *_x, in celt_iir() argument [all …]
|
D | pitch.h | 149 celt_pitch_xcorr_c(const opus_val16 *_x, const opus_val16 *_y, 164 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ argument 165 ((*CELT_PITCH_XCORR_IMPL[(arch)&OPUS_ARCHMASK])(_x, _y, \ 168 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ argument 169 ((void)(arch),celt_pitch_xcorr_c(_x, _y, xcorr, len, max_pitch))
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
D | p2.cpp | 6 int a = 123_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with a… 7 int b = 4.2_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with a… 8 int c = "foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with… 9 int d = L"foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' wit… 10 int e = u8"foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' wi… 11 int f = u"foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' wit… 12 int g = U"foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' wit… 13 int h = 'y'_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with a… 14 int i = L'y'_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with … 15 int j = u'y'_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with … [all …]
|
D | p11.cpp | 9 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;
|
D | p12.cpp | 10 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 '…
|
D | p9.cpp | 4 void operator "" _x(const wchar_t *, size_t); 9 L"A" "B" "C"_x; in main() 10 …"P"_x "Q" "R"_y; // expected-error {{differing user-defined suffixes ('_x' and '_y') in string lit… in main()
|
/external/clang/test/Lexer/ |
D | token-concat.cpp | 4 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/fio/ |
D | minmax.h | 6 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/libopus/tests/ |
D | test_opus_common.h | 28 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/clang/test/CodeGenCXX/ |
D | cxx11-user-defined-literal.cpp | 5 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/mesa3d/src/glsl/builtins/ir/ |
D | noise4.ir | 5 (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/libnl/include/ |
D | netlink-local.h | 124 typeof(x) _x = (x); \ 126 (void) (&_x == &_y); \ 127 _x < _y ? _x : _y; }) 130 typeof(x) _x = (x); \ 132 (void) (&_x == &_y); \ 133 _x > _y ? _x : _y; })
|
/external/libopus/celt/arm/ |
D | pitch_arm.h | 36 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, 51 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ argument 52 ((void)(arch),PRESUME_NEON(celt_pitch_xcorr)(_x, _y, xcorr, len, max_pitch))
|
/external/eigen/Eigen/src/Core/arch/SSE/ |
D | MathFunctions.h | 23 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/valgrind/include/vki/ |
D | vki-xen-x86.h | 128 # define VKI_DECLARE_HVM_SAVE_TYPE(_x, _code, _type) \ argument 129 struct __VKI_HVM_SAVE_TYPE_##_x { _type t; char c[_code]; char cpt[1];} 131 #define VKI_HVM_SAVE_TYPE(_x) typeof (((struct __VKI_HVM_SAVE_TYPE_##_x *)(0))->t) argument 132 #define VKI_HVM_SAVE_LENGTH(_x) (sizeof (VKI_HVM_SAVE_TYPE(_x))) argument 133 #define VKI_HVM_SAVE_CODE(_x) (sizeof (((struct __VKI_HVM_SAVE_TYPE_##_x *)(0))->c)) argument
|
/external/speex/libspeex/ |
D | filters_bfin.h | 85 void filter_mem16(const spx_word16_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_word16_… in filter_mem16() argument 221 : : "m" (xy), "m" (_x), "m" (_y), "m" (numden), "m" (N), "m" (ord), "m" (mem) in filter_mem16() 230 void iir_mem16(const spx_word16_t *_x, const spx_coef_t *den, spx_word16_t *_y, int N, int ord, spx… in iir_mem16() argument 347 : : "m" (yy), "m" (_x), "m" (_y), "m" (den), "m" (N), "m" (ord), "m" (mem) in iir_mem16() 468 void filter_mem2(const spx_sig_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_sig_t *_y, … 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));
|
/external/tremolo/Tremolo/ |
D | misc.h | 157 #define XPROD32(_a, _b, _t, _v, _x, _y) \ argument 158 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \ 160 #define XPROD31(_a, _b, _t, _v, _x, _y) \ argument 161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \ 163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \ argument 164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
|
/external/eigen/unsupported/Eigen/src/NumericalDiff/ |
D | NumericalDiff.h | 64 int df(const InputType& _x, JacobianType &jac) const in df() argument 71 const typename InputType::Index n = _x.size(); in df() 74 InputType x = _x; in df() 103 x[j] = _x[j]; in df() 111 x[j] = _x[j]; in df()
|
/external/v8/test/mjsunit/harmony/ |
D | super.js | 53 return this._x; 55 _x: 'base' property in Base 63 _x: 'derived' property in Derived
|
/external/libopus/src/ |
D | mlp.c | 42 static OPUS_INLINE opus_val16 tansig_approx(opus_val32 _x) /* Q19 */ 49 if (_x>=QCONST32(8,19)) 51 if (_x<=-QCONST32(8,19)) 53 xx = EXTRACT16(SHR32(_x, 8));
|
/external/valgrind/none/tests/amd64/ |
D | xacq_xrel.c | 11 #define CAT2(_x,_y) _x##_y argument 12 #define CAT(_x,_y) CAT2(_x,_y) argument
|
/external/llvm/unittests/ExecutionEngine/ |
D | ExecutionEngineTest.cpp | 151 int _x; in TEST_F() local 153 llvm::sys::DynamicLibrary::AddSymbol("_x", &_x); in TEST_F() 162 int _x; in TEST_F() local 163 llvm::sys::DynamicLibrary::AddSymbol("_x", &_x); in TEST_F() 166 EXPECT_EQ(reinterpret_cast<uint64_t>(&_x), in TEST_F()
|
/external/llvm/test/MC/COFF/ |
D | bad-expr.s | 6 _x: label 7 .long _x-__ImageBase
|
/external/clang/test/SemaCXX/ |
D | cxx11-user-defined-literals-unused.cpp | 4 double operator"" _x(long double value) { return double(value); } in operator ""_x() 9 template<class T> double value() { return 3.2_x; } in value()
|