Home
last modified time | relevance | path

Searched defs:op (Results 1 – 25 of 1353) sorted by relevance

12345678910>>...55

/linux/arch/sh/kernel/
H A Dkgdb.c20 #define OPCODE_BT(op) (((op) & 0xff00) == 0x8900) argument
21 #define OPCODE_BF(op) (((op) & 0xff00) == 0x8b00) argument
22 #define OPCODE_BTF_DISP(op) (((op) & 0x80) ? (((op) | 0xffffff80) << 1) : \ argument
24 #define OPCODE_BFS(op) (((op) & 0xff00) == 0x8f00) argument
25 #define OPCODE_BTS(op) (((op) & 0xff00) == 0x8d00) argument
26 #define OPCODE_BRA(op) (((op) & 0xf000) == 0xa000) argument
27 #define OPCODE_BRA_DISP(op) (((op) & 0x800) ? (((op) | 0xfffff800) << 1) : \ argument
29 #define OPCODE_BRAF(op) (((op) & 0xf0ff) == 0x0023) argument
30 #define OPCODE_BRAF_REG(op) (((op) & 0x0f00) >> 8) argument
31 #define OPCODE_BSR(op) (((op) & 0xf000) == 0xb000) argument
[all …]
/linux/arch/xtensa/include/asm/
H A Datomic.h58 #define ATOMIC_OP(op) \ argument
76 #define ATOMIC_OP_RETURN(op) \ argument
97 #define ATOMIC_FETCH_OP(op) \ argument
118 #define ATOMIC_OP(op) \ argument
137 #define ATOMIC_OP_RETURN(op) \ argument
159 #define ATOMIC_FETCH_OP(op) \ argument
182 #define ATOMIC_OP(op) \ argument
200 #define ATOMIC_OP_RETURN(op) \ argument
220 #define ATOMIC_FETCH_OP(op) \ argument
243 #define ATOMIC_OPS(op) ATOMIC_OP(op) ATOMIC_FETCH_OP(op) ATOMIC_OP_RETURN(op) argument
[all …]
H A Dbitops.h101 #define BIT_OP(op, insn, inv) \ argument
120 #define TEST_AND_BIT_OP(op, insn, inv) \ argument
144 #define BIT_OP(op, insn, inv) \ argument
164 #define TEST_AND_BIT_OP(op, insn, inv) \ argument
189 #define BIT_OP(op, insn, inv) argument
190 #define TEST_AND_BIT_OP(op, insn, inv) argument
196 #define BIT_OPS(op, insn, inv) \ argument
/linux/drivers/net/dsa/sja1105/
H A Dsja1105_dynamic_config.c200 enum packing_op op) in sja1105et_vl_lookup_cmd_packing()
213 enum packing_op op) in sja1105pqrs_vl_lookup_cmd_packing()
226 enum packing_op op) in sja1110_vl_lookup_cmd_packing()
238 enum packing_op op) in sja1105et_vl_lookup_entry_packing()
250 enum packing_op op) in sja1110_vl_policing_cmd_packing()
262 enum packing_op op, int entry_size) in sja1105pqrs_common_l2_lookup_cmd_packing()
311 enum packing_op op) in sja1105pqrs_l2_lookup_cmd_packing()
330 enum packing_op op) in sja1110_l2_lookup_cmd_packing()
386 enum packing_op op) in sja1105pqrs_dyn_l2_lookup_entry_packing()
398 enum packing_op op) in sja1110_dyn_l2_lookup_entry_packing()
[all …]
H A Dsja1105_static_config.c57 size_t len, enum packing_op op) in sja1105_packing()
95 enum packing_op op) in sja1105et_avb_params_entry_packing()
106 enum packing_op op) in sja1105pqrs_avb_params_entry_packing()
118 enum packing_op op) in sja1105et_general_params_entry_packing()
150 enum packing_op op) in sja1105pqrs_general_params_entry_packing()
184 enum packing_op op) in sja1110_general_params_entry_packing()
222 enum packing_op op) in sja1105_l2_forwarding_params_entry_packing()
236 enum packing_op op) in sja1110_l2_forwarding_params_entry_packing()
250 enum packing_op op) in sja1105_l2_forwarding_entry_packing()
266 enum packing_op op) in sja1110_l2_forwarding_entry_packing()
[all …]
/linux/tools/testing/selftests/powerpc/alignment/
H A Dalignment_handler.c106 #define LOAD_VSX_XFORM_TEST(op) TEST(op, op, stxvd2x, XFORM, 32, 32) argument
107 #define STORE_VSX_XFORM_TEST(op) TEST(op, lxvd2x, op, XFORM, 32, 32) argument
108 #define LOAD_VSX_DFORM_TEST(op) TEST(op, op, stxv, DFORM, 32, 32) argument
109 #define STORE_VSX_DFORM_TEST(op) TEST(op, lxv, op, DFORM, 32, 32) argument
110 #define LOAD_VMX_XFORM_TEST(op) TEST(op, op, stxvd2x, XFORM, 0, 32) argument
111 #define STORE_VMX_XFORM_TEST(op) TEST(op, lxvd2x, op, XFORM, 32, 0) argument
112 #define LOAD_VMX_DFORM_TEST(op) TEST(op, op, stxv, DFORM, 0, 32) argument
113 #define STORE_VMX_DFORM_TEST(op) TEST(op, lxv, op, DFORM, 32, 0) argument
115 #define LOAD_XFORM_TEST(op) TEST(op, op, stdx, XFORM, 31, 31) argument
116 #define STORE_XFORM_TEST(op) TEST(op, ldx, op, XFORM, 31, 31) argument
[all …]
/linux/fs/afs/
H A Dfs_operation.c20 struct afs_operation *op; in afs_alloc_operation() local
55 static bool afs_get_io_locks(struct afs_operation *op) in afs_get_io_locks()
99 static void afs_drop_io_locks(struct afs_operation *op) in afs_drop_io_locks()
112 static void afs_prepare_vnode(struct afs_operation *op, struct afs_vnode_param *vp, in afs_prepare_vnode()
138 bool afs_begin_vnode_operation(struct afs_operation *op) in afs_begin_vnode_operation()
160 static void afs_end_vnode_operation(struct afs_operation *op) in afs_end_vnode_operation()
179 void afs_wait_for_operation(struct afs_operation *op) in afs_wait_for_operation()
230 int afs_put_operation(struct afs_operation *op) in afs_put_operation()
273 int afs_do_sync_operation(struct afs_operation *op) in afs_do_sync_operation()
H A Dfsclient.c240 struct afs_operation *op = call->op; in afs_deliver_fs_fetch_status() local
272 void afs_fs_fetch_status(struct afs_operation *op) in afs_fs_fetch_status()
303 struct afs_operation *op = call->op; in afs_deliver_fs_fetch_data() local
427 static void afs_fs_fetch_data64(struct afs_operation *op) in afs_fs_fetch_data64()
459 void afs_fs_fetch_data(struct afs_operation *op) in afs_fs_fetch_data()
496 struct afs_operation *op = call->op; in afs_deliver_fs_create_vnode() local
531 void afs_fs_create_file(struct afs_operation *op) in afs_fs_create_file()
585 void afs_fs_make_dir(struct afs_operation *op) in afs_fs_make_dir()
634 struct afs_operation *op = call->op; in afs_deliver_fs_file_status_and_vol() local
665 void afs_fs_remove_file(struct afs_operation *op) in afs_fs_remove_file()
[all …]
H A Dyfsclient.c333 struct afs_operation *op = call->op; in yfs_deliver_status_and_volsync() local
354 struct afs_operation *op = call->op; in yfs_deliver_fs_fetch_data64() local
469 void yfs_fs_fetch_data(struct afs_operation *op) in yfs_fs_fetch_data()
511 struct afs_operation *op = call->op; in yfs_deliver_fs_create_vnode() local
548 void yfs_fs_create_file(struct afs_operation *op) in yfs_fs_create_file()
599 void yfs_fs_make_dir(struct afs_operation *op) in yfs_fs_make_dir()
643 struct afs_operation *op = call->op; in yfs_deliver_fs_remove_file2() local
689 void yfs_fs_remove_file2(struct afs_operation *op) in yfs_fs_remove_file2()
728 struct afs_operation *op = call->op; in yfs_deliver_fs_remove() local
758 void yfs_fs_remove_file(struct afs_operation *op) in yfs_fs_remove_file()
[all …]
H A Ddir.c681 static void afs_do_lookup_success(struct afs_operation *op) in afs_do_lookup_success()
796 struct afs_operation *op; in afs_do_lookup() local
1268 void afs_check_for_remote_deletion(struct afs_operation *op) in afs_check_for_remote_deletion()
1283 static void afs_vnode_new_inode(struct afs_operation *op) in afs_vnode_new_inode()
1309 static void afs_create_success(struct afs_operation *op) in afs_create_success()
1318 static void afs_create_edit_dir(struct afs_operation *op) in afs_create_edit_dir()
1334 static void afs_create_put(struct afs_operation *op) in afs_create_put()
1357 struct afs_operation *op; in afs_mkdir() local
1396 static void afs_rmdir_success(struct afs_operation *op) in afs_rmdir_success()
1404 static void afs_rmdir_edit_dir(struct afs_operation *op) in afs_rmdir_edit_dir()
[all …]
/linux/drivers/xen/
H A Defi.c42 #define efi_data(op) (op.u.efi_runtime_call) argument
46 struct xen_platform_op op = INIT_EFI_OP(get_time); in xen_efi_get_time() local
68 struct xen_platform_op op = INIT_EFI_OP(set_time); in xen_efi_set_time() local
83 struct xen_platform_op op = INIT_EFI_OP(get_wakeup_time); in xen_efi_get_wakeup_time() local
104 struct xen_platform_op op = INIT_EFI_OP(set_wakeup_time); in xen_efi_set_wakeup_time() local
124 struct xen_platform_op op = INIT_EFI_OP(get_variable); in xen_efi_get_variable() local
147 struct xen_platform_op op = INIT_EFI_OP(get_next_variable_name); in xen_efi_get_next_variable() local
170 struct xen_platform_op op = INIT_EFI_OP(set_variable); in xen_efi_set_variable() local
190 struct xen_platform_op op = INIT_EFI_OP(query_variable_info); in xen_efi_query_variable_info() local
209 struct xen_platform_op op = INIT_EFI_OP(get_next_high_monotonic_count); in xen_efi_get_next_high_mono_count() local
[all …]
/linux/drivers/crypto/allwinner/sun4i-ss/
H A Dsun4i-ss-cipher.c18 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_opti_poll() local
151 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_cipher_poll_fallback() local
179 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_cipher_poll() local
400 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_cbc_aes_encrypt() local
411 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_cbc_aes_decrypt() local
423 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_ecb_aes_encrypt() local
434 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_ecb_aes_decrypt() local
446 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_cbc_des_encrypt() local
457 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_cbc_des_decrypt() local
469 struct sun4i_tfm_ctx *op = crypto_skcipher_ctx(tfm); in sun4i_ss_ecb_des_encrypt() local
[all …]
H A Dsun4i-ss-hash.c20 struct sun4i_tfm_ctx *op = crypto_tfm_ctx(tfm); in sun4i_hash_crainit() local
41 struct sun4i_tfm_ctx *op = crypto_tfm_ctx(tfm); in sun4i_hash_craexit() local
49 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash_init() local
64 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash_export_md5() local
87 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash_import_md5() local
106 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash_export_sha1() local
130 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash_import_sha1() local
192 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash() local
510 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash_final() local
518 struct sun4i_req_ctx *op = ahash_request_ctx(areq); in sun4i_hash_update() local
[all …]
/linux/arch/sparc/lib/
H A Datomic_64.S21 #define ATOMIC_OP(op) \ argument
36 #define ATOMIC_OP_RETURN(op) \ argument
51 #define ATOMIC_FETCH_OP(op) \ argument
87 #define ATOMIC64_OP(op) \ argument
102 #define ATOMIC64_OP_RETURN(op) \ argument
117 #define ATOMIC64_FETCH_OP(op) \ argument
/linux/arch/x86/include/asm/
H A Dparavirt_types.h245 #define paravirt_ptr(op) [paravirt_opptr] "m" (pv_ops.op) argument
363 #define PVOP_TEST_NULL(op) BUG_ON(pv_ops.op == NULL) argument
365 #define PVOP_TEST_NULL(op) ((void)pv_ops.op) argument
393 #define ____PVOP_CALL(ret, op, call_clbr, extra_clbr, ...) \ argument
406 #define ____PVOP_ALT_CALL(ret, op, alt, cond, call_clbr, \ argument
421 #define __PVOP_CALL(rettype, op, ...) \ argument
425 #define __PVOP_ALT_CALL(rettype, op, alt, cond, ...) \ argument
430 #define __PVOP_CALLEESAVE(rettype, op, ...) \ argument
434 #define __PVOP_ALT_CALLEESAVE(rettype, op, alt, cond, ...) \ argument
439 #define __PVOP_VCALL(op, ...) \ argument
[all …]
/linux/arch/x86/kernel/kprobes/
H A Dopt.c39 struct optimized_kprobe *op; in __recover_optprobed_insn() local
177 optimized_callback(struct optimized_kprobe *op, struct pt_regs *regs) in optimized_callback()
341 int arch_check_optimized_kprobe(struct optimized_kprobe *op) in arch_check_optimized_kprobe()
356 int arch_within_optimized_kprobe(struct optimized_kprobe *op, in arch_within_optimized_kprobe()
365 void __arch_remove_optimized_kprobe(struct optimized_kprobe *op, int dirty) in __arch_remove_optimized_kprobe()
381 void arch_remove_optimized_kprobe(struct optimized_kprobe *op) in arch_remove_optimized_kprobe()
391 int arch_prepare_optimized_kprobe(struct optimized_kprobe *op, in arch_prepare_optimized_kprobe()
475 struct optimized_kprobe *op, *tmp; in arch_optimize_kprobes() local
504 void arch_unoptimize_kprobe(struct optimized_kprobe *op) in arch_unoptimize_kprobe()
532 struct optimized_kprobe *op, *tmp; in arch_unoptimize_kprobes() local
[all …]
/linux/tools/testing/selftests/sgx/
H A Dtest_encl.c23 struct encl_op_emodpe *op = _op; in do_encl_emodpe() local
38 struct encl_op_eaccept *op = _op; in do_encl_eaccept() local
75 struct encl_op_init_tcs_page *op = _op; in do_encl_init_tcs_page() local
92 static void do_encl_op_put_to_buf(void *op) in do_encl_op_put_to_buf()
99 static void do_encl_op_get_from_buf(void *op) in do_encl_op_get_from_buf()
108 struct encl_op_put_to_addr *op = _op; in do_encl_op_put_to_addr() local
115 struct encl_op_get_from_addr *op = _op; in do_encl_op_get_from_addr() local
149 encl_op_t op; in encl_body() local
/linux/arch/powerpc/kernel/
H A Doptprobes.c50 struct instruction_op op; in can_optimize() local
96 static void optimized_callback(struct optimized_kprobe *op, in optimized_callback()
119 void arch_remove_optimized_kprobe(struct optimized_kprobe *op) in arch_remove_optimized_kprobe()
154 int arch_prepare_optimized_kprobe(struct optimized_kprobe *op, struct kprobe *p) in arch_prepare_optimized_kprobe()
261 int arch_check_optimized_kprobe(struct optimized_kprobe *op) in arch_check_optimized_kprobe()
269 struct optimized_kprobe *op; in arch_optimize_kprobes() local
284 void arch_unoptimize_kprobe(struct optimized_kprobe *op) in arch_unoptimize_kprobe()
291 struct optimized_kprobe *op; in arch_unoptimize_kprobes() local
300 int arch_within_optimized_kprobe(struct optimized_kprobe *op, kprobe_opcode_t *addr) in arch_within_optimized_kprobe()
/linux/arch/arm/probes/kprobes/
H A Dtest-thumb.c91 #define DATA_PROCESSING16(op,val) \ in kprobe_thumb16_test_cases() argument
478 #define _DATA_PROCESSING32_DNM(op,s,val) \ in kprobe_thumb32_test_cases() argument
490 #define DATA_PROCESSING32_DNM(op,val) \ in kprobe_thumb32_test_cases() argument
494 #define DATA_PROCESSING32_NM(op,val) \ in kprobe_thumb32_test_cases() argument
506 #define _DATA_PROCESSING32_DM(op,s,val) \ in kprobe_thumb32_test_cases() argument
519 #define DATA_PROCESSING32_DM(op,val) \ in kprobe_thumb32_test_cases() argument
934 #define SHIFTS32(op) \ in kprobe_thumb32_test_cases() argument
986 #define PARALLEL_ADD_SUB(op) \ in kprobe_thumb32_test_cases() argument
H A Dopt-arm.c119 int arch_check_optimized_kprobe(struct optimized_kprobe *op) in arch_check_optimized_kprobe()
140 __arch_remove_optimized_kprobe(struct optimized_kprobe *op, int dirty) in __arch_remove_optimized_kprobe()
149 optimized_callback(struct optimized_kprobe *op, struct pt_regs *regs) in optimized_callback()
291 struct optimized_kprobe *op, *tmp; in arch_optimize_kprobes() local
327 void arch_unoptimize_kprobe(struct optimized_kprobe *op) in arch_unoptimize_kprobe()
339 struct optimized_kprobe *op, *tmp; in arch_unoptimize_kprobes() local
347 int arch_within_optimized_kprobe(struct optimized_kprobe *op, in arch_within_optimized_kprobe()
355 void arch_remove_optimized_kprobe(struct optimized_kprobe *op) in arch_remove_optimized_kprobe()
/linux/arch/parisc/include/asm/
H A Datomic.h76 #define ATOMIC_OP(op, c_op) \ argument
86 #define ATOMIC_OP_RETURN(op, c_op) \ argument
99 #define ATOMIC_FETCH_OP(op, c_op) \ argument
113 #define ATOMIC_OPS(op, c_op) \ argument
127 #define ATOMIC_OPS(op, c_op) \ argument
148 #define ATOMIC64_OP(op, c_op) \ argument
158 #define ATOMIC64_OP_RETURN(op, c_op) \ argument
171 #define ATOMIC64_FETCH_OP(op, c_op) \ argument
185 #define ATOMIC64_OPS(op, c_op) \ argument
199 #define ATOMIC64_OPS(op, c_op) \ argument
/linux/net/can/
H A Dbcm.c211 struct bcm_op *op; in bcm_proc_show() local
284 static void bcm_can_tx(struct bcm_op *op) in bcm_can_tx()
331 static void bcm_send_to_user(struct bcm_op *op, struct bcm_msg_head *head, in bcm_send_to_user()
405 static bool bcm_tx_set_expiry(struct bcm_op *op, struct hrtimer *hrt) in bcm_tx_set_expiry()
420 static void bcm_tx_start_timer(struct bcm_op *op) in bcm_tx_start_timer()
429 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer); in bcm_tx_timeout_handler() local
461 static void bcm_rx_changed(struct bcm_op *op, struct canfd_frame *data) in bcm_rx_changed()
492 static void bcm_rx_update_and_send(struct bcm_op *op, in bcm_rx_update_and_send()
540 static void bcm_rx_cmp_to_index(struct bcm_op *op, unsigned int index, in bcm_rx_cmp_to_index()
580 static void bcm_rx_starttimer(struct bcm_op *op) in bcm_rx_starttimer()
[all …]
/linux/fs/dlm/
H A Dplock.c49 struct plock_op *op = NULL, *iter; in plock_lookup_waiter() local
85 static void dlm_release_plock_op(struct plock_op *op) in dlm_release_plock_op()
91 static void send_op(struct plock_op *op) in send_op()
102 struct plock_op *op; in do_lock_cancel() local
127 struct plock_op *op; in dlm_posix_lock() local
238 static int dlm_plock_callback(struct plock_op *op) in dlm_plock_callback()
292 struct plock_op *op; in dlm_posix_unlock() local
363 struct plock_op *op; in dlm_posix_cancel() local
426 struct plock_op *op; in dlm_posix_get() local
485 struct plock_op *op = NULL; in dev_read() local
[all …]
/linux/drivers/spi/
H A Dspi-mem.c37 const struct spi_mem_op *op, in spi_controller_dma_map_mem_op_data()
83 const struct spi_mem_op *op, in spi_controller_dma_unmap_mem_op_data()
143 const struct spi_mem_op *op) in spi_mem_check_buswidth()
165 const struct spi_mem_op *op) in spi_mem_default_supports_op()
199 static int spi_mem_check_op(const struct spi_mem_op *op) in spi_mem_check_op()
228 const struct spi_mem_op *op) in spi_mem_internal_supports_op()
253 bool spi_mem_supports_op(struct spi_mem *mem, const struct spi_mem_op *op) in spi_mem_supports_op()
301 const struct spi_mem_op *op, int exec_op_ret) in spi_mem_add_op_stats()
355 int spi_mem_exec_op(struct spi_mem *mem, const struct spi_mem_op *op) in spi_mem_exec_op()
502 int spi_mem_adjust_op_size(struct spi_mem *mem, struct spi_mem_op *op) in spi_mem_adjust_op_size()
[all …]
H A Dspi-wpcm-fiu.c140 static bool wpcm_fiu_normal_match(const struct spi_mem_op *op) in wpcm_fiu_normal_match()
150 static int wpcm_fiu_normal_exec(struct spi_mem *mem, const struct spi_mem_op *op) in wpcm_fiu_normal_exec()
169 static bool wpcm_fiu_fast_read_match(const struct spi_mem_op *op) in wpcm_fiu_fast_read_match()
177 static int wpcm_fiu_fast_read_exec(struct spi_mem *mem, const struct spi_mem_op *op) in wpcm_fiu_fast_read_exec()
190 static bool wpcm_fiu_4ba_match(const struct spi_mem_op *op) in wpcm_fiu_4ba_match()
195 static int wpcm_fiu_4ba_exec(struct spi_mem *mem, const struct spi_mem_op *op) in wpcm_fiu_4ba_exec()
233 static bool wpcm_fiu_rdid_match(const struct spi_mem_op *op) in wpcm_fiu_rdid_match()
240 static int wpcm_fiu_rdid_exec(struct spi_mem *mem, const struct spi_mem_op *op) in wpcm_fiu_rdid_exec()
266 static bool wpcm_fiu_dummy_match(const struct spi_mem_op *op) in wpcm_fiu_dummy_match()
277 static int wpcm_fiu_dummy_exec(struct spi_mem *mem, const struct spi_mem_op *op) in wpcm_fiu_dummy_exec()
[all …]

12345678910>>...55