Lines Matching refs:amount
67 Define the default amount of time in seconds to wait between a Host Adapter
1223 unsigned int amount)
1225 bytecount->units += amount;
1237 unsigned int amount)
1240 if (amount < 8 * 1024) {
1241 if (amount < 2 * 1024)
1242 index = (amount < 1 * 1024 ? 0 : 1);
1244 index = (amount < 4 * 1024 ? 2 : 3);
1245 } else if (amount < 128 * 1024) {
1246 if (amount < 32 * 1024)
1247 index = (amount < 16 * 1024 ? 4 : 5);
1249 index = (amount < 64 * 1024 ? 6 : 7);
1251 index = (amount < 256 * 1024 ? 8 : 9);