Home
last modified time | relevance | path

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

12345678910>>...158

/openbmc/qemu/target/mips/tcg/sysemu/
H A Dcp0_helper.c257 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); in helper_mftc0_tcstatus() local
259 if (other_tc == other->current_tc) { in helper_mftc0_tcstatus()
260 return other->active_tc.CP0_TCStatus; in helper_mftc0_tcstatus()
262 return other->tcs[other_tc].CP0_TCStatus; in helper_mftc0_tcstatus()
274 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); in helper_mftc0_tcbind() local
276 if (other_tc == other->current_tc) { in helper_mftc0_tcbind()
277 return other->active_tc.CP0_TCBind; in helper_mftc0_tcbind()
279 return other->tcs[other_tc].CP0_TCBind; in helper_mftc0_tcbind()
291 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); in helper_mftc0_tcrestart() local
293 if (other_tc == other->current_tc) { in helper_mftc0_tcrestart()
[all …]
/openbmc/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 …]
/openbmc/gpioplus/src/gpioplus/internal/
H A Dfd.cpp50 Fd::Fd(const Fd& other) : sys(other.sys), fd(dup(other.fd, sys)) {} in Fd() argument
52 Fd& Fd::operator=(const Fd& other) in operator =() argument
54 if (this != &other) in operator =()
57 sys = other.sys; in operator =()
58 fd = dup(other.fd, sys); in operator =()
63 Fd::Fd(Fd&& other) : sys(other.sys), fd(std::move(other.fd)) in Fd() argument
65 other.fd = -1; in Fd()
68 Fd& Fd::operator=(Fd&& other) in operator =() argument
70 if (this != &other) in operator =()
73 sys = other.sys; in operator =()
[all …]
H A Dfd.hpp46 Fd(const Fd& other);
47 Fd& operator=(const Fd& other);
48 Fd(Fd&& other);
49 Fd& operator=(Fd&& other);
/openbmc/bios-bmc-smm-error-logger/include/
H A Dbuffer.hpp48 bool operator==(const CircularBufferHeader& other) const in operator ==()
55 std::tie(other.bmcInterfaceVersion, other.biosInterfaceVersion, in operator ==()
56 other.magicNumber, other.queueSize, other.ueRegionSize, in operator ==()
57 other.bmcFlags, other.bmcReadPtr, other.biosFlags, in operator ==()
58 other.biosWritePtr); in operator ==()
71 bool operator==(const QueueEntryHeader& other) const in operator ==()
75 std::tie(other.sequenceId, other.entrySize, other.checksum, in operator ==()
76 other.rdeCommandType); in operator ==()
/openbmc/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 …]
/openbmc/linux/net/unix/
H A Daf_unix.c456 static int unix_dgram_peer_wake_connect(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_connect() argument
462 u_other = unix_sk(other); in unix_dgram_peer_wake_connect()
467 u->peer_wake.private = other; in unix_dgram_peer_wake_connect()
478 struct sock *other) in unix_dgram_peer_wake_disconnect() argument
483 u_other = unix_sk(other); in unix_dgram_peer_wake_disconnect()
486 if (u->peer_wake.private == other) { in unix_dgram_peer_wake_disconnect()
495 struct sock *other) in unix_dgram_peer_wake_disconnect_wakeup() argument
497 unix_dgram_peer_wake_disconnect(sk, other); in unix_dgram_peer_wake_disconnect_wakeup()
508 static int unix_dgram_peer_wake_me(struct sock *sk, struct sock *other) in unix_dgram_peer_wake_me() argument
512 connected = unix_dgram_peer_wake_connect(sk, other); in unix_dgram_peer_wake_me()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minifi-cpp/files/
H A D0001-libminifi-Rename-mutex_-to-mtx_-member-of-Concurrent.patch8 | 48 | : ConcurrentQueue(std::move(other), std::lock_guard<std::mutex>(other.mutex_)) {}
27 ConcurrentQueue(const ConcurrentQueue& other) = delete;
28 ConcurrentQueue& operator=(const ConcurrentQueue& other) = delete;
29 ConcurrentQueue(ConcurrentQueue&& other)
30 - : ConcurrentQueue(std::move(other), std::lock_guard<std::mutex>(other.mutex_)) {}
31 + : ConcurrentQueue(std::move(other), std::lock_guard<std::mutex>(other.mtx_)) {}
33 ConcurrentQueue& operator=(ConcurrentQueue&& other) {
34 if (this != &other) {
/openbmc/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 …]
/openbmc/openpower-hw-diags/util/
H A Dfile_descriptor.hpp40 FileDescriptor(FileDescriptor&& other) : fd(other.fd) in FileDescriptor() argument
42 other.fd = -1; in FileDescriptor()
53 FileDescriptor& operator=(FileDescriptor&& other) in operator =() argument
56 if (this != &other) in operator =()
58 set(other.fd); in operator =()
59 other.fd = -1; in operator =()
/openbmc/phosphor-power/
H A Dfile_descriptor.hpp40 FileDescriptor(FileDescriptor&& other) : fd(other.fd) in FileDescriptor() argument
42 other.fd = -1; in FileDescriptor()
53 FileDescriptor& operator=(FileDescriptor&& other) in operator =() argument
56 if (this != &other) in operator =()
58 set(other.fd); in operator =()
59 other.fd = -1; in operator =()
/openbmc/openpower-debug-collector/watchdog/
H A Dfile_descriptor.hpp42 FileDescriptor(FileDescriptor&& other) : fd(other.fd) in FileDescriptor() argument
44 other.fd = -1; in FileDescriptor()
56 FileDescriptor& operator=(FileDescriptor&& other) in operator =() argument
59 if (this != &other) in operator =()
61 set(other.fd); in operator =()
62 other.fd = -1; in operator =()
/openbmc/bmcweb/include/
H A Dduplicatable_file_handle.hpp17 DuplicatableFileHandle(const DuplicatableFileHandle& other) in DuplicatableFileHandle()
19 fileHandle.native_handle(dup(other.fileHandle.native_handle())); in DuplicatableFileHandle()
21 DuplicatableFileHandle& operator=(const DuplicatableFileHandle& other) in operator =()
23 if (this == &other) in operator =()
27 fileHandle.native_handle(dup(other.fileHandle.native_handle())); in operator =()
30 DuplicatableFileHandle& operator=(DuplicatableFileHandle&& other) noexcept =
/openbmc/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():
/openbmc/linux/tools/lib/perf/
H A Dcpumap.c405 struct perf_cpu_map *other) in perf_cpu_map__merge() argument
412 if (perf_cpu_map__is_subset(orig, other)) in perf_cpu_map__merge()
414 if (perf_cpu_map__is_subset(other, orig)) { in perf_cpu_map__merge()
416 return perf_cpu_map__get(other); in perf_cpu_map__merge()
419 tmp_len = __perf_cpu_map__nr(orig) + __perf_cpu_map__nr(other); in perf_cpu_map__merge()
426 while (i < __perf_cpu_map__nr(orig) && j < __perf_cpu_map__nr(other)) { in perf_cpu_map__merge()
427 if (__perf_cpu_map__cpu(orig, i).cpu <= __perf_cpu_map__cpu(other, j).cpu) { in perf_cpu_map__merge()
428 if (__perf_cpu_map__cpu(orig, i).cpu == __perf_cpu_map__cpu(other, j).cpu) in perf_cpu_map__merge()
432 tmp_cpus[k++] = __perf_cpu_map__cpu(other, j++); in perf_cpu_map__merge()
438 while (j < __perf_cpu_map__nr(other)) in perf_cpu_map__merge()
[all …]
/openbmc/phosphor-net-ipmid/
H A Dmessage.hpp139 Message(const Message& other) : in Message()
140 isPacketEncrypted(other.isPacketEncrypted), in Message()
141 isPacketAuthenticated(other.isPacketAuthenticated), in Message()
142 payloadType(other.payloadType), rcSessionID(other.rcSessionID), in Message()
143 bmcSessionID(other.bmcSessionID), rmcpMsgClass(other.rmcpMsgClass) in Message()
146 if (PayloadType::OPEN_SESSION_REQUEST == other.payloadType) in Message()
150 else if (PayloadType::RAKP1 == other.payloadType) in Message()
154 else if (PayloadType::RAKP3 == other.payloadType) in Message()
/openbmc/sdbusplus/src/
H A Dexception.cpp65 SdBusError::SdBusError(SdBusError&& other) : error(SD_BUS_ERROR_NULL) in SdBusError() argument
67 move(std::move(other)); in SdBusError()
70 SdBusError& SdBusError::operator=(SdBusError&& other) in operator =() argument
72 if (this != &other) in operator =()
74 move(std::move(other)); in operator =()
124 void SdBusError::move(SdBusError&& other) in move() argument
126 intf = std::move(other.intf); in move()
129 error = other.error; in move()
130 other.error = SD_BUS_ERROR_NULL; in move()
132 full_message = std::move(other.full_message); in move()
/openbmc/intel-ipmi-oem/
H A Dgenerate-allowlist.py69 def __lt__(self, other): argument
70 if self.netfn == other.netfn:
71 return self.cmd < other.cmd
72 return self.netfn < other.netfn
74 def match(self, other): argument
75 return (self.netfn == other.netfn) and (self.cmd == other.cmd)
/openbmc/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()
95 thread__put(other); in test__thread_maps_share()
/openbmc/phosphor-fan-presence/control/json/utils/
H A Dpcie_card_metadata.hpp103 bool operator==(const Metadata& other) in operator ==()
105 return (vendorID == other.vendorID) && in operator ==()
106 (deviceID == other.deviceID) && in operator ==()
107 (subsystemVendorID == other.subsystemVendorID) && in operator ==()
108 (subsystemID == other.subsystemID); in operator ==()
/openbmc/boost-dbus/include/dbus/
H A Dendpoint.hpp41 const bool operator==(const endpoint& other) const { in operator ==()
42 return (process_name_ == other.process_name_ && path_ == other.path_ && in operator ==()
43 interface_ == other.interface_ && member_ == other.member_); in operator ==()
/openbmc/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()
/openbmc/pldm/common/
H A Dtransport.hpp23 PldmTransport(const PldmTransport& other) = delete;
24 PldmTransport(const PldmTransport&& other) = delete;
25 PldmTransport& operator=(const PldmTransport& other) = delete;
26 PldmTransport& operator=(const PldmTransport&& other) = delete;
/openbmc/telemetry/src/utils/
H A Densure.hpp20 Ensure(Ensure&& other) = delete;
29 Ensure& operator=(U&& other) in operator =()
32 functor = std::move(other); in operator =()
36 Ensure& operator=(Ensure&& other) = delete;
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dfuse-allow-other.out1 QA output created by fuse-allow-other
6 --- allow-other=off ---
15 'allow-other': 'off'
35 --- allow-other=on ---
44 'allow-other': 'on'
62 --- allow-other=auto ---
71 'allow-other': 'auto'

12345678910>>...158