Lines Matching refs:byte_value

890 	uint8_t byte_value                                  = 0;  in libfguid_identifier_copy_to_utf8_string_with_index()  local
996 byte_value = ( internal_identifier->time.lower >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf8_string_with_index()
998 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf8_string_with_index()
1000 utf8_string[ string_index++ ] = (uint8_t) '0' + byte_value; in libfguid_identifier_copy_to_utf8_string_with_index()
1004 utf8_string[ string_index++ ] = (uint8_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1008 utf8_string[ string_index++ ] = (uint8_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1020 byte_value = ( internal_identifier->time.middle >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf8_string_with_index()
1022 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf8_string_with_index()
1024 utf8_string[ string_index++ ] = (uint8_t) '0' + byte_value; in libfguid_identifier_copy_to_utf8_string_with_index()
1028 utf8_string[ string_index++ ] = (uint8_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1032 utf8_string[ string_index++ ] = (uint8_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1044 byte_value = ( internal_identifier->time.upper >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf8_string_with_index()
1046 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf8_string_with_index()
1048 utf8_string[ string_index++ ] = (uint8_t) '0' + byte_value; in libfguid_identifier_copy_to_utf8_string_with_index()
1052 utf8_string[ string_index++ ] = (uint8_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1056 utf8_string[ string_index++ ] = (uint8_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1068 byte_value = ( internal_identifier->clock_sequence.upper >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf8_string_with_index()
1070 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf8_string_with_index()
1072 utf8_string[ string_index++ ] = (uint8_t) '0' + byte_value; in libfguid_identifier_copy_to_utf8_string_with_index()
1076 utf8_string[ string_index++ ] = (uint8_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1080 utf8_string[ string_index++ ] = (uint8_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1090 byte_value = ( internal_identifier->clock_sequence.lower >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf8_string_with_index()
1092 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf8_string_with_index()
1094 utf8_string[ string_index++ ] = (uint8_t) '0' + byte_value; in libfguid_identifier_copy_to_utf8_string_with_index()
1098 utf8_string[ string_index++ ] = (uint8_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1102 utf8_string[ string_index++ ] = (uint8_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1118 byte_value = ( internal_identifier->node[ node_index ] >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf8_string_with_index()
1120 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf8_string_with_index()
1122 utf8_string[ string_index++ ] = (uint8_t) '0' + byte_value; in libfguid_identifier_copy_to_utf8_string_with_index()
1126 utf8_string[ string_index++ ] = (uint8_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1130 utf8_string[ string_index++ ] = (uint8_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf8_string_with_index()
1579 uint8_t byte_value = 0; in libfguid_identifier_copy_to_utf16_string_with_index() local
1685 byte_value = ( internal_identifier->time.lower >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf16_string_with_index()
1687 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf16_string_with_index()
1689 utf16_string[ string_index++ ] = (uint16_t) '0' + byte_value; in libfguid_identifier_copy_to_utf16_string_with_index()
1693 utf16_string[ string_index++ ] = (uint16_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1697 utf16_string[ string_index++ ] = (uint16_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1709 byte_value = ( internal_identifier->time.middle >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf16_string_with_index()
1711 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf16_string_with_index()
1713 utf16_string[ string_index++ ] = (uint16_t) '0' + byte_value; in libfguid_identifier_copy_to_utf16_string_with_index()
1717 utf16_string[ string_index++ ] = (uint16_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1721 utf16_string[ string_index++ ] = (uint16_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1733 byte_value = ( internal_identifier->time.upper >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf16_string_with_index()
1735 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf16_string_with_index()
1737 utf16_string[ string_index++ ] = (uint16_t) '0' + byte_value; in libfguid_identifier_copy_to_utf16_string_with_index()
1741 utf16_string[ string_index++ ] = (uint16_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1745 utf16_string[ string_index++ ] = (uint16_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1757 byte_value = ( internal_identifier->clock_sequence.upper >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf16_string_with_index()
1759 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf16_string_with_index()
1761 utf16_string[ string_index++ ] = (uint16_t) '0' + byte_value; in libfguid_identifier_copy_to_utf16_string_with_index()
1765 utf16_string[ string_index++ ] = (uint16_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1769 utf16_string[ string_index++ ] = (uint16_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1779 byte_value = ( internal_identifier->clock_sequence.lower >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf16_string_with_index()
1781 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf16_string_with_index()
1783 utf16_string[ string_index++ ] = (uint16_t) '0' + byte_value; in libfguid_identifier_copy_to_utf16_string_with_index()
1787 utf16_string[ string_index++ ] = (uint16_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1791 utf16_string[ string_index++ ] = (uint16_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1807 byte_value = ( internal_identifier->node[ node_index ] >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf16_string_with_index()
1809 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf16_string_with_index()
1811 utf16_string[ string_index++ ] = (uint16_t) '0' + byte_value; in libfguid_identifier_copy_to_utf16_string_with_index()
1815 utf16_string[ string_index++ ] = (uint16_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
1819 utf16_string[ string_index++ ] = (uint16_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf16_string_with_index()
2268 uint8_t byte_value = 0; in libfguid_identifier_copy_to_utf32_string_with_index() local
2374 byte_value = ( internal_identifier->time.lower >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf32_string_with_index()
2376 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf32_string_with_index()
2378 utf32_string[ string_index++ ] = (uint32_t) '0' + byte_value; in libfguid_identifier_copy_to_utf32_string_with_index()
2382 utf32_string[ string_index++ ] = (uint32_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2386 utf32_string[ string_index++ ] = (uint32_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2398 byte_value = ( internal_identifier->time.middle >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf32_string_with_index()
2400 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf32_string_with_index()
2402 utf32_string[ string_index++ ] = (uint32_t) '0' + byte_value; in libfguid_identifier_copy_to_utf32_string_with_index()
2406 utf32_string[ string_index++ ] = (uint32_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2410 utf32_string[ string_index++ ] = (uint32_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2422 byte_value = ( internal_identifier->time.upper >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf32_string_with_index()
2424 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf32_string_with_index()
2426 utf32_string[ string_index++ ] = (uint32_t) '0' + byte_value; in libfguid_identifier_copy_to_utf32_string_with_index()
2430 utf32_string[ string_index++ ] = (uint32_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2434 utf32_string[ string_index++ ] = (uint32_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2446 byte_value = ( internal_identifier->clock_sequence.upper >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf32_string_with_index()
2448 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf32_string_with_index()
2450 utf32_string[ string_index++ ] = (uint32_t) '0' + byte_value; in libfguid_identifier_copy_to_utf32_string_with_index()
2454 utf32_string[ string_index++ ] = (uint32_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2458 utf32_string[ string_index++ ] = (uint32_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2468 byte_value = ( internal_identifier->clock_sequence.lower >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf32_string_with_index()
2470 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf32_string_with_index()
2472 utf32_string[ string_index++ ] = (uint32_t) '0' + byte_value; in libfguid_identifier_copy_to_utf32_string_with_index()
2476 utf32_string[ string_index++ ] = (uint32_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2480 utf32_string[ string_index++ ] = (uint32_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2496 byte_value = ( internal_identifier->node[ node_index ] >> byte_shift ) & 0x0f; in libfguid_identifier_copy_to_utf32_string_with_index()
2498 if( byte_value <= 9 ) in libfguid_identifier_copy_to_utf32_string_with_index()
2500 utf32_string[ string_index++ ] = (uint32_t) '0' + byte_value; in libfguid_identifier_copy_to_utf32_string_with_index()
2504 utf32_string[ string_index++ ] = (uint32_t) 'A' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()
2508 utf32_string[ string_index++ ] = (uint32_t) 'a' + byte_value - 10; in libfguid_identifier_copy_to_utf32_string_with_index()