Searched refs:__ (Results 1 - 25 of 236) sorted by last modified time

12345678910

/external/valgrind/main/tests/
H A Dfilter_libc9 s/ __GI___/ __/;
10 s/ __([a-z]*)_nocancel / $1 /;
/external/vixl/benchmarks/
H A Dbench-branch.cc58 #define __ masm-> macro
65 __ b(&target);
66 __ bind(&target);
74 __ b(&target);
75 __ bind(&target);
H A Dbench-dataop.cc58 #define __ masm-> macro
63 __ add(x0, x1, Operand(x2));
70 __ add(x0, x1, Operand(x2));
/external/vixl/examples/
H A Dabs.cc30 #define __ masm-> macro
39 __ Cmp(x0, 0);
40 __ Cneg(x0, x0, mi);
41 __ Ret();
H A Dadd3-double.cc30 #define __ masm-> macro
38 __ Fadd(d0, d0, d1); // d0 <- x + y
39 __ Fadd(d0, d0, d2); // d0 <- d0 + z
42 __ Ret();
H A Dadd4-double.cc30 #define __ masm-> macro
41 __ Ucvtf(d2, x0);
42 __ Ucvtf(d3, x1);
45 __ Fadd(d0, d0, d1);
46 __ Fadd(d2, d2, d3);
47 __ Fadd(d0, d0, d2);
50 __ Ret();
H A Dcheck-bounds.cc30 #define __ masm-> macro
41 __ Cmp(x0, x1);
46 __ Ccmp(x0, x2, CFlag, pl);
54 __ Cset(x0, ls);
56 __ Ret();
H A Ddebugger.cc33 #define __ masm-> macro
39 __ Brk();
40 __ Nop();
41 __ B(&hop);
42 __ Nop();
43 __ Bind(&hop);
44 __ Mov(x1, 123);
45 __ Mov(x2, 456);
46 __ Add(x0, x1, x2);
47 __ Re
[all...]
H A Dfactorial-rec.cc30 #define __ masm-> macro
39 __ Bind(&entry);
41 __ Cbz(x0, &input_is_zero);
43 __ Mov(x1, x0);
44 __ Sub(x0, x0, 1);
45 __ Push(x1, lr);
46 __ Bl(&entry); // Recursive call factorial_rec(n - 1).
47 __ Pop(lr, x1);
48 __ Mul(x0, x0, x1);
49 __ Re
[all...]
H A Dfactorial.cc30 #define __ masm-> macro
39 __ Mov(x1, x0);
40 __ Mov(x0, 1); // Use x0 as the accumulator.
42 __ Cbz(x1, &end); // Nothing to do if the input is null.
44 __ Bind(&loop);
45 __ Mul(x0, x0, x1);
46 __ Sub(x1, x1, 1);
47 __ Cbnz(x1, &loop);
49 __ Bind(&end);
51 __ Re
[all...]
H A Dgetting-started.cc31 #define __ masm-> macro
37 __ Ldr(x1, 0x1122334455667788);
38 __ And(x0, x0, x1);
39 __ Ret();
H A Dsum-array.cc31 #define __ masm-> macro
41 __ Mov(x2, x0);
42 __ Mov(w0, 0);
45 __ Cbz(w1, &end);
48 __ Bind(&loop);
50 __ Ldrb(w3, MemOperand(x2, 1, PostIndex)); // w3 = *(x2++)
51 __ Add(w0, w0, w3);
53 __ Sub(w1, w1, 1);
54 __ Cbnz(w1, &loop);
56 __ Bin
[all...]
H A Dswap-int32.cc30 #define __ masm-> macro
36 const Register old_stack_pointer = __ StackPointer();
37 __ Mov(x2, __ StackPointer());
38 __ SetStackPointer(x2);
42 __ Claim(8);
44 __ Poke(w0, 0);
45 __ Poke(w1, 4);
46 __ Peek(w1, 0);
47 __ Pee
[all...]
H A Dswap4.cc30 #define __ masm-> macro
35 __ Claim(16);
36 __ Poke(x0, 0);
37 __ Poke(x1, 8);
38 __ Push(x3, x2);
40 __ Pop(x1, x0);
41 __ Peek(x3, 0);
42 __ Peek(x2, 8);
43 __ Drop(16);
45 __ Re
[all...]
/external/vixl/test/examples/
H A Dtest-examples.cc40 #define __ masm-> macro
76 __ Push(xzr, lr);
77 __ Blr(x15);
79 __ Pop(lr, xzr);
80 __ Ret();
/external/vixl/test/
H A Dtest-assembler-a64.cc53 // __ mov(x0, Operand(1));
92 #define __ masm. macro
120 __ PushCalleeSavedRegisters(); \
123 __ Trace(LOG_STATE, TRACE_ENABLE); \
126 __ Trace(LOG_DISASM, TRACE_ENABLE); \
130 __ EnableInstrumentation(); \
135 __ DisableInstrumentation(); \
138 __ Trace(LOG_ALL, TRACE_DISABLE); \
141 __ PopCalleeSavedRegisters(); \
142 __ Re
[all...]
H A Dtest-simulator-a64.cc49 #define __ masm. macro
73 __ PushCalleeSavedRegisters(); \
76 __ Trace(LOG_STATE, TRACE_ENABLE); \
79 __ Trace(LOG_DISASM, TRACE_ENABLE); \
83 __ EnableInstrumentation(); \
88 __ DisableInstrumentation(); \
91 __ Trace(LOG_ALL, TRACE_DISABLE); \
93 __ PopCalleeSavedRegisters(); \
94 __ Ret(); \
113 __ PushCalleeSavedRegister
[all...]
H A Dtest-utils-a64.cc37 #define __ masm-> macro
277 __ Mov(xn, value);
282 __ Mov(xn, first);
297 __ Fmov(dn, value);
302 __ Fmov(dn, first);
323 VIXL_ASSERT(__ StackPointer().Is(sp));
346 __ Push(xzr, dump_base, dump, tmp);
349 __ Mov(dump_base, reinterpret_cast<uintptr_t>(&dump_));
355 __ Add(tmp, sp, 4 * kXRegSizeInBytes);
356 __ St
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dmchelp.stdoutB.exp19 bit values 0 = valid, 1 = invalid, __ = unaddressable byte
78 bit values 0 = valid, 1 = invalid, __ = unaddressable byte
/external/tcpdump/
H A Dconfigure1754 something starting with __ and the normal name is an alias. */
/external/stlport/stlport/stl/
H A D_cmath.h172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); }
176 inline float_type func (float_type x, type y) { return _STLP_VENDOR_CSTD::__##cfunc(x,y); }
H A Dconcept_checks.h53 static int __##__type_var##_##__concept
57 static int __##__type_x##__type_y##_require_same_type
60 static int __##__func##__ret##_generator_check
63 static int __##__func##__ret##__arg##_unary_function_check
67 static int __##__func##__ret##__first##__second##_binary_function_check
71 static int __##__opname##__ret##__first##__second##_require_binary_op
768 struct __##__REQUIREMENT##__typedef_requirement_violation { \
/external/stressapptest/
H A Dconfigure1948 something starting with __ and the normal name is an alias. */
/external/srtp/
H A Dconfigure6853 something starting with __ and the normal name is an alias. */
/external/qemu/distrib/sdl-1.2.15/acinclude/
H A Dltoptions.m420 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
96 [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])

Completed in 675 milliseconds

12345678910