Displaying 4 results from an estimated 4 matches for "0x00000000ff000000ull".
Did you mean:
0x0000000000000000ull
2018 Nov 25
3
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...i2(unsigned long long ull)
{
return ((ull & 0xff00000000000000ull) >> 7 * 8)
| ((ull & 0x00ff000000000000ull) >> 5 * 8)
| ((ull & 0x0000ff0000000000ull) >> 3 * 8)
| ((ull & 0x000000ff00000000ull) >> 8)
| ((ull & 0x00000000ff000000ull) << 8)
| ((ull & 0x0000000000ff0000ull) << 3 * 8)
| ((ull & 0x000000000000ff00ull) << 5 * 8)
| ((ull & 0x00000000000000ffull) << 7 * 8);
}
You can find these sources in "compiler-rt/lib/builtins/bswapsi2.c"
and "comp...
2018 Nov 25
3
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...urn ((ull & 0xff00000000000000ull) >> 7 * 8)
>> | ((ull & 0x00ff000000000000ull) >> 5 * 8)
>> | ((ull & 0x0000ff0000000000ull) >> 3 * 8)
>> | ((ull & 0x000000ff00000000ull) >> 8)
>> | ((ull & 0x00000000ff000000ull) << 8)
>> | ((ull & 0x0000000000ff0000ull) << 3 * 8)
>> | ((ull & 0x000000000000ff00ull) << 5 * 8)
>> | ((ull & 0x00000000000000ffull) << 7 * 8);
>> }
>>
>> You can find these sources in "com...
2018 Nov 25
2
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...l) >> 7 * 8)
> >>> | ((ull & 0x00ff000000000000ull) >> 5 * 8)
> >>> | ((ull & 0x0000ff0000000000ull) >> 3 * 8)
> >>> | ((ull & 0x000000ff00000000ull) >> 8)
> >>> | ((ull & 0x00000000ff000000ull) << 8)
> >>> | ((ull & 0x0000000000ff0000ull) << 3 * 8)
> >>> | ((ull & 0x000000000000ff00ull) << 5 * 8)
> >>> | ((ull & 0x00000000000000ffull) << 7 * 8);
> >>> }
> >>>
>...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...val)
+{
+ return (uint64_t)((((uint64_t)val & (uint64_t)0x00000000000000ffULL) << 56) |
+ (((uint64_t)val & (uint64_t)0x000000000000ff00ULL) << 40) |
+ (((uint64_t)val & (uint64_t)0x0000000000ff0000ULL) << 24) |
+ (((uint64_t)val & (uint64_t)0x00000000ff000000ULL) << 8) |
+ (((uint64_t)val & (uint64_t)0x000000ff00000000ULL) >> 8) |
+ (((uint64_t)val & (uint64_t)0x0000ff0000000000ULL) >> 24) |
+ (((uint64_t)val & (uint64_t)0x00ff000000000000ULL) >> 40) |
+ (((uint64_t)val & (uint64_t)0xff0...