英文: Enumerating intersections of two sequences 问题 I have two sequences: 一个无符号64位数 k 的倍数,例如 k=5:{0, 5...
如何优化这个 C 中的位打包函数?
英文: How can I optimize this bit-packing function in C? 问题 这个代码示例接受任意数量的字节作为输入,一次处理一个字节,并将它们映射到一个包含32...
找到所有可以被某个数字整除的掩码子集。
英文: Find all subsets of a mask which are divisible by a certain number 问题 所有4位数1101的子集是0000、0001、010...
如何检查寄存器是否包含零字节而不使用SIMD指令
英文: How to check if a register contains a zero byte without SIMD instructions 问题 在x64架构中,给定一个64位通用寄存...
有没有更快的算法来计算 max(ctz(x), ctz(y))?
英文: Is there a faster algorithm for max(ctz(x), ctz(y))? 问题 对于 min(ctz(x), ctz(y)),我们可以使用 ctz(x | y)...
Bitwise operator XOR (^) 在 Linux 和 Windows 中产生不同的结果。
英文: Bitwise operator XOR (^) gives different results in linux and windows 问题 由于某些难以解释的原因,我想在Perl中执行以...
如何从原始数据文件中读取12位无符号整数到JavaScript的UInt16Array中?
英文: How to read 12bit unsigned integers from a raw data file into UInt16Array in JavaScript? 问题 以下是翻...
找到一个乘数,可以将给定的索引转化为位形成。
英文: Find a multiplier which multiplies given indices into a formation of bits 问题 我有一组索引和一组位掩码(集合大小相同...
只获取/设置长整型中特定的位。
英文: Get / Set only specific bits in a long 问题 我有一个包含多个字段的48位结构,我希望能够读取和操作这些字段。我认为我已经理解了获取部分,但在设置部分遇到...
如何定义一个位组合的类型?
英文: How to define a type of a bit-combination? 问题 我正在努力使用PowerShell创建一个具有类似文件属性的位组合的自定义类型。稍后,该类型的使用应...
7