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

/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOLib.h340 * Multiply and divide routines for IOFixed datatype.
343 static inline IOFixed IOFixedMultiply(IOFixed a, IOFixed b)
345 return (IOFixed)((((SInt64) a) * ((SInt64) b)) >> 16);
348 static inline IOFixed IOFixedDivide(IOFixed a, IOFixed b)
350 return (IOFixed)((((SInt64) a) << 16) / ((SInt64) b));
H A DIOTypes.h73 typedef SInt32 IOFixed; typedef

Completed in 73 milliseconds