/linux-3.4.99/arch/powerpc/platforms/cell/spufs/ |
D | switch.c | 97 struct spu_problem __iomem *prob = spu->problem; in check_spu_isolate() local 108 return (in_be32(&prob->spu_status_R) & isolate_state) ? 1 : 0; in check_spu_isolate() 217 struct spu_problem __iomem *prob = spu->problem; in save_spu_runcntl() local 223 csa->prob.spu_runcntl_RW = in_be32(&prob->spu_runcntl_RW); in save_spu_runcntl() 236 struct spu_problem __iomem *prob = spu->problem; in save_spu_status() local 241 if ((in_be32(&prob->spu_status_R) & SPU_STATUS_RUNNING) == 0) { in save_spu_status() 242 csa->prob.spu_status_R = in_be32(&prob->spu_status_R); in save_spu_status() 246 out_be32(&prob->spu_runcntl_RW, SPU_RUNCNTL_STOP); in save_spu_status() 248 POLL_WHILE_TRUE(in_be32(&prob->spu_status_R) & in save_spu_status() 253 if ((in_be32(&prob->spu_status_R) & stopped) == 0) in save_spu_status() [all …]
|
D | backing_ops.c | 68 mbox_stat = ctx->csa.prob.mb_stat_R; in spu_backing_mbox_read() 74 *data = ctx->csa.prob.pu_mb_R; in spu_backing_mbox_read() 75 ctx->csa.prob.mb_stat_R &= ~(0x0000ff); in spu_backing_mbox_read() 86 return ctx->csa.prob.mb_stat_R; in spu_backing_mbox_stat_read() 97 stat = ctx->csa.prob.mb_stat_R; in spu_backing_mbox_stat_poll() 133 if (ctx->csa.prob.mb_stat_R & 0xff0000) { in spu_backing_ibox_read() 139 ctx->csa.prob.mb_stat_R &= ~(0xff0000); in spu_backing_ibox_read() 157 if ((ctx->csa.prob.mb_stat_R) & 0x00ff00) { in spu_backing_wbox_write() 159 int avail = (ctx->csa.prob.mb_stat_R & 0x00ff00) >> 8; in spu_backing_wbox_write() 168 ctx->csa.prob.mb_stat_R &= ~(0x00ff00); in spu_backing_wbox_write() [all …]
|
D | hw_ops.c | 40 struct spu_problem __iomem *prob = spu->problem; in spu_hw_mbox_read() local 45 mbox_stat = in_be32(&prob->mb_stat_R); in spu_hw_mbox_read() 47 *data = in_be32(&prob->pu_mb_R); in spu_hw_mbox_read() 99 struct spu_problem __iomem *prob = spu->problem; in spu_hw_ibox_read() local 104 if (in_be32(&prob->mb_stat_R) & 0xff0000) { in spu_hw_ibox_read() 120 struct spu_problem __iomem *prob = spu->problem; in spu_hw_wbox_write() local 124 if (in_be32(&prob->mb_stat_R) & 0x00ff00) { in spu_hw_wbox_write() 126 out_be32(&prob->spu_mb_W, data); in spu_hw_wbox_write() 263 struct spu_problem __iomem *prob = ctx->spu->problem; in spu_hw_set_mfc_query() local 268 if (in_be32(&prob->dma_querytype_RW)) in spu_hw_set_mfc_query() [all …]
|
D | file.c | 2092 if (!(ctx->csa.prob.mb_stat_R & 0x0000ff)) in __spufs_mbox_info_read() 2095 data = ctx->csa.prob.pu_mb_R; in __spufs_mbox_info_read() 2132 if (!(ctx->csa.prob.mb_stat_R & 0xff0000)) in __spufs_ibox_info_read() 2173 wbox_stat = ctx->csa.prob.mb_stat_R; in __spufs_wbox_info_read() 2275 info.proxydma_info_type = ctx->csa.prob.dma_querytype_RW; in __spufs_proxydma_info_read() 2276 info.proxydma_info_mask = ctx->csa.prob.dma_querymask_RW; in __spufs_proxydma_info_read() 2277 info.proxydma_info_status = ctx->csa.prob.dma_tagstatus_R; in __spufs_proxydma_info_read()
|
/linux-3.4.99/lib/ |
D | decompress_unlzma.c | 349 int pos_state, uint16_t *prob, in process_bit0() argument 352 rc_update_bit_0(rc, prob); in process_bit0() 353 prob = (p + LZMA_LITERAL + in process_bit0() 367 prob_lit = prob + 0x100 + bit + mi; in process_bit0() 378 uint16_t *prob_lit = prob + mi; in process_bit0() 393 int pos_state, uint16_t *prob) { in process_bit1() argument 399 rc_update_bit_1(rc, prob); in process_bit1() 400 prob = p + LZMA_IS_REP + cst->state; in process_bit1() 401 if (rc_is_bit_0(rc, prob)) { in process_bit1() 402 rc_update_bit_0(rc, prob); in process_bit1() [all …]
|
/linux-3.4.99/net/mac80211/ |
D | rc80211_minstrel_debugfs.c | 62 unsigned int i, tp, prob, eprob; in minstrel_stats_open() local 83 prob = mr->cur_prob / 18; in minstrel_stats_open() 90 prob / 10, prob % 10, in minstrel_stats_open()
|
D | rc80211_minstrel_ht_debugfs.c | 24 unsigned int i, j, tp, prob, eprob; in minstrel_ht_stats_open() local 71 prob = MINSTREL_TRUNC(mr->cur_prob * 1000); in minstrel_ht_stats_open() 78 prob / 10, prob % 10, in minstrel_ht_stats_open()
|
/linux-3.4.99/lib/xz/ |
D | xz_dec_lzma2.c | 497 static __always_inline int rc_bit(struct rc_dec *rc, uint16_t *prob) in rc_bit() argument 503 bound = (rc->range >> RC_BIT_MODEL_TOTAL_BITS) * *prob; in rc_bit() 506 *prob += (RC_BIT_MODEL_TOTAL - *prob) >> RC_MOVE_BITS; in rc_bit() 511 *prob -= *prob >> RC_MOVE_BITS; in rc_bit()
|
/linux-3.4.99/net/sched/ |
D | sch_sfb.c | 204 u32 qlen = 0, prob = 0, totalpm = 0; in sfb_compute_qlen() local 211 if (prob < b->p_mark) in sfb_compute_qlen() 212 prob = b->p_mark; in sfb_compute_qlen() 215 *prob_r = prob; in sfb_compute_qlen()
|
/linux-3.4.99/arch/powerpc/include/asm/ |
D | spu_csa.h | 250 struct spu_problem_collapsed prob; member
|
/linux-3.4.99/net/tipc/ |
D | link.h | 244 void tipc_link_send_proto_msg(struct tipc_link *l_ptr, u32 msg_typ, int prob,
|
/linux-3.4.99/Documentation/networking/ |
D | batman-adv.txt | 39 If an interface does not have the "batman_adv" subfolder it prob-
|