Home
last modified time | relevance | path

Searched refs:_a (Results 1 – 25 of 180) sorted by relevance

12345678

/external/v8/test/webkit/resources/
Dstandalone-pre.js58 function areArraysEqual(_a, _b) argument
60 if (Object.prototype.toString.call(_a) != Object.prototype.toString.call([]))
62 if (_a.length !== _b.length)
64 for (var i = 0; i < _a.length; i++)
65 if (_a[i] !== _b[i])
100 function shouldBe(_a, _b) argument
102 if (typeof _a != "string" || typeof _b != "string")
107 _av = eval(_a);
114 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
116 testPassed(_a + " is " + _b);
[all …]
/external/clang/test/CXX/over/over.oper/over.literal/
Dp3.cpp6 char operator "" _a(const char *);
7 char operator "" _a(const char []);
8 char operator "" _a(unsigned long long);
9 char operator "" _a(long double);
10 char operator "" _a(char);
11 char operator "" _a(const volatile char);
12 char operator "" _a(wchar_t);
13 char operator "" _a(char16_t);
14 char operator "" _a(char32_t);
15 char operator "" _a(const char *, size_t);
[all …]
Dp5.cpp6 template<char...> void operator "" _a();
7 template<char... C> S<C...> operator "" _a();
10 friend int operator "" _a(const char *, size_t);
12 friend U operator "" _a(const T *, size_t); // expected-error {{parameter}}
/external/safe-iop/include/
Dsafe_iop.h79 #define OPAQUE_SAFE_IOP_PREFIX_MACRO_smax(_a) \ argument
80 ((typeof(_a))(~((typeof(_a)) 1 << ((sizeof(typeof(_a)) * CHAR_BIT) - 1))))
81 #define OPAQUE_SAFE_IOP_PREFIX_MACRO_smin(_a) \ argument
82 ((typeof(_a))(-__sio(m)(smax)(_a) - 1))
83 #define OPAQUE_SAFE_IOP_PREFIX_MACRO_umax(_a) ((typeof(_a))(~((typeof(_a)) 0))) argument
108 typeof(__a) __sio(var)(_a) = (__a); \
111 if (__sio(m)(assert)(__sio(m)(type_enforce)(__sio(var)(_a), \
113 if (__sio(m)(smin)(__sio(var)(_a)) <= ((typeof(__sio(var)(_a)))0)) { \
115 __sio(var)(_a), \
119 __sio(var)(_a), \
[all …]
/external/valgrind/helgrind/
Dlibhb.h101 #define LIBHB_CWRITE_1(_thr,_a) zsm_sapply08_f__msmcwrite((_thr),(_a)) argument
102 #define LIBHB_CWRITE_2(_thr,_a) zsm_sapply16_f__msmcwrite((_thr),(_a)) argument
103 #define LIBHB_CWRITE_4(_thr,_a) zsm_sapply32_f__msmcwrite((_thr),(_a)) argument
104 #define LIBHB_CWRITE_8(_thr,_a) zsm_sapply64_f__msmcwrite((_thr),(_a)) argument
105 #define LIBHB_CWRITE_N(_thr,_a,_n) zsm_sapplyNN_f__msmcwrite((_thr),(_a),(_n)) argument
107 #define LIBHB_CREAD_1(_thr,_a) zsm_sapply08_f__msmcread((_thr),(_a)) argument
108 #define LIBHB_CREAD_2(_thr,_a) zsm_sapply16_f__msmcread((_thr),(_a)) argument
109 #define LIBHB_CREAD_4(_thr,_a) zsm_sapply32_f__msmcread((_thr),(_a)) argument
110 #define LIBHB_CREAD_8(_thr,_a) zsm_sapply64_f__msmcread((_thr),(_a)) argument
111 #define LIBHB_CREAD_N(_thr,_a,_n) zsm_sapplyNN_f__msmcread((_thr),(_a),(_n)) argument
/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/llvm/test/MC/AsmParser/
Dmacros-gas.s22 .macro test2 _a argument
23 .byte \_a
28 .macro test3 _a _b _c
38 .macro test3_prime _a _b _c
51 .macro test5 _a argument
52 .globl \_a
72 .macro test8 _a, _b, _c
76 .macro test9 _a _b _c
Ddirective_tlv.s4 # CHECK: .globl _a
5 # CHECK: _a:
9 .globl _a symbol
10 _a: label
/external/v8/test/webkit/fast/js/
Dparser-syntax-check.js30 function runTest(_a, errorType) argument
33 if (typeof _a != "string")
34 testFailed("runTest expects string argument: " + _a);
36 eval(_a);
43 testPassed('Invalid: "' + _a + '"');
45 testPassed('Valid: "' + _a + '"');
48 testFailed('Invalid: "' + _a + '" should throw ' + errorType.name);
50 testFailed('Valid: "' + _a + '" should NOT throw ');
54 function valid(_a) argument
57 runTest(_a, false);
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedRangeException.cs43 private readonly int _a; field in Antlr.Runtime.MismatchedRangeException
63 this._a = a; in MismatchedRangeException()
70 this._a = a; in MismatchedRangeException()
77 this._a = a; in MismatchedRangeException()
87 this._a = info.GetInt32("A"); in MismatchedRangeException()
95 return _a;
113 info.AddValue("A", _a); in GetObjectData()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DMismatchedRangeException.cs41 private readonly int _a; field in Antlr.Runtime.MismatchedRangeException
57 this._a = a; in MismatchedRangeException()
63 this._a = a; in MismatchedRangeException()
69 this._a = a; in MismatchedRangeException()
78 this._a = info.GetInt32("A"); in MismatchedRangeException()
84 return _a;
99 info.AddValue("A", _a); in GetObjectData()
/external/llvm/test/MC/MachO/
Dtlv-reloc.s4 _a$tlv$init:
9 .globl _a symbol
10 _a: label
13 .quad _a$tlv$init
20 movq _a@TLVP(%rip), %rdi
Dreloc-pcrel.s5 .globl _a symbol
6 _a: label
18 call _a
19 call _a - 1
20 call _a + 1
Dtls.s30 .tbss _a$tlv$init, 4, 2
32 .globl _a symbol
33 _a: label
36 .quad _a$tlv$init
Dcoal-sections-x86_64.s35 .globl _a ## @a symbol
36 .weak_definition _a
38 _a: label
/external/v8/test/webkit/
Dcached-call-uninitialized-arguments.js32 function shouldBeUndefined(_a) { argument
36 _av = eval(_a);
42 testFailed(_a + " should be undefined. Threw exception " + exception);
44 testPassed(_a + " is undefined.");
46 testFailed(_a + " should be undefined. Was " + _av);
/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/CodeGen/PowerPC/
Dppc64-toc.ll63 ; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}
65 ; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}
67 ; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}
69 ; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}
D2012-09-16-TOC-entry-check.ll25 ; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}
27 ; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}
/external/libopus/celt/
Decintrin.h46 # define EC_MINI(_a,_b) ((_a)+(((_b)-(_a))&-((_b)<(_a)))) argument
/external/clang/test/SemaCXX/Inputs/
Darray-bounds-system-header.h9 #define QUESTIONABLE_MACRO(_a) \ argument
10 sizeof(_a) > 3 ? (_a)[3] = 5 : 5
/external/llvm/test/CodeGen/X86/
Dtlv-1.ll22 ; CHECK: movq _a@TLVP(%rip),
39 ; CHECK: .tbss _a$tlv$init, 4, 2
41 ; CHECK: .globl _a
42 ; CHECK: _a:
45 ; CHECK: .quad _a$tlv$init
/external/llvm/test/CodeGen/MIR/X86/
Dglobal-value-operands.mir25 @_-_a = external global i32
32 %b = load i32, i32* @_-_a
49 %b = load i32, i32* @_-_a
90 ; CHECK: , @_-_a,
96 %rax = MOV64rm %rip, 1, _, @_-_a, _
118 ; CHECK: , @_-_a + 4,
124 %rax = MOV64rm %rip, 1, _, @_-_a + 4, _
/external/llvm/test/MC/MachO/PowerPC/
Dcoal-sections-powerpc.s35 .globl _a ; @a symbol
36 .weak_definition _a
38 _a: label
/external/clang/test/PCH/
Dstmts.h93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })

12345678