/freebsd/contrib/libc-vis/ |
H A D | vis.c | 306 int iswextra, i, shft; in do_svis() local 319 shft = i * NBBY; in do_svis() 320 bmsk = (uint64_t)0xffLL << shft; in do_svis() 324 (uint64_t)(c & bmsk) >> shft), in do_svis() 405 int clen = 0, cerr, error = -1, i, shft; in istrsenvisx() local 625 shft = i * NBBY; in istrsenvisx() 626 bmsk = (uint64_t)0xffLL << shft; in istrsenvisx() 636 shft); in istrsenvisx()
|
/freebsd/sys/dev/videomode/ |
H A D | edidreg.h | 113 #define _CHLO(byt, shft) (((byt) >> (shft)) & 0x3) argument
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | dmu_tx.c | 283 int shft = dn->dn_indblkshift - SPA_BLKPTRSHIFT; in dmu_tx_count_write() local 284 for (uint64_t i = (start >> shft) + 1; in dmu_tx_count_write() 285 i < end >> shft; i++) { in dmu_tx_count_write()
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_csupport.cpp | 4269 kmp_int64 shft; in __kmpc_doacross_wait() local 4361 shft = iter_number % 32; // use 32-bit granularity in __kmpc_doacross_wait() 4363 flag = 1 << shft; in __kmpc_doacross_wait() 4376 gtid, (iter_number << 5) + shft)); in __kmpc_doacross_wait() 4381 kmp_int64 shft; in __kmpc_doacross_post() local 4442 shft = iter_number % 32; // use 32-bit granularity in __kmpc_doacross_post() 4444 flag = 1 << shft; in __kmpc_doacross_post() 4449 (iter_number << 5) + shft)); in __kmpc_doacross_post()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAsmPrinter.cpp | 1124 const MCExpr *shft = MCConstantExpr::create(Shift, Ctx); in EmitProgramInfoSI() local 1126 shft, Ctx); in EmitProgramInfoSI()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMInstrInfo.td | 4156 def : ARMV6Pat<(int_arm_ssat (shl GPRnopc:$a, imm0_31:$shft), imm1_32:$pos), 4157 (SSAT imm1_32:$pos, GPRnopc:$a, imm0_31:$shft)>; 4158 def : ARMV6Pat<(int_arm_ssat (sra GPRnopc:$a, asr_imm:$shft), imm1_32:$pos), 4159 (SSAT imm1_32:$pos, GPRnopc:$a, asr_imm:$shft)>; 4160 def : ARMV6Pat<(int_arm_usat (shl GPRnopc:$a, imm0_31:$shft), imm0_31:$pos), 4161 (USAT imm0_31:$pos, GPRnopc:$a, imm0_31:$shft)>; 4162 def : ARMV6Pat<(int_arm_usat (sra GPRnopc:$a, asr_imm:$shft), imm0_31:$pos), 4163 (USAT imm0_31:$pos, GPRnopc:$a, asr_imm:$shft)>; 4164 def : ARMPat<(ARMssat (shl GPRnopc:$Rn, imm0_31:$shft), imm0_31:$pos), 4165 (SSAT imm0_31:$pos, GPRnopc:$Rn, imm0_31:$shft)>; [all …]
|
H A D | ARMInstrThumb2.td | 2750 def : T2Pat<(int_arm_ssat (shl GPRnopc:$a, imm0_31:$shft), imm1_32:$pos), 2751 (t2SSAT imm1_32:$pos, GPRnopc:$a, imm0_31:$shft)>; 2752 def : T2Pat<(int_arm_ssat (sra GPRnopc:$a, asr_imm:$shft), imm1_32:$pos), 2753 (t2SSAT imm1_32:$pos, GPRnopc:$a, asr_imm:$shft)>; 2754 def : T2Pat<(int_arm_usat (shl GPRnopc:$a, imm0_31:$shft), imm0_31:$pos), 2755 (t2USAT imm0_31:$pos, GPRnopc:$a, imm0_31:$shft)>; 2756 def : T2Pat<(int_arm_usat (sra GPRnopc:$a, asr_imm:$shft), imm0_31:$pos), 2757 (t2USAT imm0_31:$pos, GPRnopc:$a, asr_imm:$shft)>; 2758 def : T2Pat<(ARMssat (shl GPRnopc:$a, imm0_31:$shft), imm0_31:$pos), 2759 (t2SSAT imm0_31:$pos, GPRnopc:$a, imm0_31:$shft)>; [all …]
|
/freebsd/sys/dev/bxe/ |
H A D | bxe.c | 723 uint32_t shft = 0; in calc_crc32() local 763 shft = sizeof(crc32_result) * 8 - 1; in calc_crc32() 769 shft-- ; in calc_crc32() 773 temp <<= shft; in calc_crc32()
|