Home
last modified time | relevance | path

Searched refs:wbytes (Results 1 – 10 of 10) sorted by relevance

/external/ltp/testcases/kernel/io/disktest/
Dstats.c110 printf(CTWSTR, (env->hbeat_stats.wbytes), in print_stats()
120 ((double)(env->hbeat_stats.wbytes) / in print_stats()
134 printf(CTWSTR, (env->cycle_stats.wbytes), in print_stats()
144 ((double)(env->cycle_stats.wbytes) / in print_stats()
158 printf(TCTWSTR, (env->global_stats.wbytes), in print_stats()
168 ((double)(env->global_stats.wbytes) / in print_stats()
196 (env->hbeat_stats.wbytes), in print_stats()
208 (env->cycle_stats.wbytes), in print_stats()
221 (env->global_stats.wbytes)); in print_stats()
245 ((double)env->hbeat_stats.wbytes / in print_stats()
[all …]
Dmain.h198 OFF_T wbytes; member
Dchildmain.c551 (env->hbeat_stats.wbytes) += target.trsiz * BLK_SIZE; in complete_io()
/external/ltp/testcases/kernel/syscalls/fstat/
Dfstat02.c113 int wbytes; in setup() local
136 if ((wbytes = write(fildes, tst_buff, sizeof(tst_buff))) <= 0) in setup()
139 write_len += wbytes; in setup()
/external/ltp/testcases/kernel/syscalls/stat/
Dstat01.c113 int wbytes; in setup() local
137 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0) in setup()
140 write_len += wbytes; in setup()
Dstat02.c160 int wbytes; /* no. of bytes written to file */ in setup() local
197 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0) { in setup()
201 write_len += wbytes; in setup()
/external/ltp/testcases/kernel/syscalls/ftruncate/
Dftruncate02.c242 int wbytes; /* bytes written to testfile */ in setup() local
264 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0) { in setup()
267 write_len += wbytes; in setup()
/external/ltp/testcases/kernel/syscalls/truncate/
Dtruncate02.c232 int wbytes; /* bytes written to testfile */ in setup() local
260 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0) { in setup()
265 write_len += wbytes; in setup()
/external/skia/tests/
DAAClipTest.cpp28 size_t wbytes = a.fBounds.width(); in operator ==() local
31 wbytes = (wbytes + 7) >> 3; in operator ==()
37 wbytes <<= 1; in operator ==()
40 wbytes <<= 2; in operator ==()
51 if (memcmp(aptr, bptr, wbytes)) { in operator ==()
54 aptr += wbytes; in operator ==()
55 bptr += wbytes; in operator ==()
/external/ltp/testcases/kernel/syscalls/epoll2/examples/
Depoll-test.c316 int wbytes, wcurr; in eph_write_data() local
318 for (wbytes = 0; wbytes < nbyte;) { in eph_write_data()
319 if ((wcurr = eph_write(conn, buf + wbytes, nbyte - wbytes)) < 0) in eph_write_data()
321 wbytes += wcurr; in eph_write_data()
324 return wbytes; in eph_write_data()