Searched refs:TFTP_BLOCKSIZE_LG2 (Results 1 – 3 of 3) sorted by relevance
28 #define TFTP_BLOCKSIZE_LG2 9 macro29 #define TFTP_BLOCKSIZE (1 << TFTP_BLOCKSIZE_LG2)
205 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()
36 TFTP_BLOCKSIZE_LG2 equ 9 ; log2(bytes/block) define37 TFTP_BLOCKSIZE equ (1 << TFTP_BLOCKSIZE_LG2)39 SECTOR_SHIFT equ TFTP_BLOCKSIZE_LG2