Searched defs:shift_count (Results 1 - 7 of 7) sorted by relevance

/external/qemu-pc-bios/vgabios/
H A Dvgabios.c3789 Bit16u arg_seg, arg, digit, nibble, shift_count; local
/external/v8/src/
H A Dhydrogen-instructions.cc1396 int shift_count = c->Integer32Value() & 0x1f; local
1399 return (shift_count >= 1)
1401 static_cast<uint32_t>(0xffffffff) >> shift_count)
/external/v8/src/arm/
H A Dlithium-codegen-arm.cc1310 uint8_t shift_count = static_cast<uint8_t>(value & 0x1F); local
1313 if (shift_count != 0) {
1314 __ mov(result, Operand(left, ASR, shift_count));
1320 if (shift_count != 0) {
1321 __ mov(result, Operand(left, LSR, shift_count));
1331 if (shift_count != 0) {
1332 __ mov(result, Operand(left, LSL, shift_count));
/external/v8/src/ia32/
H A Dlithium-codegen-ia32.cc1114 uint8_t shift_count = static_cast<uint8_t>(value & 0x1F); local
1117 if (shift_count != 0) {
1118 __ sar(ToRegister(left), shift_count); local
1122 if (shift_count == 0 && instr->can_deopt()) {
1126 __ shr(ToRegister(left), shift_count); local
1130 if (shift_count != 0) {
1131 __ shl(ToRegister(left), shift_count); local
/external/v8/src/mips/
H A Dlithium-codegen-mips.cc1113 uint8_t shift_count = static_cast<uint8_t>(value & 0x1F); local
1116 if (shift_count != 0) {
1117 __ sra(result, left, shift_count);
1123 if (shift_count != 0) {
1124 __ srl(result, left, shift_count);
1134 if (shift_count != 0) {
1135 __ sll(result, left, shift_count);
/external/v8/src/x64/
H A Dlithium-codegen-x64.cc1099 uint8_t shift_count = static_cast<uint8_t>(value & 0x1F); local
1102 if (shift_count != 0) {
1103 __ sarl(ToRegister(left), Immediate(shift_count));
1107 if (shift_count == 0 && instr->can_deopt()) {
1111 __ shrl(ToRegister(left), Immediate(shift_count));
1115 if (shift_count != 0) {
1116 __ shll(ToRegister(left), Immediate(shift_count));
/external/qemu-pc-bios/bochs/bios/
H A Drombios.c1631 Bit16u arg_seg, arg, nibble, hibyte, shift_count, format_width, hexadd; local

Completed in 183 milliseconds