| /linux/tools/include/nolibc/ |
| H A D | crt.h | 14 char **environ __attribute__((weak)); 15 const unsigned long *_auxv __attribute__((weak)); 21 extern void (*const __preinit_array_start[])(int, char **, char**) __attribute__((weak)); 22 extern void (*const __preinit_array_end[])(int, char **, char**) __attribute__((weak)); 24 extern void (*const __init_array_start[])(int, char **, char**) __attribute__((weak)); 25 extern void (*const __init_array_end[])(int, char **, char**) __attribute__((weak)); 27 extern void (*const __fini_array_start[])(void) __attribute__((weak)); 28 extern void (*const __fini_array_end[])(void) __attribute__((weak)); 31 __attribute__((weak,used))
|
| 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")))
|
| /linux/arch/x86/entry/vdso/common/ |
| H A D | vclock_gettime.c | 24 __attribute__((weak, alias("__vdso_gettimeofday"))); 31 __kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time"))); 42 __attribute__((weak, alias("__vdso_clock_gettime"))); 50 __attribute__((weak, alias("__vdso_clock_getres"))); 60 __attribute__((weak, alias("__vdso_clock_gettime"))); 68 __attribute__((weak, alias("__vdso_clock_gettime64"))); 76 __attribute__((weak, alias("__vdso_clock_getres"))); 84 __attribute__((weak, alias("__vdso_clock_getres_time64")));
|
| /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/Documentation/devicetree/bindings/sound/ |
| H A D | cs35l36.txt | 56 - cirrus,weak-fet-disable : Boolean : The strength of the output drivers is 57 reduced when operating in a Weak-FET Drive Mode and must not be used to drive 60 - cirrus,classh-wk-fet-delay : Weak-FET entry delay. Controls the delay 61 (in ms) before the Class H algorithm switches to the weak-FET voltage 73 - cirrus,classh-weak-fet-thld-millivolt : Weak-FET amplifier drive threshold. 75 weak-FET operation. The range is 50mV to 700mV in 50mV increments. 151 cirrus,weak-fet-delay = <0x04>; 152 cirrus,weak-fet-thld = <0x01>;
|
| /linux/drivers/hid/ |
| H A D | hid-emsff.c | 27 int weak, strong; in emsff_play() local 29 weak = effect->u.rumble.weak_magnitude; in emsff_play() 32 dbg_hid("called with 0x%04x 0x%04x\n", strong, weak); in emsff_play() 34 weak = weak * 0xff / 0xffff; in emsff_play() 37 emsff->report->field[0]->value[1] = weak; in emsff_play() 40 dbg_hid("running with 0x%02x 0x%02x\n", strong, weak); in emsff_play()
|
| 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()
|
| H A D | hid-mf.c | 38 int strong, weak; in mf_play() local 41 weak = effect->u.rumble.weak_magnitude; in mf_play() 43 dbg_hid("Called with 0x%04x 0x%04x.\n", strong, weak); in mf_play() 46 weak = weak * 0xff / 0xffff; in mf_play() 48 dbg_hid("Running with 0x%02x 0x%02x.\n", strong, weak); in mf_play() 50 mf->report->field[0]->value[0] = weak; in mf_play()
|
| H A D | hid-pl.c | 44 s32 *weak; member 62 *plff->weak = right; in hid_plff_play() 81 s32 *weak; in plff_init() local 121 weak = &report->field[0]->value[3]; in plff_init() 134 weak = &report->field[3]->value[0]; in plff_init() 159 plff->weak = weak; in plff_init() 163 *weak = 0x00; in plff_init()
|
| H A D | hid-dr.c | 36 int strong, weak; in drff_play() local 39 weak = effect->u.rumble.weak_magnitude; in drff_play() 41 dbg_hid("called with 0x%04x 0x%04x", strong, weak); in drff_play() 43 if (strong || weak) { in drff_play() 45 weak = weak * 0xff / 0xffff; in drff_play() 50 if (weak == 0x0a) in drff_play() 51 weak = 0x0b; in drff_play() 55 drff->report->field[0]->value[2] = weak; in drff_play() 68 dbg_hid("running with 0x%02x 0x%02x", strong, weak); in drff_play()
|
| H A D | hid-megaworld.c | 20 s32 *weak; member 31 *mwctrl->weak = effect->u.rumble.weak_magnitude >> 8; in mwctrl_play() 83 mwctrl->weak = &report->field[3]->value[0]; in mwctrl_init()
|
| /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/include/crypto/ |
| H A D | des.h | 40 * the key is accepted but has been found to be weak. 51 * the key is accepted but has been found to be weak. Note that weak keys will
|
| /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/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/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()
|
| /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 */
|