HomeSort by relevance Sort by last modified time
    Searched refs:LBA (Results 1 - 25 of 38) sorted by null

1 2

  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/
CEATA.c 499 @param LBA The starting logical block address to read from on the device.
516 IN EFI_LBA LBA,
533 CardData->TaskFile.LBALow = (UINT8)LBA;
534 CardData->TaskFile.LBAMid = (UINT8)RShiftU64(LBA, 8);
535 CardData->TaskFile.LBAHigh = (UINT8)RShiftU64(LBA, 16);
537 CardData->TaskFile.LBALow_Exp = (UINT8)RShiftU64(LBA, 24);
538 CardData->TaskFile.LBAMid_Exp = (UINT8)RShiftU64(LBA, 32);
539 CardData->TaskFile.LBAHigh_Exp = (UINT8)RShiftU64(LBA, 40);
556 @param LBA The starting logical block address to read from on the device.
573 IN EFI_LBA LBA,
    [all...]
MMCSDBlockIo.c 50 @param LBA The starting logical block address to read from on the device.
70 IN EFI_LBA LBA,
85 DEBUG((EFI_D_INFO, "Read(LBA=%08lx, Buffer=%08x, Size=%08x)\n", LBA, Buffer, BufferSize));
105 Address = (UINT32)DivU64x32 (MultU64x32 (LBA, CardData->BlockIoMedia.BlockSize), 512);
110 Address = (UINT32)MultU64x32 (LBA, CardData->BlockIoMedia.BlockSize);
113 if (LBA + TotalBlock > CardData->BlockIoMedia.LastBlock + 1) {
280 @param LBA The starting logical block address to read from on the device.
300 IN EFI_LBA LBA,
314 DEBUG((EFI_D_INFO, "Write(LBA=%08lx, Buffer=%08x, Size=%08x)\n", LBA, Buffer, BufferSize));
    [all...]
CEATABlockIo.c 64 @param LBA The starting logical block address to read from on the device.
84 IN EFI_LBA LBA,
103 Address = MultU64x32(LBA, CardData->BlockIoMedia.BlockSize);
173 @param LBA The starting logical block address to read from on the device.
193 IN EFI_LBA LBA,
213 Address = MultU64x32(LBA, CardData->BlockIoMedia.BlockSize);
SDMediaDevice.h 395 @param LBA The starting logical block address to read from on the device.
412 IN EFI_LBA LBA,
421 @param LBA The starting logical block address to read from on the device.
438 IN EFI_LBA LBA,
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuBlockIo.h 53 Read BufferSize bytes from Lba into Buffer.
64 @param[in] Lba The starting Logical Block Address to read from.
90 IN EFI_LBA LBA,
97 Write BufferSize bytes from Lba into Buffer.
106 @param[in] Lba The starting logical block address to be written. The
132 IN EFI_LBA LBA,
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BlockIo2.h 71 Read BufferSize bytes from Lba into Buffer.
82 @param[in] Lba The starting Logical Block Address to read from.
108 IN EFI_LBA LBA,
115 Write BufferSize bytes from Lba into Buffer.
124 @param[in] Lba The starting logical block address to be written. The
150 IN EFI_LBA LBA,
BlockIoCrypto.h 352 In addition to standard storage transaction parameters (LBA, IO size, and buffer),
360 @param[in] LBA The starting logical block address to read from on
396 IN EFI_LBA LBA,
420 In addition to standard storage transaction parameters (LBA, IO size, and buffer),
427 @param[in] LBA The starting logical block address to read from on
462 IN EFI_LBA LBA,
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
Gpt.asm 106 mov eax, 1 ; Read LBA #1
107 mov edx, 0 ; Read LBA #1
175 ; EDX:EAX = Start LBA
192 mov DWORD PTR ds:[si+8],eax ; 08 = Starting LBA (Low)
193 mov DWORD PTR ds:[si+0ch],edx ; 0C = Starting LBA (High)
213 dd 0h, 0h ; Start LBA (To be fixed each times)
275 dd 1 ; Starting LBA
276 dd 0FFFFFFFFh ; End LBA
bs16.S 197 # AX = Start LBA
208 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
209 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
210 movl %eax, %esi # esi = Start LBA
214 movl %esi, %eax # eax = Start LBA
275 # LBA Offset for BootSector, need patched by tool for HD boot.
Gpt.S 108 movl $1, %eax # Read LBA #1
109 movl $0, %edx # Read LBA #1
177 # EDX:EAX = Start LBA
194 movl %eax, %ds:8(%si) # 08 = Starting LBA (Low)
195 movl %edx, %ds:0xc(%si) # 0C = Starting LBA (High)
215 .long 0x0,0x0 # Start LBA (To be fixed each times)
278 .long 1 # Starting LBA
279 .long 0xFFFFFFFF # End LBA
Mbr.asm 121 ; but calculate C/H/S from LBA ourselves
125 mov eax, dword ptr es:[bp + di + 8] ; Start LBA
127 shr edx, 16 ; DX:AX = Start LBA
130 ; Calculate C/H/S according to LBA
223 ; OxFF means boot to legacy MBR. (LBA OFFSET 6)
bs32.S 218 # AX = Start LBA
229 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
230 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
231 movl %eax, %esi # esi = Start LBA
235 movl %esi, %eax # eax = Start LBA
296 # LBA Offset for BootSector, need patched by tool for HD boot.
bootsect.asm 207 ; AX = Start LBA
218 add eax,dword ptr [bp+LBAOffsetForBootSector] ; Add LBAOffsetForBootSector to Start LBA
219 add eax,dword ptr [bp+HiddenSectors] ; Add HiddenSectors to Start LBA
220 mov esi,eax ; esi = Start LBA
224 mov eax,esi ; eax = Start LBA
285 ; LBA Offset for BootSector, need patched by tool for HD boot.
bs16.asm 194 ; AX = Start LBA
205 add eax,dword ptr [bp+LBAOffsetForBootSector] ; Add LBAOffsetForBootSector to Start LBA
206 add eax,dword ptr [bp+HiddenSectors] ; Add HiddenSectors to Start LBA
207 mov esi,eax ; esi = Start LBA
211 mov eax,esi ; eax = Start LBA
272 ; LBA Offset for BootSector, need patched by tool for HD boot.
bs32.asm 216 ; AX = Start LBA
227 add eax,dword ptr [bp+LBAOffsetForBootSector] ; Add LBAOffsetForBootSector to Start LBA
228 add eax,dword ptr [bp+HiddenSectors] ; Add HiddenSectors to Start LBA
229 mov esi,eax ; esi = Start LBA
233 mov eax,esi ; eax = Start LBA
294 ; LBA Offset for BootSector, need patched by tool for HD boot.
start.S 214 # AX = Start LBA
225 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
226 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
227 movl %eax, %esi # esi = Start LBA
231 movl %esi, %eax # eax = Start LBA
    [all...]
start16.S 208 # AX = Start LBA
219 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
220 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
221 movl %eax, %esi # esi = Start LBA
225 movl %esi, %eax # eax = Start LBA
    [all...]
start32.S 223 # AX = Start LBA
234 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
235 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
236 movl %eax, %esi # esi = Start LBA
240 movl %esi, %eax # eax = Start LBA
    [all...]
st16_64.S 220 # AX = Start LBA
231 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
232 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
233 movl %eax,%esi # esi = Start LBA
237 movl %esi,%eax # eax = Start LBA
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuBlockIoDxe/
EmuBlockIo.c 52 Read BufferSize bytes from Lba into Buffer.
63 @param[in] Lba The starting Logical Block Address to read from.
89 IN EFI_LBA LBA,
103 Status = Private->Io->ReadBlocks (Private->Io, MediaId, LBA, Token, BufferSize, Buffer);
111 Write BufferSize bytes from Lba into Buffer.
120 @param[in] Lba The starting logical block address to be written. The
146 IN EFI_LBA LBA,
160 Status = Private->Io->WriteBlocks (Private->Io, MediaId, LBA, Token, BufferSize, Buffer);
247 Read BufferSize bytes from Lba into Buffer.
251 @param Lba The starting Logical Block Address to read from
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
BlockIo.c 271 IN EFI_LBA Lba,
317 LastBlock = Lba + (BufferSize / BlockSize) - 1;
325 DistanceToMove = MultU64x32 (Lba, BlockSize);
338 Read BufferSize bytes from Lba into Buffer.
349 @param[in] Lba The starting Logical Block Address to read from.
374 IN EFI_LBA LBA,
386 Status = EmuBlockIoReadWriteCommon (Private, MediaId, LBA, BufferSize, Buffer, "UnixReadBlocks");
417 Write BufferSize bytes from Lba into Buffer.
426 @param[in] Lba The starting logical block address to be written. The
451 IN EFI_LBA LBA,
    [all...]
Gasket.h 474 IN EFI_LBA LBA,
485 IN EFI_LBA LBA,
  /external/syslinux/mbr/
oldmbr.asm 125 test cl,1 ; LBA device access
128 ; We have EBIOS. Load the boot sector using LBA.
207 .lba: dd 0 ; LBA (LSW)
208 dd 0 ; LBA (MSW)
  /external/syslinux/core/
isolinux.asm 91 sp_lba: resd 1 ; LBA for emulated disk image
130 .lba: resd 2 ; LBA (LSW, MSW)
140 dsp_lba: resd 1 ; LBA for emulated disk image
179 bi_pvd: dd 16 ; LBA of primary volume descriptor
180 bi_file: dd 0 ; LBA of boot file
754 ; Get linear sectors - EBIOS LBA addressing, 2048-byte sectors.
946 ; LBA, 2K sectors, some special error handling.
1058 offset_msg: db 'Main image LBA = ', 0
1063 noinfoinspec_msg db 'Spec packet missing LBA information, trying to wing it...', CR, LF,
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 764 const BlockAddress *LBA = cast<BlockAddress>(L);
766 if (int Res = cmpValues(LBA->getFunction(), RBA->getFunction()))
768 if (LBA->getFunction() == RBA->getFunction()) {
771 Function* F = LBA->getFunction();
772 BasicBlock *LBB = LBA->getBasicBlock();
791 assert(LBA->getFunction() == FnL && RBA->getFunction() == FnR)
    [all...]

Completed in 906 milliseconds

1 2