Searched refs:blk (Results 1 - 4 of 4) sorted by relevance

/haiku/src/tests/
H A Dqemu-boot-test124 -device virtio-blk-device,drive=x0,bus=virtio-mmio-bus.0 \
147 -device virtio-blk-device,drive=x0,bus=virtio-mmio-bus.0 \
/haiku/src/libs/compat/openbsd_wlan/crypto/
H A Dsha1.c29 /* blk0() and blk() perform the initial expand. */
37 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \ macro
42 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
43 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
44 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
45 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
/haiku/headers/libs/agg/
H A Dagg_array.h518 T** blk = m_blocks + m_num_blocks - 1; local
521 pod_allocator<T>::deallocate(*blk, block_size);
522 --blk;
794 block_type* blk = m_blocks + m_num_blocks - 1; local
797 pod_allocator<int8u>::deallocate(blk->data, blk->size);
798 --blk;
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A Dufs2.h255 int32_t fs_bmask; /* ``blkoff'' calc of blk offsets */
278 int32_t fs_old_csaddr; /* blk addr of cyl grp summary area */
318 int64_t fs_csaddr; /* blk addr of cyl grp summary area */
570 #define cgimin(fs, c) (cgstart(fs, c) + (fs)->fs_iblkno) /* inode blk */
571 #define cgsblock(fs, c) (cgstart(fs, c) + (fs)->fs_sblkno) /* super blk */
614 #define lblktosize(fs, blk) /* calculates ((off_t)blk * fs->fs_bsize) */ \
615 (((off_t)(blk)) << (fs)->fs_bshift)
616 /* Use this only when `blk' is known to be small, e.g., < UFS_NDADDR. */
617 #define smalllblktosize(fs, blk) /* calculate
[all...]

Completed in 323 milliseconds