Home
last modified time | relevance | path

Searched refs:spc (Results 1 – 25 of 28) sorted by relevance

12

/linux-3.4.99/arch/parisc/kernel/
Dentry.S53 .macro space_to_prot spc prot
54 depd,z \spc,62,31,\prot
57 .macro space_to_prot spc prot
58 extrd,u \spc,(64 - (SPACEID_SHIFT)),32,\prot
191 spc = r24 /* space for which the trap occurred */ define
201 mfctl %pcsq, spc
214 mfctl %pcsq, spc
232 mfctl %isr,spc
246 mfctl %isr,spc
264 mfctl %isr, spc
[all …]
/linux-3.4.99/drivers/tty/vt/
Dselection.c161 int sel_mode, new_sel_start, new_sel_end, spc; in set_selection() local
222 spc = isspace(sel_pos(ps)); in set_selection()
225 if ((spc && !isspace(sel_pos(ps))) || in set_selection()
226 (!spc && !inword(sel_pos(ps)))) in set_selection()
232 spc = isspace(sel_pos(pe)); in set_selection()
235 if ((spc && !isspace(sel_pos(pe))) || in set_selection()
236 (!spc && !inword(sel_pos(pe)))) in set_selection()
/linux-3.4.99/sound/soc/codecs/
Dcs42l73.c34 u8 spc, mmcc, spfs; member
985 u8 spc, mmcc; in cs42l73_set_dai_fmt() local
987 spc = snd_soc_read(codec, CS42L73_SPC(id)); in cs42l73_set_dai_fmt()
1008 spc &= ~SPDIF_PCM; in cs42l73_set_dai_fmt()
1022 spc |= SPDIF_PCM; in cs42l73_set_dai_fmt()
1028 if (spc & SPDIF_PCM) { in cs42l73_set_dai_fmt()
1030 spc &= ~(PCM_MODE_MASK | PCM_BIT_ORDER); in cs42l73_set_dai_fmt()
1034 spc |= PCM_MODE0; in cs42l73_set_dai_fmt()
1036 spc |= PCM_MODE1; in cs42l73_set_dai_fmt()
1040 spc |= PCM_MODE1; in cs42l73_set_dai_fmt()
[all …]
/linux-3.4.99/drivers/net/ethernet/mellanox/mlx4/
Den_tx.c532 int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - sizeof *inl; in build_inline_wqe() local
534 if (skb->len <= spc) { in build_inline_wqe()
542 inl->byte_count = cpu_to_be32(1 << 31 | spc); in build_inline_wqe()
543 if (skb_headlen(skb) <= spc) { in build_inline_wqe()
545 if (skb_headlen(skb) < spc) { in build_inline_wqe()
547 fragptr, spc - skb_headlen(skb)); in build_inline_wqe()
548 fragptr += spc - skb_headlen(skb); in build_inline_wqe()
550 inl = (void *) (inl + 1) + spc; in build_inline_wqe()
551 memcpy(((void *)(inl + 1)), fragptr, skb->len - spc); in build_inline_wqe()
553 skb_copy_from_linear_data(skb, inl + 1, spc); in build_inline_wqe()
[all …]
/linux-3.4.99/net/sctp/
Dulpevent.c268 struct sctp_paddr_change *spc; in sctp_ulpevent_make_peer_addr_change() local
277 spc = (struct sctp_paddr_change *) in sctp_ulpevent_make_peer_addr_change()
287 spc->spc_type = SCTP_PEER_ADDR_CHANGE; in sctp_ulpevent_make_peer_addr_change()
297 spc->spc_length = sizeof(struct sctp_paddr_change); in sctp_ulpevent_make_peer_addr_change()
305 spc->spc_flags = 0; in sctp_ulpevent_make_peer_addr_change()
315 spc->spc_state = state; in sctp_ulpevent_make_peer_addr_change()
326 spc->spc_error = error; in sctp_ulpevent_make_peer_addr_change()
338 spc->spc_assoc_id = sctp_assoc2id(asoc); in sctp_ulpevent_make_peer_addr_change()
348 memcpy(&spc->spc_aaddr, aaddr, sizeof(struct sockaddr_storage)); in sctp_ulpevent_make_peer_addr_change()
353 (union sctp_addr *)&spc->spc_aaddr); in sctp_ulpevent_make_peer_addr_change()
/linux-3.4.99/block/partitions/
Dsun.c59 unsigned long spc; in sun_partition() local
100 spc = be16_to_cpu(label->ntrks) * be16_to_cpu(label->nsect); in sun_partition()
105 st_sector = be32_to_cpu(p->start_cylinder) * spc; in sun_partition()
/linux-3.4.99/arch/cris/arch-v32/kernel/
Dsignal.c156 unsigned long oldspc = regs->spc; in sys_sigreturn()
205 unsigned long oldspc = regs->spc; in sys_rt_sigreturn()
610 user_regs(ti)->spc = 0; in ugdb_trap_user()
637 regs->spc = oldspc; in keep_debug_flags()
645 } else if (regs->spc) { in keep_debug_flags()
649 regs->spc = 0; in keep_debug_flags()
Dptrace.c319 unsigned long spc = get_reg(child, PT_SPC); in get_pseudo_pc() local
322 if (spc) { in get_pseudo_pc()
326 pc = spc; in get_pseudo_pc()
Dkgdb.c227 unsigned int spc; /* 0x71; P15, Single step PC */ member
1060 if (reg.spc) { in register_fixup()
1062 reg.pc = reg.spc; in register_fixup()
1112 reg.spc = 0; in register_fixup()
1434 reg.spc = 0; in handle_exception()
1458 reg.spc = reg.pc; in handle_exception()
Dentry.S235 move [$sp+], $spc
397 move $spc, [$sp]
426 move [$sp+], $spc
/linux-3.4.99/fs/ubifs/
Dlprops.c481 int ubifs_calc_dark(const struct ubifs_info *c, int spc) in ubifs_calc_dark() argument
483 ubifs_assert(!(spc & 7)); in ubifs_calc_dark()
485 if (spc < c->dark_wm) in ubifs_calc_dark()
486 return spc; in ubifs_calc_dark()
493 if (spc - c->dark_wm < MIN_WRITE_SZ) in ubifs_calc_dark()
494 return spc - MIN_WRITE_SZ; in ubifs_calc_dark()
1230 int spc = free + dirty; in scan_check_cb() local
1232 if (spc < c->dead_wm) in scan_check_cb()
1233 lst->total_dead += spc; in scan_check_cb()
1235 lst->total_dark += ubifs_calc_dark(c, spc); in scan_check_cb()
Ddebug.c712 int i, spc, dark = 0, dead = 0; in dbg_dump_lprop() local
716 spc = lp->free + lp->dirty; in dbg_dump_lprop()
717 if (spc < c->dead_wm) in dbg_dump_lprop()
718 dead = spc; in dbg_dump_lprop()
720 dark = ubifs_calc_dark(c, spc); in dbg_dump_lprop()
725 lp->dirty, c->leb_size - spc, spc, lp->flags); in dbg_dump_lprop()
730 c->leb_size - spc, spc, dark, dead, in dbg_dump_lprop()
731 (int)(spc / UBIFS_MAX_NODE_SZ), lp->flags); in dbg_dump_lprop()
/linux-3.4.99/arch/sh/kernel/cpu/sh3/
Dentry.S212 ! - restore spc, pr*, ssr, gbr, mach, macl, skip default tra
242 ldc.l @r15+, spc
317 stc spc, k1
325 ldc k0, spc ! PC = saved r0 + r15 - 2
Dswsusp.S103 ldc r1, spc ! setup pc value for resuming
/linux-3.4.99/arch/cris/include/arch-v32/arch/
Duser.h38 unsigned long spc; /* P15, Single step PC. */ member
Dptrace.h76 unsigned long spc; member
Delf.h73 pr_reg[31] = regs->spc; /* SPC */ \
/linux-3.4.99/arch/sh/include/asm/
Dsuspend.h71 unsigned long spc; member
/linux-3.4.99/arch/sh/kernel/
Drelocate_kernel.S43 stc.l spc, @-r15
128 ldc.l @r15+, spc
Dasm-offsets.c43 DEFINE(SH_SLEEP_SPC, offsetof(struct sh_sleep_data, spc)); in main()
/linux-3.4.99/arch/sh/kernel/cpu/sh5/
Dentry.S601 getcon spc, r6
617 ! construct spc
620 putcon r18, spc
1319 putcon r0, spc
1337 putcon r0, spc
1377 putcon r36, spc
1386 putcon r37, spc
1426 putcon r36, spc
1435 putcon r37, spc
/linux-3.4.99/drivers/infiniband/hw/mlx4/
Dqp.c1361 int spc; in build_mlx_header() local
1481 spc = MLX4_INLINE_ALIGN - in build_mlx_header()
1483 if (header_size <= spc) { in build_mlx_header()
1488 inl->byte_count = cpu_to_be32(1 << 31 | spc); in build_mlx_header()
1489 memcpy(inl + 1, sqp->header_buf, spc); in build_mlx_header()
1491 inl = (void *) (inl + 1) + spc; in build_mlx_header()
1492 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc); in build_mlx_header()
1507 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc)); in build_mlx_header()
/linux-3.4.99/net/xfrm/
Dxfrm_user.c917 struct xfrmu_spdinfo spc; in build_spdinfo() local
929 spc.incnt = si.incnt; in build_spdinfo()
930 spc.outcnt = si.outcnt; in build_spdinfo()
931 spc.fwdcnt = si.fwdcnt; in build_spdinfo()
932 spc.inscnt = si.inscnt; in build_spdinfo()
933 spc.outscnt = si.outscnt; in build_spdinfo()
934 spc.fwdscnt = si.fwdscnt; in build_spdinfo()
938 NLA_PUT(skb, XFRMA_SPD_INFO, sizeof(spc), &spc); in build_spdinfo()
/linux-3.4.99/arch/cris/arch-v32/mm/
Dmmu.S24 move $spc, [$sp]
/linux-3.4.99/arch/sh/kernel/cpu/shmobile/
Dsleep.S268 ldc r0, spc

12