Searched refs:func (Results 1 - 25 of 1898) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/bpf/progs/
H A Dsample_ret0.c4 int func() function
H A Dexhandler_kern.c23 void *func; local
28 /* To verify we hit an exception we dereference task->task_works->func.
31 * - task->task_works->func is non-NULL also (the callback function
36 * NULL and func is NULL.
39 func = work->func;
47 barrier_var(func);
48 if (func)
/linux-master/drivers/gpu/drm/i915/
H A Dintel_step.h26 #define STEP_NAME_LIST(func) \
27 func(A0) \
28 func(A1) \
29 func(A2) \
30 func(A3) \
31 func(B0) \
32 func(B1) \
33 func(B2) \
34 func(B3) \
35 func(C
[all...]
H A Dintel_device_info.h138 #define DEV_INFO_FOR_EACH_FLAG(func) \
139 func(is_mobile); \
140 func(is_lp); \
141 func(require_force_probe); \
142 func(is_dgfx); \
144 func(has_64bit_reloc); \
145 func(has_64k_pages); \
146 func(gpu_reset_clobbers_display); \
147 func(has_reset_engine); \
148 func(has_3d_pipelin
[all...]
/linux-master/drivers/gpu/drm/xe/
H A Dxe_step_types.h20 #define STEP_NAME_LIST(func) \
21 func(A0) \
22 func(A1) \
23 func(A2) \
24 func(A3) \
25 func(B0) \
26 func(B1) \
27 func(B2) \
28 func(B3) \
29 func(C
[all...]
/linux-master/drivers/gpu/drm/nouveau/include/nvif/
H A Dparent.h11 } *func; member in struct:nvif_parent
17 parent->func = NULL;
21 nvif_parent_ctor(const struct nvif_parent_func *func, struct nvif_parent *parent) argument
23 parent->func = func;
/linux-master/include/trace/events/
H A Dinitcall.h29 TP_PROTO(initcall_t func),
31 TP_ARGS(func),
38 __field_struct(initcall_t, func)
42 __entry->func = func;
45 TP_printk("func=%pS", __entry->func)
50 TP_PROTO(initcall_t func, int ret),
52 TP_ARGS(func, ret),
59 __field_struct(initcall_t, func)
[all...]
H A Dcsd.h14 smp_call_func_t func,
17 TP_ARGS(cpu, callsite, func, csd),
22 __field(void *, func)
29 __entry->func = func;
33 TP_printk("cpu=%u callsite=%pS func=%ps csd=%p",
34 __entry->cpu, __entry->callsite, __entry->func, __entry->csd)
42 TP_PROTO(smp_call_func_t func, call_single_data_t *csd),
44 TP_ARGS(func, csd),
47 __field(void *, func)
[all...]
/linux-master/include/linux/
H A Dvirtio_anchor.h11 static inline void virtio_set_mem_acc_cb(bool (*func)(struct virtio_device *))
13 virtio_check_mem_acc_cb = func;
16 #define virtio_set_mem_acc_cb(func) do { } while (0)
H A Dmin_heap.h36 const struct min_heap_callbacks *func)
40 void *root = data + pos * func->elem_size;
47 left = data + (i * 2 + 1) * func->elem_size;
48 right = data + (i * 2 + 2) * func->elem_size;
49 i = func->less(left, right) ? i * 2 + 1 : i * 2 + 2;
57 while (i != pos && func->less(root, data + i * func->elem_size))
64 func->swp(data + i * func->elem_size, data + j * func
35 min_heapify(struct min_heap *heap, int pos, const struct min_heap_callbacks *func) argument
70 min_heapify_all(struct min_heap *heap, const struct min_heap_callbacks *func) argument
81 min_heap_pop(struct min_heap *heap, const struct min_heap_callbacks *func) argument
101 min_heap_pop_push(struct min_heap *heap, const void *element, const struct min_heap_callbacks *func) argument
111 min_heap_push(struct min_heap *heap, const void *element, const struct min_heap_callbacks *func) argument
[all...]
/linux-master/tools/include/nolibc/
H A Dcrt.h32 void (* const *func)(void);
69 for (func = __preinit_array_start; func < __preinit_array_end; func++)
70 (*func)();
71 for (func = __init_array_start; func < __init_array_end; func++)
72 (*func)();
77 for (func
[all...]
/linux-master/drivers/mmc/core/
H A Dsdio_bus.c36 struct sdio_func *func; \
38 func = dev_to_sdio_func (dev); \
43 sdio_config_attr(class, "0x%02x\n", func->class);
44 sdio_config_attr(vendor, "0x%04x\n", func->vendor);
45 sdio_config_attr(device, "0x%04x\n", func->device);
46 sdio_config_attr(revision, "%u.%u\n", func->major_rev, func->minor_rev);
47 sdio_config_attr(modalias, "sdio:c%02Xv%04Xd%04X\n", func->class, func->vendor, func
81 sdio_match_one(struct sdio_func *func, const struct sdio_device_id *id) argument
93 sdio_match_device(struct sdio_func *func, struct sdio_driver *sdrv) argument
113 struct sdio_func *func = dev_to_sdio_func(dev); local
125 const struct sdio_func *func = dev_to_sdio_func(dev); local
156 struct sdio_func *func = dev_to_sdio_func(dev); local
210 struct sdio_func *func = dev_to_sdio_func(dev); local
292 struct sdio_func *func = dev_to_sdio_func(dev); local
313 struct sdio_func *func; local
347 sdio_acpi_set_handle(struct sdio_func *func) argument
355 sdio_acpi_set_handle(struct sdio_func *func) argument
358 sdio_set_of_node(struct sdio_func *func) argument
368 sdio_add_func(struct sdio_func *func) argument
390 sdio_remove_func(struct sdio_func *func) argument
[all...]
H A Dsdio_io.c22 * @func: SDIO function that will be accessed
27 void sdio_claim_host(struct sdio_func *func) argument
29 if (WARN_ON(!func))
32 mmc_claim_host(func->card->host);
38 * @func: SDIO function that was accessed
43 void sdio_release_host(struct sdio_func *func) argument
45 if (WARN_ON(!func))
48 mmc_release_host(func->card->host);
54 * @func: SDIO function to enable
59 int sdio_enable_func(struct sdio_func *func) argument
110 sdio_disable_func(struct sdio_func *func) argument
159 sdio_set_block_size(struct sdio_func *func, unsigned blksz) argument
189 sdio_max_byte_size(struct sdio_func *func) argument
233 sdio_align_size(struct sdio_func *func, unsigned int sz) argument
315 sdio_io_rw_ext_helper(struct sdio_func *func, int write, unsigned addr, int incr_addr, u8 *buf, unsigned size) argument
380 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret) argument
412 sdio_writeb(struct sdio_func *func, u8 b, unsigned int addr, int *err_ret) argument
441 sdio_writeb_readb(struct sdio_func *func, u8 write_byte, unsigned int addr, int *err_ret) argument
468 sdio_memcpy_fromio(struct sdio_func *func, void *dst, unsigned int addr, int count) argument
485 sdio_memcpy_toio(struct sdio_func *func, unsigned int addr, void *src, int count) argument
502 sdio_readsb(struct sdio_func *func, void *dst, unsigned int addr, int count) argument
519 sdio_writesb(struct sdio_func *func, unsigned int addr, void *src, int count) argument
536 sdio_readw(struct sdio_func *func, unsigned int addr, int *err_ret) argument
561 sdio_writew(struct sdio_func *func, u16 b, unsigned int addr, int *err_ret) argument
584 sdio_readl(struct sdio_func *func, unsigned int addr, int *err_ret) argument
609 sdio_writel(struct sdio_func *func, u32 b, unsigned int addr, int *err_ret) argument
631 sdio_f0_readb(struct sdio_func *func, unsigned int addr, int *err_ret) argument
667 sdio_f0_writeb(struct sdio_func *func, unsigned char b, unsigned int addr, int *err_ret) argument
700 sdio_get_host_pm_caps(struct sdio_func *func) argument
722 sdio_set_host_pm_flags(struct sdio_func *func, mmc_pm_flag_t flags) argument
759 sdio_retune_crc_disable(struct sdio_func *func) argument
771 sdio_retune_crc_enable(struct sdio_func *func) argument
794 sdio_retune_hold_now(struct sdio_func *func) argument
810 sdio_retune_release(struct sdio_func *func) argument
[all...]
/linux-master/arch/s390/kernel/vdso32/
H A Dvdso_user_wrapper.S7 .macro vdso_syscall func,syscall
8 .globl __kernel_compat_\func
9 .type __kernel_compat_\func,@function
11 __kernel_compat_\func:
17 .size __kernel_compat_\func,.-__kernel_compat_\func
/linux-master/arch/sparc/include/asm/
H A Dmemctrl.h7 int register_dimm_printer(dimm_printer_t func);
8 void unregister_dimm_printer(dimm_printer_t func);
/linux-master/include/dt-bindings/pinctrl/
H A Dapple.h9 #define APPLE_PINMUX(pin, func) ((pin) | ((func) << 16))
/linux-master/scripts/dtc/include-prefixes/dt-bindings/pinctrl/
H A Dapple.h9 #define APPLE_PINMUX(pin, func) ((pin) | ((func) << 16))
/linux-master/arch/x86/include/asm/
H A Didtentry.h22 * @func: Function name of the entry point
25 * - The ASM entry point: asm_##func
26 * - The XEN PV trap entry point: xen_##func (maybe unused)
34 #define DECLARE_IDTENTRY(vector, func) \
35 asmlinkage void asm_##func(void); \
36 asmlinkage void xen_asm_##func(void); \
37 void fred_##func(struct pt_regs *regs); \
38 __visible void func(struct pt_regs *regs)
42 * @func: Function name of the entry point
44 * @func i
[all...]
H A Dirq_stack.h67 * - func:
81 #define call_on_stack(stack, func, asm_call, argconstr...) \
96 : [__func] "i" (func), [tos] "r" (tos) argconstr \
118 #define call_on_irqstack(func, asm_call, argconstr...) \
120 func, asm_call, argconstr)
123 #define assert_function_type(func, proto) \
124 static_assert(__builtin_types_compatible_p(typeof(&func), proto))
132 #define call_on_irqstack_cond(func, regs, asm_call, constr, c_args...) \
140 func(c_args); \
150 call_on_irqstack(func, asm_cal
[all...]
/linux-master/drivers/net/wireless/ti/wl1251/
H A Dsdio.c23 struct sdio_func *func; member in struct:wl1251_sdio
30 return wl_sdio->func;
33 static void wl1251_sdio_interrupt(struct sdio_func *func) argument
35 struct wl1251 *wl = sdio_get_drvdata(func);
54 struct sdio_func *func = wl_to_func(wl); local
56 sdio_claim_host(func);
57 ret = sdio_memcpy_fromio(func, buf, addr, len);
60 sdio_release_host(func);
67 struct sdio_func *func = wl_to_func(wl); local
69 sdio_claim_host(func);
80 struct sdio_func *func = wl_sdio->func; local
100 struct sdio_func *func = wl_sdio->func; local
118 struct sdio_func *func = wl_to_func(wl); local
127 struct sdio_func *func = wl_to_func(wl); local
156 struct sdio_func *func = wl_to_func(wl); local
192 wl1251_sdio_probe(struct sdio_func *func, const struct sdio_device_id *id) argument
281 wl1251_sdio_remove(struct sdio_func *func) argument
[all...]
/linux-master/kernel/bpf/
H A Dbpf_lsm.c33 #define LSM_HOOK(RET, DEFAULT, NAME, ...) BTF_ID(func, bpf_lsm_##NAME)
45 BTF_ID(func, bpf_lsm_sk_alloc_security)
46 BTF_ID(func, bpf_lsm_sk_free_security)
54 BTF_ID(func, bpf_lsm_sock_graft)
55 BTF_ID(func, bpf_lsm_inet_csk_clone)
56 BTF_ID(func, bpf_lsm_inet_conn_established)
66 BTF_ID(func, bpf_lsm_socket_post_create)
67 BTF_ID(func, bpf_lsm_socket_socketpair)
130 .func = bpf_bprm_opts_set,
151 .func
[all...]
/linux-master/drivers/net/wireless/broadcom/b43/
H A Dsdio.c49 static void b43_sdio_interrupt_dispatcher(struct sdio_func *func) argument
51 struct b43_sdio *sdio = sdio_get_drvdata(func);
57 sdio_release_host(func);
59 sdio_claim_host(func);
66 struct sdio_func *func = bus->host_sdio; local
67 struct b43_sdio *sdio = sdio_get_drvdata(func);
72 sdio_claim_host(func);
73 err = sdio_claim_irq(func, b43_sdio_interrupt_dispatcher);
74 sdio_release_host(func);
82 struct sdio_func *func local
92 b43_sdio_probe(struct sdio_func *func, const struct sdio_device_id *id) argument
170 b43_sdio_remove(struct sdio_func *func) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dbase.c32 if (gr && gr->func->ctxsw.inst)
33 return gr->func->ctxsw.inst(gr);
41 if (gr && gr->func->ctxsw.resume)
42 return gr->func->ctxsw.resume(gr);
50 if (gr && gr->func->ctxsw.pause)
51 return gr->func->ctxsw.pause(gr);
59 if (gr->func->chsw_load)
60 return gr->func->chsw_load(gr);
68 if (gr->func->tile)
69 gr->func
204 nvkm_gr_ctor(const struct nvkm_gr_func *func, struct nvkm_device *device, enum nvkm_subdev_type type, int inst, bool enable, struct nvkm_gr *gr) argument
[all...]
/linux-master/drivers/pinctrl/renesas/
H A Dpinctrl-rza1.c83 u8 func: 4; member in struct:rza1_bidir_pin
101 u16 func: 4; member in struct:rza1_swio_pin
126 { .pin = 0, .func = 1 },
127 { .pin = 1, .func = 1 },
128 { .pin = 2, .func = 1 },
129 { .pin = 3, .func = 1 },
130 { .pin = 4, .func = 1 },
131 { .pin = 5, .func = 1 },
132 { .pin = 6, .func = 1 },
133 { .pin = 7, .func
502 rza1_pinmux_get_bidir(unsigned int port, unsigned int pin, unsigned int func, const struct rza1_bidir_entry *table) argument
520 rza1_pinmux_get_swio(unsigned int port, unsigned int pin, unsigned int func, const struct rza1_swio_entry *table) argument
542 rza1_pinmux_get_flags(unsigned int port, unsigned int pin, unsigned int func, struct rza1_pinctrl *rza1_pctl) argument
1121 struct function_desc *func; local
[all...]
/linux-master/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_vf.h34 #define FM10K_VF_MSG_MSIX_HANDLER(func) \
35 FM10K_MSG_HANDLER(FM10K_VF_MSG_ID_MSIX, NULL, func)
39 #define FM10K_VF_MSG_MAC_VLAN_HANDLER(func) \
41 fm10k_mac_vlan_msg_attr, func)
46 #define FM10K_VF_MSG_LPORT_STATE_HANDLER(func) \
48 fm10k_lport_state_msg_attr, func)

Completed in 351 milliseconds

1234567891011>>