/openbmc/linux/scripts/dtc/ |
H A D | of_unittest_expect | 313 $begin = pop @exp_found_or_begin; 314 if (compare($data, $begin)) { 318 } elsif (@begin > 0) { 319 $begin = pop @exp_begin_stack; 340 } elsif (! compare($data, $begin) and ($data ne $begin)) { 344 print " begin -> $begin\n"; 387 $begin = pop @expnot_found_or_begin; 388 if (compare($data, $begin)) { 421 $begin = pop @expnot_begin_stack; 423 if (! compare($data, $begin) and ($data ne $begin)) { [all …]
|
/openbmc/linux/arch/x86/kernel/ |
H A D | dumpstack_32.c | 40 unsigned long *begin = (unsigned long *)this_cpu_read(pcpu_hot.hardirq_stack_ptr); in in_hardirq_stack() local 41 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_hardirq_stack() 47 if (stack < begin || stack > end) in in_hardirq_stack() 51 info->begin = begin; in in_hardirq_stack() 58 info->next_sp = (unsigned long *)*begin; in in_hardirq_stack() 65 unsigned long *begin = (unsigned long *)this_cpu_read(pcpu_hot.softirq_stack_ptr); in in_softirq_stack() local 66 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_softirq_stack() 72 if (stack < begin || stack > end) in in_softirq_stack() 76 info->begin = begin; in in_softirq_stack() 83 info->next_sp = (unsigned long *)*begin; in in_softirq_stack() [all …]
|
H A D | dumpstack_64.c | 96 unsigned long begin, end, stk = (unsigned long)stack; in in_exception_stack() local 103 begin = (unsigned long)__this_cpu_read(cea_exception_stacks); in in_exception_stack() 108 if (!begin) in in_exception_stack() 111 end = begin + sizeof(struct cea_exception_stacks); in in_exception_stack() 113 if (stk < begin || stk >= end) in in_exception_stack() 117 k = (stk - begin) >> PAGE_SHIFT; in in_exception_stack() 124 begin += (unsigned long)ep->offs; in in_exception_stack() 125 end = begin + (unsigned long)ep->size; in in_exception_stack() 129 info->begin = (unsigned long *)begin; in in_exception_stack() 138 unsigned long *begin; in in_irq_stack() local [all …]
|
H A D | sys_x86_64.c | 97 unsigned long *begin, unsigned long *end) in find_start_end() argument 107 *begin = 0x40000000; in find_start_end() 110 *begin = randomize_page(*begin, 0x02000000); in find_start_end() 115 *begin = get_mmap_base(1); in find_start_end() 129 unsigned long begin, end; in arch_get_unmapped_area() local 134 find_start_end(addr, flags, &begin, &end); in arch_get_unmapped_area() 149 info.low_limit = begin; in arch_get_unmapped_area()
|
/openbmc/linux/fs/ufs/ |
H A D | util.h | 317 #define ubh_get_addr8(ubh,begin) \ argument 318 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \ 319 ((begin) & ~uspi->s_fmask)) 321 #define ubh_get_addr16(ubh,begin) \ argument 322 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \ 323 ((begin) & ((uspi->fsize>>1) - 1))) 325 #define ubh_get_addr32(ubh,begin) \ argument 326 (((__fs32*)((ubh)->bh[(begin) >> (uspi->s_fshift-2)]->b_data)) + \ 327 ((begin) & ((uspi->s_fsize>>2) - 1))) 329 #define ubh_get_addr64(ubh,begin) \ argument [all …]
|
/openbmc/phosphor-led-manager/test/ |
H A D | utest.cpp | 47 std::set_difference(ledsAssert.begin(), ledsAssert.end(), in TEST_F() 48 refAssert.begin(), refAssert.end(), in TEST_F() 49 std::inserter(temp, temp.begin())); in TEST_F() 79 std::set_difference(ledsAssert.begin(), ledsAssert.end(), in TEST_F() 80 refAssert.begin(), refAssert.end(), in TEST_F() 81 std::inserter(temp, temp.begin())); in TEST_F() 111 std::set_difference(ledsAssert.begin(), ledsAssert.end(), in TEST_F() 112 refAssert.begin(), refAssert.end(), in TEST_F() 113 std::inserter(temp, temp.begin())); in TEST_F() 161 std::set_difference(ledsAssert.begin(), ledsAssert.end(), in TEST_F() [all …]
|
/openbmc/phosphor-logging/test/openpower-pels/ |
H A D | pel_utils.cpp | 173 data.insert(data.end(), privateHeaderSection.begin(), in pelDataFactory() 175 data.insert(data.end(), userHeaderSection.begin(), in pelDataFactory() 177 data.insert(data.end(), srcSectionNoCallouts.begin(), in pelDataFactory() 179 data.insert(data.end(), failingMTMSSection.begin(), in pelDataFactory() 181 data.insert(data.end(), UserDataSection.begin(), in pelDataFactory() 183 data.insert(data.end(), ExtUserHeaderSection.begin(), in pelDataFactory() 185 data.insert(data.end(), extendedUserDataSection.begin(), in pelDataFactory() 190 data.insert(data.end(), privateHeaderSection.begin(), in pelDataFactory() 194 data.insert(data.end(), userHeaderSection.begin(), in pelDataFactory() 198 data.insert(data.end(), srcSectionNoCallouts.begin(), in pelDataFactory() [all …]
|
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/ |
H A D | __ranges.hpp | 26 using std::ranges::begin; 44 void begin(); 49 requires(_Ty&& __v) { static_cast<_Ty&&>(__v).begin(); }; 54 requires(_Ty&& __v) { begin((static_cast<_Ty&&>(__v))); }; 70 noexcept(noexcept((static_cast<_Range&&>(__rng)).begin())) in operator ()() 71 -> decltype((static_cast<_Range&&>(__rng)).begin()) in operator ()() 73 return static_cast<_Range&&>(__rng).begin(); in operator ()() 79 noexcept(noexcept(begin((static_cast<_Range&&>(__rng))))) in operator ()() 80 -> decltype(begin((static_cast<_Range&&>(__rng)))) in operator ()() 82 return begin((static_cast<_Range&&>(__rng))); in operator ()() [all …]
|
/openbmc/linux/arch/sh/mm/ |
H A D | cache-sh2a.c | 53 unsigned long begin, end; in sh2a__flush_wback_region() local 57 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_wback_region() 66 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { in sh2a__flush_wback_region() 67 begin = CACHE_OC_ADDRESS_ARRAY; in sh2a__flush_wback_region() 68 end = begin + (nr_ways * current_cpu_data.dcache.way_size); in sh2a__flush_wback_region() 70 for (v = begin; v < end; v += L1_CACHE_BYTES) { in sh2a__flush_wback_region() 78 for (v = begin; v < end; v += L1_CACHE_BYTES) in sh2a__flush_wback_region() 94 unsigned long begin, end; in sh2a__flush_purge_region() local 97 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_purge_region() 104 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2a__flush_purge_region() [all …]
|
H A D | cache-sh2.c | 21 unsigned long begin, end; in sh2__flush_wback_region() local 23 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_wback_region() 26 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2__flush_wback_region() 42 unsigned long begin, end; in sh2__flush_purge_region() local 44 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_purge_region() 48 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_purge_region() 73 unsigned long begin, end; in sh2__flush_invalidate_region() 75 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_invalidate_region() 79 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_invalidate_region()
|
H A D | cache-sh3.c | 35 unsigned long begin, end; in sh3__flush_wback_region() local 38 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_wback_region() 42 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_wback_region() 74 unsigned long begin, end; in sh3__flush_purge_region() local 76 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_purge_region() 80 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_purge_region()
|
/openbmc/phosphor-objmgr/src/ |
H A D | handler.cpp | 23 objectMap.begin(), objectMap.end(), in addObjectMapResult() 44 std::sort(interfaces.begin(), interfaces.end()); in getAncestors() 81 interfaces.begin(), interfaces.end(), in getAncestors() 82 interfaceMap.second.begin(), in getAncestors() 83 interfaceMap.second.end(), output.begin()) != in getAncestors() 84 output.begin()) in getAncestors() 103 std::sort(interfaces.begin(), interfaces.end()); in getObject() 120 if (std::set_intersection(interfaces.begin(), interfaces.end(), in getObject() 121 interfaceMap.second.begin(), in getObject() 122 interfaceMap.second.end(), output.begin()) != in getObject() [all …]
|
/openbmc/telemetry/src/ |
H A D | sensor_cache.cpp | 4 SensorCache::SensorsContainer::iterator begin) in findExpiredSensor() argument 6 return std::find_if(begin, sensors.end(), [](const auto& item) { in findExpiredSensor() 13 auto begin = sensors.begin(); in cleanupExpiredSensors() local 15 for (auto it = findExpiredSensor(begin); it != sensors.end(); in cleanupExpiredSensors() 16 it = findExpiredSensor(begin)) in cleanupExpiredSensors() 18 begin = sensors.erase(it); in cleanupExpiredSensors()
|
/openbmc/linux/samples/seccomp/ |
H A D | bpf-helper.c | 66 struct __bpf_label *begin = labels->labels, *end; in seccomp_bpf_label() local 74 begin->label = label; in seccomp_bpf_label() 75 begin->location = 0xffffffff; in seccomp_bpf_label() 79 end = begin + labels->count; in seccomp_bpf_label() 80 for (id = 0; begin < end; ++begin, ++id) { in seccomp_bpf_label() 81 if (!strcmp(label, begin->label)) in seccomp_bpf_label() 84 begin->label = label; in seccomp_bpf_label() 85 begin->location = 0xffffffff; in seccomp_bpf_label()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/ |
H A D | 0006-replace-sym_iterator-0-with-sym_iterator.patch | 10 | { lo = hi = 0; name = ""; begin = end = (sym_iterator)0;} 63 - { lo = hi = 0; name = ""; begin = end = (sym_iterator)0;} 64 + { lo = hi = 0; name = ""; begin = end = sym_iterator();} 72 - if (begin == (sym_iterator)0) 73 + if (begin == sym_iterator()) 74 begin = b; 97 - if (begin == (sym_iterator)0) 98 + if (begin == sym_iterator()) 101 for (sym_iterator it = begin; it != end; ++it) 106 - if (begin != (sym_iterator)0) [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/glm/glm/ |
H A D | 0001-Silence-clang-warnings.patch | 44 const float begin = -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) 62 const float begin = -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) 80 const float begin = -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) 98 const float begin = -glm::pi<float>(); [all …]
|
/openbmc/linux/arch/mips/mm/ |
H A D | sc-rm7k.c | 189 unsigned long flags, addr, begin, end, pow2; in __probe_tcache() local 191 begin = (unsigned long) &_stext; in __probe_tcache() 192 begin &= ~((8 * 1024 * 1024) - 1); in __probe_tcache() 193 end = begin + (8 * 1024 * 1024); in __probe_tcache() 201 for (addr = begin; addr <= end; addr = (begin + pow2)) { in __probe_tcache() 210 cache_op(Index_Store_Tag_T, begin); in __probe_tcache() 214 for (addr = begin + (512 * 1024); addr <= end; addr = begin + pow2) { in __probe_tcache() 221 addr -= begin; in __probe_tcache()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-devtools/libcoap/libcoap/ |
H A D | CVE-2024-0962.patch | 25 const char *begin = *start; 32 - end = memchr(begin, '\n', size); 33 + kend = end = memchr(begin, '\n', size); 39 if (begin[0] == '#' || (end - begin) == 0) { 41 - size -= end - begin + 1; 42 + size -= kend - begin + 1; 43 begin = *start;
|
/openbmc/phosphor-fan-presence/control/ |
H A D | zone.cpp | 136 _isActive = std::all_of(_active.begin(), _active.end(), actPred); in setActiveAllow() 145 auto it = std::find_if(sNames.begin(), sNames.end(), in removeService() 167 auto it = std::find_if(sNames.begin(), sNames.end(), in setServiceOwner() 190 for (auto it = group->begin(); it != group->end(); ++it) in setServices() 214 auto setFloor = std::all_of(_floorChange.begin(), _floorChange.end(), pred); in setFloor() 266 auto decAllowed = std::all_of(_decAllowed.begin(), _decAllowed.end(), pred); in decTimerExpired() 303 std::get<triggerPos>(event).begin(), std::get<triggerPos>(event).end(), in initEvent() 308 std::get<actionsPos>(event).begin(), in initEvent() 341 for (auto it = signals.begin(); it != signals.end(); ++it) in removeEvent() 360 for (auto it = eventTimers.begin(); it != eventTimers.end(); ++it) in findTimer() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/cpp-netlib/cpp-netlib/ |
H A D | a53f123040998744602f190944464af0e159ea19.patch | 26 - u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(), 27 + boost::u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(), 29 for (; begin != end; ++begin) attr += *begin;
|
/openbmc/u-boot/fs/cramfs/ |
H A D | cramfs.c | 52 static int cramfs_uncompress (unsigned long begin, unsigned long offset, 101 static char *cramfs_uncompress_link (unsigned long begin, unsigned long offset) in cramfs_uncompress_link() argument 103 struct cramfs_inode *inode = (struct cramfs_inode *)(begin + offset); in cramfs_uncompress_link() 107 if (!link || cramfs_uncompress (begin, offset, (unsigned long)link) != size) { in cramfs_uncompress_link() 116 static unsigned long cramfs_resolve (unsigned long begin, unsigned long offset, in cramfs_resolve() argument 127 inode = (struct cramfs_inode *) (begin + offset + in cramfs_resolve() 157 return cramfs_resolve (begin, in cramfs_resolve() 173 link = cramfs_uncompress_link (begin, in cramfs_resolve() 185 ret = cramfs_resolve (begin, in cramfs_resolve() 207 static int cramfs_uncompress (unsigned long begin, unsigned long offset, in cramfs_uncompress() argument [all …]
|
/openbmc/linux/drivers/md/persistent-data/ |
H A D | dm-space-map-metadata.c | 98 unsigned int begin; member 105 brb->begin = 0; in brb_init() 111 return brb->begin == brb->end; in brb_empty() 131 if (next == brb->begin) in brb_push() 151 bop = brb->bops + brb->begin; in brb_peek() 161 brb->begin = brb_next(brb, brb->begin); in brb_pop() 174 dm_block_t begin; member 314 for (i = smm->uncommitted.begin; in sm_metadata_get_count() 354 for (i = smm->uncommitted.begin; in sm_metadata_count_is_more_than_one() 458 r = sm_ll_find_common_free_block(&smm->old_ll, &smm->ll, smm->begin, smm->ll.nr_blocks, b); in sm_metadata_new_block_() [all …]
|
/openbmc/phosphor-fan-presence/presence/ |
H A D | anyof.cpp | 66 std::find_if(state.begin(), state.end(), [&sensor](const auto& s) { in stateChanged() 72 std::any_of(state.begin(), state.end(), in stateChanged() 78 std::any_of(state.begin(), state.end(), in stateChanged() 100 std::for_each(state.begin(), state.end(), [](auto& s) { in stateChanged() 120 auto present = std::any_of(state.begin(), state.end(), [](const auto& s) { in monitor() 142 if (std::any_of(state.begin(), state.end(), in checkSensorConflicts() 146 !std::all_of(state.begin(), state.end(), in checkSensorConflicts() 165 std::for_each(state.begin(), state.end(), [](auto& state) { in powerStateChanged()
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc/ |
H A D | lircd.conf | 8 begin remote 24 begin codes 72 begin remote 88 begin codes 143 begin remote 156 begin codes 219 begin remote 238 begin codes
|
/openbmc/openbmc/poky/meta/recipes-devtools/apt/apt/ |
H A D | 0001-Remove-using-std-binary_function.patch | 61 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::ContentsCompare()); 62 + stable_sort(PkgList.begin(),PkgList.end(),ContentsCompare); 70 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::DBCompare()); 71 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::SrcDBCompare()); 72 + stable_sort(PkgList.begin(),PkgList.end(),DBCompare); 73 + stable_sort(PkgList.begin(),PkgList.end(),SrcDBCompare); 81 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::DBCompare()); 82 - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::SrcDBCompare()); 83 + stable_sort(PkgList.begin(),PkgList.end(),DBCompare); 84 + stable_sort(PkgList.begin(),PkgList.end(),SrcDBCompare);
|