OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hexchars
(Results
1 - 7
of
7
) sorted by null
/external/chromium/chrome/browser/metrics/
metrics_service_unittest.cc
25
std::string
hexchars
= "0123456789ABCDEF";
local
31
EXPECT_TRUE(std::string::npos !=
hexchars
.find(current));
/external/ppp/pppd/plugins/
winbind.c
173
const char *
hexchars
= "0123456789ABCDEF";
local
177
if (strncmp(
hexchars
, "0x", 2) == 0) {
182
if (!(p1 = strchr(
hexchars
, toupper(strhex[i]))))
187
if (!(p2 = strchr(
hexchars
, toupper(strhex[i]))))
191
hinybble = (p1 -
hexchars
);
192
lonybble = (p2 -
hexchars
);
/external/qemu/android/utils/
misc.c
193
static const uint8_t
hexchars
[16] = "0123456789abcdef";
local
195
*hex++ =
hexchars
[(val >> (len*4)) & 15];
/external/ppp/pppd/
utils.c
177
static char
hexchars
[] = "0123456789abcdef";
local
348
OUTCHAR(
hexchars
[c >> 4]);
349
OUTCHAR(
hexchars
[c & 0xf]);
378
OUTCHAR(
hexchars
[(c >> 4) & 0xf]);
379
OUTCHAR(
hexchars
[c & 0xf]);
393
*--str =
hexchars
[val % base];
/external/mdnsresponder/mDNSPosix/
NetMonitor.c
505
static const char
hexchars
[16] = "0123456789ABCDEF";
local
537
*p++ =
hexchars
[t[i] >> 4];
538
*p++ =
hexchars
[t[i] & 0xF];
575
*p++ =
hexchars
[*s >> 4];
576
*p++ =
hexchars
[*s & 0xF];
[
all
...]
/device/generic/goldfish/qemud/
qemud.c
200
static const char
hexchars
[16] = "0123456789abcdef";
local
203
to[nn] =
hexchars
[(value >> (width*4)) & 15];
[
all
...]
/external/qemu-pc-bios/bochs/bios/
rombios32.c
246
static const char
hexchars
[] = "0123456789abcdef";
local
347
*--str =
hexchars
[val % base];
[
all
...]
Completed in 469 milliseconds