Home
last modified time | relevance | path

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

/external/swiftshader/src/System/
DMath.hpp257 static const float maxf = static_cast<float>(max); in unorm() local
269 return static_cast<unsigned int>(maxf * x + 0.5f); in unorm()
278 static const float maxf = static_cast<float>(max); in snorm() local
289 return static_cast<int>(maxf * x + 0.5f); in snorm()
300 return static_cast<int>(maxf * x - 0.5f) & range; in snorm()
309 static const float maxf = static_cast<float>(max); in ucast() local
311 if(x >= maxf) in ucast()
330 static const float maxf = static_cast<float>(max); in scast() local
336 if(x >= maxf) in scast()
/external/swiftshader/src/Common/
DMath.hpp257 static const float maxf = static_cast<float>(max); in unorm() local
269 return static_cast<unsigned int>(maxf * x + 0.5f); in unorm()
278 static const float maxf = static_cast<float>(max); in snorm() local
289 return static_cast<int>(maxf * x + 0.5f); in snorm()
300 return static_cast<int>(maxf * x - 0.5f) & range; in snorm()
309 static const float maxf = static_cast<float>(max); in ucast() local
311 if(x >= maxf) in ucast()
330 static const float maxf = static_cast<float>(max); in scast() local
336 if(x >= maxf) in scast()
/external/u-boot/drivers/net/
Dpic32_eth.h46 struct pic32_reg_atomic maxf; /* 0x250*/ member
Dlpc32xx_eth.c84 u32 maxf; /* Maximum Frame register */ member
453 writel(PKTSIZE_ALIGN, &regs->maxf); in lpc32xx_eth_init()
Dpic32_eth.c188 writel(0x600, &emac_p->maxf.raw); in pic32_mac_init()