Home
last modified time | relevance | path

Searched refs:icount (Results 1 – 25 of 46) sorted by relevance

12

/third_party/e2fsprogs/lib/ext2fs/
Dicount.c76 void ext2fs_free_icount(ext2_icount_t icount) in ext2fs_free_icount() argument
78 if (!icount) in ext2fs_free_icount()
81 icount->magic = 0; in ext2fs_free_icount()
82 if (icount->list) in ext2fs_free_icount()
83 ext2fs_free_mem(&icount->list); in ext2fs_free_icount()
84 if (icount->single) in ext2fs_free_icount()
85 ext2fs_free_inode_bitmap(icount->single); in ext2fs_free_icount()
86 if (icount->multiple) in ext2fs_free_icount()
87 ext2fs_free_inode_bitmap(icount->multiple); in ext2fs_free_icount()
89 if (icount->tdb) in ext2fs_free_icount()
[all …]
Dundo_io.c939 int icount; in undo_discard() local
947 icount = count; in undo_discard()
952 retval = undo_write_tdb(channel, block, icount); in undo_discard()
966 int icount; in undo_zeroout() local
974 icount = count; in undo_zeroout()
979 retval = undo_write_tdb(channel, block, icount); in undo_zeroout()
DAndroid.bp54 "icount.c",
DBUILD.gn71 "icount.c",
Dext2fs.h1482 extern void ext2fs_free_icount(ext2_icount_t icount);
1491 extern errcode_t ext2fs_icount_fetch(ext2_icount_t icount, ext2_ino_t ino,
1493 extern errcode_t ext2fs_icount_increment(ext2_icount_t icount, ext2_ino_t ino,
1495 extern errcode_t ext2fs_icount_decrement(ext2_icount_t icount, ext2_ino_t ino,
1497 extern errcode_t ext2fs_icount_store(ext2_icount_t icount, ext2_ino_t ino,
1499 extern ext2_ino_t ext2fs_get_icount_size(ext2_icount_t icount);
1500 errcode_t ext2fs_icount_validate(ext2_icount_t icount, FILE *);
DMakefile.in98 icount.o \
179 $(srcdir)/icount.c \
288 tst_icount: $(srcdir)/icount.c $(STATIC_LIBEXT2FS) $(DEPSTATIC_LIBCOM_ERR)
290 $(Q) $(CC) -o tst_icount $(srcdir)/icount.c -DDEBUG \
901 icount.o: $(srcdir)/icount.c $(top_builddir)/lib/config.h \
Dext2_err.et.in51 "Wrong magic number for icount structure"
/third_party/e2fsprogs/tests/progs/
Dtest_icount_cmds.ct10 request do_create_icount, "Create an icount structure",
13 request do_free_icount, "Free an icount structure",
16 request do_fetch, "Fetch an icount entry",
19 request do_increment, "Increment an icount entry",
22 request do_decrement, "Decrement an icount entry",
25 request do_store, "Store an icount entry",
28 request do_get_size, "Get the size of the icount structure",
31 request do_dump, "Dump the icount structure",
34 request do_validate, "Validate the icount structure",
/third_party/e2fsprogs/doc/RelNotes/
Dv1.08.txt6 by seriously revamping the icount abstraction. Added a formal test
7 suite for the icount abstraction.
55 argument. This hint argument presets the icount array with the list
56 of inodes which actually need to be in the icount array. This really
60 invariant for the icount structure. This is used mostly for testing.
73 The icount functions will return EINVAL if the passed in inode number
Dv1.21.txt88 Fixed a performance bug in the libext2fs's icount routine; the size
89 estimate of the icount array was incorrectly being calculated.
/third_party/skia/tests/
DDataRefTest.cpp60 int icount = SK_ARRAY_COUNT(idata); in test_simpletable() local
61 sk_sp<SkDataTable> itable(SkDataTable::MakeCopyArray(idata, sizeof(idata[0]), icount)); in test_simpletable()
62 REPORTER_ASSERT(reporter, itable->count() == icount); in test_simpletable()
63 for (int i = 0; i < icount; ++i) { in test_simpletable()
/third_party/e2fsprogs/tests/progs/test_data/
Dexpect.icount59 Size of icount is: 5
148 Size of icount is: 105
191 Size of icount is: 105
Dtest.icount2 # This is the test script for the icount abstraction
/third_party/flutter/skia/tests/
DDataRefTest.cpp61 int icount = SK_ARRAY_COUNT(idata); in test_simpletable() local
62 sk_sp<SkDataTable> itable(SkDataTable::MakeCopyArray(idata, sizeof(idata[0]), icount)); in test_simpletable()
63 REPORTER_ASSERT(reporter, itable->count() == icount); in test_simpletable()
64 for (int i = 0; i < icount; ++i) { in test_simpletable()
/third_party/FreeBSD/sys/dev/usb/
Dusb_hid.c70 uint32_t icount; /* current usage item count */ member
237 if (s->icount < s->ncount) { in hid_get_item()
253 s->icount ++; in hid_get_item()
268 s->icount = 0; in hid_get_item()
/third_party/e2fsprogs/tests/defaults/
De_script25 elif [ "$class" = icount ]; then
/third_party/e2fsprogs/doc/
Dlibext2fs.texinfo1202 The icount abstraction is a specialized data type used by @code{e2fsck}
1216 Creates an icount structure for a filesystem @var{fs}, with initial space
1219 indicates that icount structure should be able to increment inode counts
1220 quickly. The icount structure is returned in @var{ret}. The returned
1221 icount structure initially has a count of zero for all inodes.
1224 icount structure which is used to initialize the array of inodes whose
1226 that the icount structure can determine in advance which inodes are
1230 @deftypefun void ext2fs_free_icount (ext2_icount_t @var{icount})
1232 Frees an icount structure.
1235 @deftypefun errcode_t ext2fs_icount_fetch (ext2_icount_t @var{icount}, ext2_ino_t @var{ino}, __u16 …
[all …]
/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/
Dgstdshowaudiosrc.cpp715 int icount = 0; in gst_dshowaudiosrc_getcaps_from_streamcaps() local
723 streamcaps->GetNumberOfCapabilities (&icount, &isize); in gst_dshowaudiosrc_getcaps_from_streamcaps()
728 for (; i < icount; i++) { in gst_dshowaudiosrc_getcaps_from_streamcaps()
Dgstdshowvideosrc.cpp917 int icount = 0; in gst_dshowvideosrc_getcaps_from_streamcaps() local
928 streamcaps->GetNumberOfCapabilities (&icount, &isize); in gst_dshowvideosrc_getcaps_from_streamcaps()
937 for (i = 0; i < icount; i++) { in gst_dshowvideosrc_getcaps_from_streamcaps()
/third_party/python/Modules/
Dossaudiodev.c57 Py_ssize_t icount; /* input count */ member
146 self->icount = self->ocount = 0; in newossobject()
422 self->icount += count; in oss_read()
/third_party/ffmpeg/libavcodec/
Dhuffyuvdec.c628 int i, icount; in decode_422_bitstream() local
632 icount = get_bits_left(&s->gb) / (32 * 4); in decode_422_bitstream()
633 if (count >= icount) { in decode_422_bitstream()
634 for (i = 0; i < icount; i++) { in decode_422_bitstream()
/third_party/e2fsprogs/contrib/
Dfsstress.c1614 bsr.icount = nent; in bulkstat_f()
1670 bsr.icount = 1; in bulkstat1_f()
/third_party/ltp/testcases/kernel/fs/fsstress/
Dfsstress.c1589 bsr.icount = nent; in bulkstat_f()
1645 bsr.icount = 1; in bulkstat1_f()
/third_party/e2fsprogs/po/
Deo.po1547 #. @-expanded: error allocating icount link information: %m\n
1550 msgid "@A icount link information: %m\n"
1551 msgstr "@A de 'icount'-a liginformo: %m\n"
1672 msgstr "@A de 'icount'-a strukturo: %m\n"
2052 msgstr "@A de 'icount'-a strukturo: %m\n"
2400 #. @-expanded: error allocating icount structure: %m\n
2403 msgid "@A icount structure: %m\n"
2404 msgstr "@A de 'icount'-a strukturo: %m\n"
7322 msgid "Wrong magic number for icount structure"
7323 msgstr "Malĝustas magia numero por strukturo 'icount'"
Dit.po1580 #. @-expanded: error allocating icount link information: %m\n
1583 msgid "@A icount link information: %m\n"
1584 msgstr "@A le informazioni del collegamento icount: %m\n"
1676 msgstr "@A la struttura icount: %m\n"
1718 msgstr "@A la struttura icount: %m\n"
2094 msgstr "@A la struttura icount: %m\n"
2454 #. @-expanded: error allocating icount structure: %m\n
2457 msgid "@A icount structure: %m\n"
2458 msgstr "@A la struttura icount: %m\n"
7608 msgid "Wrong magic number for icount structure"

12