Home
last modified time | relevance | path

Searched refs:mref (Results 1 - 25 of 28) sorted by relevance

12

/third_party/ntfs-3g/include/ntfs-3g/
H A Dmft.h32 extern int ntfs_mft_records_read(const ntfs_volume *vol, const MFT_REF mref,
38 * @mref: mft record number to read
41 * Read the mft record specified by @mref from volume @vol into buffer @b.
51 const MFT_REF mref, MFT_RECORD *b) in ntfs_mft_record_read()
55 ntfs_log_enter("Entering for inode %lld\n", (long long)MREF(mref)); in ntfs_mft_record_read()
56 ret = ntfs_mft_records_read(vol, mref, 1, b); in ntfs_mft_record_read()
61 extern int ntfs_mft_record_check(const ntfs_volume *vol, const MFT_REF mref,
64 extern int ntfs_file_record_read(const ntfs_volume *vol, const MFT_REF mref,
67 extern int ntfs_mft_records_write(const ntfs_volume *vol, const MFT_REF mref,
73 * @mref
50 ntfs_mft_record_read(const ntfs_volume *vol, const MFT_REF mref, MFT_RECORD *b) ntfs_mft_record_read() argument
85 ntfs_mft_record_write(const ntfs_volume *vol, const MFT_REF mref, MFT_RECORD *b) ntfs_mft_record_write() argument
[all...]
H A Dinode.h182 extern ntfs_inode *ntfs_inode_open(ntfs_volume *vol, const MFT_REF mref);
192 extern void ntfs_inode_invalidate(ntfs_volume *vol, const MFT_REF mref);
200 const leMFT_REF mref);
H A Dindex.h153 MFT_REF mref);
H A Ddir.h107 const MFT_REF mref, const unsigned dt_type);
H A Dattrib.h401 extern int ntfs_attr_inconsistent(const ATTR_RECORD *a, const MFT_REF mref);
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_tinterlace_init.c30 const uint8_t *srcp, ptrdiff_t mref,
33 const uint8_t *srcp, ptrdiff_t mref,
36 const uint8_t *srcp, ptrdiff_t mref,
40 const uint8_t *srcp, ptrdiff_t mref,
43 const uint8_t *srcp, ptrdiff_t mref,
46 const uint8_t *srcp, ptrdiff_t mref,
50 const uint8_t *srcp, ptrdiff_t mref,
54 const uint8_t *srcp, ptrdiff_t mref,
H A Dvf_interlace.asm80 cglobal lowpass_line, 5, 5, 7, dst, h, src, mref, pref
83 cglobal lowpass_line_16, 5, 5, 7, dst, h, src, mref, pref
89 cglobal lowpass_line_complex, 5, 5, 8, dst, h, src, mref, pref
151 cglobal lowpass_line_complex_12, 5, 5, 8, 16, dst, h, src, mref, pref, clip_max
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsresize.c186 MFT_REF mref; member
209 MFT_REF mref; /* mft reference */ member
1323 MFT_REF mref; in expand_attribute_runlist() local
1327 mref = delayed->mref; in expand_attribute_runlist()
1330 (long long)mref); in expand_attribute_runlist()
1336 if (mref == FILE_MFT) in expand_attribute_runlist()
1339 ni = ntfs_inode_open(vol,mref); in expand_attribute_runlist()
1341 if (mref == FILE_MFT) in expand_attribute_runlist()
1356 (long)le32_to_cpu(type),(long long)mref); in expand_attribute_runlist()
1548 MFT_REF mref; replace_later() local
1871 write_mft_record(ntfs_volume *v, const MFT_REF mref, MFT_RECORD *buf) write_mft_record() argument
2202 relocate_inode(ntfs_resize_t *resize, MFT_REF mref, int do_mftdata) relocate_inode() argument
2248 MFT_REF mref; relocate_inodes() local
2572 lookup_data_attr(ntfs_volume *vol, MFT_REF mref, const char *aname, ntfs_attr_search_ctx **ctx) lookup_data_attr() argument
[all...]
H A Dntfsls.c129 const s64 pos, const MFT_REF mref,
493 const MFT_REF mref, const unsigned dt_type) in list_dir_entry()
510 if ((MREF(mref) < FILE_first_user) && (!opts.system)) in list_dir_entry()
544 printf("%7llu %s\n", (unsigned long long)MREF(mref), in list_dir_entry()
558 ni = ntfs_inode_open(dirent->vol, mref); in list_dir_entry()
590 (unsigned long long)MREF(mref), in list_dir_entry()
490 list_dir_entry(ntfsls_dirent * dirent, const ntfschar * name, const int name_len, const int name_type, const s64 pos __attribute__((unused)), const MFT_REF mref, const unsigned dt_type) list_dir_entry() argument
H A Dutils.c776 * @mref: MFT Reference (inode number)
783 * If the mref, being tested, lies outside the range, the buffer will be
790 int utils_mftrec_in_use(ntfs_volume *vol, MFT_REF mref) in utils_mftrec_in_use() argument
803 /* Does mref lie in the section of $Bitmap we already have cached? */ in utils_mftrec_in_use()
804 if (((s64)MREF(mref) < bmpmref) in utils_mftrec_in_use()
805 || ((s64)MREF(mref) >= (s64)(bmpmref + (sizeof(buffer) << 3)))) { in utils_mftrec_in_use()
810 bmpmref = mref & (~((sizeof(buffer) << 3) - 1)); in utils_mftrec_in_use()
820 bit = 1 << (mref & 7); in utils_mftrec_in_use()
821 byte = (mref >> 3) & (sizeof(buffer) - 1); in utils_mftrec_in_use()
823 "in use %d\n", (long long) mref, (lon in utils_mftrec_in_use()
[all...]
H A Dutils.h50 int utils_mftrec_in_use(ntfs_volume *vol, MFT_REF mref);
H A Dntfscmp.c353 static int inode_open(ntfs_volume *vol, MFT_REF mref, ntfs_inode **ni) in inode_open() argument
355 *ni = ntfs_inode_open(vol, mref); in inode_open()
362 perr_println("Reading inode %lld failed", (long long)mref); in inode_open()
H A Dntfsclone.c1981 MFT_REF mref = (MFT_REF)inode; local
1993 err = ntfs_file_record_read(volume, mref, &ni->mrec, NULL);
2003 ni->mft_no = MREF(mref);
2017 if ((ni = ntfs_inode_open(volume, mref)) == NULL) {
/third_party/ntfs-3g/libntfs-3g/
H A Dmft.c64 * @mref: starting mft record number to read
68 * Read @count mft records starting at @mref from volume @vol into buffer
82 int ntfs_mft_records_read(const ntfs_volume *vol, const MFT_REF mref, in ntfs_mft_records_read() argument
88 ntfs_log_trace("inode %llu\n", (unsigned long long)MREF(mref)); in ntfs_mft_records_read()
93 b, (long long)count, (unsigned long long)MREF(mref)); in ntfs_mft_records_read()
96 m = MREF(mref); in ntfs_mft_records_read()
123 * @mref: starting mft record number to write
127 * Write @count mft records starting at @mref from data buffer @b to volume
144 int ntfs_mft_records_write(const ntfs_volume *vol, const MFT_REF mref, in ntfs_mft_records_write() argument
156 m = MREF(mref); in ntfs_mft_records_write()
234 ntfs_mft_record_check(const ntfs_volume *vol, const MFT_REF mref, MFT_RECORD *m) ntfs_mft_record_check() argument
348 ntfs_file_record_read(const ntfs_volume *vol, const MFT_REF mref, MFT_RECORD **mrec, ATTR_RECORD **attr) ntfs_file_record_read() argument
401 ntfs_mft_record_layout(const ntfs_volume *vol, const MFT_REF mref, MFT_RECORD *mrec) ntfs_mft_record_layout() argument
478 ntfs_mft_record_format(const ntfs_volume *vol, const MFT_REF mref) ntfs_mft_record_format() argument
[all...]
H A Dinode.c137 * @mref: inode number / mft record number to open
140 * specified by @mref. @mref specifies the inode number / mft record to read,
157 static ntfs_inode *ntfs_inode_real_open(ntfs_volume *vol, const MFT_REF mref) in ntfs_inode_real_open() argument
166 ntfs_log_enter("Entering for inode %lld\n", (long long)MREF(mref)); in ntfs_inode_real_open()
174 if (ntfs_file_record_read(vol, mref, &ni->mrec, NULL)) in ntfs_inode_real_open()
180 ni->mft_no = MREF(mref); in ntfs_inode_real_open()
189 " %lld", (long long)MREF(mref)); in ntfs_inode_real_open()
196 (long long)MREF(mref)); in ntfs_inode_real_open()
237 "%lld", (long long)l, (long long)MREF(mref)); in ntfs_inode_real_open()
441 ntfs_inode_invalidate(ntfs_volume *vol, const MFT_REF mref) ntfs_inode_invalidate() argument
465 ntfs_inode_open(ntfs_volume *vol, const MFT_REF mref) ntfs_inode_open() argument
577 ntfs_extent_inode_open(ntfs_inode *base_ni, const leMFT_REF mref) ntfs_extent_inode_open() argument
[all...]
H A Ddir.c253 u64 mref = 0; in ntfs_inode_lookup_by_name() local
352 mref = le64_to_cpu(ie->indexed_file); in ntfs_inode_lookup_by_name()
354 return mref; in ntfs_inode_lookup_by_name()
360 * cached in mref in which case return mref. in ntfs_inode_lookup_by_name()
364 if (mref) in ntfs_inode_lookup_by_name()
365 return mref; in ntfs_inode_lookup_by_name()
468 mref = le64_to_cpu(ie->indexed_file); in ntfs_inode_lookup_by_name()
472 return mref; in ntfs_inode_lookup_by_name()
500 * the mft reference of a matching name cached in mref i in ntfs_inode_lookup_by_name()
913 ntfs_dir_entry_type(ntfs_inode *dir_ni, MFT_REF mref, FILE_ATTR_FLAGS attributes) ntfs_dir_entry_type() argument
968 MFT_REF mref; ntfs_filldir() local
1046 MFT_REF mref; ntfs_mft_get_parent_ref() local
[all...]
H A Dattrlist.c110 leMFT_REF mref; in ntfs_attrlist_entry_add() local
126 mref = MK_LE_MREF(ni->mft_no, le16_to_cpu(ni->mrec->sequence_number)); in ntfs_attrlist_entry_add()
197 ale->mft_reference = mref; in ntfs_attrlist_entry_add()
H A Dreparse.c136 u64 mref; in ntfs_fix_file_name() local
149 mref = (u64)-1; /* default return (not found) */ in ntfs_fix_file_name()
197 mref = le64_to_cpu(lemref); in ntfs_fix_file_name()
209 return (mref); in ntfs_fix_file_name()
/third_party/ffmpeg/libavfilter/
H A Dvf_tinterlace.c105 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_c()
107 const uint8_t *srcp_above = srcp + mref; in lowpass_line_c()
119 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_c_16()
123 const uint16_t *srcp_above = srcp + mref / 2; in lowpass_line_c_16()
137 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_complex_c()
139 const uint8_t *srcp_above = srcp + mref; in lowpass_line_complex_c()
141 const uint8_t *srcp_above2 = srcp + mref * 2; in lowpass_line_complex_c()
164 ptrdiff_t mref, ptrdiff_t pref, int clip_max) in lowpass_line_complex_c_16()
168 const uint16_t *srcp_above = srcp + mref / 2; in lowpass_line_complex_c_16()
170 const uint16_t *srcp_above2 = srcp + mref; in lowpass_line_complex_c_16()
104 lowpass_line_c(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_c() argument
118 lowpass_line_c_16(uint8_t *dst8, ptrdiff_t width, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_c_16() argument
136 lowpass_line_complex_c(uint8_t *dstp, ptrdiff_t width, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_complex_c() argument
163 lowpass_line_complex_c_16(uint8_t *dst8, ptrdiff_t width, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max) lowpass_line_complex_c_16() argument
341 ptrdiff_t mref = -pref; copy_picture_field() local
[all...]
H A Dtinterlace.h79 ptrdiff_t mref, ptrdiff_t pref, int clip_max);
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DICUJDKCompare.java331 private Method mref; field in ICUJDKCompare.MorC
335 mref = m; in MorC()
343 return mref == null ? cref.getModifiers() : mref.getModifiers(); in getModifiers()
347 return mref == null ? void.class : mref.getReturnType(); in getReturnType()
351 return mref == null ? cref.getParameterTypes() : mref.getParameterTypes(); in getParameterTypes()
355 return mref == null ? "<init>" : mref in getName()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUCharacter.java2814 if (mref != null) { in forName()
2815 m = mref.get(); in forName()
2826 mref = new SoftReference<>(m); in forName()
2834 private static SoftReference<Map<String, UnicodeBlock>> mref; field in UCharacter.UnicodeBlock
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/
H A DUCharacter.java2331 if (mref != null) { in forName()
2332 m = mref.get(); in forName()
2343 mref = new SoftReference<>(m); in forName()
2351 private static SoftReference<Map<String, UnicodeBlock>> mref; field in UCharacter.UnicodeBlock
/third_party/ntfs-3g/src/
H A Dntfs-3g.c1260 const s64 pos __attribute__((unused)), const MFT_REF mref, in ntfs_fuse_filler()
1272 (unsigned long long)MREF(mref)); in ntfs_fuse_filler()
1279 filename, (unsigned long long)MREF(mref)); in ntfs_fuse_filler()
1283 struct stat st = { .st_ino = MREF(mref) }; in ntfs_fuse_filler()
1311 ni = ntfs_inode_open(ctx->vol, mref); in ntfs_fuse_filler()
1258 ntfs_fuse_filler(ntfs_fuse_fill_context_t *fill_ctx, const ntfschar *name, const int name_len, const int name_type, const s64 pos __attribute__((unused)), const MFT_REF mref, const unsigned dt_type __attribute__((unused))) ntfs_fuse_filler() argument
H A Dlowntfs-3g.c1231 const s64 pos __attribute__((unused)), const MFT_REF mref, in ntfs_fuse_filler()
1246 (unsigned long long)MREF(mref)); in ntfs_fuse_filler()
1250 if (MREF(mref) > 1) { in ntfs_fuse_filler()
1251 struct stat st = { .st_ino = MREF(mref) }; in ntfs_fuse_filler()
1279 ni = ntfs_inode_open(ctx->vol, mref); in ntfs_fuse_filler()
1358 (unsigned long long)MREF(mref)); in ntfs_fuse_filler()
1229 ntfs_fuse_filler(ntfs_fuse_fill_context_t *fill_ctx, const ntfschar *name, const int name_len, const int name_type, const s64 pos __attribute__((unused)), const MFT_REF mref, const unsigned dt_type __attribute__((unused))) ntfs_fuse_filler() argument

Completed in 55 milliseconds

12