Home
last modified time | relevance | path

Searched refs:sptr (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/drivers/net/wireless/ath/ath6kl/
H A Ddebug.c1085 char *sptr, *token; in ath6kl_regwrite_write() local
1094 sptr = buf; in ath6kl_regwrite_write()
1096 token = strsep(&sptr, "="); in ath6kl_regwrite_write()
1106 if (kstrtou32(sptr, 0, &reg_val)) in ath6kl_regwrite_write()
1400 char *sptr, *token; in ath6kl_create_qos_write() local
1413 sptr = buf; in ath6kl_create_qos_write()
1415 token = strsep(&sptr, " "); in ath6kl_create_qos_write()
1421 token = strsep(&sptr, " "); in ath6kl_create_qos_write()
1427 token = strsep(&sptr, " "); in ath6kl_create_qos_write()
1433 token = strsep(&sptr, " "); in ath6kl_create_qos_write()
[all …]
/openbmc/linux/net/ipv4/
H A Dip_options.c80 unsigned char *sptr, *dptr; in __ip_options_echo() local
89 sptr = skb_network_header(skb); in __ip_options_echo()
93 optlen = sptr[sopt->rr+1]; in __ip_options_echo()
94 soffset = sptr[sopt->rr+2]; in __ip_options_echo()
96 memcpy(dptr, sptr+sopt->rr, optlen); in __ip_options_echo()
107 optlen = sptr[sopt->ts+1]; in __ip_options_echo()
108 soffset = sptr[sopt->ts+2]; in __ip_options_echo()
110 memcpy(dptr, sptr+sopt->ts, optlen); in __ip_options_echo()
144 unsigned char *start = sptr+sopt->srr; in __ip_options_echo()
176 optlen = sptr[sopt->cipso+1]; in __ip_options_echo()
[all …]
/openbmc/u-boot/arch/x86/lib/
H A Dscu.c26 u32 sptr; member
120 int outlen, u32 dptr, u32 sptr) in scu_ipc_raw_command() argument
138 writel(sptr, &scu->regs->sptr); in scu_ipc_raw_command()
/openbmc/linux/net/9p/
H A Dprotocol.c305 char **sptr = va_arg(ap, char **); in p9pdu_vreadf() local
313 *sptr = kmalloc(len + 1, GFP_NOFS); in p9pdu_vreadf()
314 if (*sptr == NULL) { in p9pdu_vreadf()
318 if (pdu_read(pdu, *sptr, len)) { in p9pdu_vreadf()
320 kfree(*sptr); in p9pdu_vreadf()
321 *sptr = NULL; in p9pdu_vreadf()
323 (*sptr)[len] = 0; in p9pdu_vreadf()
559 const char *sptr = va_arg(ap, const char *); in p9pdu_vwritef() local
561 if (sptr) in p9pdu_vwritef()
562 len = min_t(size_t, strlen(sptr), in p9pdu_vwritef()
[all …]
/openbmc/qemu/hw/char/
H A Dsh_serial.c59 uint8_t sptr; member
187 s->sptr = val & 0xf3; in sh_serial_write()
203 s->sptr = val & 0x8f; in sh_serial_write()
285 ret = s->sptr; in sh_serial_read()
305 ret = s->sptr; in sh_serial_read()
403 s->sptr = 0; in sh_serial_reset()
/openbmc/linux/drivers/video/fbdev/matrox/
H A Dg450_pll.c264 unsigned int *sptr; in g450_findworkingpll() local
268 sptr = sarray; in g450_findworkingpll()
271 *sptr++ = mnp - 8; in g450_findworkingpll()
274 *sptr++ = mnp + 8; in g450_findworkingpll()
276 *sptr = mnp; in g450_findworkingpll()
278 while (sptr >= sarray) { in g450_findworkingpll()
279 unsigned int mnp = *sptr--; in g450_findworkingpll()
/openbmc/linux/drivers/s390/char/
H A Dtape_core.c867 unsigned int *sptr; in tape_dump_sense_dbf() local
877 sptr = (unsigned int *) irb->ecw; in tape_dump_sense_dbf()
878 DBF_EVENT(3, "%08x %08x\n", sptr[0], sptr[1]); in tape_dump_sense_dbf()
879 DBF_EVENT(3, "%08x %08x\n", sptr[2], sptr[3]); in tape_dump_sense_dbf()
880 DBF_EVENT(3, "%08x %08x\n", sptr[4], sptr[5]); in tape_dump_sense_dbf()
881 DBF_EVENT(3, "%08x %08x\n", sptr[6], sptr[7]); in tape_dump_sense_dbf()
/openbmc/u-boot/arch/x86/include/asm/
H A Dscu.h29 int outlen, u32 dptr, u32 sptr);
/openbmc/u-boot/board/congatec/cgtqmx6eval/
H A Dcgtqmx6eval.c974 unsigned char *sptr = src; in conv_ascii() local
978 if (*sptr) { in conv_ascii()
979 *dptr = *sptr; in conv_ascii()
982 sptr++; in conv_ascii()
/openbmc/linux/arch/arc/kernel/
H A Dunwind.c922 unsigned long *sptr = (unsigned long *)UNW_SP(frame); in arc_unwind() local
924 for (i = 0; i < 20; i++, sptr++) in arc_unwind()
925 unw_debug("0x%p: 0x%lx\n", sptr, *sptr); in arc_unwind()
/openbmc/linux/drivers/net/hippi/
H A Drrunner.c1477 u32 localctrl, sptr, len, tmp; in rr_load_firmware() local
1547 sptr = rr_read_eeprom_word(rrpriv, eptr); in rr_load_firmware()
1556 dev->name, i, sptr, len, segptr); in rr_load_firmware()
1560 writel(sptr, &regs->WinBase); in rr_load_firmware()
1565 sptr += 4; in rr_load_firmware()
/openbmc/linux/net/core/
H A Dsock.c2057 void *sptr = nsk->sk_security; in sock_copy() local
2075 nsk->sk_security = sptr; in sock_copy()