/fs/xfs/ |
D | xfs_fsmap.c | 164 struct xfs_rmap_irec low; /* low rmap key */ member 249 if (xfs_rmap_compare(rec, &info->low) < 0) { in xfs_getfsmap_helper() 403 info->low.rm_startblock = XFS_BB_TO_FSBT(mp, keys[0].fmr_physical); in xfs_getfsmap_logdev() 404 info->low.rm_offset = XFS_BB_TO_FSBT(mp, keys[0].fmr_offset); in xfs_getfsmap_logdev() 405 error = xfs_fsmap_owner_to_rmap(&info->low, keys); in xfs_getfsmap_logdev() 408 info->low.rm_blockcount = 0; in xfs_getfsmap_logdev() 409 xfs_getfsmap_set_irec_flags(&info->low, &keys[0]); in xfs_getfsmap_logdev() 421 trace_xfs_fsmap_low_key(mp, info->dev, info->agno, &info->low); in xfs_getfsmap_logdev() 484 info->low.rm_startblock = start_fsb; in __xfs_getfsmap_rtdev() 485 error = xfs_fsmap_owner_to_rmap(&info->low, &keys[0]); in __xfs_getfsmap_rtdev() [all …]
|
D | xfs_rtalloc.c | 50 int low, /* low log2 extent size */ in xfs_rtany_summary() argument 62 if (mp->m_rsum_cache && low < mp->m_rsum_cache[bbno]) in xfs_rtany_summary() 63 low = mp->m_rsum_cache[bbno]; in xfs_rtany_summary() 68 for (log = low; log <= high; log++) { in xfs_rtany_summary()
|
/fs/adfs/ |
D | inode.c | 169 unsigned int high, low; in adfs_adfs2unix_time() local 181 low = ADFS_I(inode)->execaddr; /* bottom 32 bits of timestamp */ in adfs_adfs2unix_time() 186 nsec = (((s64) high << 32) | (s64) low) * 10000000; /* cs to ns */ in adfs_adfs2unix_time() 214 unsigned int high, low; in adfs_unix2adfs_time() local 218 low = (secs & 255) * 100; in adfs_unix2adfs_time() 219 high = (secs / 256) * 100 + (low >> 8) + 0x336e996a; in adfs_unix2adfs_time() 223 ADFS_I(inode)->execaddr = (low & 255) | (high << 8); in adfs_unix2adfs_time()
|
/fs/xfs/scrub/ |
D | refcount.c | 283 struct xfs_rmap_irec low; in xchk_refcountbt_xref_rmap() local 293 memset(&low, 0, sizeof(low)); in xchk_refcountbt_xref_rmap() 294 low.rm_startblock = bno; in xchk_refcountbt_xref_rmap() 299 error = xfs_rmap_query_range(sc->sa.rmap_cur, &low, &high, in xchk_refcountbt_xref_rmap()
|
/fs/xfs/libxfs/ |
D | xfs_dir2_block.c | 340 int low; /* low index for binary srch */ in xfs_dir2_block_addname() local 423 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) { in xfs_dir2_block_addname() 424 mid = (low + high) >> 1; in xfs_dir2_block_addname() 428 low = mid + 1; in xfs_dir2_block_addname() 661 int low; /* binary search low index */ in xfs_dir2_block_lookup_int() local 683 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) { in xfs_dir2_block_lookup_int() 684 ASSERT(low <= high); in xfs_dir2_block_lookup_int() 685 mid = (low + high) >> 1; in xfs_dir2_block_lookup_int() 689 low = mid + 1; in xfs_dir2_block_lookup_int() 692 if (low > high) { in xfs_dir2_block_lookup_int()
|
D | xfs_refcount.c | 1615 union xfs_btree_irec low; in xfs_refcount_recover_cow_leftovers() local 1650 memset(&low, 0, sizeof(low)); in xfs_refcount_recover_cow_leftovers() 1652 low.rc.rc_startblock = XFS_REFC_COW_START; in xfs_refcount_recover_cow_leftovers() 1654 error = xfs_btree_query_range(cur, &low, &high, in xfs_refcount_recover_cow_leftovers() 1708 union xfs_btree_irec low; in xfs_refcount_has_record() local 1711 memset(&low, 0, sizeof(low)); in xfs_refcount_has_record() 1712 low.rc.rc_startblock = bno; in xfs_refcount_has_record() 1716 return xfs_btree_has_record(cur, &low, &high, exists); in xfs_refcount_has_record()
|
D | xfs_ialloc.h | 145 int xfs_ialloc_has_inode_record(struct xfs_btree_cur *cur, xfs_agino_t low,
|
D | xfs_rmap.c | 2433 union xfs_btree_irec low; in xfs_rmap_has_record() local 2436 memset(&low, 0, sizeof(low)); in xfs_rmap_has_record() 2437 low.r.rm_startblock = bno; in xfs_rmap_has_record() 2441 return xfs_btree_has_record(cur, &low, &high, exists); in xfs_rmap_has_record() 2527 struct xfs_rmap_irec low = {0}; in xfs_rmap_has_other_keys() local 2535 low.rm_startblock = bno; in xfs_rmap_has_other_keys() 2539 error = xfs_rmap_query_range(cur, &low, &high, in xfs_rmap_has_other_keys()
|
D | xfs_dir2_leaf.c | 1503 int low; /* low leaf index */ in xfs_dir2_leaf_search_hash() local 1518 for (lep = ents, low = 0, high = leafhdr.count - 1, in xfs_dir2_leaf_search_hash() 1520 low <= high; ) { in xfs_dir2_leaf_search_hash() 1521 mid = (low + high) >> 1; in xfs_dir2_leaf_search_hash() 1525 low = mid + 1; in xfs_dir2_leaf_search_hash()
|
D | xfs_ialloc.c | 2651 xfs_agino_t low, in xfs_ialloc_has_inode_record() argument 2663 error = xfs_inobt_lookup(cur, low, XFS_LOOKUP_LE, &has_record); in xfs_ialloc_has_inode_record() 2675 if (agino + XFS_INODES_PER_HOLEMASK_BIT > low && in xfs_ialloc_has_inode_record() 2695 xfs_agino_t low; in xfs_ialloc_has_inodes_at_extent() local 2698 low = XFS_AGB_TO_AGINO(cur->bc_mp, bno); in xfs_ialloc_has_inodes_at_extent() 2701 return xfs_ialloc_has_inode_record(cur, low, high, exists); in xfs_ialloc_has_inodes_at_extent()
|
D | xfs_alloc.c | 3127 union xfs_btree_irec low; in xfs_alloc_has_record() local 3130 memset(&low, 0, sizeof(low)); in xfs_alloc_has_record() 3131 low.a.ar_startblock = bno; in xfs_alloc_has_record() 3135 return xfs_btree_has_record(cur, &low, &high, exists); in xfs_alloc_has_record()
|
D | xfs_btree.c | 1902 int low; /* low entry number */ in xfs_btree_lookup() local 1905 low = 1; in xfs_btree_lookup() 1923 while (low <= high) { in xfs_btree_lookup() 1930 keyno = (low + high) >> 1; in xfs_btree_lookup() 1944 low = keyno + 1; in xfs_btree_lookup() 4897 union xfs_btree_irec *low, in xfs_btree_has_record() argument 4903 error = xfs_btree_query_range(cur, low, high, in xfs_btree_has_record()
|
D | xfs_btree.h | 513 int xfs_btree_has_record(struct xfs_btree_cur *cur, union xfs_btree_irec *low,
|
/fs/isofs/ |
D | rock.c | 393 int high, low; in parse_rock_ridge_inode_internal() local 395 low = isonum_733(rr->u.PN.dev_low); in parse_rock_ridge_inode_internal() 406 if ((low & ~0xff) && high == 0) { in parse_rock_ridge_inode_internal() 408 MKDEV(low >> 8, low & 0xff); in parse_rock_ridge_inode_internal() 411 MKDEV(high, low); in parse_rock_ridge_inode_internal()
|
/fs/dlm/ |
D | member.c | 528 int i, error, neg = 0, low = -1; in dlm_recover_members() local 570 if (low == -1 || memb->nodeid < low) in dlm_recover_members() 571 low = memb->nodeid; in dlm_recover_members() 573 ls->ls_low_nodeid = low; in dlm_recover_members()
|
/fs/ |
D | fs_parser.c | 316 int low, int high, int special) in validate_constant_table() argument 346 (tbl[i].value < low || tbl[i].value > high)) { in validate_constant_table() 348 i, tbl[i].name, tbl[i].value, low, high); in validate_constant_table()
|
D | read_write.c | 1073 static inline loff_t pos_from_hilo(unsigned long high, unsigned long low) in pos_from_hilo() argument 1076 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low; in pos_from_hilo()
|
/fs/cramfs/ |
D | Kconfig | 20 purpose to remain small and low on RAM usage. It is most suitable
|
/fs/nilfs2/ |
D | btree.c | 294 int index, low, high, s; in nilfs_btree_node_lookup() local 297 low = 0; in nilfs_btree_node_lookup() 301 while (low <= high) { in nilfs_btree_node_lookup() 302 index = (low + high) / 2; in nilfs_btree_node_lookup() 308 low = index + 1; in nilfs_btree_node_lookup()
|
/fs/ocfs2/ |
D | xattr.c | 1815 int low = 0, high = count - 1, tmp; in ocfs2_xa_bucket_add_entry() local 1822 while (low <= high && count) { in ocfs2_xa_bucket_add_entry() 1823 tmp = (low + high) / 2; in ocfs2_xa_bucket_add_entry() 1827 low = tmp + 1; in ocfs2_xa_bucket_add_entry() 1831 low = tmp; in ocfs2_xa_bucket_add_entry() 1836 if (low != count) in ocfs2_xa_bucket_add_entry() 1837 memmove(&xh->xh_entries[low + 1], in ocfs2_xa_bucket_add_entry() 1838 &xh->xh_entries[low], in ocfs2_xa_bucket_add_entry() 1839 ((count - low) * sizeof(struct ocfs2_xattr_entry))); in ocfs2_xa_bucket_add_entry() 1842 loc->xl_entry = &xh->xh_entries[low]; in ocfs2_xa_bucket_add_entry()
|
/fs/btrfs/ |
D | ctree.c | 1715 int low = 0; in generic_bin_search() local 1727 if (low > high) { in generic_bin_search() 1730 __func__, low, high, eb->start, in generic_bin_search() 1735 while (low < high) { in generic_bin_search() 1736 mid = (low + high) / 2; in generic_bin_search() 1765 low = mid + 1; in generic_bin_search() 1773 *slot = low; in generic_bin_search()
|
/fs/squashfs/ |
D | Kconfig | 18 embedded systems where low overhead is needed. Further information
|