Home
last modified time | relevance | path

Searched refs:absy (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/libc/utils/FPUtil/
DDivisionAndRemainderOperations.h87 T absy = T(ybits); in remquo() local
92 nativeRemainder = nativeRemainder - absy; in remquo()
94 nativeRemainder = absy - nativeRemainder; in remquo()
/external/mesa3d/src/panfrost/bifrost/
Dbi_schedule.c107 bool absy = ins->src_abs[0] && ins->src_abs[1]; in bi_ambiguous_abs() local
109 return classy && typey && absy; in bi_ambiguous_abs()
/external/wayland/cursor/
Dconvert_font.c254 int absy = glyph->hoty + y; in get_glyph_pixel() local
257 absy < 0 || absy >= glyph->height) in get_glyph_pixel()
261 unsigned char block = glyph->data[absy * stride + (absx/8)]; in get_glyph_pixel()
/external/python/cpython3/Modules/
Dmathmodule.c636 double absx, absy, c, m, r; in m_remainder() local
643 absy = fabs(y); in m_remainder()
644 m = fmod(absx, absy); in m_remainder()
666 c = absy - m; in m_remainder()
702 r = m - 2.0 * fmod(0.5 * (absx - m), absy); in m_remainder()
/external/llvm-project/flang/include/flang/Evaluate/
Dinteger.h847 Integer absy{y}; in MultiplyUnsigned()
849 absy = y.Negate().value; in MultiplyUnsigned()
856 Product product{absx.MultiplyUnsigned(absy)}; in MultiplyUnsigned()