/openbmc/qemu/pc-bios/ |
HD | openbios-ppc | ... o *| *T }* *, * ' - o + -P , }* , ,L ... |
HD | openbios-sparc32 | ... Rstack Forth key ( Empty ) ( %x %p: %s R: ( ) outer-interpreter |
/openbmc/openbmc/poky/bitbake/lib/bb/pysh/ |
H A D | pyshyacc.py | 1 # pyshyacc.py - PLY grammar definition for pysh 32 def make_io_redirect(p): argument 34 name, io_number, io_target = p 123 #------------------------------------------------------------------------------- 125 #------------------------------------------------------------------------------- 127 def p_multiple_commands(p): argument 131 if len(p)==2: 132 if p[1] is not None: 133 p[0] = [p[1]] 135 p[0] = [] [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 077 | 54 echo "open -o driver=$IMGFMT,file.align=4k blkdebug::$TEST_IMG" 57 aio_write -P 10 0x200 0x200 66 aio_write -P 10 $((off + 0x200)) 0x200 68 aio_write -P 11 $((off + 0x400)) 0x200 79 aio_write -P 10 0x5000 0x200 81 aio_write -P 11 0x5200 0x200 82 aio_write -P 12 0x5400 0x200 83 aio_write -P 13 0x5600 0x200 84 aio_write -P 14 0x5800 0x200 85 aio_write -P 15 0x5a00 0x200 [all …]
|
H A D | 046 | 63 for ((i=0;i<=$((sectors - 1));i++)); do 67 echo "$op -P $pattern $((cur_sec * 64))k 64k" 74 _make_test_img -b "$TEST_IMG.base" -F $IMGFMT 6G 84 aio_write -P 10 0x18000 0x2000 87 aio_write -P 11 0x12000 0x2000 88 aio_write -P 12 0x1c000 0x2000 98 aio_write -P 20 0x28000 0x2000 100 aio_write -P 21 0x2a000 0x10000 108 aio_write -P 40 0x48000 0x2000 110 aio_write -P 41 0x4c000 0x10000 [all …]
|
H A D | 021.out | 4 == testing writev -P -1 == 5 -1 is not a valid pattern byte 7 == testing read -P -1 == 8 -1 is not a valid pattern byte 10 == testing write -P -1 == 11 -1 is not a valid pattern byte 13 == testing readv -P -1 == 14 -1 is not a valid pattern byte 16 == testing aio_read -P -1 == 17 -1 is not a valid pattern byte [all …]
|
/openbmc/qemu/hw/usb/ |
H A D | core.c | 39 USBDevice *udev = port->dev; in usb_pick_speed() 43 if ((udev->speedmask & (1 << speeds[i])) && in usb_pick_speed() 44 (port->speedmask & (1 << speeds[i]))) { in usb_pick_speed() 45 udev->speed = speeds[i]; in usb_pick_speed() 53 USBDevice *dev = port->dev; in usb_attach() 56 assert(dev->attached); in usb_attach() 57 assert(dev->state == USB_STATE_NOTATTACHED); in usb_attach() 59 port->ops->attach(port); in usb_attach() 60 dev->state = USB_STATE_ATTACHED; in usb_attach() 66 USBDevice *dev = port->dev; in usb_detach() [all …]
|
H A D | combined-packet.c | 28 static void usb_combined_packet_add(USBCombinedPacket *combined, USBPacket *p) in usb_combined_packet_add() argument 30 qemu_iovec_concat(&combined->iov, &p->iov, 0, p->iov.size); in usb_combined_packet_add() 31 QTAILQ_INSERT_TAIL(&combined->packets, p, combined_entry); in usb_combined_packet_add() 32 p->combined = combined; in usb_combined_packet_add() 37 USBPacket *p) in usb_combined_packet_remove() argument 39 assert(p->combined == combined); in usb_combined_packet_remove() 40 p->combined = NULL; in usb_combined_packet_remove() 41 QTAILQ_REMOVE(&combined->packets, p, combined_entry); in usb_combined_packet_remove() 42 if (QTAILQ_EMPTY(&combined->packets)) { in usb_combined_packet_remove() 43 qemu_iovec_destroy(&combined->iov); in usb_combined_packet_remove() [all …]
|
/openbmc/qemu/util/ |
H A D | trace-events | 3 # aio-posix.c 4 run_poll_handlers_begin(void *ctx, int64_t max_ns, int64_t timeout) "ctx %p max_ns %"PRId64 " timeo… 5 run_poll_handlers_end(void *ctx, bool progress, int64_t timeout) "ctx %p progress %d new timeout %"… 6 poll_shrink(void *ctx, int64_t old, int64_t new) "ctx %p old %"PRId64" new %"PRId64 7 poll_grow(void *ctx, int64_t old, int64_t new) "ctx %p old %"PRId64" new %"PRId64 8 poll_add(void *ctx, void *node, int fd, unsigned revents) "ctx %p node %p fd %d revents 0x%x" 9 poll_remove(void *ctx, void *node, int fd) "ctx %p node %p fd %d" 12 aio_co_schedule(void *ctx, void *co) "ctx %p co %p" 13 aio_co_schedule_bh_cb(void *ctx, void *co) "ctx %p co %p" 14 reentrant_aio(void *ctx, const char *name) "ctx %p name %s" [all …]
|
/openbmc/u-boot/lib/lzma/ |
H A D | LzmaDec.c | 1 /* LzmaDec.c -- LZMA Decoder 2 2009-09-20 : Igor Pavlov : Public domain */ 22 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code… argument 23 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits… argument 24 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits)); argument 25 #define GET_BIT2(p, i, A0, A1) IF_BIT_0(p) \ argument 26 { UPDATE_0(p); i = (i + i); A0; } else \ 27 { UPDATE_1(p); i = (i + i) + 1; A1; } 28 #define GET_BIT(p, i) GET_BIT2(p, i, ; , ;) argument 32 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; } [all …]
|
/openbmc/qemu/io/ |
H A D | trace-events | 4 …(void *task, void *source, void *func, void *opaque) "Task new task=%p source=%p func=%p opaque=%p" 5 qio_task_complete(void *task) "Task complete task=%p" 6 …hread_start(void *task, void *worker, void *opaque) "Task thread start task=%p worker=%p opaque=%p" 7 qio_task_thread_run(void *task) "Task thread run task=%p" 8 qio_task_thread_exit(void *task) "Task thread exit task=%p" 9 qio_task_thread_result(void *task) "Task thread result task=%p" 10 …o_task_thread_source_attach(void *task, void *source) "Task thread source attach task=%p source=%p" 11 …o_task_thread_source_cancel(void *task, void *source) "Task thread source cancel task=%p source=%p" 13 # channel-null.c 14 qio_channel_null_new(void *ioc) "Null new ioc=%p" [all …]
|
/openbmc/qemu/migration/ |
H A D | multifd.c | 4 * Copyright (c) 2019-2020 Red Hat Inc 10 * See the COPYING file in the top-level directory. 20 #include "qemu/error-report.h" 25 #include "migration-stats.h" 29 #include "qemu-file.h" 35 #include "io/channel-file.h" 36 #include "io/channel-socket.h" 105 multifd_ram_payload_alloc(&new->u.ram); in multifd_send_data_alloc() 106 /* Device state allocates its payload on-demand */ in multifd_send_data_alloc() 117 switch (data->type) { in multifd_send_data_clear() [all …]
|
H A D | multifd-nocomp.c | 4 * Copyright (c) 2019-2020 Red Hat Inc 10 * See the COPYING file in the top-level directory. 17 #include "migration-stats.h" 23 #include "qemu/error-report.h" 25 #include "qemu-file.h" 31 pages->offset = g_new0(ram_addr_t, multifd_ram_page_count()); in multifd_ram_payload_alloc() 36 g_clear_pointer(&pages->offset, g_free); in multifd_ram_payload_free() 49 static void multifd_set_file_bitmap(MultiFDSendParams *p) in multifd_set_file_bitmap() argument 51 MultiFDPages_t *pages = &p->data->u.ram; in multifd_set_file_bitmap() 53 assert(pages->block); in multifd_set_file_bitmap() [all …]
|
/openbmc/qemu/block/ |
H A D | trace-events | 4 bdrv_open_common(void *bs, const char *filename, int flags, const char *format_name) "bs %p filenam… 5 bdrv_lock_medium(void *bs, bool locked) "bs %p locked %d" 7 # block-backend.c 8 blk_co_preadv(void *blk, void *bs, int64_t offset, int64_t bytes, int flags) "blk %p bs %p offset %… 9 blk_co_pwritev(void *blk, void *bs, int64_t offset, int64_t bytes, int flags) "blk %p bs %p offset … 10 blk_root_attach(void *child, void *blk, void *bs) "child %p blk %p bs %p" 11 blk_root_detach(void *child, void *blk, void *bs) "child %p blk %p bs %p" 14 bdrv_co_preadv_part(void *bs, int64_t offset, int64_t bytes, unsigned int flags) "bs %p offset %" P… 15 bdrv_co_pwritev_part(void *bs, int64_t offset, int64_t bytes, unsigned int flags) "bs %p offset %" … 16 bdrv_co_pwrite_zeroes(void *bs, int64_t offset, int64_t bytes, int flags) "bs %p offset %" PRId64 "… [all …]
|
/openbmc/phosphor-host-ipmid/include/ipmid/message/ |
H A D | unpack.hpp | 8 * http://www.apache.org/licenses/LICENSE-2.0 52 void UnpackBytesUnaligned(Payload& p, NumericType& i) in UnpackBytesUnaligned() argument 56 i |= static_cast<NumericType>(p.popBits(CHAR_BIT)) in UnpackBytesUnaligned() 58 UnpackBytesUnaligned<NumericType, byteIndex + 1>(p, i); in UnpackBytesUnaligned() 65 * User-defined types are expected to specialize this template in order to 68 * @tparam T - Type of element to unpack. 75 * @param[in] p - Payload to unpack from. 76 * @param[out] t - The reference to unpack item into. 78 static int op(Payload& p, T& t) in op() 83 if (p.bitCount) in op() [all …]
|
/openbmc/u-boot/drivers/power/ |
H A D | power_core.c | 1 // SPDX-License-Identifier: GPL-2.0+ 9 * (C) Copyright 2008-2009 Freescale Semiconductor, Inc. 20 int check_reg(struct pmic *p, u32 reg) in check_reg() argument 22 if (reg >= p->number_of_regs) { in check_reg() 24 reg, p->number_of_regs); in check_reg() 25 return -EINVAL; in check_reg() 31 int pmic_set_output(struct pmic *p, u32 reg, int out, int on) in pmic_set_output() argument 35 if (pmic_reg_read(p, reg, &val)) in pmic_set_output() 36 return -ENOTSUPP; in pmic_set_output() 43 if (pmic_reg_write(p, reg, val)) in pmic_set_output() [all …]
|
/openbmc/u-boot/arch/sh/include/asm/ |
H A D | unaligned-sh4a.h | 5 * SH-4A has support for unaligned 32-bit loads, and 32-bit loads only. 6 * Support for 64-bit accesses are done through shifting and masking 24 static __always_inline u32 __get_unaligned_cpu32(const u8 *p) in __get_unaligned_cpu32() argument 31 : "r" (p) in __get_unaligned_cpu32() 41 static inline u16 __get_unaligned_cpu16(const u8 *p) in __get_unaligned_cpu16() argument 44 return p[0] | p[1] << 8; in __get_unaligned_cpu16() 46 return p[0] << 8 | p[1]; in __get_unaligned_cpu16() 51 * Even though movua.l supports auto-increment on the read side, it can 55 static inline u64 __get_unaligned_cpu64(const u8 *p) in __get_unaligned_cpu64() argument 58 return (u64)__get_unaligned_cpu32(p + 4) << 32 | in __get_unaligned_cpu64() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
H A D | urls.py | 4 # Copyright (C) 2013-2017 Intel Corporation 6 # SPDX-License-Identifier: GPL-2.0-only 24 tables.AllBuildsTable.as_view(template_name="builds-toastertable.html"), 25 name='all-builds'), 28 url(r'^build/(?P<build_id>\d+)$', views.builddashboard, name="builddashboard"), 29 url(r'^build/(?P<build_id>\d+)/tasks/$', 31 template_name="buildinfo-toastertable.html"), 34 url(r'^build/(?P<build_id>\d+)/task/(?P<task_id>\d+)$', views.task, name='task'), 36 url(r'^build/(?P<build_id>\d+)/recipes/$', 38 template_name="buildinfo-toastertable.html"), [all …]
|
/openbmc/ipmitool/lib/ |
H A D | ipmi_firewall.c | 23 * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. 65 "\t\tC is a Command and S is a Sub-Function"); in printf_firewall_usage() 90 "\tThis is the one you want -- it prints out detailed human"); in printf_firewall_info_usage() 96 "\tsame information about each of its Sub-functions."); in printf_firewall_info_usage() 121 ipmi_firewall_parse_args(int argc, char ** argv, struct ipmi_function_params * p) in ipmi_firewall_parse_args() argument 126 if (!p) { in ipmi_firewall_parse_args() 127 lprintf(LOG_ERR, "ipmi_firewall_parse_args: p is NULL"); in ipmi_firewall_parse_args() 128 return -1; in ipmi_firewall_parse_args() 137 p->channel = channel_tmp; in ipmi_firewall_parse_args() 141 if (str2int(argv[i], &(p->lun)) != 0) { in ipmi_firewall_parse_args() [all …]
|
/openbmc/qemu/tests/tcg/s390x/ |
H A D | fma.c | 2 * Test floating-point multiply-and-add instructions. 4 * SPDX-License-Identifier: GPL-2.0-or-later 24 …/* -inf -Fn -0 +0 +Fn +inf Q… 25 …{/* -inf */ "P(+inf)", "P(+inf)", "Xi: T(dNaN)", "Xi: T(dNaN)", "P(-inf)", "P(-inf)", … 26 …{/* -Fn */ "P(+inf)", "P(a*b)", "P(+0)", "P(-0)", "P(a*b)", "P(-inf)", … 27 …{/* -0 */ "Xi: T(dNaN)", "P(+0)", "P(+0)", "P(-0)", "P(-0)", "Xi: T(dNaN)", … 28 …{/* +0 */ "Xi: T(dNaN)", "P(-0)", "P(-0)", "P(+0)", "P(+0)", "Xi: T(dNaN)", … 29 …{/* +Fn */ "P(-inf)", "P(a*b)", "P(-0)", "P(+0)", "P(a*b)", "P(+inf)", … 30 …{/* +inf */ "P(-inf)", "P(-inf)", "Xi: T(dNaN)", "Xi: T(dNaN)", "P(+inf)", "P(+inf)", … 31 …{/* QNaN */ "P(a)", "P(a)", "P(a)", "P(a)", "P(a)", "P(a)", … [all …]
|
/openbmc/qemu/bsd-user/ |
H A D | bsd-file.h | 25 #define LOCK_PATH(p, arg) \ argument 27 (p) = lock_user_string(arg); \ 28 if ((p) == NULL) { \ 29 return -TARGET_EFAULT; \ 33 #define UNLOCK_PATH(p, arg) unlock_user(p, arg, 0) argument 39 return -TARGET_EFAULT; \ 44 return -TARGET_EFAULT; \ 74 void *p; in do_bsd_read() local 76 p = lock_user(VERIFY_WRITE, arg2, arg3, 0); in do_bsd_read() 77 if (p == NULL) { in do_bsd_read() [all …]
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
H A D | process_tree.py | 26 * short-lived processes (i.e. processes that only live for the 32 concurrently -- thread heuristic) are merged together, 37 LOGGER_PROC = 'bootchart-colle' 52 self.process_list = sorted(process_list, key = lambda p: p.pid) 61 self.duration = self.end_time - self.start_time 81 self.duration = self.end_time - self.start_time 96 for p in process_subtree: 97 p.child_list.sort(key = lambda p: p.pid) 98 self.sort(p.child_list) 122 return -100000000 [all …]
|
/openbmc/u-boot/drivers/power/fuel_gauge/ |
H A D | fg_max17042.c | 1 // SPDX-License-Identifier: GPL-2.0+ 17 static int fg_write_regs(struct pmic *p, u8 addr, u16 *data, int num) in fg_write_regs() argument 23 ret = pmic_reg_write(p, addr, *(data + i)); in fg_write_regs() 31 static int fg_read_regs(struct pmic *p, u8 addr, u16 *data, int num) in fg_read_regs() argument 38 ret = pmic_reg_read(p, addr, &dat); in fg_read_regs() 48 static int fg_write_and_verify(struct pmic *p, u8 addr, u16 data) in fg_write_and_verify() argument 53 ret |= pmic_reg_write(p, addr, val); in fg_write_and_verify() 54 ret |= pmic_reg_read(p, addr, &val); in fg_write_and_verify() 62 return -1; in fg_write_and_verify() 65 static void por_fuelgauge_init(struct pmic *p) in por_fuelgauge_init() argument [all …]
|
/openbmc/qemu/ui/ |
H A D | trace-events | 13 displaysurface_create_from(void *display_surface, int w, int h, uint32_t format) "surface=%p, %dx%d… 14 displaysurface_create_pixman(void *display_surface) "surface=%p" 15 displaysurface_free(void *display_surface) "surface=%p" 16 displaychangelistener_register(void *dcl, const char *name) "%p [ %s ]" 17 displaychangelistener_unregister(void *dcl, const char *name) "%p [ %s ]" 18 ppm_save(int fd, void *image) "fd=%d image=%p" 20 # gtk-egl.c 21 # gtk-gl-area.c 29 gd_gl_area_create_context(void *ctx, int major, int minor) "ctx=%p, major=%d, minor=%d" 30 gd_gl_area_destroy_context(void *ctx, void *current_ctx) "ctx=%p, current_ctx=%p" [all …]
|
/openbmc/qemu/qapi/ |
H A D | trace-events | 3 # qapi-visit-core.c 4 visit_free(void *v) "v=%p" 5 visit_complete(void *v, void *opaque) "v=%p opaque=%p" 7 visit_start_struct(void *v, const char *name, void *obj, size_t size) "v=%p name=%s obj=%p size=%zu" 8 visit_check_struct(void *v) "v=%p" 9 visit_end_struct(void *v, void *obj) "v=%p obj=%p" 11 visit_start_list(void *v, const char *name, void *obj, size_t size) "v=%p name=%s obj=%p size=%zu" 12 visit_next_list(void *v, void *tail, size_t size) "v=%p tail=%p size=%zu" 13 visit_check_list(void *v) "v=%p" 14 visit_end_list(void *v, void *obj) "v=%p obj=%p" [all …]
|