Home
last modified time | relevance | path

Searched refs:ubound (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_conv.c263 unsigned long long ubound; in lp_build_clamped_float_to_unsigned_norm() local
268 ubound = (1ULL << dst_width); in lp_build_clamped_float_to_unsigned_norm()
269 mask = ubound - 1; in lp_build_clamped_float_to_unsigned_norm()
270 scale = (double)mask/ubound; in lp_build_clamped_float_to_unsigned_norm()
377 unsigned long long ubound; in lp_build_unsigned_norm_to_float() local
407 ubound = ((unsigned long long)1 << n); in lp_build_unsigned_norm_to_float()
408 mask = ubound - 1; in lp_build_unsigned_norm_to_float()
409 scale = (double)ubound/mask; in lp_build_unsigned_norm_to_float()
/external/guava/guava/src/com/google/common/collect/
DGeneralRange.java158 T ubound = getUpperEndpoint(); in tooHigh() local
159 int cmp = comparator.compare(t, ubound); in tooHigh()
/external/deqp/modules/gles3/functional/
Des3fFramebufferBlitTests.cpp747 …const tcu::IVec2 ubound = (m_blitDir == BLIT_DEFAULT_TO_TARGET) ? (tcu::IVec2(128, 128)) : (tcu::I… in init() local
750 m_dstRect = ubound.swizzle(0, 1, 0, 1) + IVec4(-75, -99, 8, 16); in init()
751 m_interestingArea = IVec4(ubound.x() - 128, ubound.y() - 128, ubound.x(), ubound.y()); in init()