| /openbmc/u-boot/lib/ |
| H A D | list_sort.c | 109 int lev; /* index into part[] */ in list_sort() local 126 for (lev = 0; part[lev]; lev++) { in list_sort() 127 cur = merge(priv, cmp, part[lev], cur); in list_sort() 128 part[lev] = NULL; in list_sort() 130 if (lev > max_lev) { in list_sort() 131 if (unlikely(lev >= ARRAY_SIZE(part)-1)) { in list_sort() 135 lev--; in list_sort() 137 max_lev = lev; in list_sort() 139 part[lev] = cur; in list_sort() 142 for (lev = 0; lev < max_lev; lev++) in list_sort() [all …]
|
| /openbmc/qemu/hw/gpio/ |
| H A D | bcm2835_gpio.c | 114 uint32_t val, uint8_t start, uint8_t count, uint32_t *lev) in gpset() argument 116 uint32_t changes = val & ~*lev; in gpset() 127 *lev |= val; in gpset() 131 uint32_t val, uint8_t start, uint8_t count, uint32_t *lev) in gpclr() argument 133 uint32_t changes = val & *lev; in gpclr() 144 *lev &= ~val; in gpclr()
|
| H A D | bcm2838_gpio.c | 136 uint8_t count, uint32_t *lev) in gpset() argument 138 uint32_t changes = val & ~*lev; in gpset() 149 *lev |= val; in gpset() 153 uint8_t count, uint32_t *lev) in gpclr() argument 155 uint32_t changes = val & *lev; in gpclr() 166 *lev &= ~val; in gpclr()
|
| /openbmc/dbus-sensors/src/ |
| H A D | sensor.hpp | 139 Level lev) in getThresholdInterface() 141 size_t index = static_cast<size_t>(lev); in getThresholdInterface() 402 static std::string propertyLevel(const Level lev, const Direction dir) in propertyLevel() 407 if (prop.level == lev) in propertyLevel() 422 static std::string propertyAlarm(const Level lev, const Direction dir) in propertyAlarm() 427 if (prop.level == lev) in propertyAlarm()
|
| H A D | Thresholds.hpp | 40 const Level& lev, const Direction& dir, const double& val, in Threshold() 43 level(lev), direction(dir), value(val), hysteresis(hysteresis), in Threshold()
|
| /openbmc/qemu/hw/pci-host/ |
| H A D | pnv_phb3.c | 744 int32_t lev = GETFIELD(IODA2_TVT_NUM_LEVELS, tve); in pnv_phb3_translate_tve() local 750 if (lev > 4) { in pnv_phb3_translate_tve() 751 phb3_error(phb, "Invalid #levels in TVE %d", lev); in pnv_phb3_translate_tve() 794 sh = tbl_shift * lev + tce_shift; in pnv_phb3_translate_tve() 798 lev--; in pnv_phb3_translate_tve() 810 if ((lev >= 0) && !(tce & 3)) { in pnv_phb3_translate_tve() 815 tta, lev, tts, tps); in pnv_phb3_translate_tve() 820 } while (lev >= 0); in pnv_phb3_translate_tve() 828 tta, lev, tts, tps); in pnv_phb3_translate_tve()
|
| H A D | pnv_phb4.c | 1228 int32_t lev = GETFIELD(IODA3_TVT_NUM_LEVELS, tve); in pnv_phb4_translate_tve() local 1233 if (lev > 4) { in pnv_phb4_translate_tve() 1234 phb_error(ds->phb, "Invalid #levels in TVE %d", lev); in pnv_phb4_translate_tve() 1267 sh = tbl_shift * lev + tce_shift; in pnv_phb4_translate_tve() 1273 lev--; in pnv_phb4_translate_tve() 1285 if ((lev >= 0) && !(tce & 3)) { in pnv_phb4_translate_tve() 1290 tta, lev, tts, tps); in pnv_phb4_translate_tve() 1295 } while (lev >= 0); in pnv_phb4_translate_tve() 1303 tta, lev, tts, tps); in pnv_phb4_translate_tve()
|
| /openbmc/qemu/target/ppc/ |
| H A D | excp_helper.c | 738 int lev = env->error_code; in powerpc_excp_7xx() local 740 if (lev == 1 && cpu->vhyp) { in powerpc_excp_7xx() 758 if (lev == 1 && cpu->vhyp) { in powerpc_excp_7xx() 888 int lev = env->error_code; in powerpc_excp_74xx() local 890 if (lev == 1 && cpu->vhyp) { in powerpc_excp_74xx() 908 if (lev == 1 && cpu->vhyp) { in powerpc_excp_74xx() 1256 int srr0 = SPR_SRR0, srr1 = SPR_SRR1, lev = -1; in powerpc_excp_books() local 1382 lev = env->error_code; in powerpc_excp_books() 1384 if (lev == 1 && cpu->vhyp) { in powerpc_excp_books() 1397 if (lev == 1 && books_vhyp_handles_hcall(cpu)) { in powerpc_excp_books() [all …]
|
| H A D | tcg-excp_helper.c | 445 void helper_scv(CPUPPCState *env, uint32_t lev) in helper_scv() argument 448 raise_exception_err(env, POWERPC_EXCP_SYSCALL_VECTORED, lev); in helper_scv()
|
| H A D | translate.c | 3978 uint32_t lev; in gen_sc() local 3985 lev = (ctx->opcode >> 5) & 0x1; in gen_sc() 3986 gen_exception_err(ctx, POWERPC_SYSCALL, lev); in gen_sc() 3993 uint32_t lev = (ctx->opcode >> 5) & 0x7F; in gen_scv() local 3997 gen_helper_scv(tcg_env, tcg_constant_i32(lev)); in gen_scv()
|
| /openbmc/qemu/util/ |
| H A D | hbitmap.c | 762 int lev; in hbitmap_deserialize_finish() local 767 for (lev = HBITMAP_LEVELS - 1; lev-- > 0; ) { in hbitmap_deserialize_finish() 770 memset(bitmap->levels[lev], 0, size * sizeof(unsigned long)); in hbitmap_deserialize_finish() 773 if (bitmap->levels[lev + 1][i]) { in hbitmap_deserialize_finish() 774 bitmap->levels[lev][i >> BITS_PER_LEVEL] |= in hbitmap_deserialize_finish()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/unclutter-xfixes/unclutter-xfixes/ |
| H A D | 0001-build-use-autotools.patch | 86 -LDFLAGS += -lev 226 +AM_LDFLAGS = -lev $(X11_LIBS)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/krb5/krb5/ |
| H A D | 0001-Eliminate-old-style-function-declarations.patch | 9306 -int trval2(fp, enc, len, lev, rlen) 9310 - int lev; 9313 +trval2(FILE *fp, unsigned char *enc, int len, int lev, int *rlen) 9334 -int do_prim_bitstring(fp, tag, enc, len, lev) 9339 - int lev; 9341 +do_prim_bitstring(FILE *fp, int tag, unsigned char *enc, int len, int lev) 9345 @@ -297,12 +287,8 @@ int do_prim_bitstring(fp, tag, enc, len, lev) 9349 -int do_prim_int(fp, tag, enc, len, lev) 9354 - int lev; 9356 +do_prim_int(FILE *fp, int tag, unsigned char *enc, int len, int lev) [all …]
|