Searched refs:BYTE_RADIX (Results 1 - 4 of 4) sorted by relevance

/gem5/src/systemc/ext/dt/int/
H A Dsc_nbdefs.hh112 #define BYTE_RADIX 256 macro
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbdefs.h124 #define BYTE_RADIX 256 macro
H A Dsc_nbutils.cpp1223 // using x and y is that x and y are BYTE_RADIX copies of u and v,
1224 // respectively. The use of BYTE_RADIX radix greatly simplifies the
1286 if (qk >= BYTE_RADIX) // qk cannot be larger than the largest
1287 qk = BYTE_RADIX - 1; // digit in BYTE_RADIX.
1299 sc_digit diff = (xk[i] + BYTE_RADIX) - (carry & BYTE_MASK);
1308 carry = (xk[ylen] + BYTE_RADIX) - carry;
1487 if (qk >= BYTE_RADIX) // qk cannot be larger than the largest
1488 qk = BYTE_RADIX - 1; // digit in BYTE_RADIX
[all...]
/gem5/src/systemc/dt/int/
H A Dsc_nbutils.cc1146 // using x and y is that x and y are BYTE_RADIX copies of u and v,
1147 // respectively. The use of BYTE_RADIX radix greatly simplifies the
1210 if (qk >= BYTE_RADIX) // qk cannot be larger than the largest
1211 qk = BYTE_RADIX - 1; // digit in BYTE_RADIX.
1222 sc_digit diff = (xk[i] + BYTE_RADIX) - (carry & BYTE_MASK);
1231 carry = (xk[ylen] + BYTE_RADIX) - carry;
1399 if (qk >= BYTE_RADIX) // qk cannot be larger than the largest
1400 qk = BYTE_RADIX - 1; // digit in BYTE_RADIX
[all...]

Completed in 14 milliseconds