Searched refs:weak (Results 26 - 50 of 78) sorted by path

1234

/linux-master/drivers/hid/
H A Dhid-mf.c38 int strong, weak; local
41 weak = effect->u.rumble.weak_magnitude;
43 dbg_hid("Called with 0x%04x 0x%04x.\n", strong, weak);
46 weak = weak * 0xff / 0xffff;
48 dbg_hid("Running with 0x%02x 0x%02x.\n", strong, weak);
50 mf->report->field[0]->value[0] = weak;
H A Dhid-microsoft.c36 __u8 weak; member in struct:ms_data
300 r->magnitude[MAGNITUDE_WEAK] = ms->weak; /* right actuator */
320 ms->weak = ((u32) effect->u.rumble.weak_magnitude * 100) / U16_MAX;
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_iba6120.c2000 int __attribute__((weak)) qib_unordered_wc(void)
H A Dqib_init.c778 int __attribute__((weak)) qib_enable_wc(struct qib_devdata *dd)
783 void __attribute__((weak)) qib_disable_wc(struct qib_devdata *dd)
/linux-master/drivers/input/
H A Dff-memless.c245 unsigned int strong, weak, i; local
270 weak = (u32)new->u.rumble.weak_magnitude * gain / 0xffff;
277 else if (effect->u.rumble.weak_magnitude + weak)
281 new->direction, weak);
288 min(weak + effect->u.rumble.weak_magnitude, 0xffffU);
/linux-master/drivers/input/joystick/
H A Dxpad.c1485 __u16 weak; local
1493 weak = effect->u.rumble.weak_magnitude;
1504 packet->data[5] = weak / 256; /* right actuator */
1514 packet->data[4] = weak / 256; /* right actuator? */
1529 packet->data[6] = weak / 256;
1549 packet->data[9] = weak / 512; /* right actuator */
/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Drs.c1900 s32 sr, int weak, int strong,
1913 IWL_DEBUG_RATE(mvm, "increase txp because of weak SR\n");
1919 weak != TPC_INVALID) {
1924 "no weak txp measurement. decrease txp\n");
1974 int weak, strong; local
2001 rs_get_adjacent_txp(mvm, cur, &weak, &strong);
2007 if (weak != TPC_INVALID)
2008 weak_tpt = window[weak].average_tpt;
2013 "(TPC: %d): cur_tpt %d SR %d weak %d strong %d weak_tpt %d strong_tpt %d\n",
2014 cur, current_tpt, sr, weak, stron
1899 rs_get_tpc_action(struct iwl_mvm *mvm, s32 sr, int weak, int strong, int current_tpt, int weak_tpt, int strong_tpt) argument
[all...]
/linux-master/fs/notify/fanotify/
H A Dfanotify_user.c1197 bool weak; member in struct:fan_fsid
1210 if (fsid->weak)
1231 /* Do not allow mixing of marks with weak and strong fsid */
1236 if (!fsid->weak)
1239 /* Do not allow mixing marks with weak fsid from different fs */
1641 goto weak;
1654 goto weak;
1657 fsid->weak = false;
1660 weak:
1661 /* Allow weak fsi
[all...]
/linux-master/fs/overlayfs/
H A Dsuper.c83 static int ovl_revalidate_real(struct dentry *d, unsigned int flags, bool weak) argument
90 if (weak) {
105 unsigned int flags, bool weak)
122 ret = ovl_revalidate_real(upper, flags, weak);
125 ret = ovl_revalidate_real(lowerstack[i].dentry, flags, weak);
104 ovl_dentry_revalidate_common(struct dentry *dentry, unsigned int flags, bool weak) argument
/linux-master/fs/proc/
H A Dmeminfo.c24 void __attribute__((weak)) arch_report_meminfo(struct seq_file *m)
/linux-master/include/linux/
H A Ddelay.h60 void __attribute__((weak)) calibration_delay_done(void);
H A Dlinkage.h27 ".weak " __stringify(x) "\n\t" \
99 #define SYM_L_WEAK(name) .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
H A Dmodule.h812 #define symbol_get(x) ({ extern typeof(x) x __attribute__((weak,visibility("hidden"))); &(x); })
/linux-master/include/sound/
H A Dsoc-dapm.h615 u32 weak:1; /* path ignored for power management */ member in struct:snd_soc_dapm_path
/linux-master/kernel/
H A Dkallsyms_internal.h20 __section(".rodata") __attribute__((weak));
23 __section(".rodata") __attribute__((weak));
/linux-master/kernel/kcsan/
H A Dcore.c1224 #define DEFINE_TSAN_ATOMIC_CMPXCHG(bits, strength, weak) \
1236 return __atomic_compare_exchange_n(ptr, exp, val, weak, mo, fail_mo); \
1267 DEFINE_TSAN_ATOMIC_CMPXCHG(bits, weak, 1); \
/linux-master/lib/math/
H A Ddiv64.c32 uint32_t __attribute__((weak)) __div64_32(uint64_t *n, uint32_t base)
/linux-master/mm/
H A Dhugetlb.c3287 __attribute__ ((weak, alias("__alloc_bootmem_huge_page")));
4645 bool __init __attribute((weak)) arch_hugetlb_valid_size(unsigned long size)
/linux-master/scripts/kconfig/
H A Dmenu.c692 int __attribute__((weak)) get_jump_key_char(void)
/linux-master/scripts/mod/
H A Dmodpost.c214 bool weak; member in struct:symbol
260 static void sym_add_unresolved(const char *name, struct module *mod, bool weak) argument
265 sym->weak = weak;
1740 if (!s->weak && nr_unresolved++ < MAX_UNRESOLVED_REPORTS)
/linux-master/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)
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{
[all...]
/linux-master/sound/soc/
H A Dsoc-dapm.c224 if (p->is_supply || p->weak || !p->connect)
286 if (p->weak || p->is_supply)
1173 if (path->weak || path->is_supply)
1228 if (path->weak || path->is_supply)
1465 if (path->weak)
3229 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
3235 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
3241 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
3246 path->weak = 1;
3252 dev_err(dapm->dev, "ASoC: No path found for weak rout
[all...]
/linux-master/tools/include/linux/
H A Dcompiler.h114 # define __weak __attribute__((weak))
/linux-master/tools/include/nolibc/
H A Darch-aarch64.h145 void __attribute__((weak, noreturn, optimize("Os", "omit-frame-pointer"))) __no_stack_protector _start(void)
H A Darch-arm.h188 void __attribute__((weak, noreturn, optimize("Os", "omit-frame-pointer"))) __no_stack_protector _start(void)

Completed in 791 milliseconds

1234