| /openbmc/qemu/hw/intc/ |
| H A D | arm_gicv3.c | 69 uint32_t pend, grpmask; in gicd_int_pending() local 78 pend = pending | (~edge_trigger & level); in gicd_int_pending() 79 pend &= enable; in gicd_int_pending() 80 pend &= ~active; in gicd_int_pending() 96 pend &= grpmask; in gicd_int_pending() 98 return pend; in gicd_int_pending() 114 uint32_t pend, grpmask, grpmod; in gicr_int_pending() local 116 pend = cs->gicr_ipendr0 | (~cs->edge_trigger & cs->level); in gicr_int_pending() 117 pend &= cs->gicr_ienabler0; in gicr_int_pending() 118 pend &= ~cs->gicr_iactiver0; in gicr_int_pending() [all …]
|
| H A D | arm_gicv3_redist.c | 155 uint8_t pend; in update_for_all_lpis() local 163 address_space_read(as, ptbase + i, MEMTXATTRS_UNSPECIFIED, &pend, 1); in update_for_all_lpis() 164 while (pend) { in update_for_all_lpis() 165 bit = ctz32(pend); in update_for_all_lpis() 167 pend &= ~(1 << bit); in update_for_all_lpis() 188 uint8_t pend; in set_pending_table_bit() local 190 address_space_read(as, addr, MEMTXATTRS_UNSPECIFIED, &pend, 1); in set_pending_table_bit() 191 if (extract32(pend, irq % 8, 1) == level) { in set_pending_table_bit() 195 pend = deposit32(pend, irq % 8, 1, level ? 1 : 0); in set_pending_table_bit() 196 address_space_write(as, addr, MEMTXATTRS_UNSPECIFIED, &pend, 1); in set_pending_table_bit()
|
| H A D | mips_gic.c | 45 ored_level |= (gic->vps[vp].pend & GIC_VP_MASK_CMP_MSK) >> in mips_gic_set_vp_irq() 97 return gic->vps[vp_index].pend; in gic_read_vp() 200 gic->vps[vp_index].pend |= (1 << GIC_LOCAL_INT_COMPARE); in gic_timer_expire_cb() 201 if (gic->vps[vp_index].pend & in gic_timer_expire_cb() 215 gic->vps[vp_index].pend &= ~(1 << GIC_LOCAL_INT_COMPARE); in gic_timer_store_vp_compare() 367 gic->vps[i].pend = 0x0; in gic_reset()
|
| H A D | grlib_irqmp.c | 98 uint32_t pend = (state->pending | state->force[i]) & state->mask[i]; in grlib_irqmp_check_irqs() local 99 uint32_t level0 = pend & ~state->level; in grlib_irqmp_check_irqs() 100 uint32_t level1 = pend & state->level; in grlib_irqmp_check_irqs()
|
| H A D | riscv_imsic.c | 152 uint32_t num, bool pend, target_ulong *val, in riscv_imsic_eix_rmw() argument 157 uint32_t state = (pend) ? IMSIC_EISTATE_PENDING : IMSIC_EISTATE_ENABLED; in riscv_imsic_eix_rmw()
|
| H A D | trace-events | 49 grlib_irqmp_check_irqs(uint32_t pend, uint32_t force, uint32_t mask, uint32_t lvl1, uint32_t lvl2) …
|
| /openbmc/u-boot/board/socrates/ |
| H A D | sdram.c | 67 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END; in testdram() local 71 for (p = pstart; p < pend; p++) in testdram() 74 for (p = pstart; p < pend; p++) { in testdram() 82 for (p = pstart; p < pend; p++) in testdram() 85 for (p = pstart; p < pend; p++) { in testdram()
|
| /openbmc/u-boot/board/BuS/eb_cpu5282/ |
| H A D | eb_cpu5282.c | 103 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END; in testdram() local 107 for (p = pstart; p < pend; p++) in testdram() 110 for (p = pstart; p < pend; p++) { in testdram() 118 for (p = pstart; p < pend; p++) in testdram() 121 for (p = pstart; p < pend; p++) { in testdram()
|
| /openbmc/u-boot/board/freescale/mpc837xerdb/ |
| H A D | mpc837xerdb.c | 25 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END; in testdram() local 33 for (p = pstart; p < pend; p++) in testdram() 36 for (p = pstart; p < pend; p++) { in testdram() 44 for (p = pstart; p < pend; p++) in testdram() 47 for (p = pstart; p < pend; p++) { in testdram()
|
| /openbmc/u-boot/board/sbc8641d/ |
| H A D | sbc8641d.c | 61 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END; in testdram() local 65 for (p = pstart; p < pend; p++) in testdram() 68 for (p = pstart; p < pend; p++) { in testdram() 76 for (p = pstart; p < pend; p++) in testdram() 79 for (p = pstart; p < pend; p++) { in testdram()
|
| /openbmc/u-boot/board/sbc8548/ |
| H A D | sbc8548.c | 201 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END; in testdram() local 209 for (p = pstart; p < pend; p++) in testdram() 212 for (p = pstart; p < pend; p++) { in testdram() 220 for (p = pstart; p < pend; p++) in testdram() 223 for (p = pstart; p < pend; p++) { in testdram()
|
| /openbmc/qemu/hw/misc/ |
| H A D | stm32l4x5_exti.c | 204 const uint32_t pend = set & ~s->swier[bank] & s->imr[bank] & in stm32l4x5_exti_write() local 207 s->pr[bank] |= pend; in stm32l4x5_exti_write() 209 if (extract32(pend, i, 1)) { in stm32l4x5_exti_write()
|
| /openbmc/qemu/hw/core/ |
| H A D | loader-fit.c | 120 int cfg, void *opaque, hwaddr *pend, in fit_load_kernel() argument 162 if (pend) { in fit_load_kernel() 163 *pend = load_addr + sz; in fit_load_kernel()
|
| /openbmc/qemu/include/hw/intc/ |
| H A D | mips_gic.h | 193 uint32_t pend; member
|
| /openbmc/openbmc/poky/meta/recipes-support/vte/vte/ |
| H A D | 0004-fast_float-Add-single-header-library-for-from_char-i.patch | 1214 +loop_parse_if_eight_digits(const UC *&p, const UC *const pend, uint64_t &i) { 1218 + while ((std::distance(p, pend) >= 8) && 1226 +loop_parse_if_eight_digits(const char *&p, const char *const pend, 1229 + while ((std::distance(p, pend) >= 8) && 1287 +parse_number_string(UC const *p, UC const *pend, 1302 + if (p == pend) { 1324 + while ((p != pend) && is_integer(*p)) { 1347 + const bool has_decimal_point = (p != pend) && (*p == decimal_point); 1353 + loop_parse_if_eight_digits(p, pend, i); 1355 + while ((p != pend) && is_integer(*p)) { [all …]
|
| /openbmc/u-boot/drivers/ddr/fsl/ |
| H A D | interactive.c | 103 void *pend, in fsl_ddr_generic_edit() argument 111 if ((pcdata + element_size) > (char *) pend) { in fsl_ddr_generic_edit() 1921 char *pend = strchr(p, ';'); in fsl_ddr_interactive() local 1922 if (pend) { in fsl_ddr_interactive() 1924 *pend = '\0'; in fsl_ddr_interactive() 1926 p = pend + 1; in fsl_ddr_interactive()
|
| /openbmc/qemu/tcg/ |
| H A D | region.c | 329 static void tcg_region_bounds(size_t curr_region, void **pstart, void **pend) in tcg_region_bounds() argument 345 *pend = end; in tcg_region_bounds()
|
| /openbmc/u-boot/cmd/ |
| H A D | mtdparts.c | 848 const char *pend; in device_parse() local 878 pend = strchr(p, ';'); in device_parse() 882 debug("parsing partitions %.*s\n", (int)(pend ? pend - p : strlen(p)), p); in device_parse()
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | ipmi_client.robot | 186 # that keyword's prolog for argument details. This keyword will pre-pend
|