/openbmc/qemu/accel/tcg/ |
H A D | user-exec.c | 165 static PageFlagsNode *pageflags_find(vaddr start, vaddr last) in pageflags_find() argument 169 n = interval_tree_iter_first(&pageflags_root, start, last); in pageflags_find() 173 static PageFlagsNode *pageflags_next(PageFlagsNode *p, vaddr start, vaddr last) in pageflags_next() argument 177 n = interval_tree_iter_next(&p->itree, start, last); in pageflags_next() 192 rc = fn(priv, n->start, n->last + 1, p->flags); in walk_memory_regions() 256 /* A subroutine of page_set_flags: insert a new node for [start,last]. */ 257 static void pageflags_create(vaddr start, vaddr last, int flags) in pageflags_create() argument 262 p->itree.last = last; in pageflags_create() 267 /* A subroutine of page_set_flags: remove everything in [start,last]. */ 268 static bool pageflags_unset(vaddr start, vaddr last) in pageflags_unset() argument [all …]
|
H A D | tb-maint.c | 102 tb->itree.last = tb->itree.start + tb->size - 1; in tb_record() 126 #define PAGE_FOR_EACH_TB(start, last, pagedesc, T, N) \ argument 127 for (T = foreach_tb_first(start, last), \ 128 N = foreach_tb_next(T, start, last); \ 130 T = N, N = foreach_tb_next(N, start, last)) 135 tb_page_addr_t last) in foreach_tb_first() argument 137 IntervalTreeNode *n = interval_tree_iter_first(&tb_root, start, last); in foreach_tb_first() 143 tb_page_addr_t last) in foreach_tb_next() argument 148 n = interval_tree_iter_next(&tb->itree, start, last); in foreach_tb_next() 314 #define PAGE_FOR_EACH_TB(start, last, pagedesc, tb, n) \ argument [all …]
|
/openbmc/u-boot/board/keymile/km83xx/ |
H A D | km83xx_i2c.c | 29 uchar last; in i2c_make_abort() local 41 last = in_8(&base->dr); in i2c_make_abort() 45 * do read until the last bit is 1, but stop if the full eeprom is in i2c_make_abort() 48 while (((last & 0x01) != 0x01) && in i2c_make_abort() 51 last = in_8(&base->dr); in i2c_make_abort() 54 if ((last & 0x01) != 0x01) in i2c_make_abort() 56 if ((last != 0xff) || (nbr_read > 1)) in i2c_make_abort() 58 nbr_read, last); in i2c_make_abort() 69 nbr_read, last); in i2c_make_abort()
|
/openbmc/qemu/include/user/ |
H A D | page-protection.h | 25 * @last: last byte of range 33 void page_set_flags(vaddr start, vaddr last, int flags); 35 void page_reset_target_data(vaddr start, vaddr last); 47 bool page_check_range(vaddr start, vaddr last, int flags); 52 * @last: last byte of range 55 * Return true if the entire range [@start, @last] is unmapped. 59 bool page_check_range_empty(vaddr start, vaddr last); 64 * @max: last byte of search range
|
/openbmc/qemu/include/qemu/ |
H A D | interval-tree.h | 39 uint64_t last; /* Last location _in_ interval */ member 77 * @start, @last: the inclusive interval [start, last]. 84 uint64_t start, uint64_t last); 89 * @start, @last: the inclusive interval [start, last]. 93 * interval_tree_iter_{first,next}. Returns NULL if @next was the last 97 uint64_t start, uint64_t last);
|
/openbmc/qemu/linux-user/ |
H A D | mmap.c | 81 static void shm_region_add(abi_ptr start, abi_ptr last) in shm_region_add() argument 86 i->last = last; in shm_region_add() 97 return i->last; in shm_region_find() 103 static void shm_region_rm_complete(abi_ptr start, abi_ptr last) in shm_region_rm_complete() argument 107 for (i = interval_tree_iter_first(&shm_regions, start, last); i; i = n) { in shm_region_rm_complete() 108 n = interval_tree_iter_next(i, start, last); in shm_region_rm_complete() 109 if (i->start >= start && i->last <= last) { in shm_region_rm_complete() 177 abi_ulong host_start, host_last, last; in target_mprotect() local 197 last = start + len - 1; in target_mprotect() 199 host_last = ROUND_UP(last, host_page_size) - 1; in target_mprotect() [all …]
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/State/ |
H A D | BMC.interface.yaml | 24 The last time at which the BMC came out of a reboot as determined by 31 The last BMC reboot cause 78 Last reboot is caused by Power-On-Reset 81 Last reboot is caused by pinhole reset 84 Last reboot is caused by Watchdog 87 Last reboot is caused by Software 90 Last reboot is caused by Unknown
|
/openbmc/qemu/util/ |
H A D | hbitmap.c | 25 * granularity; in all levels except the last, bit N is set iff the N-th 27 * completes on the last level it can examine the 2nd-last level to quickly 34 * bits 0-57 => word in the last bitmap | bits 58-63 => bit in the word 35 * bits 0-51 => word in the 2nd-last bitmap | bits 52-57 => bit in the word 36 * bits 0-45 => word in the 3rd-last bitmap | bits 46-51 => bit in the word 92 * has a set bit, except the last level where each bit represents the 384 static uint64_t hb_count_between(HBitmap *hb, uint64_t start, uint64_t last) in hb_count_between() argument 388 uint64_t end = last + 1; in hb_count_between() 411 /* Setting starts at the last layer and propagates up if an element 414 static inline bool hb_set_elem(unsigned long *elem, uint64_t start, uint64_t last) in hb_set_elem() argument [all …]
|
/openbmc/qemu/linux-headers/linux/ |
H A D | vduse.h | 61 * struct vduse_iotlb_entry - entry of IOTLB to describe one IOVA region [start, last] 64 * @last: last of the IOVA region 72 __u64 last; member 80 * Find the first IOVA region that overlaps with the range [start, last] 82 * IOVA region doesn't exist. Caller should set start and last fields. 147 * @last_avail_counter: last driver ring wrap counter observed by device 239 * @last: last of the IOVA region 248 __u64 last; member 255 * Find the first IOVA region that overlaps with the range [start, last] 256 * and return some information on it. Caller should set start and last fields. [all …]
|
/openbmc/u-boot/drivers/watchdog/ |
H A D | tangier_wdt.c | 30 static unsigned long last; in hw_watchdog_reset() local 39 if (last > now) in hw_watchdog_reset() 40 last = 0; in hw_watchdog_reset() 42 if (unlikely((now - last) > (WDT_PRETIMEOUT / 2) * 1000000)) { in hw_watchdog_reset() 43 last = now; in hw_watchdog_reset()
|
/openbmc/phosphor-webui/app/common/styles/elements/ |
H A D | paginate.scss | 45 .pagination li:last-of-type span, 47 .pagination li:nth-last-of-type(2) span { 55 .pagination li:last-child a::after, 57 .pagination li:nth-last-of-type(2) a::after { 87 .pagination li:last-child { 108 .pagination li:last-of-type, 110 .pagination li:nth-last-of-type(2){ 125 .pagination li:last-child {
|
/openbmc/qemu/linux-user/x86_64/ |
H A D | target_syscall.h | 84 unsigned int msg_stime; /* last msgsnd time */ 85 unsigned int msg_rtime; /* last msgrcv time */ 86 unsigned int msg_ctime; /* last change time */ 90 unsigned int msg_lspid; /* pid of last msgsnd */ 91 unsigned int msg_lrpid; /* last receive pid */
|
/openbmc/u-boot/post/ |
H A D | post.c | 174 int last; in post_get_env_flags() local 184 last = 0; in post_get_env_flags() 186 while (!last) { in post_get_env_flags() 195 last = 1; in post_get_env_flags() 301 unsigned int last; in post_run() local 306 if (post_bootmode_get(&last) & POST_POWERTEST) { in post_run() 307 if (last & POST_FAIL_SAVE) { in post_run() 308 last &= ~POST_FAIL_SAVE; in post_run() 311 if (last < post_list_size && in post_run() 312 (flags & test_flags[last] & POST_ALWAYS) && in post_run() [all …]
|
/openbmc/qemu/linux-user/xtensa/ |
H A D | target_structs.h | 38 abi_long shm_atime; /* time of last shmat() */ 40 abi_long shm_dtime; /* time of last shmdt() */ 42 abi_long shm_ctime; /* time of last change by shmctl() */ 45 abi_uint shm_lpid; /* pid of last shmop */
|
/openbmc/phosphor-webui/app/common/directives/ |
H A D | dirPagination.tpl.html | 12 <li ng-if="directionLinks" ng-class="{ disabled : pagination.current == pagination.last }"> 15 <li ng-if="boundaryLinks" ng-class="{ disabled : pagination.current == pagination.last }"> 16 <a href="" ng-click="setCurrent(pagination.last)">Last</a>
|
/openbmc/u-boot/include/ |
H A D | sysreset.h | 43 * get_last() - get information on the last reset 46 * @return last reset state (enum sysreset_t) or -ve error 72 * sysreset_get_last() - get information on the last reset 75 * @return last reset state (enum sysreset_t) or -ve error 94 * sysreset_get_last_walk() - get information on the last reset 102 * @return last reset state (enum sysreset_t) or -ve error
|
/openbmc/qemu/linux-user/alpha/ |
H A D | target_structs.h | 38 abi_ulong shm_atime; /* time of last shmat() */ 39 abi_ulong shm_dtime; /* time of last shmdt() */ 40 abi_ulong shm_ctime; /* time of last change by shmctl() */ 42 abi_int shm_lpid; /* pid of last shmop */
|
/openbmc/phosphor-webui/app/common/styles/base/ |
H A D | foundation.scss | 594 .input-group > :last-child > * { 617 .input-group-label:last-child { 822 .column:last-child:not(:first-child), .columns:last-child:not(:first-child) { 824 .column.end:last-child:last-child, .end.columns:last-child:last-child { 1003 .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child { 1013 .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child { 1023 .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child { 1033 .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child { 1043 .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child { 1053 .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child { [all …]
|
/openbmc/qemu/linux-user/generic/ |
H A D | target_structs.h | 39 abi_ulong shm_atime; /* time of last shmat() */ 43 abi_ulong shm_dtime; /* time of last shmdt() */ 47 abi_ulong shm_ctime; /* time of last change by shmctl() */ 52 abi_int shm_lpid; /* pid of last shmop */
|
/openbmc/qemu/linux-user/sparc/ |
H A D | target_structs.h | 44 int64_t shm_atime; /* last attach time */ 45 int64_t shm_dtime; /* last detach time */ 46 int64_t shm_ctime; /* last change time */ 49 abi_int shm_lpid; /* pid of last shmop */
|
/openbmc/qemu/linux-user/hppa/ |
H A D | target_structs.h | 40 abi_ulong shm_atime; /* time of last shmat() */ 42 abi_ulong shm_dtime; /* time of last shmdt() */ 44 abi_ulong shm_ctime; /* time of last change by shmctl() */ 48 abi_int shm_lpid; /* pid of last shmop */
|
/openbmc/u-boot/arch/arm/mach-omap2/ |
H A D | timer.c | 59 unsigned long now, last = readl(&timer_base->tcrr); in __udelay() local 63 if (last > now) /* count up timer overflow */ in __udelay() 64 tmo -= TIMER_OVERFLOW_VAL - last + now + 1; in __udelay() 66 tmo -= now - last; in __udelay() 67 last = now; in __udelay()
|
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/ |
H A D | __intrusive_queue.hpp | 234 iterator last) noexcept in splice() argument 236 if (first == last) in splice() 241 STDEXEC_ASSERT(last.__predecessor_ != nullptr); in splice() 244 other.__head_ = last.__item_; in splice() 253 first.__predecessor_->*_Next = last.__item_; in splice() 254 last.__predecessor_->*_Next = pos.__item_; in splice() 259 __tail_ = last.__predecessor_; in splice() 266 __tail_ = last.__predecessor_; in splice()
|
/openbmc/qemu/linux-user/mips/ |
H A D | target_structs.h | 38 abi_ulong shm_atime; /* time of last shmat() */ 39 abi_ulong shm_dtime; /* time of last shmdt() */ 40 abi_ulong shm_ctime; /* time of last change by shmctl() */ 42 abi_int shm_lpid; /* pid of last shmop */
|
/openbmc/qemu/linux-user/s390x/ |
H A D | target_structs.h | 44 abi_ulong shm_atime; /* time of last shmat() */ 48 abi_ulong shm_dtime; /* time of last shmdt() */ 52 abi_ulong shm_ctime; /* time of last change by shmctl() */ 57 abi_int shm_lpid; /* pid of last shmop */
|