Lines Matching refs:floor_
122 SI F floor_(F v) { return floorf(v); } in floor_() function
205 SI F floor_(F v) { return vrndmq_f32(v); }
210 SI F floor_(F v) {
356 SI F floor_(F v) { return _mm256_floor_ps(v); }
712 SI F floor_(F v) {
940 SI F fract(F v) { return v - floor_(v); } in fract()
2277 return v - floor_(v*ctx->invScale)*ctx->scale; in exclusive_repeat()
2282 return abs_( (v-limit) - (limit+limit)*floor_((v-limit)*(invLimit*0.5f)) - limit ); in exclusive_mirror()
2293 STAGE(repeat_x_1, Ctx::None) { r = clamp_01(r - floor_(r)); } in STAGE()
2294 STAGE(mirror_x_1, Ctx::None) { r = clamp_01(abs_( (r-1.0f) - two(floor_((r-1.0f)*0.5f)) - 1.0f )); } in STAGE()
2686 case SkTileMode::kRepeat: return v - floor_(v*invLimit)*limit; in tile()
2688 return abs_( (v-limit) - (limit+limit)*floor_((v-limit)*(invLimit*0.5f)) - limit ); in tile()
3162 SI F floor_(F x) {
3180 SI F fract(F x) { return x - floor_(x); }
3858 STAGE_GG(repeat_x_1, Ctx::None) { x = clamp_01(x - floor_(x)); }
3861 x = clamp_01(abs_( (x-1.0f) - two(floor_((x-1.0f)*0.5f)) - 1.0f ));