Searched refs:radix (Results 1 - 2 of 2) sorted by relevance

/gem5/system/alpha/console/
H A Dprintf.c60 * prints value in radix, in a field width width, with fill
62 * if radix is negative, print as signed quantity
68 PutNumber(long value, int radix, int width, char fill) argument
88 if (radix < 0) {
89 radix = -radix;
96 switch (radix) {
110 if (radix != 16) {
111 digit = (ushort)(uvalue % radix);
112 uvalue /= radix;
180 int radix = 0; local
[all...]
/gem5/src/cpu/testers/garnet_synthetic_traffic/
H A DGarnetSyntheticTraffic.cc188 int radix = (int) sqrt(num_destinations); local
193 int src_x = id%radix;
194 int src_y = id/radix;
202 dest_x = radix - src_x - 1;
203 dest_y = radix - src_y - 1;
204 destination = dest_y*radix + dest_x;
224 dest_x = (src_x + 1) % radix;
226 destination = dest_y*radix + dest_x;
235 destination = dest_y*radix + dest_x;
237 dest_x = (src_x + (int) ceil(radix/
[all...]

Completed in 6 milliseconds