HomeSort by relevance Sort by last modified time
    Searched refs:writebuf (Results 1 - 11 of 11) sorted by null

  /external/u-boot/cmd/
unzip.c 49 unsigned long writebuf = 1<<20; local
63 writebuf = simple_strtoul(argv[5], NULL, 16);
72 ret = gzwrite(addr, length, bdev, writebuf, startoffs, szexpected);
  /external/python/cpython3/Modules/_decimal/libmpdec/
transpose.c 77 mpd_uint_t *readbuf, *writebuf, *hp; local
111 readbuf = buf1; writebuf = buf2;
119 pointerswap(&readbuf, &writebuf);
127 memcpy(hp+offset, writebuf, stride*(sizeof *writebuf));
128 pointerswap(&readbuf, &writebuf);
137 memcpy(hp+offset, writebuf, stride*(sizeof *writebuf));
  /external/u-boot/lib/
gunzip.c 125 unsigned char *writebuf; local
205 writebuf = (unsigned char *)malloc_cache_aligned(szwritebuf);
222 s.next_out = writebuf;
230 crc = crc32(crc, writebuf, numfilled);
235 memset(writebuf+numfilled, 0,
245 writeblocks, writebuf);
265 free(writebuf);
  /external/libcups/cups/
testfile.c 459 writebuf[8192]; /* Write buffer */ local
479 for (i = 0; i < (int)sizeof(writebuf); i ++)
480 writebuf[i] = (unsigned char)CUPS_RAND();
566 if (cupsFileWrite(fp, (char *)writebuf, sizeof(writebuf)) < 0)
734 else if (memcmp(readbuf, writebuf, sizeof(readbuf)))
744 if (readbuf[i] != writebuf[i])
748 i, readbuf[i], writebuf[i]);
  /external/ltp/testcases/kernel/ipc/pipeio/
pipeio.c 110 static char *writebuf; variable
452 writebuf = SAFE_MALLOC(cleanup, size);
455 memset(writebuf, 'Z', size);
456 writebuf[size - 1] = 'A';
488 SAFE_FREE(writebuf);
535 pid_word = (int *)&writebuf[0];
536 count_word = (int *)&writebuf[NBPW];
554 nb = lio_write_buffer(write_fd, iotype, writebuf, size,
599 if (writebuf[i] != readbuf[i]) {
  /external/u-boot/drivers/mtd/spi/
sf_dataflash.c 272 u_char *writebuf = (u_char *)buf; local
355 4, writebuf, writelen);
379 4, writebuf, writelen);
403 writebuf += writelen;
  /external/curl/lib/
easy.c 1001 struct tempbuf writebuf[3]; /* there can only be three */ local
1007 writebuf[i] = data->state.tempwrite[i];
1022 result = Curl_client_write(conn, writebuf[i].type, writebuf[i].buf,
1023 writebuf[i].len);
1024 free(writebuf[i].buf);
  /external/curl/tests/server/
tftpd.c 558 char *writebuf; local
588 writebuf = dp->th_data;
594 return write(test->ofile, writebuf, count);
596 p = writebuf;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gzip.py 152 self.writebuf = []
  /external/python/cpython2/Lib/
gzip.py 160 self.writebuf = []
  /external/python/cpython3/Lib/
gzip.py 217 self.writebuf = []

Completed in 229 milliseconds