Searched refs:be64_to_cpu (Results 1 - 25 of 75) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/quota/
H A Dxfs_dquot.c210 (void *)(__psint_t)be64_to_cpu(dqp->q_core.d_bcount),
211 (void *)(__psint_t)be64_to_cpu(dqp->q_core.d_icount),
212 (void *)(__psint_t)be64_to_cpu(dqp->q_core.d_blk_hardlimit),
213 (void *)(__psint_t)be64_to_cpu(dqp->q_core.d_blk_softlimit),
214 (void *)(__psint_t)be64_to_cpu(dqp->q_core.d_ino_hardlimit),
215 (void *)(__psint_t)be64_to_cpu(dqp->q_core.d_ino_softlimit),
276 ASSERT(be64_to_cpu(d->d_blk_softlimit) <=
277 be64_to_cpu(d->d_blk_hardlimit));
279 ASSERT(be64_to_cpu(d->d_ino_softlimit) <=
280 be64_to_cpu(
[all...]
H A Dxfs_trans_dquot.c412 ASSERT(be64_to_cpu(d->d_bcount) >=
416 ASSERT(be64_to_cpu(d->d_rtbcount) >=
420 ASSERT(be64_to_cpu(d->d_icount) >=
514 be64_to_cpu(dqp->q_core.d_bcount));
516 be64_to_cpu(dqp->q_core.d_icount));
518 be64_to_cpu(dqp->q_core.d_rtbcount));
632 hardlimit = be64_to_cpu(dqp->q_core.d_blk_hardlimit);
635 softlimit = be64_to_cpu(dqp->q_core.d_blk_softlimit);
644 hardlimit = be64_to_cpu(dqp->q_core.d_rtb_hardlimit);
647 softlimit = be64_to_cpu(dq
[all...]
H A Dxfs_qm_bhv.c219 be64_to_cpu(dp->d_blk_softlimit) :
220 be64_to_cpu(dp->d_blk_hardlimit);
224 (statp->f_blocks > be64_to_cpu(dp->d_bcount)) ?
225 (statp->f_blocks - be64_to_cpu(dp->d_bcount)) : 0;
229 be64_to_cpu(dp->d_ino_softlimit) :
230 be64_to_cpu(dp->d_ino_hardlimit);
234 (statp->f_files > be64_to_cpu(dp->d_icount)) ?
235 (statp->f_ffree - be64_to_cpu(dp->d_icount)) : 0;
H A Dxfs_qm_syscalls.c637 be64_to_cpu(ddq->d_blk_hardlimit);
640 be64_to_cpu(ddq->d_blk_softlimit);
653 be64_to_cpu(ddq->d_rtb_hardlimit);
656 be64_to_cpu(ddq->d_rtb_softlimit);
670 be64_to_cpu(ddq->d_ino_hardlimit);
673 be64_to_cpu(ddq->d_ino_softlimit);
887 XFS_FSB_TO_BB(mp, be64_to_cpu(src->d_blk_hardlimit));
889 XFS_FSB_TO_BB(mp, be64_to_cpu(src->d_blk_softlimit));
890 dst->d_ino_hardlimit = be64_to_cpu(src->d_ino_hardlimit);
891 dst->d_ino_softlimit = be64_to_cpu(sr
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A Dondisk.c28 no->no_formal_ino = be64_to_cpu(str->no_formal_ino);
29 no->no_addr = be64_to_cpu(str->no_addr);
77 ri->ri_addr = be64_to_cpu(str->ri_addr);
79 ri->ri_data0 = be64_to_cpu(str->ri_data0);
103 rg->rg_igeneration = be64_to_cpu(str->rg_igeneration);
122 qu->qu_limit = be64_to_cpu(str->qu_limit);
123 qu->qu_warn = be64_to_cpu(str->qu_warn);
124 qu->qu_value = be64_to_cpu(str->qu_value);
190 lh->lh_sequence = be64_to_cpu(str->lh_sequence);
201 ir->ir_start = be64_to_cpu(st
[all...]
H A Dinode.c147 if (ip->i_num.no_addr != be64_to_cpu(str->di_num.no_addr)) {
152 if (ip->i_num.no_formal_ino != be64_to_cpu(str->di_num.no_formal_ino))
173 di->di_size = be64_to_cpu(str->di_size);
175 di->di_blocks = be64_to_cpu(str->di_blocks);
177 ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
179 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
181 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
184 di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
185 di->di_goal_data = be64_to_cpu(str->di_goal_data);
186 di->di_generation = be64_to_cpu(st
[all...]
H A Dquota.c542 x = be64_to_cpu(qc->qc_change) + change;
623 value = (s64)be64_to_cpu(*ptr) + change;
862 else if ((s64)be64_to_cpu(qd->qd_qb.qb_value) >=
863 (s64)be64_to_cpu(qd->qd_qb.qb_limit))
868 value += (s64)be64_to_cpu(qd->qd_qb.qb_value);
869 if (value < (s64)be64_to_cpu(qd->qd_qb.qb_limit))
945 value = (s64)be64_to_cpu(qd->qd_qb.qb_value);
950 if (be64_to_cpu(qd->qd_qb.qb_limit) && (s64)be64_to_cpu(qd->qd_qb.qb_limit) < value) {
954 } else if (be64_to_cpu(q
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ehca/
H A Dehca_mcast.c82 subnet_prefix = be64_to_cpu(my_gid.global.subnet_prefix);
83 interface_id = be64_to_cpu(my_gid.global.interface_id);
119 subnet_prefix = be64_to_cpu(my_gid.global.subnet_prefix);
120 interface_id = be64_to_cpu(my_gid.global.interface_id);
H A Dipz_pt_fn.h270 return be64_to_cpu(qpt->qpts[0]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/boot/
H A Dflatdevtree_env.h24 #define be64_to_cpu(x) (x) macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/dlm/
H A Ddlmdebug.c93 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
94 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
108 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
109 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
123 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
124 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
H A Ddlmconvert.c289 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
290 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
488 dlm_get_lock_cookie_node(be64_to_cpu(cnv->cookie)),
489 dlm_get_lock_cookie_seq(be64_to_cpu(cnv->cookie)));
H A Ddlmast.c290 cookie = be64_to_cpu(past->cookie);
355 if (be64_to_cpu(lock->ml.cookie) == cookie)
367 if (be64_to_cpu(lock->ml.cookie) == cookie)
H A Ddlmunlock.c251 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
252 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
510 dlm_get_lock_cookie_node(be64_to_cpu(unlock->cookie)),
511 dlm_get_lock_cookie_seq(be64_to_cpu(unlock->cookie)));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/cxgb3/
H A Dcxio_dbg.c113 uint size = (uint)(be64_to_cpu(*data) & 0xff);
119 (unsigned long long) be64_to_cpu(*data));
132 (unsigned long long) be64_to_cpu(*data));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ufs/
H A Dswab.h31 return be64_to_cpu((__force __be64)n);
49 return *n = cpu_to_be64(be64_to_cpu(*n)+d);
58 return *n = cpu_to_be64(be64_to_cpu(*n)-d);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/drivers/
H A Dcow.h14 # define ntohll(x) be64_to_cpu(x)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/byteorder/
H A Dgeneric.h98 #define be64_to_cpu __be64_to_cpu macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/mtd/
H A Dcfi_endian.h45 #define cfi64_to_cpu(x) be64_to_cpu(x)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_btree.c164 ASSERT(be64_to_cpu(k1->br_startoff) < be64_to_cpu(k2->br_startoff));
203 (be64_to_cpu(block->bb_leftsib) == NULLDFSBNO ||
204 XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_leftsib))) &&
206 (be64_to_cpu(block->bb_rightsib) == NULLDFSBNO ||
207 XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_rightsib)));
668 return be64_to_cpu(block->bb_u.l.bb_rightsib) == NULLDFSBNO;
881 if ((lr & XFS_BTCUR_LEFTRA) && be64_to_cpu(b->bb_leftsib) != NULLDFSBNO) {
882 xfs_btree_reada_bufl(cur->bc_mp, be64_to_cpu(b->bb_leftsib), 1);
885 if ((lr & XFS_BTCUR_RIGHTRA) && be64_to_cpu(
[all...]
H A Dxfs_arch.h49 #define be64_to_cpu(val) ((__uint64_t)(val)) macro
56 #define be64_to_cpu(val) (__swab64((__be64)(val))) macro
185 *a = cpu_to_be64(be64_to_cpu(*a) + b);
H A Dxfs_ialloc_btree.h85 ((be64_to_cpu((rp)->ir_free) & XFS_INOBT_MASK(i)) != 0)
H A Dxfs_bmap_btree.c246 o = be64_to_cpu(k->br_startoff);
444 rbno = be64_to_cpu(block->bb_rightsib);
445 lbno = be64_to_cpu(block->bb_leftsib);
489 bno = be64_to_cpu(right->bb_leftsib);
545 bno = be64_to_cpu(left->bb_rightsib);
639 if (be64_to_cpu(left->bb_rightsib) != NULLDFSBNO) {
641 be64_to_cpu(left->bb_rightsib),
924 ASSERT(be64_to_cpu(cblock->bb_leftsib) == NULLDFSBNO);
925 ASSERT(be64_to_cpu(cblock->bb_rightsib) == NULLDFSBNO);
1126 startoff = be64_to_cpu(kk
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dgf128mul.c127 u64 a = be64_to_cpu(x->a);
128 u64 b = be64_to_cpu(x->b);
137 u64 a = be64_to_cpu(x->a);
138 u64 b = be64_to_cpu(x->b);
147 u64 a = be64_to_cpu(x->a);
148 u64 b = be64_to_cpu(x->b);
157 u64 a = be64_to_cpu(x->a);
158 u64 b = be64_to_cpu(x->b);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/befs/
H A Dendian.h20 return be64_to_cpu((__force __be64)n);

Completed in 121 milliseconds

123