Home
last modified time | relevance | path

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

/openbsd/gnu/gcc/gcc/config/arm/
H A Darm.c4883 int j, booth_unit_size; in arm_slowmul_rtx_costs() local
4887 booth_unit_size = 2; in arm_slowmul_rtx_costs()
4888 for (j = 0; i && j < 32; j += booth_unit_size) in arm_slowmul_rtx_costs()
4890 i >>= booth_unit_size; in arm_slowmul_rtx_costs()
4949 int j, booth_unit_size; in arm_fastmul_rtx_costs() local
4953 booth_unit_size = 8; in arm_fastmul_rtx_costs()
4954 for (j = 0; i && j < 32; j += booth_unit_size) in arm_fastmul_rtx_costs()
4956 i >>= booth_unit_size; in arm_fastmul_rtx_costs()
/openbsd/gnu/usr.bin/gcc/gcc/config/arm/
H A Darm.c2841 int booth_unit_size = ((tune_flags & FL_FAST_MULT) ? 8 : 2); local
2843 for (j = 0; i && j < 32; j += booth_unit_size)
2845 i >>= booth_unit_size;