Lines Matching defs:__
32 #define __ masm->41 __ Mov(x1, x0);42 __ Mov(x0, 1); // Use x0 as the accumulator.44 __ Cbz(x1, &end); // Nothing to do if the input is null.46 __ Bind(&loop);47 __ Mul(x0, x0, x1);48 __ Sub(x1, x1, 1);49 __ Cbnz(x1, &loop);51 __ Bind(&end);53 __ Ret();