Searched refs:bitwidth (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Drtlanal.c3933 unsigned int bitwidth = GET_MODE_BITSIZE (mode);
3948 if (bitwidth < GET_MODE_BITSIZE (GET_MODE (x)))
3953 num0 - (int) (GET_MODE_BITSIZE (GET_MODE (x)) - bitwidth));
3956 if (GET_MODE (x) != VOIDmode && bitwidth > GET_MODE_BITSIZE (GET_MODE (x)))
4009 return MAX (1, ((int) bitwidth
4018 if (bitwidth <= HOST_BITS_PER_WIDE_INT
4019 && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4022 return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
4033 return MAX ((int) bitwidth
3907 unsigned int bitwidth = GET_MODE_BITSIZE (mode); local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp245 // Get bitwidth of div/rem instruction
247 unsigned int bitwidth = T->getBitWidth(); local
249 // Continue if bitwidth is not bypassed
250 DenseMap<unsigned int, unsigned int>::const_iterator BI = BypassWidths.find(bitwidth);
254 // Get type for div/rem instruction with bypass bitwidth
/freebsd-9.3-release/sys/dev/de/
H A Dif_de.c1891 const unsigned bitwidth = SROM_BITWIDTH; local
1892 const unsigned cmdmask = (SROMCMD_RD << bitwidth);
1893 const unsigned msb = 1 << (bitwidth + 3 - 1);
1894 unsigned lastidx = (1 << bitwidth) - 1;
1906 for (bits = idx|cmdmask, bit = bitwidth + 3; bit > 0; bit--, bits <<= 1) {

Completed in 108 milliseconds