Home
last modified time | relevance | path

Searched refs:frame_size (Results 1 – 25 of 25) sorted by relevance

/openbmc/u-boot/arch/arm/mach-tegra/
H A Divc.c94 (ivc->frame_size * frame); in tegra_ivc_frame_addr()
109 invalidate_dcache_range(base, base + ivc->frame_size); in tegra_ivc_invalidate_frame()
117 flush_dcache_range(base, base + ivc->frame_size); in tegra_ivc_flush_frame()
483 uint32_t frame_size) in check_ivc_params() argument
494 if ((uint64_t)nframes * (uint64_t)frame_size >= 0x100000000) { in check_ivc_params()
509 if (frame_size & (TEGRA_IVC_ALIGN - 1)) { in check_ivc_params()
515 if (qbase1 + frame_size * nframes > qbase2) in check_ivc_params()
518 if (qbase2 + frame_size * nframes > qbase1) in check_ivc_params()
531 uint32_t nframes, uint32_t frame_size, in tegra_ivc_init() argument
539 ret = check_ivc_params(rx_base, tx_base, nframes, frame_size); in tegra_ivc_init()
[all …]
/openbmc/u-boot/arch/arm/include/asm/arch-tegra/
H A Divc.h75 uint32_t frame_size; member
175 uint32_t nframes, uint32_t frame_size,
/openbmc/qemu/hw/net/
H A Dftgmac100.c500 static int ftgmac100_insert_vlan(FTGMAC100State *s, int frame_size, in ftgmac100_insert_vlan() argument
506 if (frame_size < sizeof(struct eth_header)) { in ftgmac100_insert_vlan()
509 __func__, frame_size); in ftgmac100_insert_vlan()
514 if (frame_size + sizeof(struct vlan_header) > sizeof(s->frame)) { in ftgmac100_insert_vlan()
517 __func__, frame_size); in ftgmac100_insert_vlan()
519 frame_size -= sizeof(struct vlan_header); in ftgmac100_insert_vlan()
522 memmove(payload, vlan_hdr, frame_size - (ETH_ALEN * 2)); in ftgmac100_insert_vlan()
525 frame_size += sizeof(struct vlan_header); in ftgmac100_insert_vlan()
528 return frame_size; in ftgmac100_insert_vlan()
534 int frame_size = 0; in ftgmac100_do_tx() local
[all …]
H A Dxgmac.c208 int frame_size; in xgmac_enet_send() local
214 frame_size = 0; in xgmac_enet_send()
242 if (frame_size + len >= sizeof(frame)) { in xgmac_enet_send()
244 "buffer\n" , __func__, frame_size + len, sizeof(frame)); in xgmac_enet_send()
252 frame_size += len; in xgmac_enet_send()
257 frame_size = 0; in xgmac_enet_send()
H A Dmcf_fec.c240 int frame_size; in mcf_fec_do_tx() local
247 frame_size = 0; in mcf_fec_do_tx()
258 if (frame_size + len > FEC_MAX_FRAME_SIZE) { in mcf_fec_do_tx()
259 len = FEC_MAX_FRAME_SIZE - frame_size; in mcf_fec_do_tx()
264 frame_size += len; in mcf_fec_do_tx()
268 qemu_send_packet(qemu_get_queue(s->nic), frame, frame_size); in mcf_fec_do_tx()
269 mcf_fec_tx_stats(s, frame_size); in mcf_fec_do_tx()
271 frame_size = 0; in mcf_fec_do_tx()
H A Dimx_fec.c355 int frame_size = 0, descnt = 0; in imx_fec_do_tx() local
372 if (frame_size + len > ENET_MAX_FRAME_SIZE) { in imx_fec_do_tx()
373 len = ENET_MAX_FRAME_SIZE - frame_size; in imx_fec_do_tx()
379 frame_size += len; in imx_fec_do_tx()
382 qemu_send_packet(qemu_get_queue(s->nic), s->frame, frame_size); in imx_fec_do_tx()
384 frame_size = 0; in imx_fec_do_tx()
406 int frame_size = 0, descnt = 0; in imx_enet_do_tx() local
454 if (frame_size + len > ENET_MAX_FRAME_SIZE) { in imx_enet_do_tx()
455 len = ENET_MAX_FRAME_SIZE - frame_size; in imx_enet_do_tx()
461 frame_size += len; in imx_enet_do_tx()
[all …]
/openbmc/qemu/audio/
H A Dpwaudio.c51 uint32_t frame_size, req; member
106 req = b->requested * v->frame_size; in playback_on_process()
117 audio_pcm_info_clear_buf(&vo->hw.info, p, n_bytes / v->frame_size); in playback_on_process()
137 buf->datas[0].chunk->stride = v->frame_size; in playback_on_process()
537 pw_to_audfmt(v->info.format, &obt_as.endianness, &v->frame_size); in qpw_init_out()
538 v->frame_size *= as->nchannels; in qpw_init_out()
541 * 1 / 2 / 1000000 * v->frame_size; in qpw_init_out()
559 * (uint64_t)v->info.rate / 1000000 * v->frame_size); in qpw_init_out()
584 pw_to_audfmt(v->info.format, &obt_as.endianness, &v->frame_size); in qpw_init_in()
585 v->frame_size *= as->nchannels; in qpw_init_in()
/openbmc/qemu/linux-user/openrisc/
H A Dsignal.c75 size_t frame_size) in get_sigframe() argument
85 sp -= frame_size; in get_sigframe()
/openbmc/qemu/hw/char/
H A Dserial.c151 int parity, data_bits, stop_bits, frame_size; in serial_update_parameters() local
155 frame_size = 1; in serial_update_parameters()
158 frame_size++; in serial_update_parameters()
173 frame_size += data_bits + stop_bits; in serial_update_parameters()
180 s->char_transmit_time = (NANOSECONDS_PER_SECOND / speed) * frame_size; in serial_update_parameters()
/openbmc/qemu/tests/qtest/
H A Dxlnx-canfd-test.c184 uint32_t frame_size) in read_data() argument
210 for (int i = 0; i < frame_size - 2; i++) { in read_data()
/openbmc/qemu/linux-user/microblaze/
H A Dsignal.c126 CPUMBState *env, int frame_size) in get_sigframe() argument
132 return ((sp - frame_size) & -8UL); in get_sigframe()
/openbmc/qemu/linux-user/mips/
H A Dsignal.c174 get_sigframe(struct target_sigaction *ka, CPUMIPSState *regs, size_t frame_size) in get_sigframe() argument
185 return (sp - frame_size) & ~7; in get_sigframe()
/openbmc/qemu/linux-user/sh4/
H A Dsignal.c77 unsigned long sp, size_t frame_size) in get_sigframe() argument
81 return (sp - frame_size) & -8ul; in get_sigframe()
/openbmc/qemu/linux-user/s390x/
H A Dsignal.c96 get_sigframe(struct target_sigaction *ka, CPUS390XState *env, size_t frame_size) in get_sigframe() argument
115 return (sp - frame_size) & -8ul; in get_sigframe()
/openbmc/qemu/linux-user/m68k/
H A Dsignal.c116 size_t frame_size) in get_sigframe() argument
123 return ((sp - frame_size) & -8UL); in get_sigframe()
/openbmc/qemu/hw/arm/
H A Dstrongarm.c1008 int speed, parity, data_bits, stop_bits, frame_size; in strongarm_uart_update_parameters() local
1012 frame_size = 1; in strongarm_uart_update_parameters()
1015 frame_size++; in strongarm_uart_update_parameters()
1031 frame_size += data_bits + stop_bits; in strongarm_uart_update_parameters()
1037 s->char_transmit_time = (NANOSECONDS_PER_SECOND / speed) * frame_size; in strongarm_uart_update_parameters()
/openbmc/qemu/linux-user/ppc/
H A Dsignal.c225 int frame_size) in get_sigframe() argument
231 return (oldsp - frame_size) & ~0xFUL; in get_sigframe()
/openbmc/qemu/linux-user/i386/
H A Dsignal.c244 unsigned frame_size, FPStateKind fpkind, in get_sigframe() argument
281 sp -= frame_size; in get_sigframe()
/openbmc/qemu/bsd-user/
H A Dsignal.c729 CPUArchState *env, size_t frame_size) in get_sigframe() argument
741 return ROUND_DOWN(sp - frame_size, TARGET_SIGSTACK_ALIGN); in get_sigframe()
/openbmc/qemu/tcg/sparc64/
H A Dtcg-target.c.inc971 int tmp_buf_size, frame_size;
985 frame_size = TCG_TARGET_CALL_STACK_OFFSET - TCG_TARGET_STACK_BIAS;
986 frame_size += TCG_STATIC_CALL_ARGS_SIZE + tmp_buf_size;
987 frame_size += TCG_TARGET_STACK_ALIGN - 1;
988 frame_size &= -TCG_TARGET_STACK_ALIGN;
990 INSN_IMM13(-frame_size));
/openbmc/qemu/net/
H A Daf-xdp.c300 .frame_size = XSK_UMEM__DEFAULT_FRAME_SIZE, in af_xdp_umem_create()
/openbmc/qemu/hw/scsi/
H A Dmegasas.c491 int frame_size = MEGASAS_MAX_SGE * sizeof(union mfi_sgl); in megasas_enqueue_frame() local
492 hwaddr frame_size_p = frame_size; in megasas_enqueue_frame()
515 if (!cmd->frame || frame_size_p != frame_size) { in megasas_enqueue_frame()
/openbmc/u-boot/include/
H A Dec_commands.h4484 uint32_t frame_size; member
/openbmc/qemu/tcg/s390x/
H A Dtcg-target.c.inc3793 /* aghi %r15,-frame_size */
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch6369 + // frame_size / 2