HomeSort by relevance Sort by last modified time
    Searched full:packetsize (Results 1 - 25 of 39) sorted by null

1 2

  /external/tcpdump/
packetdat.awk 4 if (packetsize <= 0)
5 packetsize = 512
23 id = 1.5 + (strtSeq - 1) / packetsize
35 id = 1 + ($7 - 2) / packetsize
send-ack.awk 4 if (packetsize <= 0)
5 packetsize = 512
40 else if (len != packetsize)
50 if (len != packetsize)
README 214 awk -f send-ack.awk packetsize=avgsize tracedata >sa
215 awk -f packetdat.awk packetsize=avgsize tracedata >pd
  /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)
  /development/tools/emulator/system/libqemu/
test_guest_2.c 54 const char* packetSize = NULL;
100 packetSize = argv[1];
126 if (packetSize != NULL) {
127 int size = atoi(packetSize);
129 fprintf(stderr, "Invalid byte size: %s\n", packetSize);
  /external/qemu/distrib/sdl-1.2.12/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/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbevents.c 767 int packetsize = 0; local
777 packetsize = 5;
780 packetsize = 4;
785 packetsize = 3;
801 packetsize = 0;
819 for ( i=0; i<(nread-(packetsize-1)); i += packetsize ) {
827 i -= (packetsize-1);
841 i -= (packetsize-1);
882 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;
  /libcore/luni/src/main/native/
libcore_net_RawSocket.cpp 178 int packetSize = byteCount;
181 size = NET_FAILURE_RETRY(fd, read(intFd, packetData, packetSize));
  /frameworks/base/media/libstagefright/
OggExtractor.cpp 458 size_t packetSize = 0;
463 packetSize += lace;
478 size_t fullSize = packetSize;
505 packetSize);
507 if (n < (ssize_t)packetSize) {
509 packetSize, dataOffset, n);
  /development/tools/emulator/opengl/host/tools/emugen/
ApiGen.cpp 515 fprintf(fp, "\t const size_t packetSize = 8");
547 fprintf(fp, "\tptr = stream->alloc(packetSize);\n");
573 fprintf(fp, "\t*(unsigned int *)(ptr) = (unsigned int) packetSize; ptr += 4;\n");
602 fprintf(fp, "\t const size_t packetSize = 8");
610 fprintf(fp, "\t unsigned char *ptr = stream->alloc(packetSize);\n\n");
614 fprintf(fp, "\t*(unsigned int *)(ptr) = (unsigned int) packetSize; ptr += 4;\n\n");
    [all...]
  /external/quake/quake/src/QW/client/
gl_warp.c 559 unsigned char red,green,blue,alphabyte,packetHeader,packetSize,j;
564 packetSize = 1 + (packetHeader & 0x7f);
581 for(j=0;j<packetSize;j++) {
598 for(j=0;j<packetSize;j++) {
  /external/quake/quake/src/WinQuake/
gl_warp.cpp 608 unsigned char red,green,blue,alphabyte,packetHeader,packetSize,j;
613 packetSize = 1 + (packetHeader & 0x7f);
630 for(j=0;j<packetSize;j++) {
647 for(j=0;j<packetSize;j++) {
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/
M4vH263Encoder.cpp 266 mEncParams->packetSize = 32;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
mp4enc_api.cpp 202 Int PacketSize = encOption->packetSize << 3;
238 /* Check whether the input packetsize is valid (Note: put code here (before any memory allocation) in order to avoid memory leak */
267 if (PacketSize == 0)
292 if (PacketSize > profile_level_table[profile_table_index])
348 encParams->ResyncPacketsize = encOption->packetSize << 3;
405 encParams->ResyncPacketsize = PacketSize;
413 encParams->ResyncPacketsize = PacketSize;
700 /* Allocate (2*packetsize) working bitstreams */
    [all...]
  /external/libvpx/examples/includes/geshi/geshi/
visualfoxpro.php 135 'PacketSize','Padc','Padl','Padr','Payment','Pcol',
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 137 Int packetSize;
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/bin/
i686-unknown-linux-gnu-gdbserver 
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
WmaDecTest.c     [all...]
  /prebuilt/android-arm/gdbserver/
gdbserver 
  /external/ping/
ping.c     [all...]
  /external/ping6/
ping6.c     [all...]
  /external/qemu/
gdbstub.c     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/
arm-eabi-gdb 

Completed in 606 milliseconds

1 2