Searched defs:SectorsPerCluster (Results 1 - 19 of 19) sorted by relevance

/device/linaro/bootloader/edk2/DuetPkg/BootSector/
H A Dbootsect.S55 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits label
176 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
179 popw %dx # ax = (StartCluster - 2) * SectorsPerCluster
180 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
182 movb SectorsPerCluster(%bp), %bl # bx = Number of Sectors in a cluster
H A Dbootsect.asm54 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits define
175 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
178 pop dx ; ax = (StartCluster - 2) * SectorsPerCluster
179 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
181 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = Number of Sectors in a cluster
H A Dbs16.S43 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits label
164 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
167 popw %dx # ax = (StartCluster - 2) * SectorsPerCluster
168 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
170 movb SectorsPerCluster(%bp), %bl # bx = Number of Sectors in a cluster
H A Dbs16.asm41 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits define
162 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
165 pop dx ; ax = (StartCluster - 2) * SectorsPerCluster
166 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
168 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = Number of Sectors in a cluster
H A Dbs32.S43 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits label
127 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
128 mulw %bx # ax = (StartCluster - 2) * SectorsPerCluster
129 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
185 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
188 popw %dx # ax = (StartCluster - 2) * SectorsPerCluster
189 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
191 movb SectorsPerCluster(
[all...]
H A Dbs32.asm41 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits define
126 mov bl,byte ptr [bp+SectorsPerCluster]; bx = SectorsPerCluster
127 mul bx ; ax = (StartCluster - 2) * SectorsPerCluster
128 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
184 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
187 pop dx ; ax = (StartCluster - 2) * SectorsPerCluster
188 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
190 mov bl,byte ptr [bp+SectorsPerCluster] ; b
[all...]
H A Dstart.S40 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits label
194 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
195 mulw %bx # ax = (StartCluster - 2) * SectorsPerCluster
196 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
199 mulw %bx # ax = NumberOfClusters * SectorsPerCluster
H A Dstart16.S41 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits label
188 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
189 mulw %bx # ax = (StartCluster - 2) * SectorsPerCluster
190 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
193 mulw %bx # ax = NumberOfClusters * SectorsPerCluster
H A Dst16_64.S41 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits label
200 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
201 mulw %bx # ax = (StartCluster - 2) * SectorsPerCluster
202 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
205 mulw %bx # ax = NumberOfClusters * SectorsPerCluster
H A Dst32_64.S40 SectorsPerCluster: .byte 0 # Sector Per Cluster - 1 byte label
215 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
216 mulw %bx # ax = (StartCluster - 2) * SectorsPerCluster
217 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
220 mulw %bx # ax = NumberOfClusters * SectorsPerCluster
H A Dstart32.S40 SectorsPerCluster: .byte 0 # Sector Per Cluster - 1 byte label
203 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
204 mulw %bx # ax = (StartCluster - 2) * SectorsPerCluster
205 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
208 mulw %bx # ax = NumberOfClusters * SectorsPerCluster
H A Dstart64.S41 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits label
207 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
208 mulw %bx # ax = (StartCluster - 2) * SectorsPerCluster
209 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
212 mulw %bx # ax = NumberOfClusters * SectorsPerCluster
H A Dst16_64.asm37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits define
196 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
197 mul bx ; ax = (StartCluster - 2) * SectorsPerCluster
198 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
201 mul bx ; ax = NumberOfClusters * SectorsPerCluster
H A Dst32_64.asm36 SectorsPerCluster db 0 ; Sector Per Cluster - 1 byte define
212 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
213 mul bx ; ax = (StartCluster - 2) * SectorsPerCluster
214 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
217 mul bx ; ax = NumberOfClusters * SectorsPerCluster
H A Dstart.asm37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits define
191 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
192 mul bx ; ax = (StartCluster - 2) * SectorsPerCluster
193 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
196 mul bx ; ax = NumberOfClusters * SectorsPerCluster
H A Dstart16.asm37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits define
184 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
185 mul bx ; ax = (StartCluster - 2) * SectorsPerCluster
186 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
189 mul bx ; ax = NumberOfClusters * SectorsPerCluster
H A Dstart32.asm36 SectorsPerCluster db 0 ; Sector Per Cluster - 1 byte define
199 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
200 mul bx ; ax = (StartCluster - 2) * SectorsPerCluster
201 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
204 mul bx ; ax = NumberOfClusters * SectorsPerCluster
H A Dstart64.asm37 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits define
203 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = SectorsPerCluster
204 mul bx ; ax = (StartCluster - 2) * SectorsPerCluster
205 add ax, word ptr [bp] ; ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
208 mul bx ; ax = NumberOfClusters * SectorsPerCluster
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtSimpleFileSystemDxe/
H A DWinNtSimpleFileSystem.c2127 UINT32 SectorsPerCluster; local
2205 (LPDWORD)&SectorsPerCluster,
2218 BytesPerCluster = BytesPerSector * SectorsPerCluster;

Completed in 81 milliseconds