/Linux-v6.6/lib/crypto/ |
D | blake2s-selftest.c | 554 bool success = true; in blake2s_digest_test() local 572 success = false; in blake2s_digest_test() 588 success = false; in blake2s_digest_test() 592 return success; in blake2s_digest_test() 598 bool success = true; in blake2s_random_test() local 620 success = false; in blake2s_random_test() 635 success = false; in blake2s_random_test() 640 return success; in blake2s_random_test() 645 bool success; in blake2s_selftest() local 647 success = blake2s_digest_test(); in blake2s_selftest() [all …]
|
/Linux-v6.6/arch/sparc/prom/ |
D | ranges.c | 68 int success; in prom_ranges_init() local 77 success = prom_getproperty(obio_node, "ranges", in prom_ranges_init() 80 if (success != -1) in prom_ranges_init() 81 num_obio_ranges = (success / sizeof(struct linux_prom_ranges)); in prom_ranges_init() 91 int success; in prom_apply_generic_ranges() local 95 success = prom_getproperty(node, "ranges", in prom_apply_generic_ranges() 98 if (success != -1) { in prom_apply_generic_ranges() 99 num_ranges = (success / sizeof(struct linux_prom_ranges)); in prom_apply_generic_ranges() 104 success = prom_getproperty(parent, "ranges", in prom_apply_generic_ranges() 107 if (success != -1) { in prom_apply_generic_ranges() [all …]
|
/Linux-v6.6/security/apparmor/ |
D | policy_unpack_test.c | 321 bool success; in policy_unpack_test_unpack_nameX_with_null_name() local 325 success = aa_unpack_nameX(puf->e, AA_U32, NULL); in policy_unpack_test_unpack_nameX_with_null_name() 327 KUNIT_EXPECT_TRUE(test, success); in policy_unpack_test_unpack_nameX_with_null_name() 335 bool success; in policy_unpack_test_unpack_nameX_with_wrong_code() local 339 success = aa_unpack_nameX(puf->e, AA_BLOB, NULL); in policy_unpack_test_unpack_nameX_with_wrong_code() 341 KUNIT_EXPECT_FALSE(test, success); in policy_unpack_test_unpack_nameX_with_wrong_code() 350 bool success; in policy_unpack_test_unpack_nameX_with_name() local 354 success = aa_unpack_nameX(puf->e, AA_U32, name); in policy_unpack_test_unpack_nameX_with_name() 356 KUNIT_EXPECT_TRUE(test, success); in policy_unpack_test_unpack_nameX_with_name() 365 bool success; in policy_unpack_test_unpack_nameX_with_wrong_name() local [all …]
|
/Linux-v6.6/tools/testing/selftests/bpf/prog_tests/ |
D | obj_name.c | 8 int success; in test_obj_name() member 40 CHECK((tests[i].success && fd < 0) || in test_obj_name() 41 (!tests[i].success && fd >= 0) || in test_obj_name() 42 (!tests[i].success && errno != tests[i].expected_errno), in test_obj_name() 45 fd, tests[i].success, errno, tests[i].expected_errno); in test_obj_name() 61 CHECK((tests[i].success && fd < 0) || in test_obj_name() 62 (!tests[i].success && fd >= 0) || in test_obj_name() 63 (!tests[i].success && errno != tests[i].expected_errno), in test_obj_name() 66 fd, tests[i].success, errno, tests[i].expected_errno); in test_obj_name()
|
/Linux-v6.6/scripts/ |
D | Kconfig.include | 14 # $(if-success,<command>,<then>,<else>) 16 if-success = $(shell,{ $(1); } >/dev/null 2>&1 && echo "$(2)" || echo "$(3)") 18 # $(success,<command>) 20 success = $(if-success,$(1),y,n) 24 failure = $(if-success,$(1),n,y) 28 cc-option = $(success,trap "rm -rf .tmp_$$" EXIT; mkdir .tmp_$$; $(CC) -Werror $(CLANG_FLAGS) $(1) … 32 ld-option = $(success,$(LD) -v $(1)) 36 as-instr = $(success,printf "%b\n" "$(1)" | $(CC) $(CLANG_FLAGS) -c -x assembler-with-cpp -o /dev/n… 44 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this C compiler is not supported.) 50 $(error-if,$(success,test -z "$(as-info)"),Sorry$(comma) this assembler is not supported.) [all …]
|
/Linux-v6.6/arch/alpha/include/asm/ |
D | spinlock.h | 100 int success; in arch_read_trylock() local 113 : "=m" (*lock), "=&r" (regx), "=&r" (success) in arch_read_trylock() 116 return success; in arch_read_trylock() 122 int success; in arch_write_trylock() local 135 : "=m" (*lock), "=&r" (regx), "=&r" (success) in arch_write_trylock() 138 return success; in arch_write_trylock()
|
/Linux-v6.6/arch/m68k/ifpsp060/ |
D | os.S | 84 | d1 - 0 = success, !0 = failure 94 clr.l %d1 | return success 101 clr.l %d1 | return success 115 | d1 - 0 = success, !0 = failure 127 clr.l %d1 | return success 134 clr.l %d1 | return success 147 | d1 - 0 = success, !0 = failure 152 clr.l %d1 | assume success 170 | d1 - 0 = success, !0 = failure 181 | d1 - 0 = success, !0 = failure [all …]
|
/Linux-v6.6/include/trace/events/ |
D | mmap_lock.h | 55 bool success), 57 TP_ARGS(mm, memcg_path, write, success), 63 __field(bool, success) 70 __entry->success = success; 78 __entry->success ? "true" : "false"
|
/Linux-v6.6/tools/testing/selftests/powerpc/tm/ |
D | tm-trap.c | 59 bool success; variable 219 : : : : failure, success); in ping() 222 success = false; in ping() 225 success: in ping() 226 success = true; in ping() 322 if (success) { in tm_trap_test()
|
/Linux-v6.6/drivers/gpu/drm/i915/gt/uc/ |
D | intel_guc_fw.c | 97 static inline bool guc_load_done(struct intel_uncore *uncore, u32 *status, bool *success) in guc_load_done() argument 106 *success = true; in guc_load_done() 118 *success = false; in guc_load_done() 133 *success = false; in guc_load_done() 158 bool success; in guc_wait_ucode() local 190 ret = wait_for(guc_load_done(uncore, &status, &success), 1000); in guc_wait_ucode() 191 if (!ret || !success) in guc_wait_ucode() 202 if (ret || !success) { in guc_wait_ucode()
|
/Linux-v6.6/arch/x86/include/asm/ |
D | cmpxchg.h | 160 bool success; \ 170 : CC_OUT(z) (success), \ 182 : CC_OUT(z) (success), \ 194 : CC_OUT(z) (success), \ 206 : CC_OUT(z) (success), \ 216 if (unlikely(!success)) \ 218 likely(success); \
|
D | uaccess.h | 374 bool success; \ 381 : CC_OUT(z) (success), \ 387 if (unlikely(!success)) \ 389 likely(success); }) 393 bool success; \ 400 : CC_OUT(z) (success), \ 407 if (unlikely(!success)) \ 409 likely(success); }) 414 bool success; \ 424 : CC_OUT(z) (success), \ [all …]
|
D | cmpxchg_32.h | 50 bool success; in __try_cmpxchg64() local 54 : CC_OUT(z) (success), in __try_cmpxchg64() 61 if (unlikely(!success)) in __try_cmpxchg64() 63 return success; in __try_cmpxchg64()
|
/Linux-v6.6/lib/ |
D | globtest.c | 22 bool success = match == expected; in test() local 32 if (!success) in test() 37 return success; in test() 40 return success; in test()
|
/Linux-v6.6/io_uring/ |
D | notif.c | 28 bool success) in io_tx_ubuf_callback() argument 38 bool success) in io_tx_ubuf_callback_ext() argument 43 if (success && !nd->zc_used && skb) in io_tx_ubuf_callback_ext() 45 else if (!success && !nd->zc_copied) in io_tx_ubuf_callback_ext() 48 io_tx_ubuf_callback(skb, uarg, success); in io_tx_ubuf_callback_ext()
|
/Linux-v6.6/tools/testing/selftests/mm/ |
D | khugepaged.c | 148 static void success(const char *msg) in success() function 384 success("OK"); in restore_settings() 416 success("OK"); in save_settings() 626 success("OK"); in alloc_hpage() 685 success("OK"); in file_setup_area() 702 success("OK"); in file_setup_area() 816 success("OK"); in __madvise_collapse() 872 success("OK"); in khugepaged_collapse() 885 success("OK"); in khugepaged_collapse() 919 success("OK"); in alloc_at_fault() [all …]
|
D | mremap_test.c | 129 bool success = false; in is_range_mapped() local 140 success = true; in is_range_mapped() 145 return success; in is_range_mapped() 158 bool success = false; in mremap_expand_merge() local 178 success = is_range_mapped(maps_fp, start, start + 3 * page_size); in mremap_expand_merge() 182 if (success) in mremap_expand_merge() 197 bool success = false; in mremap_expand_merge_offset() local 217 success = is_range_mapped(maps_fp, start, start + 3 * page_size); in mremap_expand_merge_offset() 221 if (success) in mremap_expand_merge_offset()
|
D | mrelease_test.c | 90 bool success, retry; in main() local 160 success = (syscall(__NR_process_mrelease, pidfd, 0) == 0); in main() 161 if (!success) { in main() 186 if (!success) { in main()
|
/Linux-v6.6/Documentation/driver-api/soundwire/ |
D | locking.rst | 63 | return success/error | d. Return success/error 102 | return success/error | d. Return success/error 105 | return success/error | 3. Release bus lock 106 +-------------------------------> 4. Return success/error
|
/Linux-v6.6/arch/x86/kernel/fpu/ |
D | signal.c | 340 bool success, fx_only = false; in __fpu_restore_sig() local 437 success = !os_xrstor_safe(fpu->fpstate, in __fpu_restore_sig() 440 success = !fxrstor_safe(&fpregs->fxsave); in __fpu_restore_sig() 443 if (likely(success)) in __fpu_restore_sig() 447 return success; in __fpu_restore_sig() 465 bool success = false; in fpu__restore_sig() local 492 success = !fpregs_soft_set(current, NULL, 0, in fpu__restore_sig() 496 success = __fpu_restore_sig(buf, buf_fx, ia32_fxstate); in fpu__restore_sig() 500 if (unlikely(!success)) in fpu__restore_sig() 502 return success; in fpu__restore_sig()
|
/Linux-v6.6/drivers/video/backlight/ |
D | jornada720_lcd.c | 40 goto success; in jornada_lcd_get_contrast() 46 success: in jornada_lcd_get_contrast() 61 goto success; in jornada_lcd_set_contrast() 67 success: in jornada_lcd_set_contrast()
|
/Linux-v6.6/drivers/net/wireless/mediatek/mt76/ |
D | mt76x02_trace.h | 52 __field(bool, success) 61 __entry->success = stat->success; 75 __entry->success, __entry->aggr, __entry->ack_req,
|
/Linux-v6.6/drivers/net/wireguard/selftest/ |
D | counter.c | 11 bool success = true; in wg_packet_counter_selftest() local 29 success = false; \ in wg_packet_counter_selftest() 106 if (success) in wg_packet_counter_selftest() 109 return success; in wg_packet_counter_selftest()
|
/Linux-v6.6/Documentation/virt/kvm/x86/ |
D | amd-memory-encryption.rst | 78 On output, ``error`` is zero on success, or an error code. Error codes 95 Returns: 0 on success, -negative on error 106 Returns: 0 on success, -negative on error 121 On success, the 'handle' field contains a new handle and on error, a negative value. 137 Returns: 0 on success, -negative on error 163 Returns: 0 on success, -negative on error 180 Returns: 0 on success, -negative on error 190 Returns: 0 on success, -negative on error 221 Returns: 0 on success, -negative on error 241 Returns: 0 on success, -negative on error [all …]
|
/Linux-v6.6/arch/mips/kernel/ |
D | unaligned.c | 704 goto success; in emulate_load_store_microMIPS() 723 goto success; in emulate_load_store_microMIPS() 743 goto success; in emulate_load_store_microMIPS() 766 goto success; in emulate_load_store_microMIPS() 805 goto success; in emulate_load_store_microMIPS() 841 goto success; in emulate_load_store_microMIPS() 879 goto success; in emulate_load_store_microMIPS() 920 goto success; in emulate_load_store_microMIPS() 975 goto success; in emulate_load_store_microMIPS() 1028 goto success; in emulate_load_store_microMIPS() [all …]
|