Symbol: hex
headers/cpp/iostream.h
277
{ i.setf(ios::dec, ios::dec|ios::hex|ios::oct); return i; }
headers/cpp/iostream.h
279
{ i.setf(ios::hex, ios::dec|ios::hex|ios::oct); return i; }
headers/cpp/iostream.h
281
{ i.setf(ios::oct, ios::dec|ios::hex|ios::oct); return i; }
headers/cpp/stream.h
43
extern char* hex(long, int=0);
headers/cpp/stream.h
44
extern char* hex(int, int=0);
headers/cpp/stream.h
45
extern char* hex(unsigned long, int=0);
headers/cpp/stream.h
46
extern char* hex(unsigned int, int=0);
headers/cpp/streambuf.h
160
basefield=dec+oct+hex,
src/add-ons/input_server/filters/shortcut_catcher/KeyInfos.cpp
191
sstream << std::hex << keyCode;
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
115
strchr(hex, tolower(p[3])) &&
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
116
strchr(hex, tolower(p[4]))) {
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
118
char c = (strchr(hex, tolower(p[3])) - hex) << 4 |
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
119
(strchr(hex, tolower(p[4])) - hex);
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
28
const char *hex = "0123456789ABCDEF";
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
43
*d++ = hex[(*(unsigned char *)p >> 4) & 0x0F];
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
44
*d++ = hex[(*(unsigned char *)p) & 0x0F];
src/add-ons/kernel/file_systems/websearchfs/string_utils.c
84
const char *hex = "0123456789abcdef";
src/add-ons/print/transports/ipp/IppContent.cpp
87
os << "Tag: " << hex << (int)tag << '\n';
src/add-ons/print/transports/ipp/IppContent.cpp
962
os << "version: " << hex << version << '\n';
src/add-ons/print/transports/ipp/IppContent.cpp
963
os << "operation_id: " << hex << operation_id << '\n';
src/add-ons/print/transports/ipp/IppContent.cpp
964
os << "request_id: " << hex << request_id << '\n';
src/apps/devices/DevicePCI.cpp
49
ss.flags(std::ios::hex | std::ios::showbase);
src/apps/devices/DeviceUSB.cpp
44
ss.flags(std::ios::hex | std::ios::showbase);
src/apps/diskprobe/FindWindow.cpp
336
char* hex;
src/apps/diskprobe/FindWindow.cpp
338
if (_GetHexFromData(data, dataSize, &hex, &hexSize) < B_OK)
src/apps/diskprobe/FindWindow.cpp
341
Insert(hex, hexSize);
src/apps/diskprobe/FindWindow.cpp
342
free(hex);
src/apps/diskprobe/FindWindow.cpp
356
char* hex = (char*)malloc(inSize * 3 + 1);
src/apps/diskprobe/FindWindow.cpp
357
if (hex == NULL)
src/apps/diskprobe/FindWindow.cpp
360
char* out = hex;
src/apps/diskprobe/FindWindow.cpp
366
*_hex = hex;
src/apps/diskprobe/FindWindow.cpp
367
*_hexSize = out + 1 - hex;
src/apps/diskprobe/FindWindow.cpp
420
char* hex;
src/apps/diskprobe/FindWindow.cpp
422
if (_GetHexFromData((const uint8*)Text(), TextLength(), &hex, &hexSize)
src/apps/diskprobe/FindWindow.cpp
428
SetText(hex, hexSize);
src/apps/diskprobe/FindWindow.cpp
429
free(hex);
src/apps/diskprobe/FindWindow.cpp
458
char* hex;
src/apps/diskprobe/FindWindow.cpp
460
if (_GetHexFromData(data, dataSize, &hex, &hexSize) < B_OK)
src/apps/diskprobe/FindWindow.cpp
463
SetText(hex, hexSize);
src/apps/diskprobe/FindWindow.cpp
464
free(hex);
src/bin/debug/strace/TypeHandler.cpp
266
char hex[20];
src/bin/debug/strace/TypeHandler.cpp
267
snprintf(hex, sizeof(hex), "0x%x", value);
src/bin/debug/strace/TypeHandler.cpp
268
rendered += hex;
src/bin/network/ftpd/md5hl.c
28
static const char hex[]="0123456789abcdef";
src/bin/network/ftpd/md5hl.c
36
buf[i+i] = hex[digest[i] >> 4];
src/bin/network/ftpd/md5hl.c
37
buf[i+i+1] = hex[digest[i] & 0x0f];
src/bin/package/command_checksum.cpp
52
BString hex;
src/bin/package/command_checksum.cpp
54
char* buffer = hex.LockBuffer(length * 2);
src/bin/package/command_checksum.cpp
63
hex.UnlockBuffer();
src/bin/package/command_checksum.cpp
64
return hex;
src/bin/setmime.cpp
413
cout << "0x" << hex << type;
src/bin/setmime.cpp
747
cout << hex << setfill('0') << setw(2) << (uint16) iconData[i];
src/kits/network/libnetapi/NetworkAddress.cpp
42
from_hex(char hex)
src/kits/network/libnetapi/NetworkAddress.cpp
44
if (isdigit(hex))
src/kits/network/libnetapi/NetworkAddress.cpp
45
return hex - '0';
src/kits/network/libnetapi/NetworkAddress.cpp
47
return tolower(hex) - 'a' + 10;
src/kits/storage/sniffer/Parser.cpp
113
hexToChar(char hex)
src/kits/storage/sniffer/Parser.cpp
115
if ('0' <= hex && hex <= '9') {
src/kits/storage/sniffer/Parser.cpp
116
return hex - '0';
src/kits/storage/sniffer/Parser.cpp
117
} else if ('a' <= hex && hex <= 'f') {
src/kits/storage/sniffer/Parser.cpp
118
return hex - 'a' + 10;
src/kits/storage/sniffer/Parser.cpp
119
} else if ('A' <= hex && hex <= 'F') {
src/kits/storage/sniffer/Parser.cpp
120
return hex - 'A' + 10;
src/kits/storage/sniffer/Parser.cpp
122
throw new Err(std::string("Sniffer parser error: invalid hex digit '") + hex
src/libs/stdc++/legacy/ioextend.cc
36
| ios::dec | ios::oct | ios::hex | ios::showbase | ios::showpoint
src/libs/stdc++/legacy/iomanip.cc
45
b = ios::hex; break;
src/libs/stdc++/legacy/iostream.cc
313
else if ((stream.flags() & ios::basefield) == ios::hex)
src/libs/stdc++/legacy/iostream.cc
526
else if ((stream.flags() & ios::basefield) == ios::hex) { // Hex
src/libs/stdc++/legacy/iostream.cc
608
if (n < 0 && (flags() & (ios::oct|ios::hex)) == 0)
src/libs/stdc++/legacy/iostream.cc
635
if (n < 0 && (flags() & (ios::oct|ios::hex)) == 0)
src/libs/stdc++/legacy/iostream.cc
662
if (n < 0 && (flags() & (ios::oct|ios::hex)) == 0)
src/system/libroot/posix/crypt/crypt.cpp
71
fromHex(const char* hex, uint8* outBuffer, size_t outBufferLength)
src/system/libroot/posix/crypt/crypt.cpp
76
if (hex[0] == '\0' || outBufferLength == 0)
src/system/libroot/posix/crypt/crypt.cpp
79
while (hex[i] != '\0' && hex[i + 1] != '\0') {
src/system/libroot/posix/crypt/crypt.cpp
80
const uint8 char1 = hex[i];
src/system/libroot/posix/crypt/crypt.cpp
81
const uint8 char2 = hex[i + 1];
src/tools/cppunit/TestUtils.cpp
13
using std::hex;
src/tools/cppunit/TestUtils.cpp
189
cout << endl << "DecodeResult() -- " "0x" << hex << result << " (" << dec << result << ") == " << str << endl;