• Home
  • Raw
  • Download

Lines Matching refs:packedData

287 static OSStatus UnpackPEFDataSection(const UInt8 * const packedData,   UInt32 packedSize,  in UnpackPEFDataSection()  argument
295 MoreAssertQ(packedData != nil); in UnpackPEFDataSection()
303 MoreAssertQ( packedSize == GetPtrSize( (Ptr) packedData ) ); in UnpackPEFDataSection()
312 opCode = packedData[offset]; in UnpackPEFDataSection()
319 offset += DecodeInstrCountValue(&packedData[offset], &count); in UnpackPEFDataSection()
330 offset += DecodeInstrCountValue(&packedData[offset], &blockSize); in UnpackPEFDataSection()
332 BlockMoveData(&packedData[offset], unpackCursor, blockSize); in UnpackPEFDataSection()
344 offset += DecodeInstrCountValue(&packedData[offset], &blockSize); in UnpackPEFDataSection()
345 offset += DecodeVCountValue(&packedData[offset], &repeatCount); in UnpackPEFDataSection()
349 BlockMoveData(&packedData[offset], unpackCursor, blockSize); in UnpackPEFDataSection()
365 offset += DecodeInstrCountValue(&packedData[offset], &commonSize); in UnpackPEFDataSection()
366 offset += DecodeVCountValue(&packedData[offset], &customSize); in UnpackPEFDataSection()
367 offset += DecodeVCountValue(&packedData[offset], &repeatCount); in UnpackPEFDataSection()
369 commonData = &packedData[offset]; in UnpackPEFDataSection()
370 customData = &packedData[offset + commonSize]; in UnpackPEFDataSection()
393 offset += DecodeInstrCountValue(&packedData[offset], &commonSize); in UnpackPEFDataSection()
394 offset += DecodeVCountValue(&packedData[offset], &customSize); in UnpackPEFDataSection()
395 offset += DecodeVCountValue(&packedData[offset], &repeatCount); in UnpackPEFDataSection()
397 customData = &packedData[offset]; in UnpackPEFDataSection()