OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lenbytes
(Results
1 - 4
of
4
) sorted by null
/external/syslinux/gpxe/src/core/
gdbstub.c
78
static void gdbstub_from_hex_buf ( char *dst, char *src, int
lenbytes
) {
79
if (
lenbytes
== 2 && ( ( unsigned long ) dst & 0x1 ) == 0 ) {
85
} else if (
lenbytes
== 4 && ( ( unsigned long ) dst & 0x3 ) == 0 ) {
96
while (
lenbytes
-- > 0 ) {
104
static void gdbstub_to_hex_buf ( char *dst, char *src, int
lenbytes
) {
105
if (
lenbytes
== 2 && ( ( unsigned long ) src & 0x1 ) == 0 ) {
111
} else if (
lenbytes
== 4 && ( ( unsigned long ) src & 0x3 ) == 0 ) {
122
while (
lenbytes
-- > 0 ) {
/external/syslinux/com32/gdbstub/
gdbstub.c
249
static void gdbstub_from_hex_buf(char *dst, char *src, int
lenbytes
)
251
if (
lenbytes
== 2 && ((unsigned long)dst & 0x1) == 0) {
257
} else if (
lenbytes
== 4 && ((unsigned long)dst & 0x3) == 0) {
268
while (
lenbytes
-- > 0) {
276
static void gdbstub_to_hex_buf(char *dst, char *src, int
lenbytes
)
278
if (
lenbytes
== 2 && ((unsigned long)src & 0x1) == 0) {
284
} else if (
lenbytes
== 4 && ((unsigned long)src & 0x3) == 0) {
295
while (
lenbytes
-- > 0) {
/external/protobuf/php/ext/google/protobuf/
upb.c
8772
size_t
lenbytes
= upb_vencode64(s->msglen, buf);
local
[
all
...]
/external/protobuf/ruby/ext/google/protobuf_c/
upb.c
9483
size_t
lenbytes
= upb_vencode64(s->msglen, buf);
local
[
all
...]
Completed in 236 milliseconds