| /arch/s390/kernel/ |
| A D | runtime_instr.c | 55 cb->rla = 0xfff; in init_runtime_instr_cb() 56 cb->s = 1; in init_runtime_instr_cb() 57 cb->k = 1; in init_runtime_instr_cb() 58 cb->ps = 1; in init_runtime_instr_cb() 59 cb->pc = 1; in init_runtime_instr_cb() 61 cb->v = 1; in init_runtime_instr_cb() 86 cb = kzalloc(sizeof(*cb), GFP_KERNEL); in SYSCALL_DEFINE2() 87 if (!cb) in SYSCALL_DEFINE2() 91 memset(cb, 0, sizeof(*cb)); in SYSCALL_DEFINE2() 94 init_runtime_instr_cb(cb); in SYSCALL_DEFINE2() [all …]
|
| A D | ptrace.c | 1124 cb->s == 1 && in is_ri_cb_valid() 1125 cb->k == 1 && in is_ri_cb_valid() 1126 cb->h == 0 && in is_ri_cb_valid() 1128 cb->ps == 1 && in is_ri_cb_valid() 1129 cb->qs == 0 && in is_ri_cb_valid() 1130 cb->pc == 1 && in is_ri_cb_valid() 1131 cb->qc == 0 && in is_ri_cb_valid() 1139 cb->rla >= cb->roa && in is_ri_cb_valid() 1140 cb->rca >= cb->roa && in is_ri_cb_valid() 1141 cb->rca <= cb->rla+1 && in is_ri_cb_valid() [all …]
|
| /arch/x86/kernel/cpu/ |
| A D | scattered.c | 68 const struct cpuid_bit *cb; in init_scattered_cpuid_features() local 70 for (cb = cpuid_bits; cb->feature; cb++) { in init_scattered_cpuid_features() 73 max_level = cpuid_eax(cb->level & 0xffff0000); in init_scattered_cpuid_features() 74 if (max_level < cb->level || in init_scattered_cpuid_features() 75 max_level > (cb->level | 0xffff)) in init_scattered_cpuid_features() 78 cpuid_count(cb->level, cb->sub_leaf, ®s[CPUID_EAX], in init_scattered_cpuid_features() 82 if (regs[cb->reg] & (1 << cb->bit)) in init_scattered_cpuid_features() 83 set_cpu_cap(c, cb->feature); in init_scattered_cpuid_features()
|
| /arch/arm64/include/asm/ |
| A D | alternative-macros.h | 33 #define ALTINSTR_ENTRY_CB(cpucap, cb) \ argument 35 " .word " __stringify(cb) "- .\n" /* callback */ \ 73 #define __ALTERNATIVE_CFG_CB(oldinstr, cpucap, cfg_enabled, cb) \ argument 79 ALTINSTR_ENTRY_CB(cpucap, cb) \ 88 #define ALTERNATIVE_CB(oldinstr, cpucap, cb) \ argument 89 __ALTERNATIVE_CFG_CB(oldinstr, (1 << ARM64_CB_SHIFT) | (cpucap), 1, cb) 156 .macro alternative_cb cap, cb 159 altinstruction_entry 661f, \cb, (1 << ARM64_CB_SHIFT) | \cap, 662f-661f, 0
|
| /arch/s390/include/uapi/asm/ |
| A D | runtime_instr.h | 62 static inline void load_runtime_instr_cb(struct runtime_instr_cb *cb) in load_runtime_instr_cb() argument 65 : : "Q" (*cb)); in load_runtime_instr_cb() 68 static inline void store_runtime_instr_cb(struct runtime_instr_cb *cb) in store_runtime_instr_cb() argument 71 : "=Q" (*cb) : : "cc"); in store_runtime_instr_cb()
|
| /arch/mips/bcm63xx/ |
| A D | timer.c | 26 void (*cb)(void *); member 45 if (!timer_data[i].cb) { in timer_interrupt() 50 timer_data[i].cb(timer_data[i].data); in timer_interrupt() 115 if (timer_data[id].cb) { in bcm63xx_timer_register() 120 timer_data[id].cb = callback; in bcm63xx_timer_register() 138 timer_data[id].cb = NULL; in bcm63xx_timer_unregister()
|
| /arch/s390/include/asm/ |
| A D | boot_data.h | 25 #define boot_rb_foreach(cb) \ argument 30 cb(boot_rb + off); \ 32 cb(boot_rb + off); \
|
| /arch/x86/xen/ |
| A D | multicalls.c | 210 struct callback *cb = &b->callbacks[i]; in xen_mc_flush() local 212 (*cb->fn)(cb->data); in xen_mc_flush() 287 struct callback *cb; in xen_mc_callback() local 296 cb = &b->callbacks[b->cbidx++]; in xen_mc_callback() 297 cb->fn = fn; in xen_mc_callback() 298 cb->data = data; in xen_mc_callback()
|
| A D | mmu_hvm.c | 18 static bool xen_vmcore_pfn_is_ram(struct vmcore_cb *cb, unsigned long pfn) in xen_vmcore_pfn_is_ram() argument
|
| /arch/xtensa/include/asm/ |
| A D | uaccess.h | 130 #define __put_user_asm(x_, addr_, err_, align, insn, cb)\ argument 146 :[err] "+r"(err_), [tmp] "=r"(cb), [mem] "=m"(*(addr_)) \ 198 #define __get_user_asm(x_, addr_, err_, align, insn, cb) \ argument 216 :[err] "+r"(err_), [tmp] "=r"(cb), [x] "+r"(__x) \
|
| /arch/arm64/kvm/hyp/ |
| A D | pgtable.c | 130 return walker->cb(ctx, visit); in kvm_pgtable_visitor_cb() 310 .cb = leaf_walker, in kvm_pgtable_get_leaf() 441 .cb = hyp_map_walker, in kvm_pgtable_hyp_map() 500 .cb = hyp_unmap_walker, in kvm_pgtable_hyp_unmap() 554 .cb = hyp_free_walker, in kvm_pgtable_hyp_destroy() 1045 .cb = stage2_map_walker, in kvm_pgtable_stage2_map() 1076 .cb = stage2_map_walker, in kvm_pgtable_stage2_set_owner() 1281 .cb = stage2_age_walker, in kvm_pgtable_stage2_test_clear_young() 1356 .cb = stage2_map_walker, in kvm_pgtable_stage2_create_unlinked() 1558 .cb = stage2_free_walker, in kvm_pgtable_stage2_destroy() [all …]
|
| /arch/powerpc/crypto/ |
| A D | curve25519-ppc64le-core.c | 144 fe51 da, cb, aa, bb; in curve25519_fe51() local 160 fmul(cb, c, b); // CB = C * B in curve25519_fe51() 164 fadd(dacb_p, da, cb); // DA + CB in curve25519_fe51() 165 fsub(dacb_m, da, cb); // DA - CB in curve25519_fe51()
|
| A D | aes-tab-4k.S | 77 .long R(d4, 6a, 6a, be), R(8d, cb, cb, 46) 133 .long R(cb, e8, e8, 23), R(a1, dd, dd, 7c) 159 .long R(7b, b0, b0, cb), R(a8, 54, 54, fc) 166 .long R(3b, ab, 6b, cb), R(1f, 9d, 45, f1) 170 .long R(4f, e5, d7, fc), R(c5, 2a, cb, d7) 232 .long R(8b, 43, 29, 76), R(cb, 23, c6, dc) 290 .long R(7b, cb, 84, 61), R(d5, 32, b6, 70)
|
| /arch/arm64/kernel/ |
| A D | proton-pack.c | 273 bp_hardening_cb_t cb; in spectre_v2_enable_fw_mitigation() local 285 cb = call_hvc_arch_workaround_1; in spectre_v2_enable_fw_mitigation() 289 cb = call_smc_arch_workaround_1; in spectre_v2_enable_fw_mitigation() 300 cb = spectre_v2_get_sw_mitigation_cb() ?: cb; in spectre_v2_enable_fw_mitigation() 301 install_bp_hardening_cb(cb); in spectre_v2_enable_fw_mitigation()
|
| /arch/parisc/include/asm/ |
| A D | psw.h | 84 unsigned int cb:8; member
|
| /arch/x86/include/asm/ |
| A D | pgtable_types.h | 484 #define __pte2cm_idx(cb) \ argument 485 ((((cb) >> (_PAGE_BIT_PAT - 2)) & 4) | \ 486 (((cb) >> (_PAGE_BIT_PCD - 1)) & 2) | \ 487 (((cb) >> _PAGE_BIT_PWT) & 1))
|
| A D | mshyperv.h | 225 void set_hv_tscchange_cb(void (*cb)(void)); 298 static inline void set_hv_tscchange_cb(void (*cb)(void)) {} in set_hv_tscchange_cb()
|
| /arch/arm/boot/dts/ti/omap/ |
| A D | omap4-epson-embt2ws.dts | 67 cb_v18: regulator-cb-v18 { 79 cb_v33: regulator-cb-v33 { 91 regulator-cb-v50 { 491 cb_v18_pins: pinmux-cb-v18-pins { 497 cb_v33_pins: pinmux-cb-v33-pins { 503 cb_v50_pins: pinmux-cb-v50-pins {
|
| /arch/arm64/boot/dts/qcom/ |
| A D | sm8350.dtsi | 1998 compute-cb@3 { 2004 compute-cb@4 { 2010 compute-cb@5 { 2307 compute-cb@1 { 2313 compute-cb@2 { 2319 compute-cb@3 { 2551 compute-cb@1 { 2558 compute-cb@2 { 2565 compute-cb@3 { 2572 compute-cb@4 { [all …]
|
| A D | sa8775p.dtsi | 6276 compute-cb@1 { 6284 compute-cb@2 { 6292 compute-cb@3 { 6300 compute-cb@4 { 6308 compute-cb@5 { 6316 compute-cb@6 { 6324 compute-cb@7 { 6332 compute-cb@8 { 6340 compute-cb@9 { 6408 compute-cb@1 { [all …]
|
| A D | sm6115.dtsi | 2810 compute-cb@3 { 2816 compute-cb@4 { 2822 compute-cb@5 { 2828 compute-cb@6 { 2834 compute-cb@7 { 2881 compute-cb@1 { 2887 compute-cb@2 { 2893 compute-cb@3 { 2899 compute-cb@4 { 2905 compute-cb@5 { [all …]
|
| A D | sm6350.dtsi | 1390 compute-cb@3 { 1396 compute-cb@4 { 1402 compute-cb@5 { 1650 compute-cb@1 { 1656 compute-cb@2 { 1662 compute-cb@3 { 1668 compute-cb@4 { 1674 compute-cb@5 { 1680 compute-cb@6 { 1686 compute-cb@7 { [all …]
|
| A D | sm8150.dtsi | 2217 compute-cb@1 { 2223 compute-cb@2 { 2229 compute-cb@3 { 3393 compute-cb@1 { 3399 compute-cb@2 { 3405 compute-cb@3 { 3411 compute-cb@4 { 3417 compute-cb@5 { 3423 compute-cb@6 { 3429 compute-cb@7 { [all …]
|
| A D | sc8280xp.dtsi | 2535 compute-cb@1 { 2541 compute-cb@2 { 2547 compute-cb@3 { 5418 compute-cb@1 { 5424 compute-cb@2 { 5430 compute-cb@3 { 5436 compute-cb@4 { 5442 compute-cb@5 { 5448 compute-cb@6 { 5454 compute-cb@7 { [all …]
|
| /arch/arm64/kvm/hyp/nvhe/ |
| A D | setup.c | 250 .cb = fix_host_ownership_walker, in fix_host_ownership() 270 .cb = fix_hyp_pgtable_refcnt_walker, in fix_hyp_pgtable_refcnt()
|