/openbmc/linux/tools/perf/pmu-events/arch/riscv/ |
H A D | riscv-sbi-firmware.json | 39 "PublicDescription": "Sent IPI to other HART event", 42 "BriefDescription": "Sent IPI to other HART event" 45 "PublicDescription": "Received IPI from other HART event", 48 "BriefDescription": "Received IPI from other HART event" 51 "PublicDescription": "Sent FENCE.I request to other HART event", 54 "BriefDescription": "Sent FENCE.I request to other HART event" 57 "PublicDescription": "Received FENCE.I request from other HART event", 60 "BriefDescription": "Received FENCE.I request from other HART event" 63 "PublicDescription": "Sent SFENCE.VMA request to other HART event", 66 "BriefDescription": "Sent SFENCE.VMA request to other HART event" [all …]
|
/openbmc/qemu/target/mips/tcg/sysemu/ |
H A D | cp0_helper.c | 58 * because there might be other conditions that state that c should in mips_vpe_wake() 121 /* Not allowed to address other CPUs. */ in mips_cpu_map_tc() 257 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() [all …]
|
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/settings/phosphor-settings-defaults-native/ |
H A D | catalina-temporary-software-versions.yml | 7 Default: Version::VersionPurpose::Other 15 Default: Version::VersionPurpose::Other 23 Default: Version::VersionPurpose::Other 31 Default: Version::VersionPurpose::Other 39 Default: Version::VersionPurpose::Other 47 Default: Version::VersionPurpose::Other 55 Default: Version::VersionPurpose::Other 63 Default: Version::VersionPurpose::Other 71 Default: Version::VersionPurpose::Other 79 Default: Version::VersionPurpose::Other [all …]
|
/openbmc/linux/tools/perf/pmu-events/ |
H A D | metric.py | 25 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/openbmc/meta-facebook/meta-harma/recipes-phosphor/settings/phosphor-settings-defaults-native/ |
H A D | harma-temporary-software-versions.yml | 7 Default: Version::VersionPurpose::Other 15 Default: Version::VersionPurpose::Other 23 Default: Version::VersionPurpose::Other 31 Default: Version::VersionPurpose::Other 39 Default: Version::VersionPurpose::Other 47 Default: Version::VersionPurpose::Other 55 Default: Version::VersionPurpose::Other 63 Default: Version::VersionPurpose::Other 71 Default: Version::VersionPurpose::Other 79 Default: Version::VersionPurpose::Other [all …]
|
/openbmc/gpioplus/src/gpioplus/internal/ |
H A D | fd.cpp | 50 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 …]
|
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/settings/phosphor-settings-defaults-native/ |
H A D | yosemite4-temporary-host-software-versions.yml | 7 Default: Version::VersionPurpose::Other 15 Default: Version::VersionPurpose::Other 23 Default: Version::VersionPurpose::Other 31 Default: Version::VersionPurpose::Other 39 Default: Version::VersionPurpose::Other 47 Default: Version::VersionPurpose::Other 55 Default: Version::VersionPurpose::Other 63 Default: Version::VersionPurpose::Other 71 Default: Version::VersionPurpose::Other 79 Default: Version::VersionPurpose::Other [all …]
|
/openbmc/openbmc/meta-facebook/meta-minerva/recipes-phosphor/settings/phosphor-settings-defaults-native/ |
H A D | minerva-temporary-software-versions.yml | 7 Default: Version::VersionPurpose::Other 15 Default: Version::VersionPurpose::Other 23 Default: Version::VersionPurpose::Other 31 Default: Version::VersionPurpose::Other 39 Default: Version::VersionPurpose::Other 47 Default: Version::VersionPurpose::Other 55 Default: Version::VersionPurpose::Other 63 Default: Version::VersionPurpose::Other 71 Default: Version::VersionPurpose::Other 79 Default: Version::VersionPurpose::Other [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minifi-cpp/files/ |
H A D | 0001-libminifi-Rename-mutex_-to-mtx_-member-of-Concurrent.patch | 8 | 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/net/unix/ |
H A D | af_unix.c | 52 * other the moment one end closes. 456 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() 505 * - unix_peer(sk) == other [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/goldmont/ |
H A D | cache.json | 64 …other caching agents (typically another processor) in the system, one of those caching agents indi… 114 …to the L1 cache. Typically a load will receive this indication when some other load or prefetch m… 216 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 221 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 226 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 231 … reads (demand & prefetch) that miss the L2 cache with a snoop hit in the other processor module, … 236 …mand & prefetch) that true miss for the L2 cache with a snoop miss in the other processor module.", 241 …mand & prefetch) that true miss for the L2 cache with a snoop miss in the other processor module. … 266 …ed by L1 or L2 prefetchers that miss the L2 cache with a snoop hit in the other processor module, … 271 …ed by L1 or L2 prefetchers that miss the L2 cache with a snoop hit in the other processor module, … [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/cortex-a65-e1/ |
H A D | ifu.json | 63 "PublicDescription": "Thread flushed due to reasons other than TLB miss", 66 "BriefDescription": "Thread flushed due to reasons other than TLB miss" 69 "PublicDescription": "This thread and the other thread both ready for scheduling in if0", 72 "BriefDescription": "This thread and the other thread both ready for scheduling in if0" 75 …"PublicDescription": "This thread was arbitrated when the other thread was also ready for scheduli… 78 …"BriefDescription": "This thread was arbitrated when the other thread was also ready for schedulin… 81 …"PublicDescription": "This thread was arbitrated when the other thread was also active, but not ne… 84 …"BriefDescription": "This thread was arbitrated when the other thread was also active, but not nec… 99 "PublicDescription": "I-Cache lookup under miss from other thread", 102 "BriefDescription": "I-Cache lookup under miss from other thread" [all …]
|
/openbmc/linux/tools/perf/tests/ |
H A D | thread-maps-share.c | 17 /* other process */ in test__thread_maps_share() 18 struct thread *other, *other_leader; in test__thread_maps_share() local 27 * other group (pid: 4, tids: 4, 5) in test__thread_maps_share() 40 other = machine__findnew_thread(machine, 4, 5); in test__thread_maps_share() 43 leader && t1 && t2 && t3 && other); in test__thread_maps_share() 54 * Verify the other leader was created by previous call. in test__thread_maps_share() 59 TEST_ASSERT_VAL("failed to find other leader", other_leader); 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() 91 /* release other group */ in test__thread_maps_share() [all …]
|
/openbmc/openpower-hw-diags/util/ |
H A D | file_descriptor.hpp | 38 * @param other - FileDescriptor object being moved 40 FileDescriptor(FileDescriptor&& other) : fd(other.fd) in FileDescriptor() argument 42 other.fd = -1; in FileDescriptor() 49 * ownership of the file descriptor owned by the other object. 51 * @param other - FileDescriptor object being moved 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/bios-bmc-smm-error-logger/include/ |
H A D | buffer.hpp | 48 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/phosphor-power/ |
H A D | file_descriptor.hpp | 38 * @param other - FileDescriptor object being moved 40 FileDescriptor(FileDescriptor&& other) : fd(other.fd) in FileDescriptor() argument 42 other.fd = -1; in FileDescriptor() 49 * ownership of the file descriptor owned by the other object. 51 * @param other - FileDescriptor object being moved 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 D | file_descriptor.hpp | 40 * @param other - FileDescriptor object being moved 42 FileDescriptor(FileDescriptor&& other) : fd(other.fd) in FileDescriptor() argument 44 other.fd = -1; in FileDescriptor() 51 * Then transfers ownership of the file descriptor owned by the other 54 * @param other - FileDescriptor object being moved 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/openbmc/poky/meta/files/common-licenses/ |
H A D | CC-BY-NC-ND-4.0 | 3 …on of Creative Commons public licenses does not create a lawyer-client or other relationship. Crea… 7 … creators and other rights holders may use to share original works of authorship and other materia… 9 …other rights. Our licenses are irrevocable. Licensors should read and understand the terms and con… 11 …other rights that a licensor has authority to grant. Use of the licensed material may still be res… 25 …d. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitati… 27 …e. Licensed Material means the artistic or literary work, database, or other material to which the… 33 …urposes of this Public License, the exchange of the Licensed Material for other material subject t… 37 …other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Counci… 64 b. Other rights. 66 …ot licensed under this Public License, nor are publicity, privacy, and/or other similar personalit… [all …]
|
H A D | PDDL-1.0 | 6 …other legal rights used to protect databases and data, can create uncertainty or practical difficu… 10 …ly, use technical protection measures, combine this data or database with other databases or data,… 14 …other law under the banner of "intellectual property", is inherently national law. This means that… 20 …ghts claims over only a database, and leave the contents to be covered by other licences or docume… 22 Just like any licence or other document dealing with intellectual property, rightsholders should be… 34 "Data" - The contents of the Database, which includes the information, independent works, or other … 36 …systematic or methodical way and individually accessible by electronic or other means offered unde… 44 …ted by Copyright or Database Rights whether in the original medium or any other; and includes modi… 74 Users of this Database are cautioned that they may have to clear other rights or consult other lice… 102 …that would otherwise prejudice the author’s honour and reputation, or any other derogatory treatme… [all …]
|
H A D | RPSL-1.0 | 8 …Definitions. This License applies to any program or other work which RealNetworks, Inc., or any ot… 10 …ed by using or making the Original Code alone and not in combination with other software or hardwa… 12 … on Exhibit B or at https://www.helixcommunity.org/content/complicense or other licenses specifica… 18 1.5 "Deploy" means to use, sublicense or distribute Covered Code other than for Your internal resea… 22 …other than You, used to provide any services to anyone other than You, or used in any way to deliv… 26 …he contents of a file containing Covered Code; and/or (b) any new file or other representation of … 28 1.10 "Original Code" means (a) the Source Code of a program or other work as originally made availa… 32 1.12 "Source Code" means the human readable form of a program or other work that is suitable for ma… 40 (a) You must retain and reproduce in all copies of Original Code the copyright and other proprietar… 48 …t Code Notice set forth in Exhibit A in the "about" box or other appropriate place where other cop… [all …]
|
H A D | CC-BY-NC-4.0 | 3 …on of Creative Commons public licenses does not create a lawyer-client or other relationship. Crea… 7 … creators and other rights holders may use to share original works of authorship and other materia… 9 …other rights. Our licenses are irrevocable. Licensors should read and understand the terms and con… 11 …other rights that a licensor has authority to grant. Use of the licensed material may still be res… 27 …e. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitati… 29 …f. Licensed Material means the artistic or literary work, database, or other material to which the… 35 …urposes of this Public License, the exchange of the Licensed Material for other material subject t… 39 …other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Counci… 67 b. Other rights. 69 …ot licensed under this Public License, nor are publicity, privacy, and/or other similar personalit… [all …]
|
H A D | EPL-2.0 | 36 "Derivative Works" shall mean any work, whether in Source Code or other 38 editorial revisions, annotations, elaborations, or other modifications 41 "Modified Works" shall mean any work in Source Code or other form that 74 if any, in Source Code or other form. This patent license shall 78 Licensed Patents. The patent license shall not apply to any other 85 patent or other intellectual property rights of any other entity. 87 brought by any other entity based on infringement of intellectual 90 assumes sole responsibility to secure any other intellectual 101 Contributor makes additional grants to any Recipient (other than 119 i) effectively disclaims on behalf of all other Contributors all [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/skylake/ |
H A D | cache.json | 1726 "BriefDescription": "Counts any other requests have any response type.", 1728 "EventName": "OFFCORE_RESPONSE.OTHER.ANY_RESPONSE", 1735 "BriefDescription": "Counts any other requests", 1737 "EventName": "OFFCORE_RESPONSE.OTHER.L3_HIT.ANY_SNOOP", 1744 "BriefDescription": "Counts any other requests", 1746 "EventName": "OFFCORE_RESPONSE.OTHER.L3_HIT.SNOOP_HITM", 1753 "BriefDescription": "Counts any other requests", 1755 "EventName": "OFFCORE_RESPONSE.OTHER.L3_HIT.SNOOP_HIT_NO_FWD", 1762 "BriefDescription": "Counts any other requests", 1764 "EventName": "OFFCORE_RESPONSE.OTHER.L3_HIT.SNOOP_MISS", [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/knightslanding/ |
H A D | cache.json | 53 …"BriefDescription": "Counts the loads retired that get the data from the other core in the same ti… 111 … with data forwarded from it Far(not in the same quadrant as the request)-other tile L2 in E/F/M s… 120 …with data forwarded from its Far(not in the same quadrant as the request)-other tile's L2 in E/F s… 129 …with data forwarded from its Far(not in the same quadrant as the request)-other tile's L2 in M sta… 138 …ts for responses from snoop request hit with data forwarded from its Near-other tile L2 in E/F/M s… 147 … for responses from a snoop request hit with data forwarded from its Near-other tile's L2 in E/F s… 156 … for responses from a snoop request hit with data forwarded from its Near-other tile's L2 in M sta… 219 … with data forwarded from it Far(not in the same quadrant as the request)-other tile L2 in E/F/M s… 228 …with data forwarded from its Far(not in the same quadrant as the request)-other tile's L2 in E/F s… 237 …with data forwarded from its Far(not in the same quadrant as the request)-other tile's L2 in M sta… [all …]
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | debugfs-hisi-sec | 7 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. 105 Available for both PF and VF, and take no other effect on SEC. 111 Available for both PF and VF, and take no other effect on SEC. [all …]
|