Home | History | Annotate | Download | only in FlashDeviceLib

Lines Matching full:numbytes

46   UINTN NumBytes

55 while ( (NumBytes > 0) && (NumBytes <= MAX_FWH_SIZE) ) {
72 NumBytes -= SectorSize;
82 UINTN NumBytes
91 while ( (NumBytes > 0) && (NumBytes <= MAX_FWH_SIZE) ) {
108 NumBytes -= SectorSize;
124 UINT32 NumBytes = (UINT32)Length;
137 NumBytes,
180 IN UINTN NumBytes,
229 Read NumBytes bytes of data from the address specified by
233 @param[in,out] NumBytes On input, the number of bytes to read. On output, the number
245 IN OUT UINTN *NumBytes,
249 CopyMem(Buffer, (VOID*)PAddress, *NumBytes);
255 Write NumBytes bytes of data from Buffer to the address specified by
259 @param[in,out] NumBytes On input, the number of bytes to write. On output,
271 IN OUT UINTN *NumBytes,
276 Status = SpiFlashWrite((UINT8 *)PAddress, Buffer, *NumBytes);