Symbol: both
arch/sparc/kernel/unaligned_32.c
245
if(!ok_for_kernel(insn) || dir == both) {
arch/sparc/kernel/unaligned_32.c
42
return both;
arch/sparc/kernel/unaligned_64.c
327
if (!ok_for_kernel(insn) || dir == both) {
arch/sparc/kernel/unaligned_64.c
51
return both;
drivers/gpio/gpio-hisi.c
151
unsigned int both = hisi_gpio_read_reg(chip, HISI_GPIO_INT_DEDGE_ST);
drivers/gpio/gpio-hisi.c
153
if (both & mask)
drivers/gpio/gpio-rcar.c
117
bool both)
drivers/gpio/gpio-rcar.c
136
gpio_rcar_modify_bit(p, BOTHEDGE, hwirq, both);
drivers/hwmon/aspeed-pwm-tacho.c
531
u8 fan_tach_ch_source, type, mode, both;
drivers/hwmon/aspeed-pwm-tacho.c
566
both = (mode & BOTH_EDGES) ? 1 : 0;
drivers/hwmon/aspeed-pwm-tacho.c
568
tach_div = (0x4 << both) << (tach_div * 2);
drivers/media/pci/bt8xx/bttv-i2c.c
285
unsigned char b2, int both)
drivers/media/pci/bt8xx/bttv-i2c.c
288
int bytes = both ? 2 : 1;
drivers/media/pci/bt8xx/bttv.h
372
unsigned char b2, int both);
drivers/media/pci/ivtv/ivtv-cards.c
1240
.both = 0x0080 },
drivers/media/pci/ivtv/ivtv-cards.c
247
.lang1 = 0x0200, .lang2 = 0x0100, .both = 0x0000 },
drivers/media/pci/ivtv/ivtv-cards.c
290
.lang1 = 0x0004, .lang2 = 0x0000, .both = 0x0008 },
drivers/media/pci/ivtv/ivtv-cards.c
332
.lang1 = 0x0004, .lang2 = 0x0000, .both = 0x0008 },
drivers/media/pci/ivtv/ivtv-cards.c
483
.lang1 = 0x0300, .lang2 = 0x0000, .both = 0x0200 },
drivers/media/pci/ivtv/ivtv-cards.c
849
.lang1 = 0x0300, .lang2 = 0x0000, .both = 0x0200 },
drivers/media/pci/ivtv/ivtv-cards.h
245
u16 both; /* both languages are output */
drivers/pci/vgaarb.c
91
goto both;
drivers/pci/vgaarb.c
93
goto both;
drivers/pci/vgaarb.c
95
goto both;
drivers/pci/vgaarb.c
97
both:
drivers/platform/cznic/turris-omnia-mcu-gpio.c
718
mcu->both = rising & falling;
drivers/platform/cznic/turris-omnia-mcu-gpio.c
719
mcu->is_cached &= mcu->both;
drivers/platform/cznic/turris-omnia-mcu-gpio.c
808
mcu->is_cached |= mcu->both & (rising ^ falling);
drivers/platform/cznic/turris-omnia-mcu.h
83
unsigned long mask, rising, falling, both, cached, is_cached;
fs/fat/dir.c
594
struct fat_ioctl_filldir_callback *both)
fs/fat/dir.c
671
if (!both)
fs/fat/dir.c
679
both->longname = fill_name;
fs/fat/dir.c
680
both->long_len = fill_len;
fs/fat/dir.c
681
both->shortname = bufname;
fs/fat/dir.c
682
both->short_len = short_len;
fs/fat/dir.c
802
int short_only, int both)
fs/fat/dir.c
817
short_only, both ? &buf : NULL);
fs/fat/dir.c
831
int short_only, both;
fs/fat/dir.c
836
both = 0;
fs/fat/dir.c
840
both = 1;
fs/fat/dir.c
855
short_only, both);
fs/fat/dir.c
869
int short_only, both;
fs/fat/dir.c
874
both = 0;
fs/fat/dir.c
878
both = 1;
fs/fat/dir.c
893
short_only, both);
include/linux/futex.h
53
} both;
include/linux/futex.h
56
#define FUTEX_KEY_INIT (union futex_key) { .both = { .ptr = 0ULL } }
kernel/futex/core.c
156
key->both.offset);
kernel/futex/core.c
370
int node = key->both.node;
kernel/futex/core.c
385
hash = jhash2((u32 *)key, offsetof(typeof(*key), both.offset) / sizeof(u32),
kernel/futex/core.c
386
key->both.offset);
kernel/futex/core.c
522
key->both.offset = address % PAGE_SIZE;
kernel/futex/core.c
525
address -= key->both.offset;
kernel/futex/core.c
562
key->both.node = node;
kernel/futex/core.c
680
key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
kernel/futex/core.c
715
key->both.offset |= FUT_OFF_INODE; /* inode-based key */
kernel/futex/futex.h
143
return !(key->both.offset & (FUT_OFF_INODE | FUT_OFF_MMSHARED));
kernel/futex/futex.h
275
&& key1->both.word == key2->both.word
kernel/futex/futex.h
276
&& key1->both.ptr == key2->both.ptr
kernel/futex/futex.h
277
&& key1->both.offset == key2->both.offset);