/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | radeon_vcn_enc.c | 600 enc->shifter |= value_to_pack << (32 - enc->bits_in_shifter - bits_to_pack); in radeon_enc_code_fixed_bits() 605 unsigned char output_byte = (unsigned char)(enc->shifter >> 24); in radeon_enc_code_fixed_bits() 606 enc->shifter <<= 8; in radeon_enc_code_fixed_bits() 618 enc->shifter = 0; in radeon_enc_reset() 637 unsigned char output_byte = (unsigned char)(enc->shifter >> 24); in radeon_enc_flush_headers() 641 enc->shifter = 0; in radeon_enc_flush_headers()
|
H A D | radeon_uvd_enc_1_1.c | 116 enc->shifter |= value_to_pack << (32 - enc->bits_in_shifter - bits_to_pack); in radeon_uvd_enc_code_fixed_bits() 121 unsigned char output_byte = (unsigned char)(enc->shifter >> 24); in radeon_uvd_enc_code_fixed_bits() 122 enc->shifter <<= 8; in radeon_uvd_enc_code_fixed_bits() 134 enc->shifter = 0; in radeon_uvd_enc_reset() 152 unsigned char output_byte = (unsigned char)(enc->shifter >> 24); in radeon_uvd_enc_flush_headers() 156 enc->shifter = 0; in radeon_uvd_enc_flush_headers()
|
H A D | radeon_vcn_enc_1_2.c | 521 unsigned shifter = enc->shifter; in radeon_enc_nalu_sei() local 575 unsigned shifter2 = enc->shifter; in radeon_enc_nalu_sei() 583 enc->shifter = shifter; in radeon_enc_nalu_sei() 595 enc->shifter = shifter2; in radeon_enc_nalu_sei()
|
H A D | radeon_uvd_enc.h | 416 unsigned shifter; member
|
H A D | radeon_vcn_enc.h | 571 unsigned shifter; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerX8632.h | 800 void rol(Type Ty, GPRRegister operand, GPRRegister shifter); 801 void rol(Type Ty, const AsmAddress &operand, GPRRegister shifter); 804 void shl(Type Ty, GPRRegister operand, GPRRegister shifter); 805 void shl(Type Ty, const AsmAddress &operand, GPRRegister shifter); 808 void shr(Type Ty, GPRRegister operand, GPRRegister shifter); 809 void shr(Type Ty, const AsmAddress &operand, GPRRegister shifter); 812 void sar(Type Ty, GPRRegister operand, GPRRegister shifter); 813 void sar(Type Ty, const AsmAddress &address, GPRRegister shifter); 906 GPRRegister shifter);
|
H A D | IceAssemblerX8664.h | 796 void rol(Type Ty, GPRRegister operand, GPRRegister shifter); 797 void rol(Type Ty, const AsmAddress &operand, GPRRegister shifter); 800 void shl(Type Ty, GPRRegister operand, GPRRegister shifter); 801 void shl(Type Ty, const AsmAddress &operand, GPRRegister shifter); 804 void shr(Type Ty, GPRRegister operand, GPRRegister shifter); 805 void shr(Type Ty, const AsmAddress &operand, GPRRegister shifter); 808 void sar(Type Ty, GPRRegister operand, GPRRegister shifter); 809 void sar(Type Ty, const AsmAddress &address, GPRRegister shifter); 902 GPRRegister shifter);
|
H A D | IceAssemblerX8632.cpp | 2551 void AssemblerX8632::rol(Type Ty, GPRRegister operand, GPRRegister shifter) { 2552 emitGenericShift(0, Ty, AsmOperand(operand), shifter); 2556 GPRRegister shifter) { 2557 emitGenericShift(0, Ty, operand, shifter); 2564 void AssemblerX8632::shl(Type Ty, GPRRegister operand, GPRRegister shifter) { 2565 emitGenericShift(4, Ty, AsmOperand(operand), shifter); 2569 GPRRegister shifter) { 2570 emitGenericShift(4, Ty, operand, shifter); 2577 void AssemblerX8632::shr(Type Ty, GPRRegister operand, GPRRegister shifter) { 2578 emitGenericShift(5, Ty, AsmOperand(operand), shifter); 3214 emitGenericShift(int rm, Type Ty, const AsmOperand &operand, GPRRegister shifter) emitGenericShift() argument [all...] |
H A D | IceAssemblerX8664.cpp | 2690 void AssemblerX8664::rol(Type Ty, GPRRegister operand, GPRRegister shifter) { 2691 emitGenericShift(0, Ty, AsmOperand(operand), shifter); 2695 GPRRegister shifter) { 2696 emitGenericShift(0, Ty, operand, shifter); 2703 void AssemblerX8664::shl(Type Ty, GPRRegister operand, GPRRegister shifter) { 2704 emitGenericShift(4, Ty, AsmOperand(operand), shifter); 2708 GPRRegister shifter) { 2709 emitGenericShift(4, Ty, operand, shifter); 2716 void AssemblerX8664::shr(Type Ty, GPRRegister operand, GPRRegister shifter) { 2717 emitGenericShift(5, Ty, AsmOperand(operand), shifter); 3379 emitGenericShift(int rm, Type Ty, const AsmOperand &operand, GPRRegister shifter) emitGenericShift() argument [all...] |