Lines Matching defs:add
249 void add (Operand dst, int imm);
255 void add (Operand dst, GP64 x);
261 void add (GP64 dst, Operand x);
268 void add (GP64 dst, GP64 x) { this->add (Operand(dst), x); }
326 void add (X d, X n, int imm12);
331 void add (X d, X n, X m, Shift=LSL, int imm6=0); // d=n+Shift(m,imm6), for Shift != ROR.
719 F32 add(F32, F32);
720 F32 add(F32 x, float y) { return add(x, splat(y)); }
721 F32 add(float x, F32 y) { return add(splat(x), y); }
748 F32 mad(F32 x, F32 y, F32 z) { return add(mul(x,y), z); }
768 F32 approx_cos(F32 radians) { return approx_sin(add(radians, SK_ScalarPI/2)); }
833 I32 add(I32, I32);
834 I32 add(I32 x, int y) { return add(x, splat(y)); }
835 I32 add(int x, I32 y) { return add(splat(x), y); }
1072 SI I32 operator+(I32 x, I32 y) { return x->add(x,y); }
1073 SI I32 operator+(I32 x, int y) { return x->add(x,y); }
1074 SI I32 operator+(int x, I32 y) { return y->add(x,y); }
1117 SI F32 operator+(F32 x, F32 y) { return x->add(x,y); }
1118 SI F32 operator+(F32 x, float y) { return x->add(x,y); }
1119 SI F32 operator+(float x, F32 y) { return y->add(x,y); }