Searched refs:nibbles (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/system/uapp/gpt/
H A Dgpt.c332 // how many nibbles of the byte we've processed
333 uint8_t nibbles = 0; local
334 // value to accumulate byte as we parse its two char nibbles
358 val += char_val << (4 * (1 - nibbles));
360 if (++nibbles == 2) {
362 nibbles = 0;

Completed in 77 milliseconds