Home
last modified time | relevance | path

Searched refs:TFTP_BLOCKSIZE_LG2 (Results 1 – 3 of 3) sorted by relevance

/external/syslinux/core/fs/pxe/
Dtftp.h28 #define TFTP_BLOCKSIZE_LG2 9 macro
29 #define TFTP_BLOCKSIZE (1 << TFTP_BLOCKSIZE_LG2)
Dpxe.c205 count <<= TFTP_BLOCKSIZE_LG2; in pxe_getfssec()
574 fs->sector_shift = fs->block_shift = TFTP_BLOCKSIZE_LG2; in pxe_fs_init()
575 fs->sector_size = fs->block_size = 1 << TFTP_BLOCKSIZE_LG2; in pxe_fs_init()
/external/syslinux/core/
Dpxelinux.asm36 TFTP_BLOCKSIZE_LG2 equ 9 ; log2(bytes/block) define
37 TFTP_BLOCKSIZE equ (1 << TFTP_BLOCKSIZE_LG2)
39 SECTOR_SHIFT equ TFTP_BLOCKSIZE_LG2