Searched refs:_x (Results 1 - 25 of 40) sorted by relevance

12

/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp2.cpp6 int a = 123_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with argument of type 'unsigned long long' or 'const char *', and no matching literal operator template}}
7 int b = 4.2_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with argument of type 'long double' or 'const char *', and no matching literal operator template}}
8 int c = "foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with arguments of types 'const char *' and 'unsigned}}
9 int d = L"foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' with arguments of types 'const wchar_t *' and 'unsigned}}
10 int e = u8"foo"_x; // expected-error {{no matching literal operator for call to 'operator "" _x' wit
[all...]
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}}
/external/clang/test/Lexer/
H A 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
[all...]
/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/bluetooth/bluedroid/stack/include/
H A Dwcassert.h43 #define WC_ASSERT(_x) if ( !(_x) ) wc_assert("ASSERT at %s line %d\n", __FILE__, __LINE__);
50 #define WC_ASSERT(_x) assert(_x);
57 #define WC_ASSERT(_x) ;
/external/llvm/test/MC/MachO/
H A Dgen-dwarf.s13 _x: .long 1 label
/external/clang/test/Parser/
H A Dasm.cpp8 int foo6 asm ("bar6"_x); // expected-error {{string literal with user-defined suffix cannot be used here}}
H A Dcxx11-user-defined-literals.cpp18 extern "C++"_x {} // expected-error {{user-defined suffix cannot be used here}} expected-error {{unknown linkage language}}
26 int cake() __attribute__((availability(macosx, unavailable, message = "is a lie"_x))); // expected-error {{user-defined suffix cannot be used here}}
/external/kernel-headers/original/asm-mips/sn/
H A Dio.h52 * value _x is expected to be a widget number in the range
55 #define IIO_IOPRB(_x) (IIO_IOPRB_0 + ( ( (_x) < HUB_WIDGET_ID_MIN ? \
56 (_x) : \
57 (_x) - (HUB_WIDGET_ID_MIN-1)) << 3) )
H A Daddrs.h70 #define TO_NODE(_n, _x) (NODE_OFFSET(_n) | ((_x) ))
71 #define TO_NODE_CAC(_n, _x) (NODE_CAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
72 #define TO_NODE_UNCAC(_n, _x) (NODE_UNCAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
73 #define TO_NODE_MSPEC(_n, _x) (NODE_MSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK))
74 #define TO_NODE_HSPEC(_n, _x) (NODE_HSPEC_BASE(_n) | ((_x)
[all...]
/external/clang/test/SemaCXX/
H A Dcxx0x-compat.cpp38 #define _x + 1 macro
39 char c = 'x'_x; // expected-warning {{will be treated as a user-defined literal suffix}}
H A Dcxx11-user-defined-literals.cpp132 template<char...> int operator"" _x();
133 int k = _x(); // expected-error {{undeclared identifier '_x'}}
/external/llvm/include/llvm/Support/
H A Dsystem_error.h717 inline bool operator<(const error_condition& _x, const error_condition& _y) { argument
718 return _x.category() < _y.category()
719 || (_x.category() == _y.category() && _x.value() < _y.value());
784 inline bool operator<(const error_code& _x, const error_code& _y) { argument
785 return _x.category() < _y.category()
786 || (_x.category() == _y.category() && _x.value() < _y.value());
789 inline bool operator==(const error_code& _x, const error_code& _y) { argument
790 return _x
793 operator ==(const error_code& _x, const error_condition& _y) argument
798 operator ==(const error_condition& _x, const error_code& _y) argument
802 operator ==(const error_condition& _x, const error_condition& _y) argument
806 operator !=(const error_code& _x, const error_code& _y) argument
810 operator !=(const error_code& _x, const error_condition& _y) argument
814 operator !=(const error_condition& _x, const error_code& _y) argument
818 operator !=(const error_condition& _x, const error_condition& _y) argument
[all...]
/external/webkit/Source/WebCore/css/
H A DShadowValue.cpp29 ShadowValue::ShadowValue(PassRefPtr<CSSPrimitiveValue> _x, argument
35 : x(_x)
/external/tremolo/Tremolo/
H A Dmisc.h157 #define XPROD32(_a, _b, _t, _v, _x, _y) \
158 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \
160 #define XPROD31(_a, _b, _t, _v, _x, _y) \
161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \
163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \
164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
/external/clang/test/Sema/
H A Dstatements.c10 int test(int _x) { argument
11 return (__byte_swap_int_var(_x));
/external/kernel-headers/original/linux/
H A Dkernel.h265 typeof(x) _x = (x); \
267 (void) (&_x == &_y); \
268 _x < _y ? _x : _y; })
271 typeof(x) _x = (x); \
273 (void) (&_x == &_y); \
274 _x > _y ? _x : _y; })
/external/libnl-headers/
H A Dnetlink-local.h127 typeof(x) _x = (x); \
129 (void) (&_x == &_y); \
130 _x < _y ? _x : _y; })
133 typeof(x) _x = (x); \
135 (void) (&_x == &_y); \
136 _x > _y ? _x : _y; })
/external/speex/libspeex/
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_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));
/external/kernel-headers/original/asm-mips/sn/sn0/
H A Dhubni.h62 #define NI_META_TABLE(_x) (NI_META_TABLE0 + (8 * (_x)))
66 #define NI_LOCAL_TABLE(_x) (NI_LOCAL_TABLE0 + (8 * (_x)))
H A Dhubio.h334 #define IIO_PRTE(_x) (IIO_PRTE_0 + (8 * (_x)))
407 #define IIO_ICRB_A(_x) (IIO_ICRB_0 + (4 * IIO_ICRB_OFFSET * (_x)))
408 #define IIO_ICRB_B(_x) (IIO_ICRB_A(_x) + 1*IIO_ICRB_OFFSET)
409 #define IIO_ICRB_C(_x) (IIO_ICRB_A(_x) + 2*IIO_ICRB_OFFSET)
410 #define IIO_ICRB_D(_x) (IIO_ICRB_A(_x)
[all...]
/external/clang/test/FixIt/
H A Dfixit-cxx0x.cpp69 void operator""_x(char); // expected-error {{requires a space}}
75 'a'_x;
/external/opencv/cv/src/
H A Dcvemd.cpp88 CvNode2D *_x; member in struct:CvEMDState
303 for( xp = state._x; xp < state.end_x; xp++ )
357 (size1 + size2 + 2) * (sizeof( CvNode2D ) + /* _x */
498 state->_x = state->end_x = (CvNode2D *) buffer;
838 CvNode2D *enter_x = state->enter_x, *_x = state->_x; local
844 is_used[enter_x - _x] = 1;
853 while( new_x != 0 && is_used[new_x - _x] )
860 while( new_x != 0 && is_used[new_x - _x] && new_x != enter_x )
870 is_used[new_x - _x]
[all...]

Completed in 1251 milliseconds

12