Home
last modified time | relevance | path

Searched refs:weak (Results 1 – 82 of 82) sorted by relevance

/linux-4.4.14/drivers/hid/
Dhid-dr.c48 int strong, weak; in drff_play() local
51 weak = effect->u.rumble.weak_magnitude; in drff_play()
53 dbg_hid("called with 0x%04x 0x%04x", strong, weak); in drff_play()
55 if (strong || weak) { in drff_play()
57 weak = weak * 0xff / 0xffff; in drff_play()
62 if (weak == 0x0a) in drff_play()
63 weak = 0x0b; in drff_play()
67 drff->report->field[0]->value[2] = weak; in drff_play()
80 dbg_hid("running with 0x%02x 0x%02x", strong, weak); in drff_play()
Dhid-lg2ff.c39 int weak, strong; in play_effect() local
42 weak = effect->u.rumble.weak_magnitude; in play_effect()
44 if (weak || strong) { in play_effect()
45 weak = weak * 0xff / 0xffff; in play_effect()
49 lg2ff->report->field[0]->value[2] = weak; in play_effect()
Dhid-emsff.c39 int weak, strong; in emsff_play() local
41 weak = effect->u.rumble.weak_magnitude; in emsff_play()
44 dbg_hid("called with 0x%04x 0x%04x\n", strong, weak); in emsff_play()
46 weak = weak * 0xff / 0xffff; in emsff_play()
49 emsff->report->field[0]->value[1] = weak; in emsff_play()
52 dbg_hid("running with 0x%02x 0x%02x\n", strong, weak); in emsff_play()
Dhid-pl.c56 s32 *weak; member
74 *plff->weak = right; in hid_plff_play()
93 s32 *weak; in plff_init() local
133 weak = &report->field[0]->value[3]; in plff_init()
146 weak = &report->field[3]->value[0]; in plff_init()
171 plff->weak = weak; in plff_init()
175 *weak = 0x00; in plff_init()
/linux-4.4.14/arch/x86/um/vdso/
Dum_vdso.c29 __attribute__((weak, alias("__vdso_clock_gettime")));
41 __attribute__((weak, alias("__vdso_gettimeofday")));
53 int time(time_t *t) __attribute__((weak, alias("__vdso_time")));
71 __attribute__((weak, alias("__vdso_getcpu")));
/linux-4.4.14/arch/blackfin/kernel/
Dreboot.c81 __attribute__((weak))
95 __attribute__((weak))
106 __attribute__((weak))
Dsetup.c891 __attribute__((weak))
/linux-4.4.14/arch/alpha/oprofile/
Dcommon.c19 extern struct op_axp_model op_model_ev4 __attribute__((weak));
20 extern struct op_axp_model op_model_ev5 __attribute__((weak));
21 extern struct op_axp_model op_model_pca56 __attribute__((weak));
22 extern struct op_axp_model op_model_ev6 __attribute__((weak));
23 extern struct op_axp_model op_model_ev67 __attribute__((weak));
/linux-4.4.14/arch/um/os-Linux/
Duser_syms.c43 extern void readdir64(void) __attribute__((weak));
45 extern void truncate64(void) __attribute__((weak));
111 extern void __stack_smash_handler(void *) __attribute__((weak));
114 extern long __guard __attribute__((weak));
/linux-4.4.14/scripts/
Drecordmcount.pl154 my %weak; # List of weak functions
419 $weak{$2} = $1;
440 if (defined $weak{$ref_func}) {
518 if (!defined($locals{$text}) && !defined($weak{$text})) {
524 if (!defined($ref_func) && !defined($weak{$text}) &&
/linux-4.4.14/lib/
Diomap_copy.c31 void __attribute__((weak)) __iowrite32_copy(void __iomem *to, in __iowrite32_copy()
54 void __attribute__((weak)) __iowrite64_copy(void __iomem *to, in __iowrite64_copy()
Dbust_spinlocks.c19 void __attribute__((weak)) bust_spinlocks(int yes) in bust_spinlocks()
Ddiv64.c26 uint32_t __attribute__((weak)) __div64_32(uint64_t *n, uint32_t base) in __div64_32()
DKconfig.debug346 bool "Force weak per-cpu definitions"
350 defined weak to work around addressing range issue which
358 option forces all percpu variables to be defined as weak.
/linux-4.4.14/Documentation/devicetree/bindings/power/
Dbq2415x.txt20 - ti,weak-battery-voltage: integer, weak battery voltage threshold in mV.
40 ti,weak-battery-voltage = <3400>;
/linux-4.4.14/arch/arm/mach-pxa/
Dgumstix.c198 int __attribute__((weak)) am200_init(void) in am200_init()
203 int __attribute__((weak)) am300_init(void) in am300_init()
/linux-4.4.14/arch/powerpc/boot/
Dcrt0.S38 .weak _platform_stack_top
46 .weak _platform_stack_top
50 .weak _zimage_start
66 .weak __dynamic_start
Dsimpleboot.c26 extern int platform_specific_init(void) __attribute__((weak));
/linux-4.4.14/arch/x86/entry/vdso/
Dvclock_gettime.c306 __attribute__((weak, alias("__vdso_clock_gettime")));
323 __attribute__((weak, alias("__vdso_gettimeofday")));
339 __attribute__((weak, alias("__vdso_time")));
Dvgetcpu.c28 __attribute__((weak, alias("__vdso_getcpu")));
/linux-4.4.14/arch/um/kernel/
Dgmon_syms.c8 extern void __bb_init_func(void *) __attribute__((weak));
/linux-4.4.14/arch/alpha/lib/
Dcallback_srm.S99 .weak alpha_using_srm; alpha_using_srm = __alpha_using_srm
102 .weak callback_init_done; callback_init_done = __callback_init_done
/linux-4.4.14/drivers/input/
Dff-memless.c260 unsigned int strong, weak, i; in ml_combine_effects() local
285 weak = (u32)new->u.rumble.weak_magnitude * gain / 0xffff; in ml_combine_effects()
292 else if (effect->u.rumble.weak_magnitude + weak) in ml_combine_effects()
296 new->direction, weak); in ml_combine_effects()
303 min(weak + effect->u.rumble.weak_magnitude, 0xffffU); in ml_combine_effects()
/linux-4.4.14/init/
Dcalibrate.c260 unsigned long __attribute__((weak)) calibrate_delay_is_known(void) in calibrate_delay_is_known()
270 void __attribute__((weak)) calibration_delay_done(void) in calibration_delay_done()
/linux-4.4.14/arch/tile/kernel/vdso/
Dvgettimeofday.c156 __attribute__((weak, alias("__vdso_gettimeofday")));
198 __attribute__((weak, alias("__vdso_clock_gettime")));
/linux-4.4.14/arch/xtensa/kernel/
Dplatform.c24 r platform_##f a __attribute__((weak, alias("__platform_"#f)))
/linux-4.4.14/tools/lib/traceevent/
Dparse-utils.c26 #define __weak __attribute__((weak))
/linux-4.4.14/arch/arm64/lib/
Dmemcpy.S71 .weak memcpy
Dmemset.S57 .weak memset
Dmemmove.S60 .weak memmove
/linux-4.4.14/include/linux/
Dlinkage.h91 .weak name ASM_NL \
Dexport.h46 extern __visible void *__crc_##sym __attribute__((weak)); \
Dcompiler-gcc.h88 #define __weak __attribute__((weak))
Dmodule.h674 #define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
/linux-4.4.14/arch/mips/kernel/
Dmips-cm.c159 __attribute__((weak, alias("__mips_cm_phys_base")));
178 __attribute__((weak, alias("__mips_cm_l2sync_phys_base")));
/linux-4.4.14/arch/sh/drivers/pci/
Dops-sh4.c104 int __attribute__((weak)) pci_fixup_pcic(struct pci_channel *chan) in pci_fixup_pcic()
/linux-4.4.14/drivers/input/joystick/
Dxpad.c803 __u16 weak; in xpad_play_effect() local
809 weak = effect->u.rumble.weak_magnitude; in xpad_play_effect()
818 xpad->odata[5] = weak / 256; /* right actuator */ in xpad_play_effect()
827 xpad->odata[4] = weak / 256; /* right actuator? */ in xpad_play_effect()
841 xpad->odata[6] = weak / 256; in xpad_play_effect()
860 xpad->odata[9] = weak / 256; /* right actuator */ in xpad_play_effect()
/linux-4.4.14/tools/include/linux/
Dcompiler.h31 # define __weak __attribute__((weak))
/linux-4.4.14/drivers/android/
Dbinder.c268 int weak; member
1128 if (ref->weak == 0) { in binder_inc_ref()
1133 ref->weak++; in binder_inc_ref()
1145 ref->desc, ref->strong, ref->weak); in binder_dec_ref()
1157 if (ref->weak == 0) { in binder_dec_ref()
1160 ref->desc, ref->strong, ref->weak); in binder_dec_ref()
1163 ref->weak--; in binder_dec_ref()
1165 if (ref->strong == 0 && ref->weak == 0) in binder_dec_ref()
1825 ref->desc, ref->strong, ref->weak, ref->node->debug_id); in binder_thread_write()
2011 ref->strong, ref->weak, ref->node->debug_id); in binder_thread_write()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dimg,tz1090-pdc-pinctrl.txt52 - low-power-enable: Flag, power-on-start weak pull-down for invalid power.
53 - low-power-disable: Flag, power-on-start weak pull-down disabled.
Dimg,pistachio-pinctrl.txt43 - bias-pull-up: Enable weak pull-up.
44 - bias-pull-down: Enable weak pull-down.
/linux-4.4.14/virt/kvm/
Deventfd.c174 int __attribute__((weak)) kvm_arch_set_irq_inatomic( in kvm_arch_set_irq_inatomic()
265 void __attribute__((weak)) kvm_arch_irq_bypass_stop( in kvm_arch_irq_bypass_stop()
270 void __attribute__((weak)) kvm_arch_irq_bypass_start( in kvm_arch_irq_bypass_start()
275 int __attribute__((weak)) kvm_arch_update_irqfd_routing( in kvm_arch_update_irqfd_routing()
/linux-4.4.14/arch/x86/lib/
Dmemset_64.S7 .weak memset
Dmemcpy_64.S14 .weak memcpy
Dmemmove_64.S25 .weak memmove
/linux-4.4.14/fs/proc/
Dmeminfo.c22 void __attribute__((weak)) arch_report_meminfo(struct seq_file *m) in arch_report_meminfo()
/linux-4.4.14/drivers/regulator/
Ddbx500-prcmu.c158 int __attribute__((weak)) dbx500_regulator_testcase( in dbx500_regulator_testcase()
/linux-4.4.14/arch/powerpc/platforms/8xx/
Dm8xx_setup.c48 void __init __attribute__ ((weak))
/linux-4.4.14/arch/sh/kernel/cpu/
Dinit.c102 void __attribute__ ((weak)) l2_cache_init(void) in l2_cache_init()
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/
Drs.c2024 s32 sr, int weak, int strong, in rs_get_tpc_action() argument
2042 if (weak != TPC_INVALID) { in rs_get_tpc_action()
2097 int weak, strong; in rs_tpc_perform() local
2124 rs_get_adjacent_txp(mvm, cur, &weak, &strong); in rs_tpc_perform()
2130 if (weak != TPC_INVALID) in rs_tpc_perform()
2131 weak_tpt = window[weak].average_tpt; in rs_tpc_perform()
2137 cur, current_tpt, sr, weak, strong, in rs_tpc_perform()
2140 action = rs_get_tpc_action(mvm, sr, weak, strong, in rs_tpc_perform()
2144 if (weak == TPC_INVALID && action == TPC_ACTION_DECREASE) { in rs_tpc_perform()
2156 lq_sta->lq.reduced_tpc = weak; in rs_tpc_perform()
/linux-4.4.14/arch/blackfin/mach-common/
Dinterrupt.S219 .weak _evt_nmi
/linux-4.4.14/arch/powerpc/include/asm/
Dmachdep.h285 __attribute__((weak)); \
/linux-4.4.14/tools/perf/util/
Dutil.h179 extern void *xrealloc(void *ptr, size_t size) __attribute__((weak));
Dheader.c829 int __attribute__ ((weak)) get_cpuid(char *buffer __maybe_unused, in get_cpuid()
/linux-4.4.14/Documentation/w1/masters/
Dds249021 - The weak pullup current is a minimum of 0.9mA and maximum of 6.0mA.
/linux-4.4.14/arch/x86/kernel/
Dreboot.c499 void __attribute__((weak)) mach_reboot_fixups(void) in mach_reboot_fixups()
/linux-4.4.14/scripts/mod/
Dmodpost.c164 unsigned int weak:1; member
192 static struct symbol *alloc_symbol(const char *name, unsigned int weak, in alloc_symbol() argument
199 s->weak = weak; in alloc_symbol()
2155 if (have_vmlinux && !s->weak) { in add_versions()
/linux-4.4.14/Documentation/hwmon/
Dcoretemp48 On other models, it is set to an arbitrary value based on weak heuristics.
Dabituguru-datasheet6 my weak knowledge in "backwards engineering".
/linux-4.4.14/kernel/
Dkallsyms.c48 __attribute__((weak, section(".rodata")));
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/
DGPIO.txt138 A large proportion of the GPIO pins on the S3C2410 can have weak
/linux-4.4.14/Documentation/scheduler/
Dsched-nice-design.txt4 Nice levels were always pretty weak under Linux and people continuously
/linux-4.4.14/Documentation/RCU/
Drcu_dereference.txt79 using branches. While weak-memory machines such as ARM or PowerPC
99 weak-memory machines such as ARM or PowerPC do order stores
DRTFP.txt374 Concurrent access to skip lists. Has both weak and strong search.
/linux-4.4.14/sound/soc/
Dsoc-dapm.c201 if (p->is_supply || p->weak || !p->connect) in dapm_widget_invalidate_paths()
263 if (p->weak || p->is_supply) in dapm_path_invalidate()
1099 if (path->weak || path->is_supply) in is_connected_ep()
1287 if (path->weak) in dapm_supply_check_power()
2858 path->weak = 1; in snd_soc_dapm_weak_route()
/linux-4.4.14/arch/powerpc/kernel/
Dmisc_64.S709 .weak __crc_TOC.
Dtraps.c1860 void __attribute__ ((weak)) WatchdogHandler(struct pt_regs *regs) in WatchdogHandler()
/linux-4.4.14/drivers/infiniband/hw/qib/
Dqib_init.c802 int __attribute__((weak)) qib_enable_wc(struct qib_devdata *dd) in qib_enable_wc()
807 void __attribute__((weak)) qib_disable_wc(struct qib_devdata *dd) in qib_disable_wc()
Dqib_iba6120.c2041 int __attribute__((weak)) qib_unordered_wc(void) in qib_unordered_wc()
/linux-4.4.14/Documentation/crypto/
Ddescore-readme.txt88 it's a bit weak on common low-level optimizations which is why
299 not be a (semi-)weak key (or -2 is returned).
/linux-4.4.14/Documentation/timers/
Dtimekeeping.txt110 In addition to the clock sources and clock events there is a special weak
/linux-4.4.14/drivers/media/i2c/m5mols/
Dm5mols_core.c783 int __attribute__ ((weak)) m5mols_update_fw(struct v4l2_subdev *sd, in m5mols_update_fw()
/linux-4.4.14/include/sound/
Dsoc-dapm.h535 u32 weak:1; /* path ignored for power management */ member
/linux-4.4.14/drivers/staging/rdma/ipath/
Dipath_driver.c291 int __attribute__((weak)) ipath_enable_wc(struct ipath_devdata *dd) in ipath_enable_wc()
296 void __attribute__((weak)) ipath_disable_wc(struct ipath_devdata *dd) in ipath_disable_wc()
/linux-4.4.14/Documentation/DocBook/
Dalsa-driver-api.xml.db307 API-snd-soc-dapm-weak-routes
/linux-4.4.14/tools/perf/
Ddesign.txt459 weak stub hw_perf_event_init() to register hardware counters.
/linux-4.4.14/arch/arm/boot/dts/
Domap3-n900.dts615 ti,weak-battery-voltage = <3400>;
/linux-4.4.14/Documentation/scsi/
DChangeLog.ncr53c8xx32 that implement a weak memory ordering.
DChangeLog.sym53c8xx96 that implement a weak memory ordering.
/linux-4.4.14/drivers/mfd/
Dab8500-debugfs.c1581 bool __attribute__((weak)) suspend_test_wake_cause_interrupt_is_mine(u32 my_int) in suspend_test_wake_cause_interrupt_is_mine()
/linux-4.4.14/Documentation/filesystems/cifs/
DREADME646 may use lanman (weak) password hash 0x00010
/linux-4.4.14/Documentation/
Dmemory-barriers.txt1336 thought of as weak forms of barrier() that affect only the specific