HomeSort by relevance Sort by last modified time
    Searched refs:blksize (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/strace/
stat.h 38 unsigned long long blksize; member in struct:strace_stat
print_struct_stat.c 51 tprintf(", st_blksize=%llu", st->blksize);
fetch_struct_stat.c 89 dst->blksize = zero_extend_signed_to_ull(buf.st_blksize);
fetch_struct_stat64.c 87 dst->blksize = zero_extend_signed_to_ull(buf.st_blksize);
  /external/toybox/toys/pending/
tftpd.c 89 socklen_t socklen, char *file, int opcode, int tsize, int blksize)
96 spkt = xzalloc(blksize + 4);
97 rpkt = xzalloc(blksize + 4);
115 if (blksize != TFTPD_BLKSIZE || tsize) {
117 // add "blksize\000blksize_val\000" in send buffer.
118 if (blksize != TFTPD_BLKSIZE) {
119 strcpy(ptr, "blksize");
120 ptr += strlen("blksize") + 1;
121 ptr += snprintf(ptr, 6, "%d", blksize) + 1;
148 len = readall(fd, ptr, blksize);
239 int fd = 0, recvmsg_len, rbuflen, opcode, blksize = TFTPD_BLKSIZE, tsize = 0, set =1; local
    [all...]
  /bootable/recovery/otautil/
sysutil.cpp 54 uint32_t blksize; local
55 if (sscanf(lines[1].c_str(), "%" SCNu64 "%" SCNu32, &file_size, &blksize) != 2) {
60 if (file_size == 0 || blksize == 0) {
61 LOG(ERROR) << "Invalid size in block map file: size " << file_size << ", blksize " << blksize; local
71 uint64_t blocks = ((file_size - 1) / blksize) + 1;
74 LOG(ERROR) << "Invalid data in block map file: size " << file_size << ", blksize " << blksize
97 return BlockMapData(block_dev, file_size, blksize, std::move(ranges));
133 uint32_t blksize = block_map_data.block_size() local
    [all...]
  /external/fec/
dotprod_sse2.c 26 int i,j,blksize; local
38 blksize = (1+(len+i-1)/8) * 8*sizeof(signed short);
39 posix_memalign((void **)&dp->coeffs[i],16,blksize);
40 memset(dp->coeffs[i],0,blksize);
  /external/curl/docs/cmdline-opts/
tftp-blksize.d 1 Long: tftp-blksize
3 Help: Set TFTP BLKSIZE option
7 Set TFTP BLKSIZE option (must be >512). This is the block size that curl will
tftp-no-options.d 9 or properly implement TFTP options. When this option is used --tftp-blksize is
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
util.py 14 def __init__(self, filelike, blksize=8192):
16 self.blksize = blksize
21 data = self.filelike.read(self.blksize)
30 data = self.filelike.read(self.blksize)
  /external/python/cpython2/Lib/wsgiref/
util.py 14 def __init__(self, filelike, blksize=8192):
16 self.blksize = blksize
21 data = self.filelike.read(self.blksize)
30 data = self.filelike.read(self.blksize)
  /external/python/cpython3/Lib/wsgiref/
util.py 14 def __init__(self, filelike, blksize=8192):
16 self.blksize = blksize
21 data = self.filelike.read(self.blksize)
30 data = self.filelike.read(self.blksize)
  /external/curl/lib/
tftp.c 72 #define TFTP_OPTION_BLKSIZE "blksize"
141 int blksize; member in struct:tftp_state_data
340 /* if OACK doesn't contain blksize option, the default (512) must be used */
341 state->blksize = TFTP_BLKSIZE_DEFAULT;
355 long blksize; local
357 blksize = strtol(value, NULL, 10);
359 if(!blksize) {
363 if(blksize > TFTP_BLKSIZE_MAX) {
364 failf(data, "%s (%d)", "blksize is larger than max supported",
368 else if(blksize < TFTP_BLKSIZE_MIN)
975 int blksize; local
    [all...]
  /external/e2fsprogs/misc/
filefrag.c 388 static unsigned int blksize; local
427 if (ioctl(fd, FIGETBSZ, &blksize) < 0)
428 blksize = fsinfo.f_bsize;
433 st.st_blksize = blksize;
444 long cylgroups = div_ceil(fsinfo.f_blocks, blksize * 8);
450 data_blocks_per_cyl = blksize * 8 -
459 numblocks = (st.st_size + blksize - 1) / blksize;
463 blk_shift = int_log2(blksize);
471 numblocks * blksize >> blk_shift
    [all...]
  /external/iperf3/src/
iperf_udp.c 67 int size = sp->settings->blksize;
193 int size = sp->settings->blksize;
237 printf("sent %d bytes of %d, total %" PRIu64 "\n", r, sp->settings->blksize, sp->result->bytes_sent);
296 if (test->settings->blksize > sndbuf_actual) {
300 test->settings->blksize, sndbuf_actual);
318 if (test->settings->blksize > rcvbuf_actual) {
322 test->settings->blksize, rcvbuf_actual);
383 int bufsize = test->settings->blksize + UDP_BUFFER_EXTRA;
495 int bufsize = test->settings->blksize + UDP_BUFFER_EXTRA;
iperf_client_api.c 394 if (test->settings->blksize == 0) {
396 test->settings->blksize = test->ctrl_sck_mss;
399 test->settings->blksize = DEFAULT_UDP_BLKSIZE;
402 printf("Setting UDP block size to %d\n", test->settings->blksize);
411 test->settings->blksize > test->ctrl_sck_mss) {
414 "UDP block size %d exceeds TCP MSS %d, may result in fragmentation / drops", test->settings->blksize, test->ctrl_sck_mss);
iperf_api.c 207 return ipt->settings->blksize;
376 iperf_set_test_blksize(struct iperf_test *ipt, int blksize)
378 ipt->settings->blksize = blksize;
630 cJSON_AddItemToObject(test->json_start, "test_start", iperf_json_printf("protocol: %s num_streams: %d blksize: %d omit: %d duration: %d bytes: %d blocks: %d reverse: %d tos: %d", test->protocol->name, (int64_t) test->num_streams, (int64_t) test->settings->blksize, (int64_t) test->omit, (int64_t) test->duration, (int64_t) test->settings->bytes, (int64_t) test->settings->blocks, test->reverse?(int64_t)1:(int64_t)0, (int64_t) test->settings->tos));
634 iperf_printf(test, test_start_bytes, test->protocol->name, test->num_streams, test->settings->blksize, test->omit, test->settings->bytes, test->settings->tos);
636 iperf_printf(test, test_start_blocks, test->protocol->name, test->num_streams, test->settings->blksize, test->omit, test->settings->blocks, test->settings->tos);
638 iperf_printf(test, test_start_time, test->protocol->name, test->num_streams, test->settings->blksize, test->omit, test->duration, test->settings->tos);
815 int blksize; local
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-tegra/
tegra_mmc.h 23 unsigned short blksize; /* _BLOCK_SIZE_BLOCK_COUNT_0 15:00 */ member in struct:tegra_mmc
  /external/libjpeg-turbo/
jquant1.c 282 int i, j, k, nci, blksize, blkdist, ptr, val; local
303 /* blksize is number of adjacent repeated entries for a component */
310 blksize = blkdist / nci;
315 for (ptr = j * blksize; ptr < total_colors; ptr += blkdist) {
316 /* fill in blksize entries beginning at ptr */
317 for (k = 0; k < blksize; k++)
321 blkdist = blksize; /* blksize of this color is blkdist of next */
341 int i, j, k, nci, blksize, val, pad; local
361 /* blksize is number of adjacent repeated entries for a component *
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ext2_io.h 78 errcode_t (*set_blksize)(io_channel channel, int blksize);
166 (int blksize, errcode_t err);
inode_io.c 52 static errcode_t inode_set_blksize(io_channel channel, int blksize);
195 static errcode_t inode_set_blksize(io_channel channel, int blksize)
203 channel->block_size = blksize;
test_io.c 54 void (*set_blksize)(int blksize, errcode_t err);
74 (int blksize, errcode_t err) = 0;
279 static errcode_t test_set_blksize(io_channel channel, int blksize)
289 retval = io_channel_set_blksize(data->real, blksize);
293 data->set_blksize(blksize, retval);
297 blksize, retval ? error_message(retval) : "OK");
298 channel->block_size = blksize;
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 71 public int blksize; field in class:FileUtils.FileStatus
  /external/libvpx/libvpx/vp8/common/
mfqe.c 107 int blksize, /* Currently only values supported are 16, 8 */
113 int uvblksize = blksize >> 1;
124 if (blksize == 16) {
186 uvd_stride, blksize, ifactor);
189 if (blksize == 16) {
  /external/scapy/scapy/layers/
tftp.py 306 self.blksize=512
329 opt = [x for x in options.options if x.oname.upper() == "BLKSIZE"]
331 self.blksize = int(opt[0].value)
332 self.debug(2,"Negotiated new blksize at %i" % self.blksize)
360 if len(data.load) < self.blksize:
393 self.blksize=512
423 opt = [x for x in options.options if x.oname.upper() == "BLKSIZE"]
425 self.blksize = int(opt[0].value)
426 self.debug(2,"Negotiated new blksize at %i" % self.blksize
    [all...]

Completed in 1452 milliseconds

1 2 3