/openbmc/qemu/qapi/ |
H A D | opts-visitor.c | 140 OptsVisitor *ov = to_ov(v); in opts_start_struct() local 146 if (ov->depth++ > 0) { in opts_start_struct() 150 ov->unprocessed_opts = g_hash_table_new_full(&g_str_hash, &g_str_equal, in opts_start_struct() 152 QTAILQ_FOREACH(opt, &ov->opts_root->head, next) { in opts_start_struct() 156 opts_visitor_insert(ov->unprocessed_opts, opt); in opts_start_struct() 159 if (ov->opts_root->id != NULL) { in opts_start_struct() 160 ov->fake_id_opt = g_malloc0(sizeof *ov->fake_id_opt); in opts_start_struct() 162 ov->fake_id_opt->name = g_strdup("id"); in opts_start_struct() 163 ov->fake_id_opt->str = g_strdup(ov->opts_root->id); in opts_start_struct() 164 opts_visitor_insert(ov->unprocessed_opts, ov->fake_id_opt); in opts_start_struct() [all …]
|
/openbmc/qemu/hw/ppc/ |
H A D | spapr_ovec.c | 47 SpaprOptionVector *ov; in spapr_ovec_new() local 49 ov = g_new0(SpaprOptionVector, 1); in spapr_ovec_new() 50 ov->bitmap = bitmap_new(OV_MAXBITS); in spapr_ovec_new() 51 ov->bitmap_size = OV_MAXBITS; in spapr_ovec_new() 53 return ov; in spapr_ovec_new() 58 SpaprOptionVector *ov; in spapr_ovec_clone() local 62 ov = spapr_ovec_new(); in spapr_ovec_clone() 63 bitmap_copy(ov->bitmap, ov_orig->bitmap, OV_MAXBITS); in spapr_ovec_clone() 65 return ov; in spapr_ovec_clone() 68 void spapr_ovec_intersect(SpaprOptionVector *ov, in spapr_ovec_intersect() argument [all …]
|
/openbmc/qemu/chardev/ |
H A D | char-pipe.c | 46 OVERLAPPED ov; in win_chr_pipe_init() local 77 ZeroMemory(&ov, sizeof(ov)); in win_chr_pipe_init() 78 ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); in win_chr_pipe_init() 79 ret = ConnectNamedPipe(s->file, &ov); in win_chr_pipe_init() 85 ret = GetOverlappedResult(s->file, &ov, &size, TRUE); in win_chr_pipe_init() 88 if (ov.hEvent) { in win_chr_pipe_init() 89 CloseHandle(ov.hEvent); in win_chr_pipe_init() 90 ov.hEvent = NULL; in win_chr_pipe_init() 95 if (ov.hEvent) { in win_chr_pipe_init() 96 CloseHandle(ov.hEvent); in win_chr_pipe_init() [all …]
|
/openbmc/qemu/block/ |
H A D | win32-aio.c | 52 OVERLAPPED ov; member 68 if (waiocb->ov.Internal != 0) { in win32_aio_process_completion() 100 OVERLAPPED *ov; in win32_aio_completion_cb() local 103 while (GetQueuedCompletionStatus(s->hIOCP, &count, &key, &ov, 0)) { in win32_aio_completion_cb() 104 QEMUWin32AIOCB *waiocb = container_of(ov, QEMUWin32AIOCB, ov); in win32_aio_completion_cb() 141 memset(&waiocb->ov, 0, sizeof(waiocb->ov)); in win32_aio_submit() 142 waiocb->ov.Offset = (DWORD)offset; in win32_aio_submit() 143 waiocb->ov.OffsetHigh = (DWORD)(offset >> 32); in win32_aio_submit() 144 waiocb->ov.hEvent = event_notifier_get_handle(&aio->e); in win32_aio_submit() 149 rc = ReadFile(hfile, waiocb->buf, waiocb->nbytes, NULL, &waiocb->ov); in win32_aio_submit() [all …]
|
H A D | file-win32.c | 78 OVERLAPPED ov; in handle_aiocb_rw() local 81 memset(&ov, 0, sizeof(ov)); in handle_aiocb_rw() 82 ov.Offset = (aiocb->aio_offset + offset); in handle_aiocb_rw() 83 ov.OffsetHigh = (aiocb->aio_offset + offset) >> 32; in handle_aiocb_rw() 87 len, &ret_count, &ov); in handle_aiocb_rw() 90 len, &ret_count, &ov); in handle_aiocb_rw()
|
/openbmc/qemu/tests/unit/ |
H A D | test-string-output-visitor.c | 20 Visitor *ov; member 29 data->ov = string_output_visitor_new(human, &data->str); in visitor_output_setup_internal() 30 g_assert(data->ov); in visitor_output_setup_internal() 48 visit_free(data->ov); in visitor_output_teardown() 49 data->ov = NULL; in visitor_output_teardown() 56 visit_complete(data->ov, &data->str); in visitor_get() 75 visit_type_int(data->ov, NULL, &value, &error_abort); in test_visitor_out_int() 99 visit_type_intList(data->ov, NULL, &list, &err); in test_visitor_out_intList() 121 visit_type_bool(data->ov, NULL, &value, &error_abort); in test_visitor_out_bool() 133 visit_type_number(data->ov, NULL, &value, &error_abort); in test_visitor_out_number() [all …]
|
H A D | test-qobject-output-visitor.c | 26 Visitor *ov; member 33 data->ov = qobject_output_visitor_new(&data->obj); in visitor_output_setup() 34 g_assert(data->ov); in visitor_output_setup() 40 visit_free(data->ov); in visitor_output_teardown() 41 data->ov = NULL; in visitor_output_teardown() 48 visit_complete(data->ov, &data->obj); in visitor_get() 66 visit_type_int(data->ov, NULL, &value, &error_abort); in test_visitor_out_int() 80 visit_type_bool(data->ov, NULL, &value, &error_abort); in test_visitor_out_bool() 93 visit_type_number(data->ov, NULL, &value, &error_abort); in test_visitor_out_number() 106 visit_type_str(data->ov, NULL, &string, &error_abort); in test_visitor_out_string() [all …]
|
/openbmc/linux/arch/csky/include/asm/ |
H A D | futex.h | 21 "1: ldex.w %[ov], %[u] \n" \ 33 : [r] "+r" (ret), [ov] "=&r" (oldval), \ 51 __futex_atomic_op("mov %[t], %[ov]", in arch_futex_atomic_op_inuser() 55 __futex_atomic_op("add %[t], %[ov], %[op]", in arch_futex_atomic_op_inuser() 59 __futex_atomic_op("or %[t], %[ov], %[op]", in arch_futex_atomic_op_inuser() 63 __futex_atomic_op("and %[t], %[ov], %[op]", in arch_futex_atomic_op_inuser() 67 __futex_atomic_op("xor %[t], %[ov], %[op]", in arch_futex_atomic_op_inuser() 96 " cmpne %[v], %[ov] \n" in futex_atomic_cmpxchg_inatomic() 111 : [ov] "Jr" (oldval), [nv] "Jr" (newval), [e] "Jr" (-EFAULT) in futex_atomic_cmpxchg_inatomic()
|
/openbmc/linux/arch/riscv/include/asm/ |
H A D | futex.h | 29 : [r] "+r" (ret), [ov] "=&r" (oldval), \ 46 __futex_atomic_op("amoswap.w.aqrl %[ov],%z[op],%[u]", in arch_futex_atomic_op_inuser() 50 __futex_atomic_op("amoadd.w.aqrl %[ov],%z[op],%[u]", in arch_futex_atomic_op_inuser() 54 __futex_atomic_op("amoor.w.aqrl %[ov],%z[op],%[u]", in arch_futex_atomic_op_inuser() 58 __futex_atomic_op("amoand.w.aqrl %[ov],%z[op],%[u]", in arch_futex_atomic_op_inuser() 62 __futex_atomic_op("amoxor.w.aqrl %[ov],%z[op],%[u]", in arch_futex_atomic_op_inuser() 89 " bne %[v],%z[ov],3f \n" in futex_atomic_cmpxchg_inatomic() 96 : [ov] "Jr" (oldval), [nv] "Jr" (newval) in futex_atomic_cmpxchg_inatomic()
|
/openbmc/qemu/include/hw/ppc/ |
H A D | spapr_ovec.h | 67 void spapr_ovec_intersect(SpaprOptionVector *ov, 71 void spapr_ovec_cleanup(SpaprOptionVector *ov); 72 void spapr_ovec_set(SpaprOptionVector *ov, long bitnr); 73 void spapr_ovec_clear(SpaprOptionVector *ov, long bitnr); 74 bool spapr_ovec_test(SpaprOptionVector *ov, long bitnr); 75 bool spapr_ovec_empty(SpaprOptionVector *ov); 78 SpaprOptionVector *ov, const char *name);
|
/openbmc/qemu/qga/ |
H A D | channel-win32.c | 13 OVERLAPPED ov; member 66 count_to_read, &count_read, &rs->ov); in ga_channel_prepare() 115 success = GetOverlappedResult(c->handle, &rs->ov, &count_read, FALSE); in ga_channel_check() 195 watch->pollfd.fd = (gintptr) c->rstate.ov.hEvent; in ga_channel_create_watch() 228 OVERLAPPED ov = {0}; in ga_channel_write() local 232 ov.hEvent = CreateEvent(NULL, FALSE, FALSE, NULL); in ga_channel_write() 233 ret = WriteFile(c->handle, buf, size, &written, &ov); in ga_channel_write() 237 ret = GetOverlappedResult(c->handle, &ov, &written, TRUE); in ga_channel_write() 258 if (ov.hEvent) { in ga_channel_write() 259 CloseHandle(ov.hEvent); in ga_channel_write() [all …]
|
/openbmc/linux/arch/x86/boot/ |
H A D | video-mode.c | 120 u8 pt, ov; in vga_recalc_vertical() local 137 ov = in_idx(crtc, 0x07); /* Overflow register */ in vga_recalc_vertical() 138 ov &= 0xbd; in vga_recalc_vertical() 139 ov |= (rows >> (8-1)) & 0x02; in vga_recalc_vertical() 140 ov |= (rows >> (9-6)) & 0x40; in vga_recalc_vertical() 141 out_idx(ov, crtc, 0x07); in vga_recalc_vertical()
|
/openbmc/linux/Documentation/devicetree/bindings/mfd/ |
H A D | dlg,da9063.yaml | 15 Using regulator-{uv,ov}-{warn,error,protection}-microvolt requires special 18 UV *and* OV monitoring, both must be set to the same severity and value 133 regulator-ov-protection-microvolt = <0>; 140 regulator-ov-protection-microvolt = <1>;
|
/openbmc/linux/drivers/gpu/drm/armada/ |
H A D | armada_drm.h | 23 uint32_t ov, v; in armada_updatel() local 25 ov = v = readl_relaxed(ptr); in armada_updatel() 27 if (ov != v) in armada_updatel()
|
/openbmc/linux/drivers/net/ethernet/marvell/ |
H A D | skge.h | 2296 XMR_MAX_SZ_OV = 1<<31, /* Bit 31: 1024-MaxSize Rx Cnt Ov*/ 2297 XMR_1023B_OV = 1<<30, /* Bit 30: 512-1023Byte Rx Cnt Ov*/ 2298 XMR_511B_OV = 1<<29, /* Bit 29: 256-511 Byte Rx Cnt Ov*/ 2299 XMR_255B_OV = 1<<28, /* Bit 28: 128-255 Byte Rx Cnt Ov*/ 2300 XMR_127B_OV = 1<<27, /* Bit 27: 65-127 Byte Rx Cnt Ov */ 2301 XMR_64B_OV = 1<<26, /* Bit 26: 64 Byte Rx Cnt Ov */ 2304 XMR_CEX_ERR_OV = 1<<23, /* Bit 23: CEXT Err Cnt Ov */ 2305 XMR_FCS_ERR_OV = 1<<21, /* Bit 21: Rx FCS Error Cnt Ov */ 2306 XMR_LNG_ERR_OV = 1<<20, /* Bit 20: Rx too Long Err Cnt Ov*/ 2307 XMR_RUNT_OV = 1<<19, /* Bit 19: Runt Event Cnt Ov */ [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/power/supply/ |
H A D | qcom,pmi8998-charger.yaml | 27 - const: bat-ov 73 interrupt-names = "usb-plugin", "bat-ov", "wdog-bark", "usbin-icl-change";
|
/openbmc/linux/tools/power/cpupower/utils/idle_monitor/ |
H A D | cpupower-monitor.h | 71 #define print_overflow_err(mes, ov) \ argument 75 "could be inaccurate\n"), mes, ov); \
|
/openbmc/qemu/target/ppc/ |
H A D | cpu.c | 34 (env->ov << XER_OV) | (env->ca << XER_CA) | in cpu_read_xer() 38 return env->xer | (env->so << XER_SO) | (env->ov << XER_OV) | in cpu_read_xer() 45 env->ov = (xer >> XER_OV) & 1; in cpu_write_xer()
|
/openbmc/linux/Documentation/devicetree/bindings/leds/backlight/ |
H A D | lp855x-backlight.yaml | 96 /* 4V OV, 4 output LED0 string enabled */ 143 /* 4V OV, 4 output LED string enabled */
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | mem_helper.c | 1831 uint32_t ov; in do_csst() local 1834 ov = cpu_atomic_cmpxchgl_be_mmu(env, a1, cv, nv, oi4, ra); in do_csst() 1836 ov = cpu_ldl_mmu(env, a1, oi4, ra); in do_csst() 1837 cpu_stl_mmu(env, a1, (ov == cv ? nv : ov), oi4, ra); in do_csst() 1839 cc = (ov != cv); in do_csst() 1840 env->regs[r3] = deposit64(env->regs[r3], 32, 32, ov); in do_csst() 1848 uint64_t ov; in do_csst() local 1852 ov = cpu_atomic_cmpxchgq_be_mmu(env, a1, cv, nv, oi8, ra); in do_csst() 1858 ov = cpu_ldq_mmu(env, a1, oi8, ra); in do_csst() 1859 cpu_stq_mmu(env, a1, (ov == cv ? nv : ov), oi8, ra); in do_csst() [all …]
|
/openbmc/qemu/docs/specs/ |
H A D | spdm.rst | 128 https://github.com/westerndigitalcorporation/spdm-utils?tab=readme-ov-file#build-libspdm 131 https://github.com/westerndigitalcorporation/spdm-utils?tab=readme-ov-file#build-the-binary
|
/openbmc/linux/Documentation/devicetree/bindings/regulator/ |
H A D | regulator.yaml | 140 regulator-ov-protection-microvolt: 147 regulator-ov-error-microvolt: 154 regulator-ov-warn-microvolt:
|
/openbmc/linux/drivers/power/supply/ |
H A D | wm8350_power.c | 52 u16 sm, ov, co, chrg; in wm8350_get_supplies() local 56 ov = wm8350_reg_read(wm8350, WM8350_MISC_OVERRIDES); in wm8350_get_supplies() 71 && !(ov & WM8350_USB_LIMIT_OVRDE)) in wm8350_get_supplies() 76 && (ov & WM8350_USB_LIMIT_OVRDE) && (chrg == 0)) in wm8350_get_supplies()
|
/openbmc/linux/arch/m68k/bvme6000/ |
H A D | config.c | 238 u32 v = 800000, ov; in bvme6000_read_clk() local 246 ov = v; in bvme6000_read_clk() 254 abs(ov-v) > 80 || in bvme6000_read_clk()
|
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libtext/ |
H A D | libtext-diff-perl_1.41.bb | 14 SRC_URI = "${CPAN_MIRROR}/authors/id/O/OV/OVID/Text-Diff-${PV}.tar.gz \
|