Lines Matching refs:amount
67 Define the default amount of time in seconds to wait between a Host Adapter
1234 unsigned int amount)
1236 bytecount->units += amount;
1248 unsigned int amount)
1251 if (amount < 8 * 1024) {
1252 if (amount < 2 * 1024)
1253 index = (amount < 1 * 1024 ? 0 : 1);
1255 index = (amount < 4 * 1024 ? 2 : 3);
1256 } else if (amount < 128 * 1024) {
1257 if (amount < 32 * 1024)
1258 index = (amount < 16 * 1024 ? 4 : 5);
1260 index = (amount < 64 * 1024 ? 6 : 7);
1262 index = (amount < 256 * 1024 ? 8 : 9);