| /linux/tools/include/nolibc/ |
| H A D | crt.h | 18 char **environ __attribute__((weak)); 19 const unsigned long *_auxv __attribute__((weak)); 26 extern void (*const __preinit_array_start[])(int, char **, char**) __attribute__((weak)); 27 extern void (*const __preinit_array_end[])(int, char **, char**) __attribute__((weak)); 29 extern void (*const __init_array_start[])(int, char **, char**) __attribute__((weak)); 30 extern void (*const __init_array_end[])(int, char **, char**) __attribute__((weak)); 32 extern void (*const __fini_array_start[])(void) __attribute__((weak)); 33 extern void (*const __fini_array_end[])(void) __attribute__((weak)); 36 extern char *program_invocation_name __attribute__((weak)); in _start_c() 37 extern char *program_invocation_short_name __attribute__((weak)); in _start_c() [all...] |
| H A D | stackprotector.h | 23 __attribute__((weak,used,noreturn,section(".text.nolibc_stack_chk"))) 34 __attribute__((weak,noreturn,section(".text.nolibc_stack_chk"))) 40 __attribute__((weak,used,section(".data.nolibc_stack_chk")))
|
| H A D | string.h | 39 __attribute__((weak,unused,section(".text.nolibc_memmove"))) 64 __attribute__((weak,unused,section(".text.nolibc_memcpy"))) 82 __attribute__((weak,unused,section(".text.nolibc_memset"))) 149 __attribute__((weak,unused,section(".text.nolibc_strlen")))
|
| H A D | arch-x86.h | 165 void __attribute__((weak, noreturn)) __nolibc_entrypoint __nolibc_no_stack_protector _start(void) 333 void __attribute__((weak, noreturn)) __nolibc_entrypoint __nolibc_no_stack_protector _start(void) 356 ".weak memmove\n" 357 ".weak memcpy\n" 378 ".weak memset\n"
|
| H A D | getopt.h | 18 __attribute__((weak,unused,section(".data.nolibc_getopt"))) 21 __attribute__((weak,unused,section(".data.nolibc_getopt")))
|
| /linux/include/crypto/internal/ |
| H A D | des.h | 16 * crypto_des_verify_key - Check whether a DES key is weak 20 * Returns -EINVAL if the key is weak and the crypto TFM does not permit weak 45 * For DES-EDE3, there is no known need to reject weak or 79 * crypto_des3_ede_verify_key - Check whether a DES3-EDE key is weak 83 * Returns -EINVAL if the key is weak and the crypto TFM does not permit weak 85 * keys are rejected in FIPS mode even if weak keys are permitted by the TFM
|
| /linux/drivers/hid/ |
| H A D | hid-lg2ff.c | 27 int weak, strong; in play_effect() local 30 weak = effect->u.rumble.weak_magnitude; in play_effect() 32 if (weak || strong) { in play_effect() 33 weak = weak * 0xff / 0xffff; in play_effect() 37 lg2ff->report->field[0]->value[2] = weak; in play_effect()
|
| /linux/arch/alpha/kernel/ |
| H A D | setup.c | 166 __attribute__((weak)) or #pragma weak. Bypass it and talk directly 169 #define WEAK(X) \ macro 171 asm(".weak "#X) 173 WEAK(alcor_mv); 174 WEAK(clipper_mv); 175 WEAK(dp264_mv); 176 WEAK(eb164_mv); 177 WEAK(eiger_mv); 178 WEAK(lx164_mv); 179 WEAK(marvel_ev7_mv); [all …]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | test_ksyms_weak.c | 3 * Test weak ksyms. 18 /* existing weak symbols */ 20 /* test existing weak symbols can be resolved. */ 27 /* non-existent weak symbols. */
|
| H A D | linked_vars2.c | 9 /* when an extern is defined as both strong and weak, resulting symbol will be strong */ 18 /* these two weak variables should lose */
|
| /linux/scripts/ |
| H A D | recordmcount.pl | 95 # 1) Record all the local and weak symbols by using 'nm' 163 my %weak; # List of weak functions 168 my $weak_regex; # Match a weak function (return function) 395 # Step 1: find all the local (static functions) and weak symbols. 396 # 't' is local, 'w/W' is weak 403 $weak{$2} = $1; 422 # Sanity check on weak function. A weak function may be overwritten by 424 if (defined $weak{$ref_func}) { 425 die "$inputfile: ERROR: referencing weak function" . 502 # if this is either a local function or a weak function [all …]
|
| H A D | relocs_check.sh | 13 # weak symbol which will result in an absolute relocation to 0. 14 # Weak unresolved symbols are of that form in nm output:
|
| /linux/Documentation/devicetree/bindings/power/supply/ |
| H A D | bq2415x.yaml | 38 ti,weak-battery-voltage: 41 weak battery voltage threshold in mV. 70 - ti,weak-battery-voltage 89 ti,weak-battery-voltage = <3400>;
|
| /linux/arch/x86/um/vdso/ |
| H A D | um_vdso.c | 28 __attribute__((weak, alias("__vdso_clock_gettime"))); 42 __attribute__((weak, alias("__vdso_gettimeofday"))); 54 __kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time")));
|
| /linux/tools/perf/tests/shell/ |
| H A D | stat.sh | 96 echo "stat repeat weak groups test" 100 echo "stat repeat weak groups test [Skipped event parsing failed]" 106 echo "stat repeat weak groups test [Failed]" 110 echo "stat repeat weak groups test [Success]" 173 # Weak groups break if the perf_event_open of multiple grouped events 176 echo "Topdown weak groups test" 180 echo "Topdown weak groups test [Skipped event parsing failed]" 186 echo "Topdown weak groups test [Failed events not supported]" 190 echo "Topdown weak groups test [Success]"
|
| H A D | record_weak_term.sh | 2 # record weak terms 4 # Test that command line options override weak terms from sysfs or inbuilt json.
|
| /linux/arch/powerpc/include/asm/ |
| H A D | linkage.h | 9 asm ("\t.weak " #x "\n\t.set " #x ", sys_ni_syscall\n" \ 10 "\t.weak ." #x "\n\t.set ." #x ", .sys_ni_syscall\n")
|
| /linux/tools/perf/util/include/linux/ |
| H A D | linkage.h | 28 #define SYM_L_WEAK(name) .weak name 79 /* SYM_FUNC_START_WEAK -- use for weak functions */ 111 * SYM_FUNC_ALIAS_WEAK -- define a weak global alias for an existing function
|
| /linux/drivers/net/wireless/ath/ath5k/ |
| H A D | ani.c | 39 * - "OFDM weak signal detection" 41 * - "CCK weak signal detection" 152 * ath5k_ani_set_ofdm_weak_signal_detection() - Set OFDM weak signal detection 192 * ath5k_ani_set_cck_weak_signal_detection() - Set CCK weak signal detection 260 /* only OFDM: beacon RSSI is high, we can disable ODFM weak in ath5k_ani_raise_immunity() 273 /* beacon RSSI in mid range, we need OFDM weak signal detect, in ath5k_ani_raise_immunity() 283 /* beacon RSSI is low. in B/G mode turn of OFDM weak signal in ath5k_ani_raise_immunity() 325 /* beacon signal is high, leave OFDM weak signal in ath5k_ani_lower_immunity() 329 /* beacon RSSI is mid-range: turn on ODFM weak signal in ath5k_ani_lower_immunity()
|
| H A D | ani.h | 65 * @ofdm_weak_sig: OFDM weak signal detection state (on/off) 66 * @cck_weak_sig: CCK weak signal detection state (on/off)
|
| /linux/tools/virtio/asm/ |
| H A D | barrier.h | 15 /* Weak barriers should be used. If not - it's a bug */ 25 /* Weak barriers should be used. If not - it's a bug */
|
| /linux/tools/lib/bpf/ |
| H A D | elf.c | 335 /* Only accept one non-weak bind. */ in elf_find_func_offset() 341 /* already have a non-weak bind, and in elf_find_func_offset() 342 * this is a weak bind, so ignore. in elf_find_func_offset() 465 /* Only accept one non-weak bind. */ in elf_resolve_syms_offsets() 471 /* already have a non-weak bind, and in elf_resolve_syms_offsets() 472 * this is a weak bind, so ignore. in elf_resolve_syms_offsets()
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | uprobe_multi.c | 19 int __attribute__((weak)) uprobe(void) in uprobe() 29 #define DEF(name, idx) int __attribute__((weak)) NAME(name, idx)(void) { return 0; } 98 int __attribute__((weak)) trigger_uprobe(bool build_id_resident) in trigger_uprobe()
|
| /linux/arch/powerpc/boot/ |
| H A D | crt0.S | 36 .weak _platform_stack_top 44 .weak _platform_stack_top 48 .weak _zimage_start 63 .weak __dynamic_start
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | task_local_data.h | 118 struct tld_meta_u * _Atomic tld_meta_p __attribute__((weak)); 119 __thread struct tld_data_u *tld_data_p __attribute__((weak)); 122 bool _Atomic tld_pthread_key_init __attribute__((weak)); 123 pthread_key_t tld_pthread_key __attribute__((weak));
|