Lines Matching refs:sub
250 void sub (Operand dst, int imm);
256 void sub (Operand dst, GP64 x);
262 void sub (GP64 dst, Operand x);
269 void sub (GP64 dst, GP64 x) { this->sub (Operand(dst), x); }
327 void sub (X d, X n, int imm12);
723 F32 sub(F32, F32);
724 F32 sub(F32 x, float y) { return sub(x, splat(y)); }
725 F32 sub(float x, F32 y) { return sub(splat(x), y); }
772 F32 approx_acos(F32 x) { return sub(SK_ScalarPI/2, approx_asin(x)); }
795 F32 fract(F32 x) { return sub(x, floor(x)); }
837 I32 sub(I32, I32);
838 I32 sub(I32 x, int y) { return sub(x, splat(y)); }
839 I32 sub(int x, I32 y) { return sub(splat(x), y); }
1076 SI I32 operator-(I32 x, I32 y) { return x->sub(x,y); }
1077 SI I32 operator-(I32 x, int y) { return x->sub(x,y); }
1078 SI I32 operator-(int x, I32 y) { return y->sub(x,y); }
1121 SI F32 operator-(F32 x, F32 y) { return x->sub(x,y); }
1122 SI F32 operator-(F32 x, float y) { return x->sub(x,y); }
1123 SI F32 operator-(float x, F32 y) { return y->sub(x,y); }