Home
last modified time | relevance | path

Searched refs:dcount (Results 1 – 12 of 12) sorted by relevance

/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstbufferpool.c83 gint dcount = 0; in GST_START_TEST() local
88 buffer_track_destroy (buf, &dcount); in GST_START_TEST()
92 fail_unless (dcount == 0); in GST_START_TEST()
102 fail_unless (dcount == 1); in GST_START_TEST()
177 gint dcount = 0; in GST_START_TEST() local
182 buffer_track_destroy (buf, &dcount); in GST_START_TEST()
188 fail_unless_equals_int (dcount, 1); in GST_START_TEST()
191 buffer_track_destroy (buf, &dcount); in GST_START_TEST()
197 fail_unless_equals_int (dcount, 1); in GST_START_TEST()
208 fail_unless_equals_int (dcount, 1); in GST_START_TEST()
[all …]
/third_party/exfatprogs/lib/
Dexfat_dir.c524 static uint16_t calc_dentry_set_checksum(struct exfat_dentry *dset, int dcount) in calc_dentry_set_checksum() argument
529 if (dcount < MIN_FILE_DENTRIES) in calc_dentry_set_checksum()
534 for (i = 1; i < dcount; i++) in calc_dentry_set_checksum()
580 int dcount, name_len, i; in exfat_build_file_dentry_set() local
590 dcount = 2 + DIV_ROUND_UP(name_len, ENTRY_NAME_MAX); in exfat_build_file_dentry_set()
591 dset = calloc(1, dcount * DENTRY_SIZE); in exfat_build_file_dentry_set()
596 dset[0].dentry.file.num_ext = dcount - 1; in exfat_build_file_dentry_set()
622 for (i = 2; i < dcount; i++) { in exfat_build_file_dentry_set()
630 cpu_to_le16(calc_dentry_set_checksum(dset, dcount)); in exfat_build_file_dentry_set()
633 *dentry_count = dcount; in exfat_build_file_dentry_set()
[all …]
Dlibexfat.c451 int volume_label_len, dcount, err; in exfat_set_volume_label() local
461 dcount = filter.out.dentry_count; in exfat_set_volume_label()
468 dcount = 1; in exfat_set_volume_label()
486 err = exfat_add_dentry_set(exfat, &loc, pvol, dcount, false); in exfat_set_volume_label()
/third_party/toybox/toys/posix/
Dpaste.c38 int i, any, dcount, dlen, len, seq = toys.optflags&FLAG_s; local
46 for (i = any = dcount = dlen = 0; seq || i<TT.files; i++) {
61 dcount = any ? 1 : i;
68 while (dcount) {
73 dcount--;
/third_party/gstreamer/gstplugins_bad/tests/check/libs/
Dvkcommandpool.c89 gint dcount = 0; in GST_START_TEST() local
94 buffer_track_destroy (cmd, &dcount); in GST_START_TEST()
98 fail_unless (dcount == 0); in GST_START_TEST()
/third_party/ltp/testcases/kernel/sched/tool/
Dtime-schedule.c105 double dcount = 0.0; in main() local
200 ++dcount; in main()
207 use_fpu_value(dcount); in main()
231 dcount += 1.0; in main()
267 use_fpu_value(dcount); in main()
/third_party/exfatprogs/include/
Dexfat_dir.h72 struct exfat_dentry *dset, int dcount,
79 struct exfat_dentry *dset, int dcount,
/third_party/libwebsockets/lib/misc/
Dlejp.c439 ctx->dcount = 0; in lejp_parse()
543 if (ctx->dcount < 20 && c >= '0' && c <= '9') { in lejp_parse()
546 ctx->dcount++; in lejp_parse()
550 if (!ctx->dcount || (ctx->f & LEJP_SEEN_POINT)) { in lejp_parse()
577 if (!ctx->dcount) { in lejp_parse()
/third_party/libwebsockets/include/libwebsockets/
Dlws-lejp.h250 uint8_t dcount; member
Dlws-lecp.h282 uint8_t dcount; member
/third_party/pcre2/pcre2/src/
Dpcre2grep.c1969 int dcount; in decode_dollar_escape() local
2034 dcount = 7; in decode_dollar_escape()
2036 else dcount = 3; in decode_dollar_escape()
2037 for (; dcount > 0; dcount--) in decode_dollar_escape()
2056 dcount = 6; in decode_dollar_escape()
2058 else dcount = 2; in decode_dollar_escape()
2059 for (; dcount > 0; dcount--) in decode_dollar_escape()
/third_party/exfatprogs/fsck/
Dfsck.c1382 int err, dcount; in rescue_orphan_clusters() local
1409 err = exfat_build_file_dentry_set(exfat, name, 0, &dset, &dcount); in rescue_orphan_clusters()
1438 err = exfat_update_file_dentry_set(exfat, dset, dcount, in rescue_orphan_clusters()
1442 err = exfat_add_dentry_set(exfat, &loc, dset, dcount, true); in rescue_orphan_clusters()