Home
last modified time | relevance | path

Searched refs:op (Results 1 – 25 of 133) sorted by relevance

123456

/include/asm-generic/
A Datomic64.h21 #define ATOMIC64_OP(op) \ argument
22 extern void generic_atomic64_##op(s64 a, atomic64_t *v);
24 #define ATOMIC64_OP_RETURN(op) \ argument
25 extern s64 generic_atomic64_##op##_return(s64 a, atomic64_t *v);
27 #define ATOMIC64_FETCH_OP(op) \ argument
28 extern s64 generic_atomic64_fetch_##op(s64 a, atomic64_t *v);
30 #define ATOMIC64_OPS(op) ATOMIC64_OP(op) ATOMIC64_OP_RETURN(op) ATOMIC64_FETCH_OP(op) argument
36 #define ATOMIC64_OPS(op) ATOMIC64_OP(op) ATOMIC64_FETCH_OP(op) argument
A Datomic.h19 #define ATOMIC_OP(op, c_op) \ argument
20 static inline void generic_atomic_##op(int i, atomic_t *v) \
29 #define ATOMIC_OP_RETURN(op, c_op) \ argument
30 static inline int generic_atomic_##op##_return(int i, atomic_t *v) \
41 #define ATOMIC_FETCH_OP(op, c_op) \ argument
42 static inline int generic_atomic_fetch_##op(int i, atomic_t *v) \
57 #define ATOMIC_OP(op, c_op) \ argument
58 static inline void generic_atomic_##op(int i, atomic_t *v) \
67 #define ATOMIC_OP_RETURN(op, c_op) \ argument
80 #define ATOMIC_FETCH_OP(op, c_op) \ argument
[all …]
A Dfutex.h18 #define arch_futex_atomic_op_inuser(op, oparg, oval, uaddr) \ argument
19 futex_atomic_op_inuser_local(op, oparg, oval, uaddr)
38 futex_atomic_op_inuser_local(int op, u32 oparg, int *oval, u32 __user *uaddr) in futex_atomic_op_inuser_local() argument
52 switch (op) { in futex_atomic_op_inuser_local()
/include/linux/
A Datomic.h58 #define __atomic_op_acquire(op, args...) \ argument
60 typeof(op##_relaxed(args)) __ret = op##_relaxed(args); \
65 #define __atomic_op_release(op, args...) \ argument
68 op##_relaxed(args); \
71 #define __atomic_op_fence(op, args...) \ argument
73 typeof(op##_relaxed(args)) __ret; \
75 __ret = op##_relaxed(args); \
A Dfwnode.h187 #define fwnode_has_op(fwnode, op) \ argument
190 #define fwnode_call_int_op(fwnode, op, ...) \ argument
191 (fwnode_has_op(fwnode, op) ? \
194 #define fwnode_call_bool_op(fwnode, op, ...) \ argument
195 (fwnode_has_op(fwnode, op) ? \
198 #define fwnode_call_ptr_op(fwnode, op, ...) \ argument
199 (fwnode_has_op(fwnode, op) ? \
200 (fwnode)->ops->op(fwnode, ## __VA_ARGS__) : NULL)
201 #define fwnode_call_void_op(fwnode, op, ...) \ argument
203 if (fwnode_has_op(fwnode, op)) \
[all …]
A Dsysrq.h48 int register_sysrq_key(u8 key, const struct sysrq_key_op *op);
49 int unregister_sysrq_key(u8 key, const struct sysrq_key_op *op);
65 static inline int register_sysrq_key(u8 key, const struct sysrq_key_op *op) in register_sysrq_key() argument
70 static inline int unregister_sysrq_key(u8 key, const struct sysrq_key_op *op) in unregister_sysrq_key() argument
A Dminmax.h83 #define __cmp(op, x, y) ((x) __cmp_op_##op (y) ? (x) : (y)) argument
85 #define __cmp_once_unique(op, type, x, y, ux, uy) \ argument
88 #define __cmp_once(op, type, x, y) \ argument
91 #define __careful_cmp_once(op, x, y, ux, uy) ({ \ argument
94 #op"("#x", "#y") signedness error"); \
95 __cmp(op, ux, uy); })
97 #define __careful_cmp(op, x, y) \ argument
134 #op"3("#x", "#y", "#z") signedness error"); \
135 __cmp(op, ux, __cmp(op, uy, uz)); })
250 #define __minmax_array(op, array, len) ({ \ argument
[all …]
A Diopoll.h36 #define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \ argument
46 (val) = op(args); \
51 (val) = op(args); \
84 #define read_poll_timeout_atomic(op, val, cond, delay_us, timeout_us, \ argument
97 (val) = op(args); \
101 (val) = op(args); \
134 #define readx_poll_timeout(op, addr, val, cond, sleep_us, timeout_us) \ argument
135 read_poll_timeout(op, val, cond, sleep_us, timeout_us, false, addr)
154 #define readx_poll_timeout_atomic(op, addr, val, cond, delay_us, timeout_us) \ argument
155 read_poll_timeout_atomic(op, val, cond, delay_us, timeout_us, false, addr)
A Dblk_types.h446 static inline bool op_is_write(blk_opf_t op) in op_is_write() argument
448 return !!(op & (__force blk_opf_t)1); in op_is_write()
455 static inline bool op_is_flush(blk_opf_t op) in op_is_flush() argument
457 return op & (REQ_FUA | REQ_PREFLUSH); in op_is_flush()
465 static inline bool op_is_sync(blk_opf_t op) in op_is_sync() argument
467 return (op & REQ_OP_MASK) == REQ_OP_READ || in op_is_sync()
468 (op & (REQ_SYNC | REQ_FUA | REQ_PREFLUSH)); in op_is_sync()
473 return (op & REQ_OP_MASK) == REQ_OP_DISCARD; in op_is_discard()
484 switch (op & REQ_OP_MASK) { in op_is_zone_mgmt()
497 if (op_is_discard(op)) in op_stat_group()
[all …]
A Deventpoll.h60 int do_epoll_ctl(int epfd, int op, int fd, struct epoll_event *epds,
64 static inline int ep_op_has_event(int op) in ep_op_has_event() argument
66 return op != EPOLL_CTL_DEL; in ep_op_has_event()
A Dsignal.h131 #define _SIG_SET_BINOP(name, op) \ argument
140 r->sig[3] = op(a3, b3); \
141 r->sig[2] = op(a2, b2); \
145 r->sig[1] = op(a1, b1); \
149 r->sig[0] = op(a0, b0); \
170 #define _SIG_SET_OP(name, op) \ in _SIG_SET_BINOP() argument
174 case 4: set->sig[3] = op(set->sig[3]); \ in _SIG_SET_BINOP()
175 set->sig[2] = op(set->sig[2]); \ in _SIG_SET_BINOP()
177 case 2: set->sig[1] = op(set->sig[1]); \ in _SIG_SET_BINOP()
179 case 1: set->sig[0] = op(set->sig[0]); \ in _SIG_SET_BINOP()
/include/drm/
A Ddrm_gpuvm.h958 enum drm_gpuva_op_type op; member
1000 #define drm_gpuva_for_each_op(op, ops) list_for_each_entry(op, &(ops)->list, entry) argument
1053 #define drm_gpuva_prev_op(op) list_prev_entry(op, entry) argument
1059 #define drm_gpuva_next_op(op) list_next_entry(op, entry) argument
1082 drm_gpuva_init(va, op->va.addr, op->va.range, in drm_gpuva_init_from_op()
1083 op->gem.obj, op->gem.offset); in drm_gpuva_init_from_op()
1248 op->prev->va.addr + op->prev->va.range : in drm_gpuva_op_remap_to_unmap_range()
1249 op->unmap->va->va.addr; in drm_gpuva_op_remap_to_unmap_range()
1250 const u64 va_end = op->next ? in drm_gpuva_op_remap_to_unmap_range()
1251 op->next->va.addr : in drm_gpuva_op_remap_to_unmap_range()
[all …]
/include/trace/events/
A Dvsock_virtio_transport_common.h45 __u16 op,
54 op,
65 __field(__u16, op)
76 __entry->op = op;
85 show_op(__entry->op),
95 __u16 op,
105 op,
117 __field(__u16, op)
129 __entry->op = op;
140 show_op(__entry->op),
A Dafs.h664 __field(u32, op)
696 __field(int, op)
704 __entry->op = op;
1064 __entry->op = op;
1276 __entry->op = op->debug_id;
1380 __entry->op = op;
1747 __entry->op = op->debug_id;
1757 __entry->op,
1805 TP_ARGS(op, call),
1817 __entry->op = op->debug_id;
[all …]
A Dfsi_master_ast_cf.h11 TP_PROTO(const struct fsi_master_acf *master, uint32_t op),
12 TP_ARGS(master, op),
15 __field(uint32_t, op)
19 __entry->op = op;
22 __entry->master_idx, __entry->op
/include/linux/spi/
A Dspi-mem.h331 const struct spi_mem_op *op);
333 const struct spi_mem_op *op);
342 const struct spi_mem_op *op,
396 const struct spi_mem_op *op,
400 const struct spi_mem_op *op);
404 const struct spi_mem_op *op, in spi_controller_dma_map_mem_op_data() argument
412 const struct spi_mem_op *op, in spi_controller_dma_unmap_mem_op_data() argument
419 const struct spi_mem_op *op) in spi_mem_default_supports_op() argument
430 const struct spi_mem_op *op);
433 const struct spi_mem_op *op);
[all …]
/include/linux/ceph/
A Drados.h323 #define GENERATE_ENUM_ENTRY(op, opcode, str) CEPH_OSD_OP_##op = (opcode), argument
328 static inline int ceph_osd_op_type_lock(int op) in ceph_osd_op_type_lock() argument
332 static inline int ceph_osd_op_type_data(int op) in ceph_osd_op_type_data() argument
336 static inline int ceph_osd_op_type_attr(int op) in ceph_osd_op_type_attr() argument
344 static inline int ceph_osd_op_type_pg(int op) in ceph_osd_op_type_pg() argument
359 return (op & CEPH_OSD_OP_MODE_RD) && in ceph_osd_op_mode_read()
360 op != CEPH_OSD_OP_CALL; in ceph_osd_op_mode_read()
364 return op & CEPH_OSD_OP_MODE_WR; in ceph_osd_op_mode_modify()
377 extern const char *ceph_osd_op_name(int op);
491 __le16 op; /* CEPH_OSD_OP_* */ member
[all …]
/include/xen/arm/
A Dhypercall.h52 unsigned long HYPERVISOR_hvm_op(int op, void *arg);
60 static inline int HYPERVISOR_platform_op(struct xen_platform_op *op) in HYPERVISOR_platform_op() argument
62 op->interface_version = XENPF_INTERFACE_VERSION; in HYPERVISOR_platform_op()
63 return HYPERVISOR_platform_op_raw(op); in HYPERVISOR_platform_op()
/include/xen/
A Dhvm.h9 static const char *param_name(int op) in param_name() argument
31 if (op >= ARRAY_SIZE(names)) in param_name()
34 if (!names[op]) in param_name()
37 return names[op]; in param_name()
/include/crypto/
A Dengine.h31 struct crypto_engine_op op; member
36 struct crypto_engine_op op; member
41 struct crypto_engine_op op; member
46 struct crypto_engine_op op; member
51 struct crypto_engine_op op; member
/include/linux/mlx4/
A Dcmd.h270 u16 op, unsigned long timeout, int native);
274 u8 op_modifier, u16 op, unsigned long timeout, in mlx4_cmd() argument
278 op_modifier, op, timeout, native); in mlx4_cmd()
283 u32 in_modifier, u8 op_modifier, u16 op, in mlx4_cmd_box() argument
287 op_modifier, op, timeout, native); in mlx4_cmd_box()
296 u32 in_modifier, u8 op_modifier, u16 op, in mlx4_cmd_imm() argument
300 op_modifier, op, timeout, native); in mlx4_cmd_imm()
/include/uapi/linux/
A Dipc.h79 #define IPCCALL(version,op) ((version)<<16 | (op)) argument
A Drfkill.h96 __u8 op; member
119 __u8 op; member
/include/uapi/linux/netfilter/ipset/
A Dip_set.h270 __u8 op; member
276 __u8 op; member
290 unsigned int op; member
300 unsigned int op; member
308 unsigned int op; member
/include/media/drv-intf/
A Dexynos-fimc.h152 #define fimc_pipeline_call(ent, op, args...) \ argument
154 (((ent)->pipe->ops && (ent)->pipe->ops->op) ? \
155 (ent)->pipe->ops->op(((ent)->pipe), ##args) : -ENOIOCTLCMD)) \

Completed in 29 milliseconds

123456