/openbmc/linux/scripts/dtc/ |
H A D | of_unittest_expect | 106 --verbose do not suppress EXPECT begin and end lines 116 to occur with an 'EXPECT \\ : text' (begin) before triggering the 121 For each expected message, the 'EXPECT \\ : text' (begin) and 124 If 'EXPECT \\' (begin) and 'EXPECT /' (end) lines do not contain 128 reverse order of the corresponding 'EXPECT \\' (begin) lines. 130 'EXPECT \\ : text' (begin) and 'EXPECT / : text' (end) lines can 137 'EXPECT \\' (begin) and 'EXPECT /' (end) lines are suppressed. 141 'ok ' Line matches an enclosing EXPECT begin/end pair 235 # Patterns to match 'EXPECT \ : ' (begin) and 'EXPECT / : ' (end) 279 # ----- find EXPECT begin [all …]
|
/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/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 …]
|
/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-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/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()
|
/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(), in findExpiredSensor() 12 auto begin = sensors.begin(); in cleanupExpiredSensors() local 14 for (auto it = findExpiredSensor(begin); it != sensors.end(); in cleanupExpiredSensors() 15 it = findExpiredSensor(begin)) in cleanupExpiredSensors() 17 begin = sensors.erase(it); in cleanupExpiredSensors()
|
/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/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-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-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/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-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/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);
|
/openbmc/openbmc/poky/bitbake/lib/hashserv/ |
H A D | sqlalchemy.py | 138 async with self.engine.begin() as conn: 242 async with self.db.begin(): 267 async with self.db.begin(): 289 async with self.db.begin(): 297 async with self.db.begin(): 312 async with self.db.begin(): 338 async with self.db.begin(): 355 async with self.db.begin(): 368 async with self.db.begin(): 372 async with self.db.begin(): [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/fmt/fmt/ |
H A D | 0001-Get-rid-of-std-copy.patch | 27 - out = std::copy(emphasis.begin(), emphasis.end(), out); 28 + out = detail::copy<Char>(emphasis.begin(), emphasis.end(), out); 34 - out = std::copy(foreground.begin(), foreground.end(), out); 35 + out = detail::copy<Char>(foreground.begin(), foreground.end(), out); 41 - out = std::copy(background.begin(), background.end(), out); 42 + out = detail::copy<Char>(background.begin(), background.end(), out); 48 - out = std::copy(reset_color.begin(), reset_color.end(), out); 49 + out = detail::copy<Char>(reset_color.begin(), reset_color.end(), out);
|
/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/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/linux/drivers/media/usb/cx231xx/ |
H A D | cx231xx-dif.h | 22 /* BEGIN - DIF BPF register values from 30_quant.dat*/ 46 /* BEGIN - DIF BPF register values from 31_quant.dat*/ 70 /* BEGIN - DIF BPF register values from 32_quant.dat*/ 94 /* BEGIN - DIF BPF register values from 33_quant.dat*/ 118 /* BEGIN - DIF BPF register values from 34_quant.dat*/ 142 /* BEGIN - DIF BPF register values from 35_quant.dat*/ 166 /* BEGIN - DIF BPF register values from 36_quant.dat*/ 190 /* BEGIN - DIF BPF register values from 37_quant.dat*/ 214 /* BEGIN - DIF BPF register values from 38_quant.dat*/ 238 /* BEGIN - DIF BPF register values from 39_quant.dat*/ [all …]
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | zconf.l | 92 BEGIN(COMMAND); 97 BEGIN(COMMAND); 104 BEGIN(PARAM); 117 BEGIN(INITIAL); 137 BEGIN(STRING); 139 \n BEGIN(INITIAL); return T_EOL; 155 BEGIN(INITIAL); 178 BEGIN(PARAM); 188 BEGIN(INITIAL); 192 BEGIN(INITIAL); [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-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
|