Lines Matching full:amount
74 Define the default amount of time in seconds to wait between a Host Adapter
1267 BusLogic_IncrementByteCounter increments Byte Counter by Amount.
1271 *ByteCounter, unsigned int Amount) in BusLogic_IncrementByteCounter() argument
1273 ByteCounter->Units += Amount; in BusLogic_IncrementByteCounter()
1281 BusLogic_IncrementSizeBucket increments the Bucket for Amount.
1284 …BusLogic_IncrementSizeBucket(BusLogic_CommandSizeBuckets_T CommandSizeBuckets, unsigned int Amount) in BusLogic_IncrementSizeBucket() argument
1287 if (Amount < 8 * 1024) { in BusLogic_IncrementSizeBucket()
1288 if (Amount < 2 * 1024) in BusLogic_IncrementSizeBucket()
1289 Index = (Amount < 1 * 1024 ? 0 : 1); in BusLogic_IncrementSizeBucket()
1291 Index = (Amount < 4 * 1024 ? 2 : 3); in BusLogic_IncrementSizeBucket()
1292 } else if (Amount < 128 * 1024) { in BusLogic_IncrementSizeBucket()
1293 if (Amount < 32 * 1024) in BusLogic_IncrementSizeBucket()
1294 Index = (Amount < 16 * 1024 ? 4 : 5); in BusLogic_IncrementSizeBucket()
1296 Index = (Amount < 64 * 1024 ? 6 : 7); in BusLogic_IncrementSizeBucket()
1298 Index = (Amount < 256 * 1024 ? 8 : 9); in BusLogic_IncrementSizeBucket()