HomeSort by relevance Sort by last modified time
    Searched refs:_x (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p2.cpp 6 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' with arguments of types 'const char *' and 'unsigned}
    [all...]
p9.cpp 4 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/
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
    [all...]
  /bionic/libc/arch-arm/include/
endian.h 57 register u_int16_t _x = (x); \
58 __asm volatile ("rev16 %0, %0" : "+l" (_x)); \
59 _x; \
63 register u_int32_t _x = (x); \
64 __asm volatile ("rev %0, %0" : "+l" (_x)); \
65 _x; \
  /ndk/sources/host-tools/make-3.81/
debug.h 31 #define DBS(_l,_x) do{ if(ISDB(_l)) {print_spaces (depth); \
32 printf _x; fflush (stdout);} }while(0)
34 #define DBF(_l,_x) do{ if(ISDB(_l)) {print_spaces (depth); \
35 printf (_x, file->name); \
38 #define DB(_l,_x) do{ if(ISDB(_l)) {printf _x; fflush (stdout);} }while(0)
  /external/clang/test/CodeGenCXX/
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;
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); }
  /external/llvm/test/MC/MachO/
gen-dwarf.s 13 _x: .long 1 label
  /external/clang/test/Parser/
asm.cpp 8 int foo6 asm ("bar6"_x); // expected-error {{string literal with user-defined suffix cannot be used here}}
  /bionic/libc/kernel/arch-mips/asm/sn/
io.h 42 #define IIO_IOPRB(_x) (IIO_IOPRB_0 + ( ( (_x) < HUB_WIDGET_ID_MIN ? (_x) : (_x) - (HUB_WIDGET_ID_MIN-1)) << 3) )
addrs.h 52 #define TO_NODE(_n, _x) (NODE_OFFSET(_n) | ((_x) ))
54 #define TO_NODE_CAC(_n, _x) (NODE_CAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
55 #define TO_NODE_UNCAC(_n, _x) (NODE_UNCAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
56 #define TO_NODE_MSPEC(_n, _x) (NODE_MSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK))
57 #define TO_NODE_HSPEC(_n, _x) (NODE_HSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK)
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/sn/
io.h 42 #define IIO_IOPRB(_x) (IIO_IOPRB_0 + ( ( (_x) < HUB_WIDGET_ID_MIN ? (_x) : (_x) - (HUB_WIDGET_ID_MIN-1)) << 3) )
addrs.h 52 #define TO_NODE(_n, _x) (NODE_OFFSET(_n) | ((_x) ))
54 #define TO_NODE_CAC(_n, _x) (NODE_CAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
55 #define TO_NODE_UNCAC(_n, _x) (NODE_UNCAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
56 #define TO_NODE_MSPEC(_n, _x) (NODE_MSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK))
57 #define TO_NODE_HSPEC(_n, _x) (NODE_HSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK)
    [all...]
  /external/kernel-headers/original/asm-mips/sn/
io.h 52 * 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) )
addrs.h 70 #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) & TO_PHYS_MASK)
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/sn/
io.h 42 #define IIO_IOPRB(_x) (IIO_IOPRB_0 + ( ( (_x) < HUB_WIDGET_ID_MIN ? (_x) : (_x) - (HUB_WIDGET_ID_MIN-1)) << 3) )
addrs.h 52 #define TO_NODE(_n, _x) (NODE_OFFSET(_n) | ((_x) ))
54 #define TO_NODE_CAC(_n, _x) (NODE_CAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
55 #define TO_NODE_UNCAC(_n, _x) (NODE_UNCAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
56 #define TO_NODE_MSPEC(_n, _x) (NODE_MSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK))
57 #define TO_NODE_HSPEC(_n, _x) (NODE_HSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK)
    [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/sn/
io.h 42 #define IIO_IOPRB(_x) (IIO_IOPRB_0 + ( ( (_x) < HUB_WIDGET_ID_MIN ? (_x) : (_x) - (HUB_WIDGET_ID_MIN-1)) << 3) )
addrs.h 52 #define TO_NODE(_n, _x) (NODE_OFFSET(_n) | ((_x) ))
54 #define TO_NODE_CAC(_n, _x) (NODE_CAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
55 #define TO_NODE_UNCAC(_n, _x) (NODE_UNCAC_BASE(_n) | ((_x) & TO_PHYS_MASK))
56 #define TO_NODE_MSPEC(_n, _x) (NODE_MSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK))
57 #define TO_NODE_HSPEC(_n, _x) (NODE_HSPEC_BASE(_n) | ((_x) & TO_PHYS_MASK)
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-compat.cpp 38 #define _x + 1 macro
39 char c = 'x'_x; // expected-warning {{will be treated as a user-defined literal suffix}}
  /external/llvm/include/llvm/Support/
system_error.h 717 inline bool operator<(const error_condition& _x, const error_condition& _y) {
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) {
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) {
790 return _x.category() == _y.category() && _x.value() == _y.value()
    [all...]
  /external/webkit/Source/WebCore/css/
ShadowValue.cpp 29 ShadowValue::ShadowValue(PassRefPtr<CSSPrimitiveValue> _x,
35 : x(_x)
  /external/tremolo/Tremolo/
misc.h 157 #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); \
  /system/core/include/private/pixelflinger/
ggl_fixed.h 75 #define GGL_B_TO_X(_x) GGLfixed( ((int32_t(_x)+1)>>1)<<10 )
76 #define GGL_S_TO_X(_x) GGLfixed( ((int32_t(_x)+1)>>1)<<2 )
77 #define GGL_I_TO_X(_x) GGLfixed( ((int32_t(_x)>>1)+1)>>14 )
78 #define GGL_UB_TO_X(_x) GGLfixed( uint32_t(_x) + \
79 (uint32_t(_x)<<8) + \
80 (uint32_t(_x)>>7)
    [all...]
  /external/clang/test/Sema/
statements.c 10 int test(int _x) {
11 return (__byte_swap_int_var(_x));
  /external/kernel-headers/original/linux/
kernel.h 265 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; })

Completed in 1447 milliseconds

1 2 3