Searched defs:data (Results 101 - 125 of 851) sorted by relevance

1234567891011>>

/arch/s390/crypto/
H A Dsha_common.c21 int s390_sha_update(struct shash_desc *desc, const u8 *data, unsigned int len) argument
37 memcpy(ctx->buf + index, data, bsize - index);
40 data += bsize - index;
47 ret = crypt_s390_kimd(ctx->func, ctx->state, data,
50 data += ret;
55 memcpy(ctx->buf + index , data, len);
/arch/s390/include/asm/
H A Dsmp.h36 static inline void smp_call_ipl_cpu(void (*func)(void *), void *data) argument
38 func(data);
41 static inline void smp_call_online_cpu(void (*func)(void *), void *data) argument
43 func(data);
H A Dtimer.h27 unsigned long data; member in struct:vtimer_list
/arch/s390/kernel/
H A Djump_label.c45 static int __sm_arch_jump_label_transform(void *data) argument
47 struct insn_args *args = data;
/arch/sh/boards/mach-se/7343/
H A Dirq.c21 static void disable_se7343_irq(struct irq_data *data) argument
23 unsigned int bit = (unsigned int)irq_data_get_irq_chip_data(data);
27 static void enable_se7343_irq(struct irq_data *data) argument
29 unsigned int bit = (unsigned int)irq_data_get_irq_chip_data(data);
/arch/sh/boards/mach-se/7722/
H A Dirq.c21 static void disable_se7722_irq(struct irq_data *data) argument
23 unsigned int bit = (unsigned int)irq_data_get_irq_chip_data(data);
27 static void enable_se7722_irq(struct irq_data *data) argument
29 unsigned int bit = (unsigned int)irq_data_get_irq_chip_data(data);
/arch/sh/cchips/hd6446x/
H A Dhd64461.c20 static void hd64461_mask_irq(struct irq_data *data) argument
22 unsigned int irq = data->irq;
31 static void hd64461_unmask_irq(struct irq_data *data) argument
33 unsigned int irq = data->irq;
42 static void hd64461_mask_and_ack_irq(struct irq_data *data) argument
44 hd64461_mask_irq(data);
47 if (data->irq == HD64461_IRQBASE + 13)
/arch/sh/drivers/pci/
H A Dops-sh4.c30 u32 data; local
38 data = pci_read_reg(chan, SH4_PCIPDR);
43 *val = (data >> ((where & 3) << 3)) & 0xff;
46 *val = (data >> ((where & 2) << 3)) & 0xffff;
49 *val = data;
69 u32 data; local
73 data = pci_read_reg(chan, SH4_PCIPDR);
79 data &= ~(0xff << shift);
80 data |= ((val & 0xff) << shift);
84 data
[all...]
/arch/sh/kernel/cpu/irq/
H A Dimask.c53 static void mask_imask_irq(struct irq_data *data) argument
55 unsigned int irq = data->irq;
63 static void unmask_imask_irq(struct irq_data *data) argument
65 unsigned int irq = data->irq;
H A Dipr.c27 static inline struct ipr_desc *get_ipr_desc(struct irq_data *data) argument
29 struct irq_chip *chip = irq_data_get_irq_chip(data);
33 static void disable_ipr_irq(struct irq_data *data) argument
35 struct ipr_data *p = irq_data_get_irq_chip_data(data);
36 unsigned long addr = get_ipr_desc(data)->ipr_offsets[p->ipr_idx];
42 static void enable_ipr_irq(struct irq_data *data) argument
44 struct ipr_data *p = irq_data_get_irq_chip_data(data);
45 unsigned long addr = get_ipr_desc(data)->ipr_offsets[p->ipr_idx];
/arch/sh/kernel/
H A Dnmi_debug.c24 unsigned long val, void *data)
26 struct die_args *args = data;
23 nmi_debug_notify(struct notifier_block *self, unsigned long val, void *data) argument
H A Dstacktrace.c20 static int save_stack_stack(void *data, char *name) argument
28 static void save_stack_address(void *data, unsigned long addr, int reliable) argument
30 struct stack_trace *trace = data;
60 save_stack_address_nosched(void *data, unsigned long addr, int reliable) argument
62 struct stack_trace *trace = (struct stack_trace *)data;
/arch/sh/lib/
H A Dio.c19 u32 *data; local
21 for (data = datap; (len != 0) && (((u32)data & 0x1f) != 0); len--)
22 *data++ = __raw_readl(addr);
54 : "=&r" (data), "=&r" (len),
57 : "r"(addr), "0" (data), "1" (len)
62 *data++ = __raw_readl(addr);
66 void __raw_writesl(void __iomem *addr, const void *data, int len) argument
77 : "=&r" (data), "=&r" (tmp1)
78 : "0" (data), "
[all...]
/arch/sh/mm/
H A Dcache-sh2.c31 unsigned long data = __raw_readl(addr | (way << 12)); local
32 if ((data & CACHE_PHYSADDR_MASK) == (v & CACHE_PHYSADDR_MASK)) {
33 data &= ~SH_CACHE_UPDATED;
34 __raw_writel(data, addr | (way << 12));
H A Dcache-sh3.c48 unsigned long data, addr, p; local
53 data = __raw_readl(addr);
55 if ((data & CACHE_PHYSADDR_MASK) ==
57 data &= ~SH_CACHE_UPDATED;
58 __raw_writel(data, addr);
84 unsigned long data, addr; local
86 data = (v & 0xfffffc00); /* _Virtual_ address, ~U, ~V */
89 __raw_writel(data, addr);
H A Dtlb-sh3.c59 unsigned long addr, data; local
69 data = (page & 0xfffe0000) | asid; /* VALID bit is off */
77 __raw_writel(data, addr + (i << 8));
H A Dtlb-sh4.c68 unsigned long addr, data; local
77 data = page | asid; /* VALID bit is off */
79 __raw_writel(data, addr);
/arch/sh/oprofile/
H A Dbacktrace.c6 * Author: Dave Peverley <dpeverley@mpc-data.co.uk>
26 static int backtrace_stack(void *data, char *name) argument
32 static void backtrace_address(void *data, unsigned long addr, int reliable) argument
34 unsigned int *depth = data;
/arch/sparc/mm/
H A Dinit_64.h27 unsigned long data; member in struct:linux_prom_translation
/arch/sparc/oprofile/
H A Dinit.c23 unsigned long val, void *data)
25 struct die_args *args = data;
22 profile_timer_exceptions_notify(struct notifier_block *self, unsigned long val, void *data) argument
/arch/um/drivers/
H A Dchan.h27 void *data; member in struct:chan
H A Dxterm_kern.c20 static irqreturn_t xterm_interrupt(int irq, void *data) argument
22 struct xterm_wait *xterm = data;
37 struct xterm_wait *data; local
40 data = kmalloc(sizeof(*data), GFP_KERNEL);
41 if (data == NULL) {
47 *data = ((struct xterm_wait) { .fd = socket,
50 init_completion(&data->ready);
54 "xterm", data);
66 wait_for_completion(&data
[all...]
/arch/um/include/shared/
H A Daio.h12 void *data; member in struct:aio_thread_reply
/arch/um/kernel/
H A Dexec.c23 void *data = NULL; local
28 ret = unmap(&current->mm->context.id, 0, STUB_START, 0, &data);
30 host_task_size - STUB_END, 1, &data);
/arch/um/sys-ppc/
H A Dptrace.c11 int poke_user(struct task_struct *child, long addr, long data) argument
17 return putreg(child, addr, data);
24 child->thread.arch.debugregs[addr] = data;
38 int peek_user(struct task_struct *child, long addr, long data) argument
56 return put_user(tmp, (unsigned long *) data);

Completed in 195 milliseconds

1234567891011>>