Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 143) sorted by relevance

123456

/fs/yaffs2/
Dyaffs_qsort.c51 swapfunc(char *a, char *b, int n, int swaptype) in swapfunc()
59 #define yswap(a, b) do { \ argument
68 #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) argument
71 med3(char *a, char *b, char *c, int (*cmp)(const void *, const void *)) in med3()
79 #define min(a, b) (((a) < (b)) ? (a) : (b)) argument
Dyportenv.h26 #define MTD_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c)) argument
54 #define yaffs_strcat(a, b) strcat(a, b) argument
55 #define yaffs_strcpy(a, b) strcpy(a, b) argument
56 #define yaffs_strncpy(a, b, c) strncpy(a, b, c) argument
57 #define yaffs_strncmp(a, b, c) strncmp(a, b, c) argument
89 #define yaffs_strcmp(a, b) strcmp(a, b) argument
129 #define yaffs_strcat(a, b) strcat(a, b) argument
130 #define yaffs_strcpy(a, b) strcpy(a, b) argument
131 #define yaffs_strncpy(a, b, c) strncpy(a, b, c) argument
153 #define yaffs_strcmp(a, b) strcmp(a, b) argument
Dyaffs_ecc.c106 unsigned char b; in yaffs_ECCCalculate() local
259 unsigned char b; in yaffs_ECCCalculateOther() local
/fs/xfs/linux-2.6/
Dxfs_linux.h164 #define MIN(a,b) (min(a,b)) argument
165 #define MAX(a,b) (max(a,b)) argument
184 static inline __u32 xfs_do_div(void *a, __u32 b, int n) in xfs_do_div()
215 static inline __u32 xfs_do_mod(void *a, __u32 b, int n) in xfs_do_mod()
240 static inline __u32 xfs_do_div(void *a, __u32 b, int n) in xfs_do_div()
259 static inline __u32 xfs_do_mod(void *a, __u32 b, int n) in xfs_do_mod()
277 #define do_div(a, b) xfs_do_div(&(a), (b), sizeof(a)) argument
278 #define do_mod(a, b) xfs_do_mod(&(a), (b), sizeof(a)) argument
/fs/xfs/
Dxfs_rtalloc.h58 #define XFS_RTMIN(a,b) ((a) < (b) ? (a) : (b)) argument
59 #define XFS_RTMAX(a,b) ((a) > (b) ? (a) : (b)) argument
65 #define XFS_RTBLOCKLOG(b) xfs_highbit64(b) argument
67 #define XFS_RTBLOCKLOG(b) xfs_highbit32(b) argument
143 # define xfs_rtallocate_extent(t,b,min,max,l,a,f,p,rb) (ENOSYS) argument
144 # define xfs_rtfree_extent(t,b,l) (ENOSYS) argument
Dxfs_btree_trace.h86 #define XFS_BTREE_TRACE_ARGBI(c, b, i) \ argument
88 #define XFS_BTREE_TRACE_ARGBII(c, b, i, j) \ argument
90 #define XFS_BTREE_TRACE_ARGFFFI(c, o, b, i, j) \ argument
105 #define XFS_BTREE_TRACE_ARGBI(c, b, i) argument
106 #define XFS_BTREE_TRACE_ARGBII(c, b, i, j) argument
107 #define XFS_BTREE_TRACE_ARGFFFI(c, o, b, i, j) argument
Dxfs_btree.h245 xfs_bmbt_irec_t b; member
270 } b; member
469 #define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b)) argument
470 #define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b)) argument
471 #define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b)) argument
472 #define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b)) argument
473 #define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b)) argument
474 #define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b)) argument
475 #define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b)) argument
476 #define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b)) argument
Dxfs_arch.h59 static inline void be16_add_cpu(__be16 *a, __s16 b) in be16_add_cpu()
64 static inline void be32_add_cpu(__be32 *a, __s32 b) in be32_add_cpu()
69 static inline void be64_add_cpu(__be64 *a, __s64 b) in be64_add_cpu()
Dxfs_bmap.c772 #define MASK(b) (1 << (b)) in xfs_bmap_add_extent_delay_real() argument
773 #define MASK2(a,b) (MASK(a) | MASK(b)) in xfs_bmap_add_extent_delay_real() argument
774 #define MASK3(a,b,c) (MASK2(a,b) | MASK(c)) in xfs_bmap_add_extent_delay_real() argument
775 #define MASK4(a,b,c,d) (MASK3(a,b,c) | MASK(d)) in xfs_bmap_add_extent_delay_real() argument
776 #define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b))) in xfs_bmap_add_extent_delay_real() argument
777 #define STATE_TEST(b) (state & MASK(b)) in xfs_bmap_add_extent_delay_real() argument
778 #define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \ in xfs_bmap_add_extent_delay_real() argument
1329 #define MASK(b) (1 << (b)) in xfs_bmap_add_extent_unwritten_real() argument
1330 #define MASK2(a,b) (MASK(a) | MASK(b)) in xfs_bmap_add_extent_unwritten_real() argument
1331 #define MASK3(a,b,c) (MASK2(a,b) | MASK(c)) in xfs_bmap_add_extent_unwritten_real() argument
[all …]
Dxfs_trans_space.h27 #define XFS_NEXTENTADD_SPACE_RES(mp,b,w)\ argument
68 #define XFS_GROWFSRT_SPACE_RES(mp,b) \ argument
83 #define XFS_SYMLINK_SPACE_RES(mp,nl,b) \ argument
Dxfs_btree_trace.c52 struct xfs_buf *b, in xfs_btree_trace_argbi()
68 struct xfs_buf *b, in xfs_btree_trace_argbii()
87 xfs_dfsbno_t b, in xfs_btree_trace_argfffi()
Dxfs_ialloc.h43 xfs_make_iptr(struct xfs_mount *mp, struct xfs_buf *b, int o) in xfs_make_iptr()
/fs/ntfs/
Dmst.c42 int post_read_mst_fixup(NTFS_RECORD *b, const u32 size) in post_read_mst_fixup()
123 int pre_write_mst_fixup(NTFS_RECORD *b, const u32 size) in pre_write_mst_fixup()
179 void post_write_mst_fixup(NTFS_RECORD *b) in post_write_mst_fixup()
/fs/cifs/
Dmd4.c53 #define ROUND1(a,b,c,d,k,s) (*a) = lshift((*a) + F(*b,*c,*d) + X[k], s) argument
54 #define ROUND2(a,b,c,d,k,s) (*a) = lshift((*a) + G(*b,*c,*d) + X[k] + (__u32)0x5A827999,s) argument
55 #define ROUND3(a,b,c,d,k,s) (*a) = lshift((*a) + H(*b,*c,*d) + X[k] + (__u32)0x6ED9EBA1,s) argument
164 __u32 b = n * 8; in mdfour() local
/fs/jffs2/
Dsummary.h201 #define jffs2_sum_add_kvec(a,b,c,d) (0) argument
202 #define jffs2_sum_move_collected(a,b) argument
204 #define jffs2_sum_add_padding_mem(a,b) argument
205 #define jffs2_sum_add_inode_mem(a,b,c) argument
206 #define jffs2_sum_add_dirent_mem(a,b,c) argument
207 #define jffs2_sum_add_xattr_mem(a,b,c) argument
208 #define jffs2_sum_add_xref_mem(a,b,c) argument
209 #define jffs2_sum_scan_sumnode(a,b,c,d,e) (0) argument
/fs/jfs/
Djfs_dmap.h85 #define BLKTODMAP(b,s) \ argument
100 #define BLKTOL0(b,s) \ argument
115 #define BLKTOL1(b,s) \ argument
122 #define BLKTOCTL(b,s,l) \ argument
134 #define BLKTOAG(b,sbi) ((b) >> ((sbi)->bmap->db_agl2size)) argument
281 #define LITOL2BSZ(n,m,b) ((((n) == 0) ? (m) : cnttz((n))) + (b)) argument
284 #define BLKTOCTLLEAF(b,m) \ argument
/fs/ocfs2/
Dblockcheck.c63 unsigned int b, p = 0; in calc_code_bit() local
106 unsigned int i, b, p = 0; in ocfs2_hamming_encode() local
166 unsigned int i, b; in ocfs2_hamming_fix() local
/fs/xfs/quota/
Dxfs_dquot.h168 #define xfs_dqtrace_entry_ino(a,b,ip) \ argument
170 #define xfs_dqtrace_entry(a,b) \ argument
173 #define xfs_dqtrace_entry(a,b) argument
174 #define xfs_dqtrace_entry_ino(a,b,ip) argument
/fs/hpfs/
Dmap.c97 secno *b; in hpfs_load_bitmap_directory() local
221 int b = 0; in hpfs_map_dnode() local
Ddentry.c37 static int hpfs_compare_dentry(struct dentry *dentry, struct qstr *a, struct qstr *b) in hpfs_compare_dentry()
/fs/affs/
Dnamei.c92 __affs_compare_dentry(struct dentry *dentry, struct qstr *a, struct qstr *b, toupper_t toupper) in __affs_compare_dentry()
124 affs_compare_dentry(struct dentry *dentry, struct qstr *a, struct qstr *b) in affs_compare_dentry()
129 affs_intl_compare_dentry(struct dentry *dentry, struct qstr *a, struct qstr *b) in affs_intl_compare_dentry()
/fs/jbd/
Dcommit.c153 char b[BDEVNAME_SIZE]; in journal_write_commit_record() local
483 char b[BDEVNAME_SIZE]; in journal_commit_transaction() local
/fs/isofs/
Dinode.c212 struct qstr *b, int ms) in isofs_dentry_cmpi_common()
236 struct qstr *b, int ms) in isofs_dentry_cmp_common()
269 isofs_dentry_cmp(struct dentry *dentry,struct qstr *a,struct qstr *b) in isofs_dentry_cmp()
275 isofs_dentry_cmpi(struct dentry *dentry,struct qstr *a,struct qstr *b) in isofs_dentry_cmpi()
294 isofs_dentry_cmp_ms(struct dentry *dentry,struct qstr *a,struct qstr *b) in isofs_dentry_cmp_ms()
300 isofs_dentry_cmpi_ms(struct dentry *dentry,struct qstr *a,struct qstr *b) in isofs_dentry_cmpi_ms()
/fs/proc/
Dloadavg.c15 int a, b, c; in loadavg_proc_show() local
/fs/partitions/
Damiga.c36 char b[BDEVNAME_SIZE]; in amiga_partition() local

123456