op                 42 arch/x86/include/asm/cmpxchg.h #define __xchg_op(ptr, arg, op, lock)					\
op                 47 arch/x86/include/asm/cmpxchg.h 			asm volatile (lock #op "b %b0, %1\n"		\
op                 52 arch/x86/include/asm/cmpxchg.h 			asm volatile (lock #op "w %w0, %1\n"		\
op                 57 arch/x86/include/asm/cmpxchg.h 			asm volatile (lock #op "l %0, %1\n"		\
op                 62 arch/x86/include/asm/cmpxchg.h 			asm volatile (lock #op "q %q0, %1\n"		\
op                 67 arch/x86/include/asm/cmpxchg.h 			__ ## op ## _wrong_size();			\
op                 46 arch/x86/include/asm/futex.h 	int op = (encoded_op >> 28) & 7;
op                 60 arch/x86/include/asm/futex.h 	switch (op) {
op                366 arch/x86/include/asm/paravirt_types.h #define paravirt_type(op)				\
op                367 arch/x86/include/asm/paravirt_types.h 	[paravirt_typenum] "i" (PARAVIRT_PATCH(op)),	\
op                368 arch/x86/include/asm/paravirt_types.h 	[paravirt_opptr] "i" (&(op))
op                534 arch/x86/include/asm/paravirt_types.h #define PVOP_TEST_NULL(op)	BUG_ON(op == NULL)
op                536 arch/x86/include/asm/paravirt_types.h #define PVOP_TEST_NULL(op)	((void)op)
op                539 arch/x86/include/asm/paravirt_types.h #define ____PVOP_CALL(rettype, op, clbr, call_clbr, extra_clbr,		\
op                544 arch/x86/include/asm/paravirt_types.h 		PVOP_TEST_NULL(op);					\
op                552 arch/x86/include/asm/paravirt_types.h 				     : paravirt_type(op),		\
op                562 arch/x86/include/asm/paravirt_types.h 				     : paravirt_type(op),		\
op                571 arch/x86/include/asm/paravirt_types.h #define __PVOP_CALL(rettype, op, pre, post, ...)			\
op                572 arch/x86/include/asm/paravirt_types.h 	____PVOP_CALL(rettype, op, CLBR_ANY, PVOP_CALL_CLOBBERS,	\
op                575 arch/x86/include/asm/paravirt_types.h #define __PVOP_CALLEESAVE(rettype, op, pre, post, ...)			\
op                576 arch/x86/include/asm/paravirt_types.h 	____PVOP_CALL(rettype, op.func, CLBR_RET_REG,			\
op                581 arch/x86/include/asm/paravirt_types.h #define ____PVOP_VCALL(op, clbr, call_clbr, extra_clbr, pre, post, ...)	\
op                584 arch/x86/include/asm/paravirt_types.h 		PVOP_TEST_NULL(op);					\
op                589 arch/x86/include/asm/paravirt_types.h 			     : paravirt_type(op),			\
op                595 arch/x86/include/asm/paravirt_types.h #define __PVOP_VCALL(op, pre, post, ...)				\
op                596 arch/x86/include/asm/paravirt_types.h 	____PVOP_VCALL(op, CLBR_ANY, PVOP_VCALL_CLOBBERS,		\
op                600 arch/x86/include/asm/paravirt_types.h #define __PVOP_VCALLEESAVE(op, pre, post, ...)				\
op                601 arch/x86/include/asm/paravirt_types.h 	____PVOP_VCALL(op.func, CLBR_RET_REG,				\
op                607 arch/x86/include/asm/paravirt_types.h #define PVOP_CALL0(rettype, op)						\
op                608 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALL(rettype, op, "", "")
op                609 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALL0(op)							\
op                610 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALL(op, "", "")
op                612 arch/x86/include/asm/paravirt_types.h #define PVOP_CALLEE0(rettype, op)					\
op                613 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALLEESAVE(rettype, op, "", "")
op                614 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALLEE0(op)						\
op                615 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALLEESAVE(op, "", "")
op                618 arch/x86/include/asm/paravirt_types.h #define PVOP_CALL1(rettype, op, arg1)					\
op                619 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1))
op                620 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALL1(op, arg1)						\
op                621 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1))
op                623 arch/x86/include/asm/paravirt_types.h #define PVOP_CALLEE1(rettype, op, arg1)					\
op                624 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALLEESAVE(rettype, op, "", "", PVOP_CALL_ARG1(arg1))
op                625 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALLEE1(op, arg1)						\
op                626 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALLEESAVE(op, "", "", PVOP_CALL_ARG1(arg1))
op                629 arch/x86/include/asm/paravirt_types.h #define PVOP_CALL2(rettype, op, arg1, arg2)				\
op                630 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1),		\
op                632 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALL2(op, arg1, arg2)					\
op                633 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1),			\
op                636 arch/x86/include/asm/paravirt_types.h #define PVOP_CALLEE2(rettype, op, arg1, arg2)				\
op                637 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALLEESAVE(rettype, op, "", "", PVOP_CALL_ARG1(arg1),	\
op                639 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALLEE2(op, arg1, arg2)					\
op                640 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALLEESAVE(op, "", "", PVOP_CALL_ARG1(arg1),		\
op                644 arch/x86/include/asm/paravirt_types.h #define PVOP_CALL3(rettype, op, arg1, arg2, arg3)			\
op                645 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1),		\
op                647 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALL3(op, arg1, arg2, arg3)				\
op                648 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1),			\
op                653 arch/x86/include/asm/paravirt_types.h #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4)			\
op                654 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALL(rettype, op,					\
op                658 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALL4(op, arg1, arg2, arg3, arg4)				\
op                659 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALL(op,						\
op                664 arch/x86/include/asm/paravirt_types.h #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4)			\
op                665 arch/x86/include/asm/paravirt_types.h 	__PVOP_CALL(rettype, op, "", "",				\
op                668 arch/x86/include/asm/paravirt_types.h #define PVOP_VCALL4(op, arg1, arg2, arg3, arg4)				\
op                669 arch/x86/include/asm/paravirt_types.h 	__PVOP_VCALL(op, "", "",					\
op                 89 arch/x86/include/asm/percpu.h #define percpu_to_op(op, var, val)			\
op                 99 arch/x86/include/asm/percpu.h 		asm(op "b %1,"__percpu_arg(0)		\
op                104 arch/x86/include/asm/percpu.h 		asm(op "w %1,"__percpu_arg(0)		\
op                109 arch/x86/include/asm/percpu.h 		asm(op "l %1,"__percpu_arg(0)		\
op                114 arch/x86/include/asm/percpu.h 		asm(op "q %1,"__percpu_arg(0)		\
op                182 arch/x86/include/asm/percpu.h #define percpu_from_op(op, var, constraint)		\
op                187 arch/x86/include/asm/percpu.h 		asm(op "b "__percpu_arg(1)",%0"		\
op                192 arch/x86/include/asm/percpu.h 		asm(op "w "__percpu_arg(1)",%0"		\
op                197 arch/x86/include/asm/percpu.h 		asm(op "l "__percpu_arg(1)",%0"		\
op                202 arch/x86/include/asm/percpu.h 		asm(op "q "__percpu_arg(1)",%0"		\
op                211 arch/x86/include/asm/percpu.h #define percpu_unary_op(op, var)			\
op                215 arch/x86/include/asm/percpu.h 		asm(op "b "__percpu_arg(0)		\
op                219 arch/x86/include/asm/percpu.h 		asm(op "w "__percpu_arg(0)		\
op                223 arch/x86/include/asm/percpu.h 		asm(op "l "__percpu_arg(0)		\
op                227 arch/x86/include/asm/percpu.h 		asm(op "q "__percpu_arg(0)		\
op                629 arch/x86/include/asm/processor.h static inline void cpuid(unsigned int op,
op                633 arch/x86/include/asm/processor.h 	*eax = op;
op                639 arch/x86/include/asm/processor.h static inline void cpuid_count(unsigned int op, int count,
op                643 arch/x86/include/asm/processor.h 	*eax = op;
op                651 arch/x86/include/asm/processor.h static inline unsigned int cpuid_eax(unsigned int op)
op                655 arch/x86/include/asm/processor.h 	cpuid(op, &eax, &ebx, &ecx, &edx);
op                660 arch/x86/include/asm/processor.h static inline unsigned int cpuid_ebx(unsigned int op)
op                664 arch/x86/include/asm/processor.h 	cpuid(op, &eax, &ebx, &ecx, &edx);
op                669 arch/x86/include/asm/processor.h static inline unsigned int cpuid_ecx(unsigned int op)
op                673 arch/x86/include/asm/processor.h 	cpuid(op, &eax, &ebx, &ecx, &edx);
op                678 arch/x86/include/asm/processor.h static inline unsigned int cpuid_edx(unsigned int op)
op                682 arch/x86/include/asm/processor.h 	cpuid(op, &eax, &ebx, &ecx, &edx);
op                 16 arch/x86/include/asm/rmwcc.h #define GEN_UNARY_RMWcc(op, var, arg0, cc) 				\
op                 17 arch/x86/include/asm/rmwcc.h 	__GEN_RMWcc(op " " arg0, var, cc)
op                 19 arch/x86/include/asm/rmwcc.h #define GEN_BINARY_RMWcc(op, var, vcon, val, arg0, cc)			\
op                 20 arch/x86/include/asm/rmwcc.h 	__GEN_RMWcc(op " %1, " arg0, var, cc, vcon (val))
op                 33 arch/x86/include/asm/rmwcc.h #define GEN_UNARY_RMWcc(op, var, arg0, cc)				\
op                 34 arch/x86/include/asm/rmwcc.h 	__GEN_RMWcc(op " " arg0, var, cc)
op                 36 arch/x86/include/asm/rmwcc.h #define GEN_BINARY_RMWcc(op, var, vcon, val, arg0, cc)			\
op                 37 arch/x86/include/asm/rmwcc.h 	__GEN_RMWcc(op " %2, " arg0, var, cc, vcon (val))
op                238 arch/x86/include/asm/xen/hypercall.h HYPERVISOR_mmuext_op(struct mmuext_op *op, int count,
op                241 arch/x86/include/asm/xen/hypercall.h 	return _hypercall4(int, mmuext_op, op, count, success_count, domid);
op                450 arch/x86/include/asm/xen/hypercall.h HYPERVISOR_nmi_op(unsigned long op, unsigned long arg)
op                452 arch/x86/include/asm/xen/hypercall.h 	return _hypercall2(int, nmi_op, op, arg);
op                456 arch/x86/include/asm/xen/hypercall.h HYPERVISOR_hvm_op(int op, void *arg)
op                458 arch/x86/include/asm/xen/hypercall.h        return _hypercall2(unsigned long, hvm_op, op, arg);
op                463 arch/x86/include/asm/xen/hypercall.h 	struct tmem_op *op)
op                465 arch/x86/include/asm/xen/hypercall.h 	return _hypercall1(int, tmem_op, op);
op                471 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_fpu_taskswitch;
op                481 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_update_va_mapping;
op                499 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_grant_table_op;
op                512 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_update_va_mapping_otherdomain;
op                532 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_update_descriptor;
op                549 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_memory_op;
op                560 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_mmu_update;
op                570 arch/x86/include/asm/xen/hypercall.h MULTI_mmuext_op(struct multicall_entry *mcl, struct mmuext_op *op, int count,
op                573 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_mmuext_op;
op                574 arch/x86/include/asm/xen/hypercall.h 	mcl->args[0] = (unsigned long)op;
op                585 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_set_gdt;
op                596 arch/x86/include/asm/xen/hypercall.h 	mcl->op = __HYPERVISOR_stack_switch;
op                 63 arch/x86/include/asm/xor.h #define BLK64(pf, op, i)				\
op                 65 arch/x86/include/asm/xor.h 		op(i, 0)				\
op                 66 arch/x86/include/asm/xor.h 			op(i + 1, 1)			\
op                 67 arch/x86/include/asm/xor.h 				op(i + 2, 2)		\
op                 68 arch/x86/include/asm/xor.h 					op(i + 3, 3)
op                 67 arch/x86/include/uapi/asm/kvm_para.h 	__u32 op;
op                 42 include/asm-generic/atomic.h #define ATOMIC_OP(op, c_op)						\
op                 43 include/asm-generic/atomic.h static inline void atomic_##op(int i, atomic_t *v)			\
op                 52 include/asm-generic/atomic.h #define ATOMIC_OP_RETURN(op, c_op)					\
op                 53 include/asm-generic/atomic.h static inline int atomic_##op##_return(int i, atomic_t *v)		\
op                 68 include/asm-generic/atomic.h #define ATOMIC_OP(op, c_op)						\
op                 69 include/asm-generic/atomic.h static inline void atomic_##op(int i, atomic_t *v)			\
op                 78 include/asm-generic/atomic.h #define ATOMIC_OP_RETURN(op, c_op)					\
op                 79 include/asm-generic/atomic.h static inline int atomic_##op##_return(int i, atomic_t *v)		\
op                 24 include/asm-generic/atomic64.h #define ATOMIC64_OP(op)							\
op                 25 include/asm-generic/atomic64.h extern void	 atomic64_##op(long long a, atomic64_t *v);
op                 27 include/asm-generic/atomic64.h #define ATOMIC64_OP_RETURN(op)						\
op                 28 include/asm-generic/atomic64.h extern long long atomic64_##op##_return(long long a, atomic64_t *v);
op                 30 include/asm-generic/atomic64.h #define ATOMIC64_OPS(op)	ATOMIC64_OP(op) ATOMIC64_OP_RETURN(op)
op                 11 include/asm-generic/futex.h 	int op = (encoded_op >> 28) & 7;
op                 24 include/asm-generic/futex.h 	switch (op) {
op                 68 include/asm-generic/percpu.h #define raw_cpu_generic_to_op(pcp, val, op)				\
op                 70 include/asm-generic/percpu.h 	*raw_cpu_ptr(&(pcp)) op val;					\
op                117 include/asm-generic/percpu.h #define this_cpu_generic_to_op(pcp, val, op)				\
op                121 include/asm-generic/percpu.h 	*raw_cpu_ptr(&(pcp)) op val;					\
op                 44 include/crypto/if_alg.h 	int op;
op                 82 include/linux/audit.h 	u32				op;
op                194 include/linux/ceph/ceph_fs.h const char *ceph_pool_op_name(int op);
op                200 include/linux/ceph/ceph_fs.h 	__le32 op;
op                312 include/linux/ceph/ceph_fs.h extern const char *ceph_session_op_name(int op);
op                315 include/linux/ceph/ceph_fs.h 	__le32 op;
op                363 include/linux/ceph/ceph_fs.h extern const char *ceph_mds_op_name(int op);
op                441 include/linux/ceph/ceph_fs.h 	__le32 op;                     /* mds op code */
op                459 include/linux/ceph/ceph_fs.h 	__le32 op;
op                658 include/linux/ceph/ceph_fs.h extern const char *ceph_cap_op_name(int op);
op                664 include/linux/ceph/ceph_fs.h 	__le32 op;                  /* CEPH_CAP_OP_* */
op                769 include/linux/ceph/ceph_fs.h 	__le32 op;                /* CEPH_SNAP_OP_* */
op                 78 include/linux/ceph/osd_client.h 	u16 op;           /* CEPH_OSD_OP_* */
op                316 include/linux/ceph/rados.h static inline int ceph_osd_op_type_lock(int op)
op                318 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_TYPE) == CEPH_OSD_OP_TYPE_LOCK;
op                320 include/linux/ceph/rados.h static inline int ceph_osd_op_type_data(int op)
op                322 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_TYPE) == CEPH_OSD_OP_TYPE_DATA;
op                324 include/linux/ceph/rados.h static inline int ceph_osd_op_type_attr(int op)
op                326 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_TYPE) == CEPH_OSD_OP_TYPE_ATTR;
op                328 include/linux/ceph/rados.h static inline int ceph_osd_op_type_exec(int op)
op                330 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_TYPE) == CEPH_OSD_OP_TYPE_EXEC;
op                332 include/linux/ceph/rados.h static inline int ceph_osd_op_type_pg(int op)
op                334 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_TYPE) == CEPH_OSD_OP_TYPE_PG;
op                336 include/linux/ceph/rados.h static inline int ceph_osd_op_type_multi(int op)
op                338 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_TYPE) == CEPH_OSD_OP_TYPE_MULTI;
op                341 include/linux/ceph/rados.h static inline int ceph_osd_op_mode_subop(int op)
op                343 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_MODE) == CEPH_OSD_OP_MODE_SUB;
op                345 include/linux/ceph/rados.h static inline int ceph_osd_op_mode_read(int op)
op                347 include/linux/ceph/rados.h 	return (op & CEPH_OSD_OP_MODE_RD) &&
op                348 include/linux/ceph/rados.h 		op != CEPH_OSD_OP_CALL;
op                350 include/linux/ceph/rados.h static inline int ceph_osd_op_mode_modify(int op)
op                352 include/linux/ceph/rados.h 	return op & CEPH_OSD_OP_MODE_WR;
op                365 include/linux/ceph/rados.h extern const char *ceph_osd_op_name(int op);
op                425 include/linux/ceph/rados.h 	__le16 op;           /* CEPH_OSD_OP_* */
op                637 include/linux/compat.h asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
op                 34 include/linux/crush/crush.h 	__u32 op;
op                238 include/linux/dcache.h extern void d_set_d_op(struct dentry *dentry, const struct dentry_operations *op);
op                163 include/linux/fmc.h 	struct fmc_operations *op;	/* carrier-provided */
op                197 include/linux/fmc.h 	if (unlikely(fmc->op->read32))
op                198 include/linux/fmc.h 		return fmc->op->read32(fmc, offset);
op                203 include/linux/fmc.h 	if (unlikely(fmc->op->write32))
op                204 include/linux/fmc.h 		fmc->op->write32(fmc, val, off);
op                 75 include/linux/fscache-cache.h typedef void (*fscache_operation_release_t)(struct fscache_operation *op);
op                 76 include/linux/fscache-cache.h typedef void (*fscache_operation_processor_t)(struct fscache_operation *op);
op                131 include/linux/fscache-cache.h static inline void fscache_operation_init(struct fscache_operation *op,
op                135 include/linux/fscache-cache.h 	INIT_WORK(&op->work, fscache_op_work_func);
op                136 include/linux/fscache-cache.h 	atomic_set(&op->usage, 1);
op                137 include/linux/fscache-cache.h 	op->state = FSCACHE_OP_ST_INITIALISED;
op                138 include/linux/fscache-cache.h 	op->debug_id = atomic_inc_return(&fscache_op_debug_id);
op                139 include/linux/fscache-cache.h 	op->processor = processor;
op                140 include/linux/fscache-cache.h 	op->release = release;
op                141 include/linux/fscache-cache.h 	INIT_LIST_HEAD(&op->pend_link);
op                148 include/linux/fscache-cache.h 	struct fscache_operation op;
op                157 include/linux/fscache-cache.h typedef int (*fscache_page_retrieval_func_t)(struct fscache_retrieval *op,
op                161 include/linux/fscache-cache.h typedef int (*fscache_pages_retrieval_func_t)(struct fscache_retrieval *op,
op                173 include/linux/fscache-cache.h struct fscache_retrieval *fscache_get_retrieval(struct fscache_retrieval *op)
op                175 include/linux/fscache-cache.h 	atomic_inc(&op->op.usage);
op                176 include/linux/fscache-cache.h 	return op;
op                185 include/linux/fscache-cache.h static inline void fscache_enqueue_retrieval(struct fscache_retrieval *op)
op                187 include/linux/fscache-cache.h 	fscache_enqueue_operation(&op->op);
op                195 include/linux/fscache-cache.h static inline void fscache_retrieval_complete(struct fscache_retrieval *op,
op                198 include/linux/fscache-cache.h 	atomic_sub(n_pages, &op->n_pages);
op                199 include/linux/fscache-cache.h 	if (atomic_read(&op->n_pages) <= 0)
op                200 include/linux/fscache-cache.h 		fscache_op_complete(&op->op, true);
op                209 include/linux/fscache-cache.h static inline void fscache_put_retrieval(struct fscache_retrieval *op)
op                211 include/linux/fscache-cache.h 	fscache_put_operation(&op->op);
op                222 include/linux/fscache-cache.h 	struct fscache_operation op;
op                256 include/linux/fscache-cache.h 	bool (*check_consistency)(struct fscache_operation *op);
op                262 include/linux/fscache-cache.h 	void (*invalidate_object)(struct fscache_operation *op);
op                298 include/linux/fscache-cache.h 	int (*write_page)(struct fscache_storage *op, struct page *page);
op                479 include/linux/fscache-cache.h static inline void fscache_end_io(struct fscache_retrieval *op,
op                482 include/linux/fscache-cache.h 	op->end_io_func(page, op->context, error);
op                542 include/linux/fscache-cache.h extern void fscache_mark_page_cached(struct fscache_retrieval *op,
op                545 include/linux/fscache-cache.h extern void fscache_mark_pages_cached(struct fscache_retrieval *op,
op                 57 include/linux/ftrace.h 			      struct ftrace_ops *op, struct pt_regs *regs);
op                220 include/linux/ftrace.h 			struct ftrace_ops *op, struct pt_regs *regs);
op                 11 include/linux/futex.h long do_futex(u32 __user *uaddr, int op, u32 val, union ktime *timeout,
op                 93 include/linux/genl_magic_func.h #define DPRINT_TLA(a, op, b) pr_info("%s %s %s\n", a, op, b);
op                119 include/linux/genl_magic_func.h #define DPRINT_TLA(a, op, b) do {} while (0)
op                215 include/linux/intel-iommu.h #define IOMMU_WAIT_OP(iommu, offset, op, cond, sts)			\
op                219 include/linux/intel-iommu.h 		sts = op(iommu->reg + offset);				\
op                 53 include/linux/key-type.h 				   const char *op, void *aux);
op                310 include/linux/kprobes.h extern int arch_check_optimized_kprobe(struct optimized_kprobe *op);
op                311 include/linux/kprobes.h extern int arch_prepare_optimized_kprobe(struct optimized_kprobe *op);
op                312 include/linux/kprobes.h extern void arch_remove_optimized_kprobe(struct optimized_kprobe *op);
op                316 include/linux/kprobes.h extern void arch_unoptimize_kprobe(struct optimized_kprobe *op);
op                317 include/linux/kprobes.h extern int arch_within_optimized_kprobe(struct optimized_kprobe *op,
op                401 include/linux/mISDNif.h 	int		op;
op                905 include/linux/mfd/cros_ec_commands.h 	uint32_t op;
op                209 include/linux/mlx4/cmd.h 	       u16 op, unsigned long timeout, int native);
op                213 include/linux/mlx4/cmd.h 			   u8 op_modifier, u16 op, unsigned long timeout,
op                217 include/linux/mlx4/cmd.h 			  op_modifier, op, timeout, native);
op                222 include/linux/mlx4/cmd.h 			       u32 in_modifier, u8 op_modifier, u16 op,
op                226 include/linux/mlx4/cmd.h 			  op_modifier, op, timeout, native);
op                235 include/linux/mlx4/cmd.h 			       u32 in_modifier, u8 op_modifier, u16 op,
op                239 include/linux/mlx4/cmd.h 			  op_modifier, op, timeout, native);
op                569 include/linux/mlx5/driver.h 	u16			op;
op                357 include/linux/mlx5/qp.h 	__be32		op;
op               1484 include/linux/nfs_xdr.h #define NFS_CALL(op, inode, args)	NFS_PROTO(inode)->op args
op                300 include/linux/percpu-defs.h extern void __this_cpu_preempt_check(const char *op);
op                302 include/linux/percpu-defs.h static inline void __this_cpu_preempt_check(const char *op) { }
op               1726 include/linux/security.h 	int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
op               1728 include/linux/security.h 	int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
op               3088 include/linux/security.h int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
op               3090 include/linux/security.h int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
op               3096 include/linux/security.h static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
op               3107 include/linux/security.h static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
op                 28 include/linux/seq_file.h 	const struct seq_operations *op;
op                 90 include/linux/signal.h #define _SIG_SET_BINOP(name, op)					\
op                 99 include/linux/signal.h 		r->sig[3] = op(a3, b3);					\
op                100 include/linux/signal.h 		r->sig[2] = op(a2, b2);					\
op                103 include/linux/signal.h 		r->sig[1] = op(a1, b1);					\
op                106 include/linux/signal.h 		r->sig[0] = op(a0, b0);					\
op                127 include/linux/signal.h #define _SIG_SET_OP(name, op)						\
op                131 include/linux/signal.h 	case 4:	set->sig[3] = op(set->sig[3]);				\
op                132 include/linux/signal.h 		set->sig[2] = op(set->sig[2]);				\
op                133 include/linux/signal.h 	case 2:	set->sig[1] = op(set->sig[1]);				\
op                134 include/linux/signal.h 	case 1:	set->sig[0] = op(set->sig[0]);				\
op                335 include/linux/syscalls.h asmlinkage long sys_futex(u32 __user *uaddr, int op, u32 val,
op                625 include/linux/syscalls.h asmlinkage long sys_epoll_ctl(int epfd, int op, int fd,
op                875 include/linux/syscalls.h asmlinkage long sys_seccomp(unsigned int op, unsigned int flags,
op                 53 include/linux/sysrq.h int register_sysrq_key(int key, struct sysrq_key_op *op);
op                 54 include/linux/sysrq.h int unregister_sysrq_key(int key, struct sysrq_key_op *op);
op                 69 include/linux/sysrq.h static inline int register_sysrq_key(int key, struct sysrq_key_op *op)
op                 74 include/linux/sysrq.h static inline int unregister_sysrq_key(int key, struct sysrq_key_op *op)
op                336 include/linux/tty_driver.h 			const struct tty_operations *op);
op                 45 include/linux/vt_kern.h int con_font_op(struct vc_data *vc, struct console_font_op *op);
op                157 include/media/exynos-fimc.h #define fimc_pipeline_call(ent, op, args...)				  \
op                158 include/media/exynos-fimc.h 	(!(ent) ? -ENOENT : (((ent)->pipe->ops && (ent)->pipe->ops->op) ? \
op                159 include/media/exynos-fimc.h 	(ent)->pipe->ops->op(((ent)->pipe), ##args) : -ENOIOCTLCMD))	  \
op               1845 include/net/bluetooth/hci.h #define hci_opcode_ogf(op)		(op >> 10)
op               1846 include/net/bluetooth/hci.h #define hci_opcode_ocf(op)		(op & 0x03ff)
op                155 include/net/nfc/nci.h #define nci_opcode_gid(op)		(__u8)(((op)&0x0f00)>>8)
op                156 include/net/nfc/nci.h #define nci_opcode_oid(op)		(__u8)((op)&0x003f)
op               1579 include/net/sock.h int sock_setsockopt(struct socket *sock, int level, int op,
op               1582 include/net/sock.h int sock_getsockopt(struct socket *sock, int level, int op,
op                695 include/net/xfrm.h static inline struct audit_buffer *xfrm_audit_start(const char *op)
op                705 include/net/xfrm.h 	audit_log_format(audit_buf, "op=%s", op);
op                 69 include/rdma/ib_pack.h #define IB_OPCODE(transport, op) \
op                 70 include/rdma/ib_pack.h 	IB_OPCODE_ ## transport ## _ ## op = \
op                 71 include/rdma/ib_pack.h 		IB_OPCODE_ ## transport + IB_OPCODE_ ## op
op                 46 include/rdma/rdma_netlink.h 		   int len, int client, int op, int flags);
op                105 include/scsi/fc_encode.h 					       unsigned int op, size_t req_size,
op                118 include/scsi/fc_encode.h 	ct->hdr.ct_cmd = htons((u16) op);
op                133 include/scsi/fc_encode.h 		      unsigned int op, enum fc_rctl *r_ctl,
op                139 include/scsi/fc_encode.h 	switch (op) {
op                141 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_gid_ft),
op                147 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_fid),
op                154 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rft),
op                161 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rff_id),
op                172 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rn_id),
op                180 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rspn) + len,
op                190 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rsnn) + len,
op                217 include/scsi/fc_encode.h 		      unsigned int op, enum fc_rctl *r_ctl,
op                226 include/scsi/fc_encode.h 	switch (op) {
op                242 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
op                388 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
op                479 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
op                487 include/scsi/fc_encode.h 		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
op                511 include/scsi/fc_encode.h 		      unsigned int op, enum fc_rctl *r_ctl,
op                518 include/scsi/fc_encode.h 		rc = fc_ct_ms_fill(lport, fc_id, fp, op, r_ctl, fh_type);
op                523 include/scsi/fc_encode.h 		rc = fc_ct_ns_fill(lport, fc_id, fp, op, r_ctl, fh_type);
op                534 include/scsi/fc_encode.h 				 unsigned int op)
op                542 include/scsi/fc_encode.h 	plogi->fl_cmd = (u8) op;
op                691 include/scsi/fc_encode.h 		       struct fc_frame *fp, unsigned int op,
op                694 include/scsi/fc_encode.h 	switch (op) {
op                475 include/scsi/libfc.h 				     struct fc_frame *, unsigned int op,
op               1117 include/scsi/libfc.h 				    unsigned int op,
op                247 include/scsi/scsi_cmnd.h static inline void scsi_set_prot_op(struct scsi_cmnd *scmd, unsigned char op)
op                249 include/scsi/scsi_cmnd.h 	scmd->prot_op = op;
op                254 include/sound/opl3.h 	struct fm_operator op[4];
op                310 include/trace/events/bcache.h 	TP_PROTO(struct btree *b, struct bkey *k, unsigned op, unsigned status),
op                311 include/trace/events/bcache.h 	TP_ARGS(b, k, op, status),
op                320 include/trace/events/bcache.h 		__field(u8,	op				)
op                331 include/trace/events/bcache.h 		__entry->op = op;
op                336 include/trace/events/bcache.h 		  __entry->status, __entry->op,
op                 37 include/trace/events/xen.h 		    __field(unsigned int, op)
op                 41 include/trace/events/xen.h 	    TP_fast_assign(__entry->op = mc->op;
op                 47 include/trace/events/xen.h 		      __entry->op, xen_hypercall_name(__entry->op),
op                107 include/trace/events/xen.h 	    TP_PROTO(unsigned long op, size_t args, enum xen_mc_extend_args res),
op                108 include/trace/events/xen.h 	    TP_ARGS(op, args, res),
op                110 include/trace/events/xen.h 		    __field(unsigned int, op)
op                114 include/trace/events/xen.h 	    TP_fast_assign(__entry->op = op;
op                118 include/trace/events/xen.h 		      __entry->op, xen_hypercall_name(__entry->op),
op                 99 include/uapi/drm/msm_drm.h 	uint32_t op;             /* in, mask of MSM_PREP_x */
op                 74 include/uapi/drm/omap_drm.h 	uint32_t op;			/* mask of omap_gem_op (in) */
op                 79 include/uapi/drm/omap_drm.h 	uint32_t op;			/* mask of omap_gem_op (in) */
op                917 include/uapi/drm/radeon_drm.h 	uint32_t	op;     /* RADEON_GEM_OP_* */
op               1056 include/uapi/drm/vmwgfx_drm.h 	enum drm_vmw_synccpu_op op;
op                 34 include/uapi/linux/blkpg.h         int op;
op                148 include/uapi/linux/futex.h #define FUTEX_OP(op, oparg, cmp, cmparg) \
op                149 include/uapi/linux/futex.h   (((op & 0xf) << 28) | ((cmp & 0xf) << 24)		\
op                 78 include/uapi/linux/ipc.h #define IPCCALL(version,op)	((version)<<16 | (op))
op                159 include/uapi/linux/kd.h 	unsigned int op;	/* operation code KD_FONT_OP_* */
op                260 include/uapi/linux/netfilter/ipset/ip_set.h 	__u8 op;
op                275 include/uapi/linux/netfilter/ipset/ip_set.h 	unsigned int op;
op                285 include/uapi/linux/netfilter/ipset/ip_set.h 	unsigned int op;
op                293 include/uapi/linux/netfilter/ipset/ip_set.h 	unsigned int op;
op                 84 include/uapi/linux/rfkill.h 	__u8  op;
op                 77 include/uapi/linux/target_core_user.h static inline void tcmu_hdr_set_op(struct tcmu_cmd_entry_hdr *hdr, enum tcmu_opcode op)
op                 80 include/uapi/linux/target_core_user.h 	hdr->len_op |= (op & TCMU_OP_MASK);
op                 19 include/uapi/linux/tc_ematch/tc_em_meta.h 	__u8			op;
op                475 include/uapi/linux/vfio.h 	__u32 op;
op                 75 include/uapi/linux/wil6210_uapi.h 	uint32_t op; /* enum wil_memio_op */
op                 81 include/uapi/linux/wil6210_uapi.h 	uint32_t op; /* enum wil_memio_op */
op                 21 include/uapi/rdma/rdma_netlink.h #define RDMA_NL_GET_TYPE(client, op) ((client << 10) + op)
op                 42 include/uapi/sound/asound_fm.h 	unsigned char op;		/* operator cell (0 or 1) */
op                 41 include/uapi/xen/privcmd.h 	__u64 op;
op                742 include/video/pm3fb.h 	#define PM3LogicalOpMode_LogicOp(op)		(((op) & 0xf) << 1)
op                747 include/video/pm3fb.h 	#define PM3LogicalOpMode_Background_LogicOp(op)	(((op) & 0xf) << 7)
op                  8 include/xen/hvm.h static const char *param_name(int op)
op                 30 include/xen/hvm.h 	if (op >= ARRAY_SIZE(names))
op                 33 include/xen/hvm.h 	if (!names[op])
op                 36 include/xen/hvm.h 	return names[op];
op                108 include/xen/interface/io/pciif.h 	struct xen_pci_op op;
op                293 include/xen/interface/physdev.h     uint8_t op;
op                467 include/xen/interface/xen.h     xen_ulong_t op;
op                146 scripts/recordmcount.c 	unsigned char *op;
op                153 scripts/recordmcount.c 	op = map + offset - 1;
op                154 scripts/recordmcount.c 	if (*op != 0xe8)
op                807 scripts/unifdef.c 	} op[5];
op                915 scripts/unifdef.c 	const struct op *op;
op                927 scripts/unifdef.c 		for (op = ops->op; op->str != NULL; op++)
op                928 scripts/unifdef.c 			if (strncmp(cp, op->str, strlen(op->str)) == 0)
op                930 scripts/unifdef.c 		if (op->str == NULL)
op                932 scripts/unifdef.c 		cp += strlen(op->str);
op                933 scripts/unifdef.c 		debug("eval%d %s", ops - eval_ops, op->str);
op                937 scripts/unifdef.c 		lt = op->fn(valp, lt, *valp, rt, val);