Lines Matching refs:move_bytes
9444 int move_bytes; in expand_block_move() local
9466 for (offset = 0; bytes > 0; offset += move_bytes, bytes -= move_bytes) in expand_block_move()
9479 move_bytes = 16; in expand_block_move()
9494 move_bytes = (bytes > 32) ? 32 : bytes; in expand_block_move()
9506 move_bytes = (bytes > 24) ? 24 : bytes; in expand_block_move()
9516 move_bytes = (bytes > 16) ? 16 : bytes; in expand_block_move()
9524 move_bytes = 8; in expand_block_move()
9530 move_bytes = (bytes > 8) ? 8 : bytes; in expand_block_move()
9535 move_bytes = 4; in expand_block_move()
9541 move_bytes = 2; in expand_block_move()
9547 move_bytes = (bytes > 4) ? 4 : bytes; in expand_block_move()
9552 move_bytes = 1; in expand_block_move()
9568 if (mode == BLKmode || num_reg >= MAX_MOVE_REG || bytes == move_bytes) in expand_block_move()
9585 set_mem_size (src, GEN_INT (move_bytes)); in expand_block_move()
9592 set_mem_size (dest, GEN_INT (move_bytes)); in expand_block_move()
9595 GEN_INT (move_bytes & 31), in expand_block_move()