Home
last modified time | relevance | path

Searched refs:bcount (Results 1 – 14 of 14) sorted by relevance

/third_party/ltp/lib/
Dtst_fill_file.c33 int tst_fill_fd(int fd, char pattern, size_t bs, size_t bcount) in tst_fill_fd() argument
47 for (i = 0; i < bcount; i++) { in tst_fill_fd()
59 int tst_prealloc_size_fd(int fd, size_t bs, size_t bcount) in tst_prealloc_size_fd() argument
64 ret = fallocate(fd, 0, 0, bs * bcount); in tst_prealloc_size_fd()
70 ret = tst_fill_fd(fd, 0, bs, bcount); in tst_prealloc_size_fd()
75 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount) in tst_fill_file() argument
83 if (tst_fill_fd(fd, pattern, bs, bcount)) { in tst_fill_file()
98 int tst_prealloc_file(const char *path, size_t bs, size_t bcount) in tst_prealloc_file() argument
106 if (tst_prealloc_size_fd(fd, bs, bcount)) { in tst_prealloc_file()
/third_party/gstreamer/gstplugins_good/ext/wavpack/
Dgstwavpackstreamreader.c32 gst_wavpack_stream_reader_read_bytes (void *id, void *data, int32_t bcount) in gst_wavpack_stream_reader_read_bytes() argument
36 uint32_t to_read = MIN (left, bcount); in gst_wavpack_stream_reader_read_bytes()
38 GST_DEBUG ("Trying to read %d of %d bytes from position %d", bcount, in gst_wavpack_stream_reader_read_bytes()
46 GST_WARNING ("Couldn't read %d bytes", bcount); in gst_wavpack_stream_reader_read_bytes()
104 gst_wavpack_stream_reader_write_bytes (void *id, void *data, int32_t bcount) in gst_wavpack_stream_reader_write_bytes() argument
106 GST_WARNING ("Should not be called, tried to write %d bytes", bcount); in gst_wavpack_stream_reader_write_bytes()
/third_party/e2fsprogs/lib/ext2fs/
Dblock.c26 e2_blkcnt_t bcount,
30 e2_blkcnt_t bcount; member
79 ctx->bcount += limit; in block_iterate_ind()
98 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) { in block_iterate_ind()
100 flags = (*ctx->func)(ctx->fs, &blk64, ctx->bcount, in block_iterate_ind()
112 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) { in block_iterate_ind()
116 flags = (*ctx->func)(ctx->fs, &blk64, ctx->bcount, in block_iterate_ind()
168 ctx->bcount += limit*limit; in block_iterate_dind()
201 ctx->bcount += limit; in block_iterate_dind()
254 ctx->bcount += ((unsigned long long) limit)*limit*limit; in block_iterate_tind()
[all …]
/third_party/ffmpeg/libavfilter/
Dsignature_lookup.c315 static int iterate_frame(double frr, FineSignature **a, FineSignature **b, int fcount, int *bcount,… in iterate_frame() argument
334 (*bcount)++; in iterate_frame()
341 (*bcount)++; in iterate_frame()
349 (*bcount)++; in iterate_frame()
380 (*bcount)++; in iterate_frame()
387 (*bcount)++; in iterate_frame()
395 (*bcount)++; in iterate_frame()
420 int dist, distsum = 0, bcount = 1, dir = DIR_NEXT; in evaluate_parameters() local
466 dir = iterate_frame(infos->framerateratio, &a, &b, fcount, &bcount, dir); in evaluate_parameters()
471 dir = iterate_frame(infos->framerateratio, &a, &b, fcount, &bcount, DIR_PREV); in evaluate_parameters()
[all …]
/third_party/ltp/include/
Dtst_fs.h143 int tst_fill_fd(int fd, char pattern, size_t bs, size_t bcount);
152 int tst_prealloc_size_fd(int fd, size_t bs, size_t bcount);
161 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount);
169 int tst_prealloc_file(const char *path, size_t bs, size_t bcount);
/third_party/toybox/toys/posix/
Dgrep.c94 static void outline(char *line, char dash, char *name, long lcount, long bcount, in outline() argument
103 if (bcount && FLAG(b)) numdash(bcount-1, dash); in outline()
277 long bcount = 1 + offset + (start-line) + (FLAG(o) ? mm->rm_so : 0); in do_grep() local
281 outline(start+mm->rm_so, ':', name, lcount, bcount, in do_grep()
295 outline(FLAG(color) ? 0 : line, ':', name, lcount, bcount, ulen); in do_grep()
/third_party/ltp/testcases/kernel/io/ltp-aiodio/
Dcommon.h36 static inline void io_append(const char *path, char pattern, int flags, size_t bs, size_t bcount) in io_append() argument
47 for (i = 0; i < bcount; i++) in io_append()
Daiodio_append.c43 static void aiodio_append(char *filename, int bcount, long long align, long long ws, int naio) in aiodio_append() argument
85 for (; i < bcount; i++) { in aiodio_append()
/third_party/libsnd/src/
Dalac.c808 uint32_t bcount, value = 1, pakt_size ; in alac_pakt_read_decode() local
828 if ((bcount = psf->get_chunk_data (psf, chunk_iterator, &chunk_info)) != SF_ERR_NO_ERROR) in alac_pakt_read_decode()
842 for (bcount = 24 ; bcount < pakt_size && value != 0 ; ) in alac_pakt_read_decode()
848 { byte = pakt_data [bcount + count] ; in alac_pakt_read_decode()
852 if (count > 5 || bcount + count > pakt_size) in alac_pakt_read_decode()
853 { printf ("%s %d : Ooops! count %d bcount %d\n", __func__, __LINE__, count, bcount) ; in alac_pakt_read_decode()
860 bcount += count ; in alac_pakt_read_decode()
/third_party/python/Objects/
Dlistobject.c1624 Py_ssize_t bcount = 0; /* # of times B won in a row */ in merge_lo() local
1636 ++bcount; in merge_lo()
1641 if (bcount >= min_gallop) in merge_lo()
1647 bcount = 0; in merge_lo()
1690 bcount = k; in merge_lo()
1705 } while (acount >= MIN_GALLOP || bcount >= MIN_GALLOP); in merge_lo()
1762 Py_ssize_t bcount = 0; /* # of times B won in a row */ in merge_hi() local
1775 bcount = 0; in merge_hi()
1784 ++bcount; in merge_hi()
1789 if (bcount >= min_gallop) in merge_hi()
[all …]
Dlistsort.txt594 offset equal to the previous value of acount/bcount. Doing so saves about
/third_party/e2fsprogs/doc/RelNotes/
Dv1.10.txt31 circumstances, file with holes would cause the bcount parameter to the
/third_party/mksh/
Dedit.c4677 unsigned int bcount; in domove() local
4792 bcount = 1; in domove()
4803 bcount++; in domove()
4805 bcount--; in domove()
4806 } while (bcount != 0); in domove()
/third_party/ltp/doc/
Dc-test-api.txt1164 int tst_fill_fd(int fd, char pattern, size_t bs, size_t bcount);
1173 int tst_prealloc_size_fd(int fd, size_t bs, size_t bcount);
1183 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount);
1192 int tst_prealloc_file(const char *path, size_t bs, size_t bcount);