/external/renderscript-intrinsics-replacement-toolkit/renderscript-toolkit/src/main/cpp/ |
D | Utils.h | 93 inline int4 clamp(int4 amount, int low, int high) { in clamp() function 102 inline float4 clamp(float4 amount, float low, float high) { in clamp() function 111 inline int2 clamp(int2 amount, int low, int high) { in clamp() function 118 inline float2 clamp(float2 amount, float low, float high) { in clamp() function 125 inline int clamp(int amount, int low, int high) { in clamp() function 129 inline float clamp(float amount, float low, float high) { in clamp() function
|
/external/skia/src/gpu/effects/ |
D | GrBicubicEffect.cpp | 119 auto clamp = kPremul_SkAlphaType == alphaType ? Clamp::kPremul : Clamp::kUnpremul; in Make() local 135 auto clamp = kPremul_SkAlphaType == alphaType ? Clamp::kPremul : Clamp::kUnpremul; in Make() local 154 auto clamp = kPremul_SkAlphaType == alphaType ? Clamp::kPremul : Clamp::kUnpremul; in MakeSubset() local 182 auto clamp = kPremul_SkAlphaType == alphaType ? Clamp::kPremul : Clamp::kUnpremul; in MakeSubset() local 192 auto clamp = kPremul_SkAlphaType == alphaType ? Clamp::kPremul : Clamp::kUnpremul; in Make() local 200 Clamp clamp) in GrBicubicEffect()
|
/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | wrap.inl | 7 GLM_FUNC_QUALIFIER vecType<T, P> clamp(vecType<T, P> const& Texcoord) function 13 GLM_FUNC_QUALIFIER genType clamp(genType const & Texcoord) function
|
/external/libvpx/libvpx/test/ |
D | add_noise_test.cc | 53 const int clamp = vpx_setup_noise(GET_PARAM(0), noise, kNoiseSize); in TEST_P() local 105 const int clamp = vpx_setup_noise(4.4, noise, kNoiseSize); in TEST_P() local
|
/external/mesa3d/src/mesa/main/ |
D | polygon.c | 303 GLfloat factor, GLfloat units, GLfloat clamp) in _mesa_polygon_offset_clamp() 332 _mesa_PolygonOffsetClampEXT( GLfloat factor, GLfloat units, GLfloat clamp ) in _mesa_PolygonOffsetClampEXT()
|
D | blend.c | 1038 _mesa_ClampColor(GLenum target, GLenum clamp) in _mesa_ClampColor() 1085 get_clamp_color(const struct gl_framebuffer *fb, GLenum clamp) in get_clamp_color() 1125 GLboolean clamp; in _mesa_update_clamp_fragment_color() local
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/ |
D | MiscUtils.java | 80 public static int clamp(int number, int min, int max) { in clamp() method in MiscUtils 84 public static float clamp(float number, float min, float max) { in clamp() method in MiscUtils
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | color-handler.js | 40 function clamp(v) { function
|
D | matrix-interpolation.js | 104 function clamp(x, min, max) { function
|
D | number-handler.js | 21 function clamp(min, max, x) { function
|
/external/libvpx/libvpx/vp8/common/ |
D | postproc.h | 20 int clamp; member
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_postproc.h | 31 int clamp; member
|
/external/deqp/external/openglcts/modules/common/ |
D | glcPolygonOffsetClampTests.hpp | 41 GLfloat clamp; member
|
/external/XNNPACK/src/f32-gemm/ |
D | 4x8-aarch32-neon-cortex-a53.cc | 61 Label nc_loop, kc_loop, epilogue, clamp, remainder_kc, store_odd_width; in generate() local
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | Utils.java | 39 public final static int clamp(int value, int min, int max) { in clamp() method in Utils
|
/external/pdfium/third_party/base/ |
D | stl_util.h | 87 constexpr const T& clamp(const T& v, const T& lo, const T& hi) { in clamp() function
|
/external/libchrome/ui/gfx/geometry/ |
D | size_f.h | 70 static constexpr float clamp(float f) { return f > kTrivial ? f : 0.f; } in clamp() function
|
/external/libvpx/libvpx/vpx_dsp/ |
D | vpx_dsp_common.h | 52 static INLINE int clamp(int value, int low, int high) { in clamp() function
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_state_inlines.h | 42 boolean clamp) in r300_translate_blend_function()
|
/external/libaom/libaom/aom_dsp/ |
D | aom_dsp_common.h | 70 static INLINE int clamp(int value, int low, int high) { in clamp() function
|
/external/skia/src/core/ |
D | SkVM.h | 799 F32 clamp(F32 x, F32 lo, F32 hi) { return max(lo, min(x, hi)); } in clamp() function 800 F32 clamp(F32 x, F32 lo, float hi) { return clamp( x , lo , splat(hi)); } in clamp() function 801 F32 clamp(F32 x, float lo, float hi) { return clamp( x , splat(lo), splat(hi)); } in clamp() function 802 F32 clamp(F32 x, float lo, F32 hi) { return clamp( x , splat(lo), hi ); } in clamp() function 803 F32 clamp(float x, F32 lo, F32 hi) { return clamp(splat(x), lo , hi ); } in clamp() function 804 F32 clamp(float x, F32 lo, float hi) { return clamp(splat(x), lo , splat(hi)); } in clamp() function 805 F32 clamp(float x, float lo, F32 hi) { return clamp(splat(x), splat(lo), hi ); } in clamp() function 1276 SI F32 clamp(F32 x, F32 lo, F32 hi) { return x->clamp(x,lo,hi); } in clamp() function 1277 SI F32 clamp(F32 x, F32 lo, float hi) { return x->clamp(x,lo,hi); } in clamp() function 1278 SI F32 clamp(F32 x, float lo, F32 hi) { return x->clamp(x,lo,hi); } in clamp() function [all …]
|
/external/skia/modules/canvaskit/ |
D | color.js | 193 function clamp(c) { function
|
/external/brotli/c/enc/ |
D | literal_cost.c | 21 static size_t UTF8Position(size_t last, size_t c, size_t clamp) { in UTF8Position()
|
/external/replicaisland/tools/ |
D | ExtractPoints.js | 293 function clamp(input) { function
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_offset.c | 47 float clamp; member
|