Lines Matching refs:cells
1165 AddLengthToCells( UInt32 numCells, UInt32 *cells, UInt64 offset) in AddLengthToCells() argument
1168 cells[0] += (UInt32)offset; in AddLengthToCells()
1171 UInt64 sum = cells[numCells - 2] + offset; in AddLengthToCells()
1172 cells[numCells - 2] = (UInt32)sum; in AddLengthToCells()
1174 cells[numCells - 1] += (UInt32)(sum >> 32); in AddLengthToCells()
1177 UInt64 sum = cells[numCells - 1] + offset; in AddLengthToCells()
1178 cells[numCells - 1] = (UInt32)sum; in AddLengthToCells()
1180 cells[numCells - 2] += (UInt32)(sum >> 32); in AddLengthToCells()
1187 CellsValue( UInt32 numCells, UInt32 *cells) in CellsValue() argument
1190 return IOPhysical32( 0, cells[0] ); in CellsValue()
1193 return IOPhysical32( cells[numCells - 1], cells[numCells - 2] ); in CellsValue()
1195 return IOPhysical32( cells[numCells - 2], cells[numCells - 1] ); in CellsValue()
1380 UInt32 sizeCells, addressCells, cells; in IODTResolveAddressing() local
1400 cells = sizeCells + addressCells; in IODTResolveAddressing()
1402 num = addressProperty->getLength() / (4 * cells); in IODTResolveAddressing()
1425 reg += cells; in IODTResolveAddressing()