Home
last modified time | relevance | path

Searched full:weak (Results 1 – 25 of 519) sorted by relevance

12345678910>>...21

/openbmc/u-boot/arch/arm/cpu/armv7/
H A Dpsci.S42 .weak psci_fiq_enter
47 .weak default_psci_vector
87 .weak psci_version
88 .weak psci_cpu_suspend
89 .weak psci_cpu_off
90 .weak psci_cpu_on
91 .weak psci_affinity_info
92 .weak psci_migrate
93 .weak psci_migrate_info_type
94 .weak psci_migrate_info_up_cpu
[all …]
/openbmc/u-boot/common/
H A Dkgdb_stubs.c15 __attribute__((weak))
21 __attribute__((weak))
27 __attribute__((weak))
35 __attribute__((weak))
41 __attribute__((weak))
47 __attribute__((weak))
53 __attribute__((weak))
/openbmc/linux/arch/x86/entry/vdso/
H A Dvclock_gettime.c26 __attribute__((weak, alias("__vdso_gettimeofday")));
33 __kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time")));
47 __attribute__((weak, alias("__vdso_clock_gettime")));
55 __attribute__((weak, alias("__vdso_clock_getres")));
68 __attribute__((weak, alias("__vdso_clock_gettime")));
76 __attribute__((weak, alias("__vdso_clock_gettime64")));
84 __attribute__((weak, alias("__vdso_clock_getres")));
/openbmc/linux/include/crypto/internal/
H A Ddes.h16 * 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
/openbmc/linux/arch/alpha/kernel/
H A Dsetup.c168 __attribute__((weak)) or #pragma weak. Bypass it and talk directly
171 #define WEAK(X) \ macro
173 asm(".weak "#X)
175 WEAK(alcor_mv);
176 WEAK(alphabook1_mv);
177 WEAK(avanti_mv);
178 WEAK(cabriolet_mv);
179 WEAK(clipper_mv);
180 WEAK(dp264_mv);
181 WEAK(eb164_mv);
[all …]
/openbmc/linux/tools/perf/tests/shell/
H A Dstat.sh44 echo "stat repeat weak groups test"
48 echo "stat repeat weak groups test [Skipped event parsing failed]"
54 echo "stat repeat weak groups test [Failed]"
58 echo "stat repeat weak groups test [Success]"
86 # Weak groups break if the perf_event_open of multiple grouped events
89 echo "Topdown weak groups test"
93 echo "Topdown weak groups test [Skipped event parsing failed]"
99 echo "Topdown weak groups test [Failed events not supported]"
103 echo "Topdown weak groups test [Success]"
/openbmc/linux/Documentation/devicetree/bindings/sound/
H A Dcs35l36.txt56 - 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>;
/openbmc/openbmc/poky/meta/recipes-connectivity/connman/connman/
H A D0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch6 gold refuses to link in undefined weak symbols which
25 - __attribute__ ((weak, visibility("hidden"))); \
26 + __attribute__ ((weak, visibility("default"))); \
28 - __attribute__ ((weak, visibility("hidden"))); \
29 + __attribute__ ((weak, visibility("default"))); \
/openbmc/linux/drivers/hid/
H A Dhid-emsff.c27 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 Dhid-lg2ff.c27 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 Dhid-mf.c38 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 Dhid-pl.c44 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 Dhid-dr.c36 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()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/open-vm-tools/open-vm-tools/
H A D0011-Use-off64_t-instead-of-__off64_t.patch24 - __off64_t offset) __attribute__ ((weak));
25 + off64_t offset) __attribute__ ((weak));
28 - __off64_t offset) __attribute__ ((weak));
29 + off64_t offset) __attribute__ ((weak));
/openbmc/linux/arch/x86/um/vdso/
H A Dum_vdso.c28 __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")));
72 __attribute__((weak, alias("__vdso_getcpu")));
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtest_ksyms_weak.c3 * Test weak ksyms.
18 /* existing weak symbols */
20 /* test existing weak symbols can be resolved. */
27 /* non-existent weak symbols. */
/openbmc/linux/Documentation/devicetree/bindings/power/supply/
H A Dbq2415x.yaml38 ti,weak-battery-voltage:
41 weak battery voltage threshold in mV.
70 - ti,weak-battery-voltage
89 ti,weak-battery-voltage = <3400>;
/openbmc/linux/scripts/
H A Drecordmcount.pl95 # 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)
402 # Step 1: find all the local (static functions) and weak symbols.
403 # 't' is local, 'w/W' is weak
410 $weak{$2} = $1;
429 # Sanity check on weak function. A weak function may be overwritten by
431 if (defined $weak{$ref_func}) {
432 die "$inputfile: ERROR: referencing weak function" .
509 # if this is either a local function or a weak function
[all …]
/openbmc/u-boot/board/freescale/p2041rdb/
H A Dcpld.c26 u8 cpld_read(unsigned int reg) __attribute__((weak, alias("__cpld_read")));
35 __attribute__((weak, alias("__cpld_write")));
44 void cpld_reset(void) __attribute__((weak, alias("__cpld_reset")));
58 __attribute__((weak, alias("__cpld_set_altbank")));
68 __attribute__((weak, alias("__cpld_set_defbank")));
/openbmc/linux/tools/include/nolibc/
H A Dstackprotector.h21 __attribute__((weak,noreturn,section(".text.nolibc_stack_chk")))
31 __attribute__((weak,noreturn,section(".text.nolibc_stack_chk")))
37 __attribute__((weak,section(".data.nolibc_stack_chk")))
H A Dcrt.h10 char **environ __attribute__((weak));
11 const unsigned long *_auxv __attribute__((weak));
16 __attribute__((weak))
/openbmc/bmcweb/include/
H A Dvm_websocket.hpp245 static void afterMount(const std::weak_ptr<NbdProxyServer>& weak, in afterMount()
249 std::shared_ptr<NbdProxyServer> self = weak.lock(); in afterMount()
264 static void afterAccept(const std::weak_ptr<NbdProxyServer>& weak, in afterAccept()
276 std::shared_ptr<NbdProxyServer> self = weak.lock(); in afterAccept()
294 [weak{weak_from_this()}](const boost::system::error_code& ec, in run()
296 afterMount(weak, ec, isBinary); in run()
312 static void afterSendEx(const std::weak_ptr<NbdProxyServer>& weak) in afterSendEx()
314 std::shared_ptr<NbdProxyServer> self2 = weak.lock(); in afterSendEx()
322 void afterRead(const std::weak_ptr<NbdProxyServer>& weak, in afterRead()
331 std::shared_ptr<NbdProxyServer> self = weak.lock(); in afterRead()
[all …]
/openbmc/linux/include/linux/
H A Dlinkage.h27 ".weak " __stringify(x) "\n\t" \
99 #define SYM_L_WEAK(name) .weak name
125 #ifndef WEAK
127 #define WEAK(name) \
235 /* SYM_FUNC_START_WEAK -- use for weak functions */
241 /* SYM_FUNC_START_WEAK_NOALIGN -- use for weak functions, w/o alignment */
273 * SYM_FUNC_ALIAS_WEAK -- define a weak global alias for an existing function
/openbmc/u-boot/doc/
H A DREADME.cfi1 The common CFI driver provides this weak default implementation for
16 __attribute__((weak,alias("__flash_cmd_reset")));
19 In this case, board-specific code can override this weak default
/openbmc/linux/include/crypto/
H A Ddes.h40 * 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

12345678910>>...21