Searched defs:Amount (Results 1 - 1 of 1) sorted by relevance

/drivers/scsi/
H A DBusLogic.h1267 BusLogic_IncrementByteCounter increments Byte Counter by Amount.
1271 *ByteCounter, unsigned int Amount)
1273 ByteCounter->Units += Amount;
1281 BusLogic_IncrementSizeBucket increments the Bucket for Amount.
1284 static inline void BusLogic_IncrementSizeBucket(BusLogic_CommandSizeBuckets_T CommandSizeBuckets, unsigned int Amount) argument
1287 if (Amount < 8 * 1024) {
1288 if (Amount < 2 * 1024)
1289 Index = (Amount < 1 * 1024 ? 0 : 1);
1291 Index = (Amount < 4 * 1024 ? 2 : 3);
1292 } else if (Amount < 12
1270 BusLogic_IncrementByteCounter(struct BusLogic_ByteCounter *ByteCounter, unsigned int Amount) argument
[all...]

Completed in 73 milliseconds