Home
last modified time | relevance | path

Searched refs:byte_off (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/boot/i386/isoboot/
H A Dcd9660read.c324 off_t byte_off; in cd9660_fsread() local
350 byte_off = fs_off & (ISO_DEFAULT_BLOCK_SIZE - 1); in cd9660_fsread()
357 if (remaining < ISO_DEFAULT_BLOCK_SIZE - byte_off) { in cd9660_fsread()
360 n = ISO_DEFAULT_BLOCK_SIZE - byte_off; in cd9660_fsread()
362 memcpy(s, blkbuf + byte_off, n); in cd9660_fsread()
/illumos-gate/usr/src/lib/crypt_modules/sunmd5/
H A Dsunmd5.c97 int byte_off; in md5bit() local
101 byte_off = bit_num / 8; in md5bit()
105 return ((digest[byte_off] & (0x01 << bit_off)) ? 1 : 0); in md5bit()