About 52 results
Open links in new tab
  1. binary - How many bits are there in a nibble? - Stack Overflow

    Sep 20, 2016 · A nibble (often, nybble) is the computing term for a four-bit aggregation, or half an octet (an octet being an 8-bit byte).

  2. How to swap first and last nibbles in given integer [32 bits]

    Jan 25, 2023 · Some would consider the first nibble as the least significant nibble. Whatever is first or last makes little difference here as they are swapped.

  3. Python split byte into high & low nibbles - Stack Overflow

    Mar 21, 2017 · 13 If you wanted to get the high and low nibble of a byte. In other words split the 8-bits into 4-bits. Considering the data string is a string of bytes as hexadecimals, then you could simply do:

  4. Reading/Writing Nibbles (without bit fields) in C/C++

    Jun 24, 2010 · Is there an easy way to read/write a nibble in a byte without using bit fields? I'll always need to read both nibbles, but will need to write each nibble individually. Thanks!

  5. x86 64 - Nibble shuffling with x64 SIMD - Stack Overflow

    Apr 20, 2022 · I'm aware of byte shuffling instructions, but I'd like to do the same with nibbles (4-bit values), concretely I'd like to shuffle 16 nibbles in a 64-bit word. My shuffling indices are also stored a...

  6. Using nibbles (4 bits variables) in windows C/C++

    May 14, 2009 · I'm programming network headers and a lot of protocols use 4 bits fields. Is there a convenient type I can use to represent this information? The smallest type I've found is a BYTE. I …

  7. .net - How can you nibble (nybble) bytes in C#? - Stack Overflow

    Nov 6, 2022 · I am looking to learn how to get two nibbles (high and low) from a byte using C# and how to assemble two nibbles back to a byte. I am using C# and .NET 4.0 if that helps with what methods …

  8. C - Copying nibbles from one byte to another to generate a bitshift by ...

    Dec 23, 2018 · While I know how to copy one bit from one byte to another (as explained here: Link), I have a problem for a full 4 bit shift from one byte to another byte from a different array (especially for …

  9. c - Nibble_Swap or Swapping 0x1234 - Stack Overflow

    Aug 29, 2023 · Nibble_Swap or Swapping 0x1234 Asked 2 years, 4 months ago Modified 2 years, 4 months ago Viewed 683 times

  10. php - High nibble and low nibble what are they? - Stack Overflow

    May 27, 2012 · 19 Nibble is half a byte (0-15, or one hex digit). Low nibble are the bits 0-3; high nibble are bits 4-7.