Searched refs:_b (Results 1 - 25 of 113) sorted by relevance

12345

/external/clang/test/CXX/over/over.oper/over.literal/
H A Dp3.cpp22 char operator "" _b(); // expected-error {{parameter}}
23 char operator "" _b(const wchar_t *); // expected-error {{parameter}}
24 char operator "" _b(long long); // expected-error {{parameter}}
25 char operator "" _b(double); // expected-error {{parameter}}
26 char operator "" _b(short); // expected-error {{parameter}}
28 char operator "" _b(unsigned short); // expected-error {{parameter}}
29 char operator "" _b(signed char); // expected-error {{parameter}}
30 char operator "" _b(unsigned char); // expected-error {{parameter}}
31 char operator "" _b(const short *, size_t); // expected-error {{parameter}}
32 char operator "" _b(cons
[all...]
H A Dp5.cpp15 friend void operator "" _b(); // expected-error {{parameters}}
18 template<char... C, int N = 0> void operator "" _b(); // expected-error {{template}}
19 template<char... C> void operator "" _b(int N = 0); // expected-error {{template}}
20 template<char, char...> void operator "" _b(); // expected-error {{template}}
21 template<typename T> T operator "" _b(const char *); // expected-error {{template}}
22 template<typename T> int operator "" _b(const T *, size_t); // expected-error {{template}}
H A Dp6.cpp4 extern "C" template<char...> void operator "" _b(); // expected-error {{must have C++ linkage}}
H A Dp2.cpp8 void operator "" _b(const char *);
11 using N::operator "" _b;
/external/ltp/include/
H A Dtst_minmax.h24 typeof(b) _b = (b); \
25 _a < _b ? _a : _b; \
32 typeof(b) _b = (b); \
33 _a > _b ? _a : _b; \
/external/llvm/test/MC/COFF/
H A Dcomm.s4 .comm _b, 4, 2
20 // CHECK: Name: _b
/external/llvm/test/MC/MachO/
H A Dreloc-pcrel-offset.s8 _b: label
H A Dtbss.s4 .tbss _b$tlv$init, 4, 3
76 // CHECK: Name: _b$tlv$init (1)
H A Dzerofill-sect-align.s8 .zerofill __DATA,__bss,_b,4,4
25 // CHECK: Name: _b (1)
H A Dbad-darwin-x86_64-diff-relocs.s8 .long (_Y+4)-_b
9 // CHECK-ERROR: error: unsupported relocation with subtraction expression, symbol '_b' can not be undefined in a subtraction expression
H A Dreloc-pcrel.s8 _b: label
21 call _b
22 call _b - 1
23 call _b + 1
28 call _b - L0
H A Dcoal-sections-x86_64.s42 .globl _b ## @b
43 .weak_definition _b
45 _b: label
H A Dindirect-symbols.s3 _b: label
11 .indirect_symbol _b
102 // CHECK: Name: _b (13)
/external/clang/test/SemaCXX/Inputs/
H A Darray-bounds-system-header.h7 #define BAD_MACRO_2(_b, _i) \
8 (_b)[(_i)] = 5
/external/swiftshader/third_party/LLVM/test/MC/MachO/
H A Dtbss.s4 .tbss _b$tlv$init, 4, 3
86 // CHECK: ('_string', '_b$tlv$init')
H A Dzerofill-sect-align.s8 .zerofill __DATA,__bss,_b,4,4
15 // CHECK: ('_string', '_b')
H A Dreloc-pcrel.s43 _b: label
55 call _b
56 call _b - 1
57 call _b + 1
62 call _b - L0
H A Dindirect-symbols.s3 _b: label
11 .indirect_symbol _b
108 // CHECK: ('_string', '_b')
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefcopycopy.c23 __typeof(b) _b;
29 _b = Block_copy(b); // make a new copy each time
30 assert(_b);
32 _b(); // should still update the stack
33 Block_release(_b);
/external/llvm/test/MC/AsmParser/
H A Ddirective_tbss.s4 # CHECK: .tbss _b$tlv$init, 4, 3
7 .tbss _b$tlv$init, 4, 3
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/
H A Ddirective_tbss.s4 # CHECK: .tbss _b$tlv$init, 4, 3
7 .tbss _b$tlv$init, 4, 3
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedRangeException.cs42 private readonly int _b; field in class:Antlr.Runtime.MismatchedRangeException
58 this._b = b;
64 this._b = b;
70 this._b = b;
79 this._b = info.GetInt32("B");
90 return _b;
100 info.AddValue("B", _b);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedRangeException.cs44 private readonly int _b; field in class:Antlr.Runtime.MismatchedRangeException
64 this._b = b;
71 this._b = b;
78 this._b = b;
88 this._b = info.GetInt32("B");
103 return _b;
114 info.AddValue("B", _b);
/external/libdivsufsort/include/
H A Ddivsufsort_private.h146 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0)
149 # define MIN(_a, _b) (((_a) < (_b)) ? (_a) : (_b))
152 # define MAX(_a, _b) (((_a) > (_b)) ? (_a) : (_b))
154 #define STACK_PUSH(_a, _b, _
[all...]
/external/clang/test/PCH/
H A Dstmts.h93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })

Completed in 378 milliseconds

12345