Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 2280) sorted by relevance

12345678910>>...92

/linux/tools/perf/pmu-events/
H A Dmetric.py25 def Equals(self, other) -> bool: argument
35 def __or__(self, other: Union[int, float, 'Expression']) -> 'Operator':
36 return Operator('|', self, other)
38 def __ror__(self, other: Union[int, float, 'Expression']) -> 'Operator':
39 return Operator('|', other, self)
41 def __xor__(self, other: Union[int, float, 'Expression']) -> 'Operator':
42 return Operator('^', self, other)
44 def __and__(self, other: Union[int, float, 'Expression']) -> 'Operator':
45 return Operator('&', self, other)
47 def __rand__(self, other: Union[int, float, 'Expression']) -> 'Operator':
[all …]
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-platform-devices-ampere-smpro1 What: /sys/bus/platform/devices/smpro-errmon.*/error_[core|mem|pcie|other]_[ce|ue]
55 …| Mesh (other) | 2 | 0 | Cross Point | X \| (Y << 5) \| NS <<11 …
57 …| Mesh (other) | 2 | 1 | Home Node(IO) | X \| (Y << 5) \| NS <<11 …
59 …| Mesh (other) | 2 | 2 | Home Node(Mem) | X \| (Y << 5) \| NS <<11 \| device<<1…
61 …| Mesh (other) | 2 | 4 | CCIX Node | X \| (Y << 5) \| NS <<11 …
63 …| 2P Link (other) | 3 | 0 | N/A | Altra 2P Link # …
65 …| GIC (other) | 5 | 0 | ERR0 | 0 …
67 …| GIC (other) | 5 | 1 | ERR1 | 0 …
69 …| GIC (other) | 5 | 2 | ERR2 | 0 …
71 …| GIC (other) | 5 | 3 | ERR3 | 0 …
[all …]
H A Ddebugfs-hisi-sec7 Only available for PF, and take no other effect on SEC.
47 Only available for PF, and take no other effect on SEC.
54 Available for both PF and VF, and take no other effect on SEC.
60 Available for both PF and VF, and take no other effect on SEC.
66 Available for both PF and VF, and take no other effect on SEC.
72 Available for both PF and VF, and take no other effect on SEC.
78 Available for both PF and VF, and take no other effect on SEC.
85 Available for both PF and VF, and take no other effect on SEC.
99 Only available for PF, and take no other effect on SEC.
105 and VF, and take no other effect on SEC.
[all …]
H A Ddebugfs-hisi-hpre74 Available for both PF and VF, and take no other effect on HPRE.
80 Available for both PF and VF, and take no other effect on HPRE.
86 Available for both PF and VF, and take no other effect on HPRE.
92 Available for both PF and VF, and take no other effect on HPRE.
98 Available for both PF and VF, and take no other effect on HPRE.
105 Available for both PF and VF, and take no other effect on HPRE.
119 Only available for PF, and take no other effect on HPRE.
125 and VF, and take no other effect on HPRE.
134 and take no other effect on HPRE.
147 Available for both PF and VF, and take no other effect on HPRE.
[all …]
H A Ddebugfs-hisi-zip67 Available for both PF and VF, and take no other effect on ZIP.
73 Available for both PF and VF, and take no other effect on ZIP.
79 Available for both PF and VF, and take no other effect on ZIP.
85 Available for both PF and VF, and take no other effect on ZIP.
91 Available for both PF and VF, and take no other effect on ZIP.
98 Available for both PF and VF, and take no other effect on ZIP.
112 Only available for PF, and take no other effect on ZIP.
118 and VF, and take no other effect on ZIP.
127 and take no other effect on ZIP.
140 Available for both PF and VF, and take no other effect on ZIP.
[all …]
/linux/net/unix/
H A Daf_unix.c530 static int unix_dgram_peer_wake_connect(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_connect() argument
536 u_other = unix_sk(other); in unix_dgram_peer_wake_connect()
541 u->peer_wake.private = other; in unix_dgram_peer_wake_connect()
552 struct sock *other) in unix_dgram_peer_wake_disconnect() argument
557 u_other = unix_sk(other); in unix_dgram_peer_wake_disconnect()
560 if (u->peer_wake.private == other) { in unix_dgram_peer_wake_disconnect()
569 struct sock *other) in unix_dgram_peer_wake_disconnect_wakeup() argument
571 unix_dgram_peer_wake_disconnect(sk, other); in unix_dgram_peer_wake_disconnect_wakeup()
582 static int unix_dgram_peer_wake_me(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_me() argument
586 connected = unix_dgram_peer_wake_connect(sk, other); in unix_dgram_peer_wake_me()
[all …]
/linux/drivers/pinctrl/aspeed/
H A Dpinmux-aspeed.h675 #define PIN_DECL_1(pin, other, sig) \ argument
676 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \
678 SIG_EXPR_LIST_PTR(pin, other))
692 #define SSSF_PIN_DECL(pin, other, sig, ...) \ argument
694 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \
696 SIG_EXPR_LIST_PTR(pin, other)); \
717 #define PIN_DECL_2(pin, other, high, low) \ argument
718 SIG_EXPR_LIST_DECL_SESG(pin, other, other); \
722 SIG_EXPR_LIST_PTR(pin, other))
724 #define PIN_DECL_3(pin, other, high, medium, low) \ argument
[all …]
/linux/tools/testing/kunit/
H A Dkunit_config.py37 def __eq__(self, other: Any) -> bool:
38 if not isinstance(other, self.__class__):
40 return self._entries == other._entries
52 def is_subset_of(self, other: 'Kconfig') -> bool:
54 b = other._entries.get(name)
63 def conflicting_options(self, other: 'Kconfig') -> List[Tuple[KconfigEntry, KconfigEntry]]:
66 b = other._entries.get(name)
72 def merge_in_entries(self, other: 'Kconfig') -> None:
73 for name, value in other._entries.items():
/linux/tools/lib/perf/
H A Dcpumap.c443 * other has its reference count increased. in perf_cpu_map__merge()
447 struct perf_cpu_map *other) in perf_cpu_map__merge()
454 if (perf_cpu_map__is_subset(orig, other)) in perf_cpu_map__merge()
456 if (perf_cpu_map__is_subset(other, orig)) { in perf_cpu_map__merge()
458 return perf_cpu_map__get(other);
461 tmp_len = __perf_cpu_map__nr(orig) + __perf_cpu_map__nr(other); in perf_cpu_map__intersect()
468 while (i < __perf_cpu_map__nr(orig) && j < __perf_cpu_map__nr(other)) { in perf_cpu_map__intersect()
469 if (__perf_cpu_map__cpu(orig, i).cpu <= __perf_cpu_map__cpu(other, j).cpu) { in perf_cpu_map__intersect()
470 if (__perf_cpu_map__cpu(orig, i).cpu == __perf_cpu_map__cpu(other, j).cpu) in perf_cpu_map__intersect()
474 tmp_cpus[k++] = __perf_cpu_map__cpu(other, in perf_cpu_map__intersect()
416 perf_cpu_map__merge(struct perf_cpu_map * orig,struct perf_cpu_map * other) perf_cpu_map__merge() argument
460 perf_cpu_map__intersect(struct perf_cpu_map * orig,struct perf_cpu_map * other) perf_cpu_map__intersect() argument
[all...]
/linux/tools/perf/tests/
H A Dthread-maps-share.c18 struct thread *other, *other_leader; in test__thread_maps_share() local
40 other = machine__findnew_thread(machine, 4, 5); in test__thread_maps_share()
43 leader && t1 && t2 && t3 && other); in test__thread_maps_share()
70 machine__remove_thread(machine, other); in test__thread_maps_share()
73 other_maps = thread__maps(other); in test__thread_maps_share()
94 thread__put(other); in test__thread_maps_share()
H A Dattr.py108 def equal(self, other): argument
110 log.debug(" [%s] %s %s" % (t, self[t], other[t]));
111 if t not in self or t not in other:
113 if not data_equal(self[t], other[t]):
122 def diff(self, other): argument
124 if t not in self or t not in other:
126 if not data_equal(self[t], other[t]):
127 log.warning("expected %s=%s, got %s" % (t, self[t], other[t]))
/linux/tools/testing/selftests/openat2/
H A Dhelpers.c73 char *fdpath, *dfdpath, *other; in fdequal() local
80 E_asprintf(&other, "%s", dfdpath); in fdequal()
82 E_asprintf(&other, "%s", path); in fdequal()
84 E_asprintf(&other, "%s/%s", dfdpath, path); in fdequal()
86 cmp = !strcmp(fdpath, other); in fdequal()
90 free(other); in fdequal()
/linux/drivers/leds/
H A Dleds-acer-a500.c20 struct a500_led *other; member
55 if (led->other->cdev.brightness) in a500_ec_led_brightness_set()
59 control_seq[1] = led->other->enable_seq[0]; in a500_ec_led_brightness_set()
100 white_led->other = orange_led; in a500_ec_leds_probe()
101 orange_led->other = white_led; in a500_ec_leds_probe()
/linux/drivers/gpu/drm/radeon/
H A Dradeon_sync.c65 struct radeon_fence *other; in radeon_sync_fence() local
70 other = sync->sync_to[fence->ring]; in radeon_sync_fence()
71 sync->sync_to[fence->ring] = radeon_fence_later(fence, other); in radeon_sync_fence()
74 other = sync->last_vm_update; in radeon_sync_fence()
75 sync->last_vm_update = radeon_fence_later(fence, other); in radeon_sync_fence()
/linux/drivers/net/ethernet/sfc/siena/
H A Defx.c208 struct efx_nic *other, *next; in efx_associate() local
216 list_for_each_entry_safe(other, next, &efx_unassociated_list, in efx_associate()
218 if (efx_same_controller(efx, other)) { in efx_associate()
219 list_del(&other->node); in efx_associate()
220 netif_dbg(other, probe, other->net_dev, in efx_associate()
224 list_add_tail(&other->node, in efx_associate()
226 other->primary = efx; in efx_associate()
232 list_for_each_entry(other, &efx_primary_list, node) { in efx_associate()
233 if (efx_same_controller(efx, other)) { in efx_associate()
236 pci_name(other->pci_dev), in efx_associate()
[all …]
/linux/sound/soc/samsung/
H A Di2s.c160 /* Return pointer to the other DAI */
166 /* If the other interface of the controller is transmitting data */
169 struct i2s_dai *other = get_other_dai(i2s); in other_tx_active() local
171 return tx_active(other); in other_tx_active()
193 /* If the other interface of the controller is receiving data */
196 struct i2s_dai *other = get_other_dai(i2s); in other_rx_active() local
198 return rx_active(other); in other_rx_active()
207 /* If the other DAI is transmitting or receiving data */
508 struct i2s_dai *other = get_other_dai(i2s); in i2s_set_sysclk() local
533 if ((rfs && other in i2s_set_sysclk()
827 struct i2s_dai *other = get_other_dai(i2s); i2s_startup() local
854 struct i2s_dai *other = get_other_dai(i2s); i2s_shutdown() local
877 struct i2s_dai *other = get_other_dai(i2s); config_setup() local
995 struct i2s_dai *other = get_other_dai(i2s); i2s_set_clkdiv() local
1058 struct i2s_dai *other = get_other_dai(i2s); samsung_i2s_dai_probe() local
1583 struct i2s_dai *other = get_other_dai(i2s); fsd_i2s_fixup_early() local
1597 struct i2s_dai *other = get_other_dai(i2s); fsd_i2s_fixup_late() local
[all...]
/linux/drivers/net/ethernet/sfc/
H A Defx.c198 struct efx_nic *other, *next; in efx_associate() local
206 list_for_each_entry_safe(other, next, &efx_unassociated_list, in efx_associate()
208 if (efx_same_controller(efx, other)) { in efx_associate()
209 list_del(&other->node); in efx_associate()
210 netif_dbg(other, probe, other->net_dev, in efx_associate()
214 list_add_tail(&other->node, in efx_associate()
216 other->primary = efx; in efx_associate()
222 list_for_each_entry(other, &efx_primary_list, node) { in efx_associate()
223 if (efx_same_controller(efx, other)) { in efx_associate()
226 pci_name(other->pci_dev), in efx_associate()
[all …]
/linux/rust/kernel/alloc/
H A Dvec_ext.rs52 fn extend_from_slice(&mut self, other: &[T], flags: Flags) -> Result<(), AllocError> in extend_from_slice()
96 fn extend_from_slice(&mut self, other: &[T], flags: Flags) -> Result<(), AllocError> in extend_from_slice()
100 <Self as VecExt<_>>::reserve(self, other.len(), flags)?; in extend_from_slice()
101 for (slot, item) in core::iter::zip(self.spare_capacity_mut(), other) { in extend_from_slice()
108 unsafe { self.set_len(self.len() + other.len()) }; in extend_from_slice()
/linux/net/vmw_vsock/
H A Dvsock_addr.c53 const struct sockaddr_vm *other) in vsock_addr_equals_addr() argument
55 return addr->svm_cid == other->svm_cid && in vsock_addr_equals_addr()
56 addr->svm_port == other->svm_port; in vsock_addr_equals_addr()
/linux/Documentation/admin-guide/
H A Dkernel-per-CPU-kthreads.rst50 2. Do all eHCA-Infiniband-related work on other CPUs, including
65 some other CPU.
78 occur on some other CPU and furthermore initiate all
79 Bluetooth activity on some other CPU.
103 do not offline any other CPUs, because doing so could force the
111 1. Force networking interrupts onto other CPUs.
112 2. Initiate any network I/O on other CPUs.
123 1. Force block-device interrupts onto some other CPU.
124 2. Initiate any block I/O on other CPUs.
135 1. Force block-device interrupts onto some other CPU.
[all …]
/linux/drivers/char/ipmi/
H A Dipmi_si_hardcode.c46 module_param_hw_array(regspacings, int, other, &num_regspacings, 0);
49 module_param_hw_array(regsizes, int, other, &num_regsizes, 0);
52 module_param_hw_array(regshifts, int, other, &num_regshifts, 0);
55 module_param_hw_array(slave_addrs, int, other, &num_slave_addrs, 0);
/linux/Documentation/admin-guide/namespaces/
H A Dcompatibility-list.rst10 in different other namespaces (the rows):
28 other task living in a different namespace via a shared filesystem
31 other object in another namespace.
34 should not be equal from the VFS point of view. In other
/linux/sound/soc/mediatek/
H A DKconfig12 that can be used with other codecs.
43 that can be used with other codecs.
63 that can be used with other codecs.
83 that can be used with other codecs.
137 that can be used with other codecs.
184 that can be used with other codecs.
203 with the MT6366(MT6358) and other I2S audio codecs.
224 that can be used with other codecs.
242 boards with the MT6359 and other I2S audio codecs.
252 that can be used with other codec
[all...]
/linux/Documentation/networking/device_drivers/ethernet/freescale/dpaa2/
H A Ddpio-driver.rst17 and other accelerators. A DPIO also provides hardware buffer
34 A. allow other drivers, such as the Ethernet driver, to enqueue and dequeue
43 DPIO service-- provides APIs to other Linux drivers for services
47 fsl-mc other
63 The diagram below shows how the DPIO driver components fit with the other
152 The qbman-portal APIs are not public to other drivers, and are
/linux/Documentation/driver-api/md/
H A Dmd-cluster.rst53 of sectors that are being re-synced by that node. No other
60 Each node has to communicate with other nodes when starting or ending
76 other nodes to acknowledge the message before proceeding. Only one
87 informs other nodes that the metadata has
94 informs other nodes that a resync is initiated or
104 informs other nodes that a device is being added to
165 received or other events that happened while waiting for the
231 other nodes from writing anywhere on the array.
234 environment when a resync is performed, it needs to tell other nodes
241 other nodes and other nodes remove the corresponding entry from the
[all …]

12345678910>>...92