| /openbmc/qemu/util/ |
| H A D | hbitmap.c | 110 const HBitmap *hb = hbi->hb; in hbitmap_iter_skip_words() local 117 cur = hbi->cur[i] & hb->levels[i][pos]; in hbitmap_iter_skip_words() 139 cur = hb->levels[i + 1][pos]; in hbitmap_iter_skip_words() 143 trace_hbitmap_iter_skip_words(hbi->hb, hbi, pos, cur); in hbitmap_iter_skip_words() 152 hbi->hb->levels[HBITMAP_LEVELS - 1][hbi->pos]; in hbitmap_iter_next() 169 void hbitmap_iter_init(HBitmapIter *hbi, const HBitmap *hb, uint64_t first) in hbitmap_iter_init() argument 174 hbi->hb = hb; in hbitmap_iter_init() 175 pos = first >> hb->granularity; in hbitmap_iter_init() 176 assert(pos < hb->size); in hbitmap_iter_init() 178 hbi->granularity = hb->granularity; in hbitmap_iter_init() [all …]
|
| H A D | trace-events | 60 hbitmap_iter_skip_words(const void *hb, void *hbi, uint64_t pos, unsigned long cur) "hb %p hbi %p p… 61 hbitmap_reset(void *hb, uint64_t start, uint64_t count, uint64_t sbit, uint64_t ebit) "hb %p items … 62 hbitmap_set(void *hb, uint64_t start, uint64_t count, uint64_t sbit, uint64_t ebit) "hb %p items %"…
|
| /openbmc/qemu/include/qemu/ |
| H A D | hbitmap.h | 37 const HBitmap *hb; member 72 void hbitmap_truncate(HBitmap *hb, uint64_t size); 89 bool hbitmap_empty(const HBitmap *hb); 97 int hbitmap_granularity(const HBitmap *hb); 105 uint64_t hbitmap_count(const HBitmap *hb); 115 void hbitmap_set(HBitmap *hb, uint64_t start, uint64_t count); 130 void hbitmap_reset(HBitmap *hb, uint64_t start, uint64_t count); 138 void hbitmap_reset_all(HBitmap *hb); 147 bool hbitmap_get(const HBitmap *hb, uint64_t item); 160 bool hbitmap_is_serializable(const HBitmap *hb); [all …]
|
| /openbmc/openbmc/poky/meta/recipes-graphics/harfbuzz/harfbuzz/ |
| H A D | 0001-Use-Os-to-compile-hb-subset-plan-layout.cc.patch | 4 Subject: [PATCH] Use -Os to compile hb-subset-plan-layout.cc 24 'hb-subset-instancer-solver.hh', 25 'hb-subset-instancer-solver.cc', 26 'hb-subset-plan.cc', 27 - 'hb-subset-plan-layout.cc', 28 'hb-subset-plan-var.cc', 29 'hb-subset-plan.hh', 30 'hb-subset-plan-member-list.hh', 32 'hb-subset.hh', 36 + 'hb-subset-plan-layout.cc', [all …]
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-hbitmap.c | 24 HBitmap *hb; member 44 hbitmap_iter_init(&hbi, data->hb, first); in hbitmap_test_check() 72 g_assert_cmpint(count << data->granularity, ==, hbitmap_count(data->hb)); in hbitmap_test_check() 82 data->hb = hbitmap_alloc(size, granularity); in hbitmap_test_init() 131 hbitmap_truncate(data->hb, size); in hbitmap_test_truncate_impl() 137 if (data->hb) { in hbitmap_test_teardown() 138 hbitmap_free(data->hb); in hbitmap_test_teardown() 139 data->hb = NULL; in hbitmap_test_teardown() 151 hbitmap_set(data->hb, first, count); in hbitmap_test_set() 170 hbitmap_reset(data->hb, first, count); in hbitmap_test_reset() [all …]
|
| H A D | test-smp-parse.c | 32 #define SMP_CONFIG_GENERIC(ha, a, hb, b, hc, c, hd, d, he, e) \ argument 35 .has_sockets = hb, .sockets = b, \ 54 #define SMP_CONFIG_WITH_MODS_DIES(ha, a, hb, b, hc, c, hd, d, \ argument 58 .has_sockets = hb, .sockets = b, \ 70 #define SMP_CONFIG_WITH_CLUSTERS(ha, a, hb, b, hc, c, hd, d, he, e, hf, f) \ argument 73 .has_sockets = hb, .sockets = b, \ 84 #define SMP_CONFIG_WITH_BOOKS_DRAWERS(ha, a, hb, b, hc, c, hd, \ argument 88 .has_drawers = hb, .drawers = b, \
|
| /openbmc/openbmc-tools/altitude/ |
| H A D | altitude | 14 hb = 0 variable 22 return Pb * exp((-g0 * M * (h - hb)) / (Rstar * Tb)) 26 return (h - hb) * Lb + Tb 30 return (log(p / Pb) * (Rstar * Tb)) / (-g0 * M) + hb 34 return ((t - Tb) / Lb) + hb
|
| /openbmc/qemu/include/hw/fsi/ |
| H A D | fsi.h | 16 #define BE_GENMASK(hb, lb) MAKE_64BIT_MASK((lb), ((hb) - (lb) + 1)) argument
|
| /openbmc/qemu/hw/cxl/ |
| H A D | cxl-host.c | 162 PCIHostState *hb; in cxl_cfmws_find_device() local 174 hb = PCI_HOST_BRIDGE(fw->target_hbs[rb_index]->cxl_host_bridge); in cxl_cfmws_find_device() 175 if (!hb || !hb->bus || !pci_bus_is_cxl(hb->bus)) { in cxl_cfmws_find_device() 179 if (cxl_get_hb_passthrough(hb)) { in cxl_cfmws_find_device() 180 rp = pcie_find_port_first(hb->bus); in cxl_cfmws_find_device() 185 hb_cstate = cxl_get_hb_cstate(hb); in cxl_cfmws_find_device() 197 rp = pcie_find_port_by_pn(hb->bus, target); in cxl_cfmws_find_device()
|
| /openbmc/openbmc/poky/meta/recipes-extended/at/at/ |
| H A D | file_replacement_with_gplv2.patch | 5 http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob;f=lib/posixtm.c;hb=5661ab9d49512b4cf3c19caa… 6 http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob;f=lib/posixtm.h;hb=5661ab9d49512b4cf3c19caa…
|
| /openbmc/qemu/hw/pci-bridge/ |
| H A D | pci_expander_bridge.c | 59 CXLComponentState *cxl_get_hb_cstate(PCIHostState *hb) 61 CXLHost *host = PXB_CXL_HOST(hb); 66 bool cxl_get_hb_passthrough(PCIHostState *hb) in cxl_get_hb_passthrough() argument 68 CXLHost *host = PXB_CXL_HOST(hb); in cxl_get_hb_passthrough() 300 PCIHostState *hb = PCI_HOST_BRIDGE(cxl); in pxb_cxl_dev_reset() local 311 dsp_count = pcie_count_ds_ports(hb->bus); in pxb_cxl_dev_reset()
|
| /openbmc/openbmc/poky/meta/recipes-graphics/harfbuzz/ |
| H A D | harfbuzz_11.2.0.bb | 8 … file://src/hb-ucd.cc;beginline=1;endline=15;md5=29d4dcb6410429195df67efe3382d8bc \ 12 SRC_URI += "file://0001-Use-Os-to-compile-hb-subset-plan-layout.cc.patch"
|
| /openbmc/qemu/include/hw/cxl/ |
| H A D | cxl_component.h | 273 CXLComponentState *cxl_get_hb_cstate(PCIHostState *hb); 274 bool cxl_get_hb_passthrough(PCIHostState *hb);
|
| /openbmc/u-boot/arch/mips/lib/ |
| H A D | cache_init.S | 331 jalr.hb t0 428 jr.hb ra
|
| /openbmc/u-boot/drivers/bios_emulator/x86emu/ |
| H A D | prim_ops.c | 255 u8 hb, lb; in aad_word() local 257 hb = (u8)((d >> 8) & 0xff); in aad_word() 259 l = (u16)((lb + 10 * hb) & 0xFF); in aad_word()
|
| /openbmc/qemu/block/ |
| H A D | dirty-bitmap.c | 681 hbitmap_iter_init(&iter->hbi, iter->hbi.hb, offset); in bdrv_set_dirty_iter()
|
| /openbmc/qemu/docs/about/ |
| H A D | deprecated.rst | 525 10Gb XGMAC Ethernet controller device ("calxeda,hb-xgmac" compatibility
|
| H A D | emulation.rst | 168 - https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=libgloss/m68k/m68k-semi.txt;hb=HEAD
|
| /openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
| H A D | 10_usagi-ipv6.patch | 533 return (&hb->host);
|
| /openbmc/rest-dbus/resources/ |
| H A D | jquery.min.js | 5 …hb(a,b,c){for(var d,e=(eb[b]||[]).concat(eb["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))ret… function
|
| /openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/ |
| H A D | Update-x86emu-from-X.org.patch | 14784 - u8 hb, lb; 14786 + u8 hb, lb; 14788 - hb = (u8)((d >> 8) & 0xff); 14790 - l = (u16)((lb + 10 * hb) & 0xFF); 14791 + hb = (u8) ((d >> 8) & 0xff); 14793 + l = (u16) ((lb + 10 * hb) & 0xFF);
|
| /openbmc/u-boot/ |
| H A D | README | 4690 http://www.altera.com/literature/hb/nios2/n2cpu_nii51016.pdf
|
| /openbmc/ |
| D | opengrok1.0.log | [all...] |
| D | opengrok2.0.log | [all...] |