Lines Matching refs:operand
242 int operand, status; in _get_new_inode_no() local
259 operand = 1 << i; in _get_new_inode_no()
260 status = input & operand; in _get_new_inode_no()
265 *ptr |= operand; in _get_new_inode_no()
277 int operand; in _get_new_blk_no() local
294 operand = 1 << i; in _get_new_blk_no()
295 if (*ptr & operand) { in _get_new_blk_no()
298 *ptr |= operand; in _get_new_blk_no()
310 unsigned char operand; in ext4fs_set_block_bmap() local
318 operand = 1 << remainder; in ext4fs_set_block_bmap()
319 status = *ptr & operand; in ext4fs_set_block_bmap()
323 *ptr = *ptr | operand; in ext4fs_set_block_bmap()
328 operand = (1 << 7); in ext4fs_set_block_bmap()
331 operand = (1 << (remainder - 1)); in ext4fs_set_block_bmap()
333 status = *ptr & operand; in ext4fs_set_block_bmap()
337 *ptr = *ptr | operand; in ext4fs_set_block_bmap()
346 unsigned char operand; in ext4fs_reset_block_bmap() local
354 operand = (1 << remainder); in ext4fs_reset_block_bmap()
355 status = *ptr & operand; in ext4fs_reset_block_bmap()
357 *ptr = *ptr & ~(operand); in ext4fs_reset_block_bmap()
361 operand = (1 << 7); in ext4fs_reset_block_bmap()
364 operand = (1 << (remainder - 1)); in ext4fs_reset_block_bmap()
366 status = *ptr & operand; in ext4fs_reset_block_bmap()
368 *ptr = *ptr & ~(operand); in ext4fs_reset_block_bmap()
376 unsigned char operand; in ext4fs_set_inode_bmap() local
383 operand = (1 << 7); in ext4fs_set_inode_bmap()
386 operand = (1 << (remainder - 1)); in ext4fs_set_inode_bmap()
388 status = *ptr & operand; in ext4fs_set_inode_bmap()
392 *ptr = *ptr | operand; in ext4fs_set_inode_bmap()
401 unsigned char operand; in ext4fs_reset_inode_bmap() local
408 operand = (1 << 7); in ext4fs_reset_inode_bmap()
411 operand = (1 << (remainder - 1)); in ext4fs_reset_inode_bmap()
413 status = *ptr & operand; in ext4fs_reset_inode_bmap()
415 *ptr = *ptr & ~(operand); in ext4fs_reset_inode_bmap()