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

1234

/external/llvm/test/MC/COFF/
H A Dcomm.s4 .comm _b, 4
18 // CHECK: Name: _b
/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 {{parameter}}
18 template<char... C, int N = 0> void operator "" _b(); // expected-error {{parameter}}
19 template<char... C> void operator "" _b(int N = 0); // expected-error {{parameter}}
20 template<char, char...> void operator "" _b(); // expected-error {{parameter}}
21 template<typename T> T operator "" _b(const char *); // expected-error {{parameter}}
22 template<typename T> int operator "" _b(const T *, size_t); // expected-error {{parameter}}
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/llvm/test/MC/MachO/
H A Dreloc-pcrel-offset.s14 _b: label
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
56 call _b
57 call _b - 1
58 call _b + 1
63 call _b - L0
H A Dindirect-symbols.s3 _b: label
11 .indirect_symbol _b
108 // CHECK: ('_string', '_b')
H A Dtls.s38 .tbss _b$tlv$init, 4, 2
40 .globl _b
41 _b: label
44 .quad _b$tlv$init
186 // CHECK: ('_string', '_b$tlv$init')
202 // CHECK: ('_string', '_b')
H A Dzerofill-4.s6 .zerofill __DATA,__bss,_b,4,3
23 // CHECK: ('_string', '_b')
/external/clang/test/SemaCXX/Inputs/
H A Darray-bounds-system-header.h7 #define BAD_MACRO_2(_b, _i) \
8 (_b)[(_i)] = 5
/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
H A Dmacros-gas.s28 .macro test3 _a _b _c
29 .ascii "\_a \_b \_c \\_c"
38 .macro test3_prime _a _b _c
39 .ascii "\_a \_b \_c"
72 .macro test8 _a, _b, _c
73 .ascii "\_a,\_b,\_c"
76 .macro test9 _a _b _c
77 .ascii "\_a \_b \_c"
/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/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1240.js36 a.__defineGetter__('b', function _b(){ return 'foo'; });
/external/chromium_org/third_party/opus/src/celt/
H A Decintrin.h45 instructions, because of the way they represented ((_b)>(_a)) internally.*/
46 # define EC_MINI(_a,_b) ((_a)+(((_b)-(_a))&-((_b)<(_a))))
/external/clang/test/PCH/
H A Dstmts.h93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
/external/libopus/celt/
H A Decintrin.h45 instructions, because of the way they represented ((_b)>(_a)) internally.*/
46 # define EC_MINI(_a,_b) ((_a)+(((_b)-(_a))&-((_b)<(_a))))
/external/tremolo/Tremolo/
H A Dmisc.h157 #define XPROD32(_a, _b, _t, _v, _x, _y) \
158 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \
159 *(_y)=MULT32(_b,_t)-MULT32(_a,_v); }
160 #define XPROD31(_a, _b, _t, _v, _x, _y) \
161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \
162 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); }
163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \
164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
/external/safe-iop/include/
H A Dsafe_iop.h109 typeof(__b) __sio(var)(_b) = (__b); \
112 __sio(var)(_b)))) { \
116 __sio(var)(_b)); \
120 __sio(var)(_b)); \
158 typeof(__b) __sio(var)(_b) = (__b); \
161 __sio(var)(_b)))) { \
165 __sio(var)(_b)); \
169 __sio(var)(_b)); \
210 typeof(__b) __sio(var)(_b) = (__b); \
213 __sio(var)(_b)))) { \
[all...]
/external/chromium_org/v8/test/webkit/resources/
H A Dstandalone-pre.js58 function areArraysEqual(_a, _b)
62 if (_a.length !== _b.length)
65 if (_a[i] !== _b[i])
97 function shouldBe(_a, _b)
99 if (typeof _a != "string" || typeof _b != "string")
108 var _bv = eval(_b);
113 testPassed(_a + " is " + _b);

Completed in 2323 milliseconds

1234