Home
last modified time | relevance | path

Searched full:end (Results 1 – 25 of 3803) sorted by relevance

12345678910>>...153

/openbmc/qemu/gdb-xml/
H A Di386-32bit.xml13 <field name="" start="22" end="31"/>
14 <field name="ID" start="21" end="21"/>
15 <field name="VIP" start="20" end="20"/>
16 <field name="VIF" start="19" end="19"/>
17 <field name="AC" start="18" end="18"/>
18 <field name="VM" start="17" end="17"/>
19 <field name="RF" start="16" end="16"/>
20 <field name="" start="15" end="15"/>
21 <field name="NT" start="14" end="14"/>
22 <field name="IOPL" start="12" end="13"/>
[all …]
H A Di386-64bit.xml14 <field name="" start="22" end="31"/>
15 <field name="ID" start="21" end="21"/>
16 <field name="VIP" start="20" end="20"/>
17 <field name="VIF" start="19" end="19"/>
18 <field name="AC" start="18" end="18"/>
19 <field name="VM" start="17" end="17"/>
20 <field name="RF" start="16" end="16"/>
21 <field name="" start="15" end="15"/>
22 <field name="NT" start="14" end="14"/>
23 <field name="IOPL" start="12" end="13"/>
[all …]
H A Drx-core.xml28 <field name="C" start="0" end="0"/>
29 <field name="Z" start="1" end="1"/>
30 <field name="S" start="2" end="2"/>
31 <field name="O" start="3" end="3"/>
32 <field name="I" start="16" end="16"/>
33 <field name="U" start="17" end="17"/>
34 <field name="PM" start="20" end="20"/>
35 <field name="IPL" start="24" end="27"/>
39 <field name="RM" start="0" end="1"/>
40 <field name="CV" start="2" end="2"/>
[all …]
H A Daarch64-core.xml48 <field name="SP" start="0" end="0"/>
51 <field name="EL" start="2" end="3"/>
53 <field name="nRW" start="4" end="4"/>
56 <field name="F" start="6" end="6"/>
58 <field name="I" start="7" end="7"/>
60 <field name="A" start="8" end="8"/>
62 <field name="D" start="9" end="9"/>
65 <field name="BTYPE" start="10" end="11"/>
68 <field name="SSBS" start="12" end="12"/>
71 <field name="IL" start="20" end="20"/>
[all …]
/openbmc/u-boot/arch/nds32/lib/
H A Dcache.c44 unsigned long end, line_size; in invalidate_icache_all() local
46 end = line_size * CACHE_WAY(ICACHE) * CACHE_SET(ICACHE); in invalidate_icache_all()
48 end -= line_size; in invalidate_icache_all()
49 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
51 end -= line_size; in invalidate_icache_all()
52 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
54 end -= line_size; in invalidate_icache_all()
55 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
56 end -= line_size; in invalidate_icache_all()
57 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
[all …]
/openbmc/u-boot/arch/nios2/lib/
H A Dcache.c13 static void __flush_dcache(unsigned long start, unsigned long end) in __flush_dcache() argument
18 end += (gd->arch.dcache_line_size - 1); in __flush_dcache()
19 end &= ~(gd->arch.dcache_line_size - 1); in __flush_dcache()
21 for (addr = start; addr < end; addr += gd->arch.dcache_line_size) { in __flush_dcache()
29 static void __flush_dcache_all(unsigned long start, unsigned long end) in __flush_dcache_all() argument
34 end += (gd->arch.dcache_line_size - 1); in __flush_dcache_all()
35 end &= ~(gd->arch.dcache_line_size - 1); in __flush_dcache_all()
37 if (end > start + gd->arch.dcache_size) in __flush_dcache_all()
38 end = start + gd->arch.dcache_size; in __flush_dcache_all()
40 for (addr = start; addr < end; addr += gd->arch.dcache_line_size) { in __flush_dcache_all()
[all …]
/openbmc/qemu/docs/interop/
H A Dvhost-user.rst26 The protocol defines 2 sides of the communication, *front-end* and
27 *back-end*. The *front-end* is the application that shares its virtqueues, in
28 our case QEMU. The *back-end* is the consumer of the virtqueues.
30 In the current implementation QEMU is the *front-end*, and the *back-end*
33 or a block device back-end processing read & write to a virtual
34 disk. In order to facilitate interoperability between various back-end
38 The *front-end* and *back-end* can be either a client (i.e. connecting) or
80 - Bit 2 is the reply flag - needs to be sent on each reply from the back-end
124 back-end will process. This is a free-running index that is not
140 back-end will process. This is a free-running index that is not
[all …]
/openbmc/qemu/include/hw/ppc/
H A Dxive2_regs.h44 #define EAS2_RESUME PPC_BIT(3) /* END Resume(unimp) */
58 * Event Notifification Descriptor (END)
115 #define xive2_end_is_valid(end) (be32_to_cpu((end)->w0) & END2_W0_VALID) argument
116 #define xive2_end_is_enqueue(end) (be32_to_cpu((end)->w0) & END2_W0_ENQUEUE) argument
117 #define xive2_end_is_notify(end) \ argument
118 (be32_to_cpu((end)->w0) & END2_W0_UCOND_NOTIFY)
119 #define xive2_end_is_backlog(end) (be32_to_cpu((end)->w0) & END2_W0_BACKLOG) argument
120 #define xive2_end_is_precluded_escalation(end) \ argument
121 (be32_to_cpu((end)->w0) & END2_W0_PRECL_ESC_CTL)
122 #define xive2_end_is_escalate(end) \ argument
[all …]
H A Dxive_regs.h32 * information (EAS block + EAS index) in the 8 byte data and not END
177 * Notification Descriptor (END) and provides the corresponding
178 * logical interrupt number (END data)
187 #define EAS_END_BLOCK PPC_BITMASK(4, 7) /* Destination END block# */
188 #define EAS_END_INDEX PPC_BITMASK(8, 31) /* Destination END index */
190 #define EAS_END_DATA PPC_BITMASK(33, 63) /* Data written to the END */
224 /* Event Notification Descriptor (END) */
272 #define xive_end_is_valid(end) (be32_to_cpu((end)->w0) & END_W0_VALID) argument
273 #define xive_end_is_enqueue(end) (be32_to_cpu((end)->w0) & END_W0_ENQUEUE) argument
274 #define xive_end_is_notify(end) (be32_to_cpu((end)->w0) & END_W0_UCOND_NOTIFY) argument
[all …]
/openbmc/phosphor-logging/test/openpower-pels/
H A Dpel_utils.cpp173 data.insert(data.end(), privateHeaderSection.begin(), in pelDataFactory()
174 privateHeaderSection.end()); in pelDataFactory()
175 data.insert(data.end(), userHeaderSection.begin(), in pelDataFactory()
176 userHeaderSection.end()); in pelDataFactory()
177 data.insert(data.end(), srcSectionNoCallouts.begin(), in pelDataFactory()
178 srcSectionNoCallouts.end()); in pelDataFactory()
179 data.insert(data.end(), failingMTMSSection.begin(), in pelDataFactory()
180 failingMTMSSection.end()); in pelDataFactory()
181 data.insert(data.end(), UserDataSection.begin(), in pelDataFactory()
182 UserDataSection.end()); in pelDataFactory()
[all …]
/openbmc/qemu/hw/nvram/
H A Dchrp_nvram.c52 int end; in chrp_nvram_create_system_partition() local
62 end = sizeof(ChrpNvramPartHdr); in chrp_nvram_create_system_partition()
64 end = chrp_nvram_set_var(data, end, prom_envs[i], max_len - end); in chrp_nvram_create_system_partition()
65 if (end == -1) { in chrp_nvram_create_system_partition()
70 /* End marker */ in chrp_nvram_create_system_partition()
71 data[end++] = '\0'; in chrp_nvram_create_system_partition()
73 end = (end + 15) & ~15; in chrp_nvram_create_system_partition()
76 if (end < min_len) { in chrp_nvram_create_system_partition()
77 end = min_len; in chrp_nvram_create_system_partition()
79 chrp_nvram_finish_partition(part_header, end); in chrp_nvram_create_system_partition()
[all …]
/openbmc/qemu/tests/qtest/
H A Dpnv-xive2-common.c163 Xive2End end; in set_end() local
171 memset(&end, 0, sizeof(end)); in set_end()
172 end.w0 = xive_set_field32(END2_W0_VALID, 0, 1); in set_end()
173 end.w0 = xive_set_field32(END2_W0_ENQUEUE, end.w0, 1); in set_end()
174 end.w0 = xive_set_field32(END2_W0_UCOND_NOTIFY, end.w0, 1); in set_end()
175 end.w0 = xive_set_field32(END2_W0_BACKLOG, end.w0, 1); in set_end()
177 end.w1 = xive_set_field32(END2_W1_GENERATION, 0, 1); in set_end()
179 end.w2 = cpu_to_be32(queue_hi); in set_end()
181 end.w3 = cpu_to_be32(queue_lo); in set_end()
182 end.w3 = xive_set_field32(END2_W3_QSIZE, end.w3, queue_size); in set_end()
[all …]
/openbmc/openbmc/poky/meta/recipes-support/vte/vte/
H A D0005-color-parser-Use-fast_float-implementation-for-from_.patch34 auto const end = spec.c_str() + spec.size();
35 - auto const rv = std::from_chars(start, end, value, 16);
36 + auto const rv = fast_float::from_chars(start, end, value, 16);
37 if (rv.ec != std::errc{} || rv.ptr != end)
43 auto const end = spec.c_str() + spec.size();
44 - auto const rv = std::from_chars(start, end, value, 16);
45 + auto const rv = fast_float::from_chars(start, end, value, 16);
46 if (rv.ec != std::errc{} || rv.ptr != end)
53 - auto rv = std::from_chars(start, end, r, 16);
54 + auto rv = fast_float::from_chars(start, end, r, 16);
[all …]
/openbmc/u-boot/cmd/
H A Dini.c38 /* Strip whitespace chars off end of given string, in place. Return s. */
57 null at end of string if neither found. ';' must be prefixed by a whitespace
81 char *end; in memgets() local
85 end = memchr(*mem, '\n', *memsize); in memgets()
86 if (end == NULL) { in memgets()
89 end = *mem + *memsize; in memgets()
92 len = min((end - *mem) + newline, num); in memgets()
98 *memsize -= (end - *mem) + newline; in memgets()
99 *mem += (end - *mem) + newline; in memgets()
126 char *end; in ini_parse() local
[all …]
/openbmc/phosphor-objmgr/src/
H A Dhandler.cpp24 objectMap.begin(), objectMap.end(), in addObjectMapResult()
27 if (entry != objectMap.end()) in addObjectMapResult()
45 std::sort(interfaces.begin(), interfaces.end()); in getAncestors()
51 if (!reqPath.empty() && interfaceMap.find(reqPath) == interfaceMap.end()) in getAncestors()
82 interfaces.begin(), interfaces.end(), in getAncestors()
84 connectionInterfaces.second.end(), in getAncestors()
104 std::sort(interfaces.begin(), interfaces.end()); in getObject()
106 if (pathRef == interfaceMap.end()) in getObject()
121 if (std::set_intersection(interfaces.begin(), interfaces.end(), in getObject()
123 connectionInterfaces.second.end(), in getObject()
[all …]
H A Dassociations.cpp15 if (iface == assocMaps.ifaces.end()) in updateEndpointsOnDbus()
61 if (iface == assocMaps.ifaces.end()) in scheduleUpdateEndpointsOnDbus()
103 if (owners == assocMaps.owners.end()) in removeAssociation()
111 if (assocs == owners->second.end()) in removeAssociation()
141 if (assoc == assocMaps.ifaces.end()) in removeAssociationEndpoints()
150 auto e = std::find(endpointsInDBus.begin(), endpointsInDBus.end(), in removeAssociationEndpoints()
153 if (e != endpointsInDBus.end()) in removeAssociationEndpoints()
169 if (originalOwners == assocMaps.owners.end()) in checkAssociationEndpointRemoves()
176 if (originalAssociations == originalOwners->second.end()) in checkAssociationEndpointRemoves()
191 if (newEndpoints == newAssociations.end()) in checkAssociationEndpointRemoves()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/yajl/yajl/
H A DCVE-2017-16516.patch25 end+=3;
28 - end++;
29 - if (str[end] == '\\' && str[end + 1] == 'u') {
30 + if (end + 2 < len && str[end + 1] == '\\' && str[end + 2] == 'u') {
31 + end++;
33 hexToDigit(&surrogate, str + end + 2);
/openbmc/qemu/hw/intc/
H A Dxive2.c191 g_string_append_printf(buf, " %08x %s end:%02x/%04x data:%08x\n", in xive2_eas_pic_print_info()
200 /* Calculate max number of queue entries for an END */
201 static uint32_t xive2_end_get_qentries(Xive2End *end) in xive2_end_get_qentries() argument
203 uint32_t w3 = end->w3; in xive2_end_get_qentries()
214 void xive2_end_queue_pic_print_info(Xive2End *end, uint32_t width, GString *buf) in xive2_end_queue_pic_print_info() argument
216 uint64_t qaddr_base = xive2_end_qaddr(end); in xive2_end_queue_pic_print_info()
217 uint32_t qindex = xive_get_field32(END2_W1_PAGE_OFF, end->w1); in xive2_end_queue_pic_print_info()
218 uint32_t qentries = xive2_end_get_qentries(end); in xive2_end_queue_pic_print_info()
243 void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, GString *buf) in xive2_end_pic_print_info() argument
245 uint64_t qaddr_base = xive2_end_qaddr(end); in xive2_end_pic_print_info()
[all …]
/openbmc/qemu/include/hw/virtio/
H A Dvhost.h102 * @acked_features: final negotiated features with front-end driver
380 * vhost_supports_device_state(): Checks whether the back-end supports
401 * the back-end for the purpose of migration. Data is to be transferred
402 * over a pipe according to @direction and @phase. The sending end must
403 * only write to the pipe, and the receiving end must only read from it.
404 * Once the sending end is done, it closes its FD. The receiving end
405 * must take this as the end-of-transfer signal and close its FD, too.
407 * @fd is the back-end's end of the pipe: The write FD for SAVE, and the
409 * back-end, i.e. closes it in the front-end.
411 * The back-end may optionally reply with an FD of its own, if this
[all …]
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/
H A D__ranges.hpp27 using std::ranges::end;
45 void end();
58 requires(_Ty&& __v) { static_cast<_Ty&&>(__v).end(); };
63 requires(_Ty&& __v) { end((static_cast<_Ty&&>(__v))); };
91 noexcept(noexcept((static_cast<_Range&&>(__rng)).end())) in operator ()()
92 -> decltype((static_cast<_Range&&>(__rng)).end()) in operator ()()
94 return static_cast<_Range&&>(__rng).end(); in operator ()()
100 noexcept(noexcept(end((static_cast<_Range&&>(__rng))))) in operator ()()
101 -> decltype(end((static_cast<_Range&&>(__rng)))) in operator ()()
103 return end((static_cas in operator ()()
109 inline constexpr __detail::__end_t end{}; global() variable
[all...]
/openbmc/openbmc-test-automation/data/
H A Dboot_table_x86.json8 "end": { object
27 "end": { object
46 "end": { object
64 "end": { object
82 "end": { object
100 "end": { object
122 "end": { object
145 "end": { object
167 "end": { object
188 "end": { object
[all …]
/openbmc/qemu/tests/multiboot/
H A Dmmap.out18 mmap end: 0x9090
19 real mmap end: 0x9090
35 mmap end: 0x9078
36 real mmap end: 0x9078
53 mmap end: 0x9090
54 real mmap end: 0x9090
72 mmap end: 0x90a8
73 real mmap end: 0x90a8
91 mmap end: 0x90a8
92 real mmap end: 0x90a8
/openbmc/phosphor-fan-presence/control/json/
H A Dmanager.cpp112 std::for_each(_zones.begin(), _zones.end(), [&data](const auto& zone) { in dumpDebugData()
151 std::for_each(_events.begin(), _events.end(), [&data](const auto& event) { in dumpCache()
174 zones.begin(), zones.end(), [&fanProfile](const auto& zone) { in load()
177 if (itZone != zones.end()) in load()
209 std::for_each(_zones.begin(), _zones.end(), in load()
221 std::for_each(_events.begin(), _events.end(), in load()
238 std::for_each(_zones.begin(), _zones.end(), [](const auto& entry) { in powerStateChanged()
243 std::for_each(_events.begin(), _events.end(), in powerStateChanged()
250 std::for_each(_events.begin(), _events.end(), in powerStateChanged()
277 input.second.begin(), input.second.end(), in inConfig()
[all …]
/openbmc/qemu/scripts/
H A Dvmstate-static-checker.py186 print("Section \"" + sec + "\",", end=' ')
187 print("Description " + "\"" + desc + "\":", end=' ')
188 print("expected field \"" + s_item["field"] + "\",", end=' ')
207 print("Section \"" + sec + "\",", end=' ')
208 print("Description \"" + desc + "\":", end=' ')
209 print("unused size mismatch near \"", end=' ')
221 print("Section \"" + sec + "\",", end=' ')
222 print("Description \"" + desc + "\":", end=' ')
223 print("unused size mismatch near \"", end=' ')
274 print("Section \"" + sec + "\",", end=' ')
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/glm/glm/
H A D0001-Silence-clang-warnings.patch45 const float end = glm::pi<float>();
49 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
54 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
63 const float end = glm::pi<float>();
67 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
72 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
81 const float end = glm::pi<float>();
85 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
90 for (float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
99 const float end = glm::pi<float>();
[all …]

12345678910>>...153