/external/u-boot/include/ |
D | edid.h | 24 #define GET_BIT(_x, _pos) \ argument 25 (((_x) >> (_pos)) & 1) 26 #define GET_BITS(_x, _pos_msb, _pos_lsb) \ argument 27 (((_x) >> (_pos_lsb)) & ((1 << ((_pos_msb) - (_pos_lsb) + 1)) - 1)) 40 #define EDID_DETAILED_TIMING_PIXEL_CLOCK(_x) \ argument 41 (((((uint32_t)(_x).pixel_clock[1]) << 8) + \ 42 (_x).pixel_clock[0]) * 10000) 46 #define EDID_DETAILED_TIMING_HORIZONTAL_ACTIVE(_x) \ argument 47 ((GET_BITS((_x).horizontal_active_blanking_hi, 7, 4) << 8) + \ 48 (_x).horizontal_active) [all …]
|
/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
|
/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 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 …]
|
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 '…
|
/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/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/ |
D | macho-movwt.s | 5 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/llvm/test/MC/ARM/ |
D | macho-movwt.s | 5 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/u-boot/arch/arm/mach-s5pc1xx/include/mach/ |
D | mmc.h | 23 #define SDHCI_CTRL2_FLTCLKSEL(_x) ((_x) << 24) argument 27 #define SDHCI_CTRL2_LVLDAT(_x) ((_x) << 16) argument 35 #define SDHCI_CTRL2_DFCNT_MASK(_x) ((_x) << 9) argument 41 #define SDHCI_CTRL2_SELBASECLK_MASK(_x) ((_x) << 4) argument 52 #define SDHCI_CTRL4_DRIVE_MASK(_x) ((_x) << 16) argument
|
/external/u-boot/arch/arm/mach-exynos/include/mach/ |
D | mmc.h | 23 #define SDHCI_CTRL2_FLTCLKSEL(_x) ((_x) << 24) argument 27 #define SDHCI_CTRL2_LVLDAT(_x) ((_x) << 16) argument 35 #define SDHCI_CTRL2_DFCNT_MASK(_x) ((_x) << 9) argument 41 #define SDHCI_CTRL2_SELBASECLK_MASK(_x) ((_x) << 4) argument 52 #define SDHCI_CTRL4_DRIVE_MASK(_x) ((_x) << 16) argument
|
D | xhci-exynos.h | 13 #define LINKSYSTEM_FLADJ(_x) ((_x) << 1) argument 21 #define PHYCLKRST_SSC_REFCLKSEL(_x) ((_x) << 23) argument 24 #define PHYCLKRST_SSC_RANGE(_x) ((_x) << 21) argument 38 #define PHYCLKRST_FSEL(_x) ((_x) << 5) argument
|
/external/eigen/Eigen/src/Core/arch/AVX512/ |
D | MathFunctions.h | 39 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/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | system_error.h | 728 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/ply/ply/test/pkg_test3/generated/ |
D | parsetab.py | 15 for _x,_y in zip(_v[0],_v[1]): 16 if not _x in _lr_action: _lr_action[_x] = {} 17 _lr_action[_x][_k] = _y 24 for _x, _y in zip(_v[0], _v[1]): 25 if not _x in _lr_goto: _lr_goto[_x] = {} 26 _lr_goto[_x][_k] = _y
|
/external/ply/ply/test/pkg_test2/parsing/ |
D | calcparsetab.py | 15 for _x,_y in zip(_v[0],_v[1]): 16 if not _x in _lr_action: _lr_action[_x] = {} 17 _lr_action[_x][_k] = _y 24 for _x, _y in zip(_v[0], _v[1]): 25 if not _x in _lr_goto: _lr_goto[_x] = {} 26 _lr_goto[_x][_k] = _y
|
/external/google-fruit/extras/scripts/ |
D | parsetab.py | 14 for _x,_y in zip(_v[0],_v[1]): 15 if not _x in _lr_action: _lr_action[_x] = {} 16 _lr_action[_x][_k] = _y 23 for _x, _y in zip(_v[0], _v[1]): 24 if not _x in _lr_goto: _lr_goto[_x] = {} 25 _lr_goto[_x][_k] = _y
|
/external/ply/ply/test/pkg_test5/parsing/ |
D | parsetab.py | 15 for _x,_y in zip(_v[0],_v[1]): 16 if not _x in _lr_action: _lr_action[_x] = {} 17 _lr_action[_x][_k] = _y 24 for _x, _y in zip(_v[0], _v[1]): 25 if not _x in _lr_goto: _lr_goto[_x] = {} 26 _lr_goto[_x][_k] = _y
|
/external/ply/ply/test/pkg_test6/parsing/ |
D | parsetab.py | 15 for _x,_y in zip(_v[0],_v[1]): 16 if not _x in _lr_action: _lr_action[_x] = {} 17 _lr_action[_x][_k] = _y 24 for _x, _y in zip(_v[0], _v[1]): 25 if not _x in _lr_goto: _lr_goto[_x] = {} 26 _lr_goto[_x][_k] = _y
|
/external/ply/ply/test/pkg_test1/parsing/ |
D | parsetab.py | 15 for _x,_y in zip(_v[0],_v[1]): 16 if not _x in _lr_action: _lr_action[_x] = {} 17 _lr_action[_x][_k] = _y 24 for _x, _y in zip(_v[0], _v[1]): 25 if not _x in _lr_goto: _lr_goto[_x] = {} 26 _lr_goto[_x][_k] = _y
|
/external/ImageMagick/Magick++/lib/ |
D | Geometry.cpp | 488 : _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/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/puffin/src/ |
D | logging.h | 14 #define TEST_AND_RETURN_FALSE(_x) \ argument 16 if (!(_x)) { \ 17 LOG(ERROR) << #_x " failed."; \ 22 #define TEST_AND_RETURN_VALUE(_x, _v) \ argument 24 if (!(_x)) { \ 25 LOG(ERROR) << #_x " failed."; \
|
/external/eigen/Eigen/src/Core/arch/AVX/ |
D | MathFunctions.h | 49 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/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 …]
|