Home
last modified time | relevance | path

Searched refs:_b (Results 1 – 25 of 124) sorted by relevance

12345

/external/clang/test/CXX/over/over.oper/over.literal/
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(const unsigned short *, size_t); // expected-error {{parameter}}
[all …]
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}}
/external/libdivsufsort/include/
Ddivsufsort_private.h146 # define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) argument
149 # define MIN(_a, _b) (((_a) < (_b)) ? (_a) : (_b)) argument
152 # define MAX(_a, _b) (((_a) > (_b)) ? (_a) : (_b)) argument
154 #define STACK_PUSH(_a, _b, _c, _d)\ argument
157 stack[ssize].a = (_a), stack[ssize].b = (_b),\
160 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument
163 stack[ssize].a = (_a), stack[ssize].b = (_b),\
166 #define STACK_POP(_a, _b, _c, _d)\ argument
170 (_a) = stack[--ssize].a, (_b) = stack[ssize].b,\
173 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument
[all …]
/external/safe-iop/include/
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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedRangeException.cs44 private readonly int _b; field in Antlr.Runtime.MismatchedRangeException
64 this._b = b; in MismatchedRangeException()
71 this._b = b; in MismatchedRangeException()
78 this._b = b; in MismatchedRangeException()
88 this._b = info.GetInt32("B"); in MismatchedRangeException()
103 return _b;
114 info.AddValue("B", _b); in GetObjectData()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedRangeException.cs42 private readonly int _b; field in Antlr.Runtime.MismatchedRangeException
58 this._b = b; in MismatchedRangeException()
64 this._b = b; in MismatchedRangeException()
70 this._b = b; in MismatchedRangeException()
79 this._b = info.GetInt32("B"); in MismatchedRangeException()
90 return _b;
100 info.AddValue("B", _b); in GetObjectData()
/external/compiler-rt/test/BlocksRuntime/
Dbyrefcopycopy.c23 __typeof(b) _b; in main() local
29 _b = Block_copy(b); // make a new copy each time in main()
30 assert(_b); in main()
32 _b(); // should still update the stack in main()
33 Block_release(_b); in main()
/external/swiftshader/third_party/LLVM/test/MC/MachO/
Dreloc-pcrel.s43 _b: label
55 call _b
56 call _b - 1
57 call _b + 1
62 call _b - L0
Dtls.s38 .tbss _b$tlv$init, 4, 2
40 .globl _b symbol
41 _b: label
44 .quad _b$tlv$init
/external/llvm/test/MC/MachO/
Dreloc-pcrel.s8 _b: label
21 call _b
22 call _b - 1
23 call _b + 1
28 call _b - L0
Dtls.s38 .tbss _b$tlv$init, 4, 2
40 .globl _b symbol
41 _b: label
44 .quad _b$tlv$init
Dcoal-sections-x86_64.s42 .globl _b ## @b symbol
43 .weak_definition _b
45 _b: label
/external/tremolo/Tremolo/
Dmisc.h157 #define XPROD32(_a, _b, _t, _v, _x, _y) \ argument
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) \ argument
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) \ argument
164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
/external/llvm/test/MC/AsmParser/
Dmacros-gas.s28 .macro test3 _a _b _c
38 .macro test3_prime _a _b _c
72 .macro test8 _a, _b, _c
76 .macro test9 _a _b _c
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dtlv-1.ll25 ; CHECK: movq _b@TLVP(%rip),
47 ; CHECK: .tbss _b$tlv$init, 4, 2
48 ; CHECK: .globl _b
49 ; CHECK: _b:
52 ; CHECK: .quad _b$tlv$init
/external/llvm/test/CodeGen/X86/
Dtlv-1.ll25 ; CHECK: movq _b@TLVP(%rip),
47 ; CHECK: .tbss _b$tlv$init, 4, 2
48 ; CHECK: .globl _b
49 ; CHECK: _b:
52 ; CHECK: .quad _b$tlv$init
/external/llvm/test/MC/ARM/
Dtls-directives.s27 _b$tlv$init:
31 .globl _b symbol
32 _b: label
35 .long _b$tlv$init
/external/llvm/test/MC/MachO/PowerPC/
Dcoal-sections-powerpc.s42 .globl _b ; @b symbol
43 .weak_definition _b
45 _b: label
/external/libopus/celt/
Decintrin.h46 # define EC_MINI(_a,_b) ((_a)+(((_b)-(_a))&-((_b)<(_a)))) argument
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.h51 StructInNestedNS(int32_t _a, int32_t _b) in StructInNestedNS() argument
53 b_(flatbuffers::EndianScalar(_b)) { in StructInNestedNS()
64 void mutate_b(int32_t _b) { in mutate_b() argument
65 flatbuffers::WriteScalar(&b_, _b); in mutate_b()
/external/clang/test/PCH/
Dstmts.h93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
/external/toybox/tests/
Dlsattr.test12 _b="-------------"
21 testing "-d ." "lsattr -d ." "$_b .\n" "" ""
22 testing "-d dir_path" "lsattr -d $_p" "$_b $_p\n" "" ""
/external/bart/bart/common/
Dsignal.py108 self._b = sig_b
120 sig_b_info = self._parser.inspect(self._b)
275 condition = " ".join([self._a, ">", self._b])
299 condition = " ".join([self._a, "<", self._b])
/external/llvm/test/CodeGen/Mips/
Dstchar.ll2 …: llc -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16_b
29 ; 16_b-LABEL: test:
31 ; 16_b: sb ${{[0-9]+}}, [[offset1:[0-9]+]](${{[0-9]+}})
32 ; 16_b: lb ${{[0-9]+}}, [[offset1]](${{[0-9]+}})
/external/flac/libFLAC/include/private/
Dmacros.h39 __typeof__ (b) _b = (b); \
40 _a > _b ? _a : _b; })

12345