Home
last modified time | relevance | path

Searched refs:sk_float_ceil (Results 1 – 6 of 6) sorted by relevance

/external/skqp/include/private/
DSkFloatingPoint.h43 #define sk_float_ceil(x) ceilf(x) macro
120 #define sk_float_ceil2int(x) sk_float_saturate2int(sk_float_ceil(x))
124 #define sk_float_ceil2int_no_saturate(x) (int)sk_float_ceil(x)
/external/skia/include/private/
DSkFloatingPoint.h50 #define sk_float_ceil(x) ceilf(x) macro
148 #define sk_float_ceil2int(x) sk_float_saturate2int(sk_float_ceil(x))
152 #define sk_float_ceil2int_no_saturate(x) (int)sk_float_ceil(x)
/external/skia/include/core/
DSkScalar.h30 #define SkScalarCeilToScalar(x) sk_float_ceil(x)
/external/skqp/include/core/
DSkScalar.h30 #define SkScalarCeilToScalar(x) sk_float_ceil(x)
DSkMatrix44.h73 #define SkMScalarCeil(x) sk_float_ceil(x)
/external/skia/src/gpu/effects/
DGrTextureEffect.cpp94 Span isubset{sk_float_floor(subset.fA), sk_float_ceil(subset.fB)}; in Sampling()