Lines Matching defs:__
32 #define __ masm->41 __ Bind(&entry);43 __ Cbz(x0, &input_is_zero);45 __ Mov(x1, x0);46 __ Sub(x0, x0, 1);47 __ Push(x1, lr);48 __ Bl(&entry); // Recursive call factorial_rec(n - 1).49 __ Pop(lr, x1);50 __ Mul(x0, x0, x1);51 __ Ret();53 __ Bind(&input_is_zero);54 __ Mov(x0, 1);55 __ Ret();