Lines Matching refs:operand

244 	int operand, status;  in _get_new_inode_no()  local
261 operand = 1 << i; in _get_new_inode_no()
262 status = input & operand; in _get_new_inode_no()
267 *ptr |= operand; in _get_new_inode_no()
279 int operand; in _get_new_blk_no() local
296 operand = 1 << i; in _get_new_blk_no()
297 if (*ptr & operand) { in _get_new_blk_no()
300 *ptr |= operand; in _get_new_blk_no()
312 unsigned char operand; in ext4fs_set_block_bmap() local
320 operand = 1 << remainder; in ext4fs_set_block_bmap()
321 status = *ptr & operand; in ext4fs_set_block_bmap()
325 *ptr = *ptr | operand; in ext4fs_set_block_bmap()
330 operand = (1 << 7); in ext4fs_set_block_bmap()
333 operand = (1 << (remainder - 1)); in ext4fs_set_block_bmap()
335 status = *ptr & operand; in ext4fs_set_block_bmap()
339 *ptr = *ptr | operand; in ext4fs_set_block_bmap()
348 unsigned char operand; in ext4fs_reset_block_bmap() local
356 operand = (1 << remainder); in ext4fs_reset_block_bmap()
357 status = *ptr & operand; in ext4fs_reset_block_bmap()
359 *ptr = *ptr & ~(operand); in ext4fs_reset_block_bmap()
363 operand = (1 << 7); in ext4fs_reset_block_bmap()
366 operand = (1 << (remainder - 1)); in ext4fs_reset_block_bmap()
368 status = *ptr & operand; in ext4fs_reset_block_bmap()
370 *ptr = *ptr & ~(operand); in ext4fs_reset_block_bmap()
378 unsigned char operand; in ext4fs_set_inode_bmap() local
385 operand = (1 << 7); in ext4fs_set_inode_bmap()
388 operand = (1 << (remainder - 1)); in ext4fs_set_inode_bmap()
390 status = *ptr & operand; in ext4fs_set_inode_bmap()
394 *ptr = *ptr | operand; in ext4fs_set_inode_bmap()
403 unsigned char operand; in ext4fs_reset_inode_bmap() local
410 operand = (1 << 7); in ext4fs_reset_inode_bmap()
413 operand = (1 << (remainder - 1)); in ext4fs_reset_inode_bmap()
415 status = *ptr & operand; in ext4fs_reset_inode_bmap()
417 *ptr = *ptr & ~(operand); in ext4fs_reset_inode_bmap()