Home | History | Annotate | Download | only in arm

Lines Matching full:constant_abs

1192         uint32_t constant_abs = (constant + mask) ^ mask;
1194 if (IsPowerOf2(constant_abs) ||
1195 IsPowerOf2(constant_abs - 1) ||
1196 IsPowerOf2(constant_abs + 1)) {
1197 if (IsPowerOf2(constant_abs)) {
1198 int32_t shift = WhichPowerOf2(constant_abs);
1200 } else if (IsPowerOf2(constant_abs - 1)) {
1201 int32_t shift = WhichPowerOf2(constant_abs - 1);
1203 } else if (IsPowerOf2(constant_abs + 1)) {
1204 int32_t shift = WhichPowerOf2(constant_abs + 1);