OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:packetsize
(Results
1 - 5
of
5
) sorted by null
/external/grub/netboot/
fsys_tftp.c
43
static int
packetsize
;
variable
57
while (! buf_eof && (buf_read +
packetsize
<= FSYS_BUFLEN))
138
if ((
packetsize
= getdec (&p)) < TFTP_DEFAULTSIZE_PACKET)
141
grub_printf ("blksize = %d\n",
packetsize
);
197
if (len >
packetsize
)
200
grub_printf ("%s:%d: warning: LEN >
PACKETSIZE
(0x%x > 0x%x)\n",
201
__FILE__, __LINE__, len,
packetsize
);
250
if (len <
packetsize
)
265
packetsize
= TFTP_DEFAULTSIZE_PACKET;
main.c
310
int
packetsize
= TFTP_DEFAULTSIZE_PACKET;
local
395
if ((
packetsize
= getdec (&p)) < TFTP_DEFAULTSIZE_PACKET)
431
if (len >
packetsize
)
462
++bcounter, len, len <
packetsize
)) >= 0)
466
if (len <
packetsize
)
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbevents.c
772
int
packetsize
= 0;
local
780
packetsize
= 5;
783
packetsize
= 4;
788
packetsize
= 3;
804
packetsize
= 0;
828
for ( i=0; i<(nread-(
packetsize
-1)); i +=
packetsize
) {
836
i -= (
packetsize
-1);
850
i -= (
packetsize
-1);
891
i -= (
packetsize
-1)
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsevents.c
623
int
packetsize
= 0;
local
632
packetsize
= 5;
635
packetsize
= 4;
640
packetsize
= 3;
644
packetsize
= 0;
657
for ( i=0; i<(nread-(
packetsize
-1)); i +=
packetsize
) {
665
i -= (
packetsize
-1);
679
i -= (
packetsize
-1);
720
i -= (
packetsize
-1)
[
all
...]
/external/qemu/hw/
smc91c111.c
686
int
packetsize
;
local
696
packetsize
= 64;
698
packetsize
= (size & ~1);
699
packetsize
+= 6;
702
packetsize
+= 4;
704
if (
packetsize
> 2048)
720
*(p++) =
packetsize
& 0xff;
721
*(p++) =
packetsize
>> 8;
Completed in 195 milliseconds