OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hexchars
(Results
1 - 15
of
15
) sorted by relevancy
/src/external/gpl3/gdb.old/dist/gdbsupport/
rsp-low.cc
35
static const char
hexchars
[] = "0123456789abcdef";
variable
63
*buf++ =
hexchars
[(nibble & 0x0f)];
72
*pkt++ =
hexchars
[(byte >> 4) & 0xf];
73
*pkt++ =
hexchars
[(byte & 0xf)];
/src/external/gpl3/gdb/dist/gdbsupport/
rsp-low.cc
35
static const char
hexchars
[] = "0123456789abcdef";
variable
63
*buf++ =
hexchars
[(nibble & 0x0f)];
72
*pkt++ =
hexchars
[(byte >> 4) & 0xf];
73
*pkt++ =
hexchars
[(byte & 0xf)];
/src/external/bsd/ppp/dist/pppd/
utils.c
121
static char
hexchars
[] = "0123456789abcdef";
local
315
OUTCHAR(
hexchars
[c >> 4]);
316
OUTCHAR(
hexchars
[c & 0xf]);
347
OUTCHAR(
hexchars
[(c >> 4) & 0xf]);
348
OUTCHAR(
hexchars
[c & 0xf]);
362
*--str =
hexchars
[val % base];
/src/external/gpl3/gdb/dist/gdb/stubs/
i386-stub.c
114
static const char
hexchars
[]="0123456789abcdef";
variable
550
putDebugChar (
hexchars
[checksum >> 4]);
551
putDebugChar (
hexchars
[checksum % 16]);
616
*buf++ =
hexchars
[ch >> 4];
617
*buf++ =
hexchars
[ch % 16];
765
*ptr++ =
hexchars
[sigval >> 4];
766
*ptr++ =
hexchars
[sigval & 0xf];
768
*ptr++ =
hexchars
[ESP];
773
*ptr++ =
hexchars
[EBP];
778
*ptr++ =
hexchars
[PC];
[
all
...]
m68k-stub.c
141
static const char
hexchars
[]="0123456789abcdef";
variable
631
putDebugChar (
hexchars
[checksum >> 4]);
632
putDebugChar (
hexchars
[checksum % 16]);
661
*buf++ =
hexchars
[ch >> 4];
662
*buf++ =
hexchars
[ch % 16];
832
remcomOutBuffer[1] =
hexchars
[sigval >> 4];
833
remcomOutBuffer[2] =
hexchars
[sigval % 16];
848
remcomOutBuffer[1] =
hexchars
[sigval >> 4];
849
remcomOutBuffer[2] =
hexchars
[sigval % 16];
sparc-stub.c
104
static const char
hexchars
[]="0123456789abcdef";
variable
376
putDebugChar(
hexchars
[checksum >> 4]);
377
putDebugChar(
hexchars
[checksum & 0xf]);
406
*buf++ =
hexchars
[ch >> 4];
407
*buf++ =
hexchars
[ch & 0xf];
599
*ptr++ =
hexchars
[sigval >> 4];
600
*ptr++ =
hexchars
[sigval & 0xf];
602
*ptr++ =
hexchars
[PC >> 4];
603
*ptr++ =
hexchars
[PC & 0xf];
608
*ptr++ =
hexchars
[FP >> 4]
[
all
...]
m32r-stub.c
114
static const unsigned char
hexchars
[] = "0123456789abcdef";
variable
236
*ptr++ =
hexchars
[sigval >> 4];
237
*ptr++ =
hexchars
[sigval & 0xf];
239
*ptr++ =
hexchars
[PC >> 4];
240
*ptr++ =
hexchars
[PC & 0xf];
245
*ptr++ =
hexchars
[R13 >> 4];
246
*ptr++ =
hexchars
[R13 & 0xf];
251
*ptr++ =
hexchars
[R15 >> 4];
252
*ptr++ =
hexchars
[R15 & 0xf];
268
*ptr++ =
hexchars
[sigval >> 4]
[
all
...]
sh-stub.c
279
static const char
hexchars
[] = "0123456789abcdef";
variable
285
return
hexchars
[(x >> 4) & 0xf];
290
return
hexchars
[x & 0xf];
/src/external/gpl3/gdb.old/dist/gdb/stubs/
i386-stub.c
114
static const char
hexchars
[]="0123456789abcdef";
variable
550
putDebugChar (
hexchars
[checksum >> 4]);
551
putDebugChar (
hexchars
[checksum % 16]);
616
*buf++ =
hexchars
[ch >> 4];
617
*buf++ =
hexchars
[ch % 16];
765
*ptr++ =
hexchars
[sigval >> 4];
766
*ptr++ =
hexchars
[sigval & 0xf];
768
*ptr++ =
hexchars
[ESP];
773
*ptr++ =
hexchars
[EBP];
778
*ptr++ =
hexchars
[PC];
[
all
...]
m68k-stub.c
141
static const char
hexchars
[]="0123456789abcdef";
variable
631
putDebugChar (
hexchars
[checksum >> 4]);
632
putDebugChar (
hexchars
[checksum % 16]);
661
*buf++ =
hexchars
[ch >> 4];
662
*buf++ =
hexchars
[ch % 16];
832
remcomOutBuffer[1] =
hexchars
[sigval >> 4];
833
remcomOutBuffer[2] =
hexchars
[sigval % 16];
848
remcomOutBuffer[1] =
hexchars
[sigval >> 4];
849
remcomOutBuffer[2] =
hexchars
[sigval % 16];
sparc-stub.c
104
static const char
hexchars
[]="0123456789abcdef";
variable
376
putDebugChar(
hexchars
[checksum >> 4]);
377
putDebugChar(
hexchars
[checksum & 0xf]);
406
*buf++ =
hexchars
[ch >> 4];
407
*buf++ =
hexchars
[ch & 0xf];
599
*ptr++ =
hexchars
[sigval >> 4];
600
*ptr++ =
hexchars
[sigval & 0xf];
602
*ptr++ =
hexchars
[PC >> 4];
603
*ptr++ =
hexchars
[PC & 0xf];
608
*ptr++ =
hexchars
[FP >> 4]
[
all
...]
m32r-stub.c
114
static const unsigned char
hexchars
[] = "0123456789abcdef";
variable
236
*ptr++ =
hexchars
[sigval >> 4];
237
*ptr++ =
hexchars
[sigval & 0xf];
239
*ptr++ =
hexchars
[PC >> 4];
240
*ptr++ =
hexchars
[PC & 0xf];
245
*ptr++ =
hexchars
[R13 >> 4];
246
*ptr++ =
hexchars
[R13 & 0xf];
251
*ptr++ =
hexchars
[R15 >> 4];
252
*ptr++ =
hexchars
[R15 & 0xf];
268
*ptr++ =
hexchars
[sigval >> 4]
[
all
...]
sh-stub.c
279
static const char
hexchars
[] = "0123456789abcdef";
variable
285
return
hexchars
[(x >> 4) & 0xf];
290
return
hexchars
[x & 0xf];
/src/external/ibm-public/postfix/dist/src/global/
mime_state.c
713
static char
hexchars
[] = "0123456789ABCDEF";
local
719
VSTRING_ADDCH(buffer,
hexchars
[(ch >> 4) & 0xff]); \
720
VSTRING_ADDCH(buffer,
hexchars
[ch & 0xf]); \
/src/external/bsd/ppp/dist/chat/
chat.c
1585
static char
hexchars
[] = "0123456789abcdef";
local
1700
OUTCHAR(
hexchars
[c >> 4]);
1701
OUTCHAR(
hexchars
[c & 0xf]);
1726
*--str =
hexchars
[val % base];
Completed in 30 milliseconds
Indexes created Thu May 21 00:25:23 UTC 2026