Home
last modified time | relevance | path

Searched refs:fcc (Results 1 – 9 of 9) sorted by relevance

/openbmc/qemu/linux-user/loongarch64/
H A Dsignal.c37 abi_ulong fcc; member
48 abi_ulong fcc; member
56 abi_ulong fcc; member
184 __put_user(read_fcc(env), &lasx_ctx->fcc); in setup_sigframe()
199 __put_user(read_fcc(env), &lsx_ctx->fcc); in setup_sigframe()
213 __put_user(read_fcc(env), &fpu_ctx->fcc); in setup_sigframe()
283 abi_ulong fcc; in restore_sigframe() local
300 __get_user(fcc, &lasx_ctx->fcc); in restore_sigframe()
301 write_fcc(env, fcc); in restore_sigframe()
312 __get_user(fcc, &lsx_ctx->fcc); in restore_sigframe()
[all …]
/openbmc/qemu/target/sparc/
H A Dfop_helper.c547 fsr |= env->fcc[0] << FSR_FCC0_SHIFT; in cpu_get_fsr()
549 fsr |= (uint64_t)env->fcc[1] << FSR_FCC1_SHIFT; in cpu_get_fsr()
550 fsr |= (uint64_t)env->fcc[2] << FSR_FCC2_SHIFT; in cpu_get_fsr()
551 fsr |= (uint64_t)env->fcc[3] << FSR_FCC3_SHIFT; in cpu_get_fsr()
595 env->fcc[0] = extract32(fsr, FSR_FCC0_SHIFT, 2); in cpu_put_fsr()
597 env->fcc[1] = extract64(fsr, FSR_FCC1_SHIFT, 2); in cpu_put_fsr()
598 env->fcc[2] = extract64(fsr, FSR_FCC2_SHIFT, 2); in cpu_put_fsr()
599 env->fcc[3] = extract64(fsr, FSR_FCC3_SHIFT, 2); in cpu_put_fsr()
H A Dcpu.h441 uint32_t fcc[TARGET_FCCREGS]; /* fcc* */
442 uint32_t fcc[TARGET_FCCREGS]; /* fcc* */ global() member
H A Dtranslate.c1214 TCGv_i32 fcc = cpu_fcc[cc]; in gen_fcompare() local
1215 TCGv_i32 c1 = fcc; in gen_fcompare()
1234 /* fcc in {1,2} - 1 -> fcc in {0,1} */ in gen_fcompare()
1236 tcg_gen_addi_i32(c1, fcc, -1); in gen_fcompare()
1242 tcg_gen_andi_i32(c1, fcc, 1); in gen_fcompare()
5871 { &cpu_fcc[0], offsetof(CPUSPARCState, fcc[0]), "fcc0" }, in sparc_tcg_init()
5872 { &cpu_fcc[1], offsetof(CPUSPARCState, fcc[1]), "fcc1" }, in sparc_tcg_init()
5873 { &cpu_fcc[2], offsetof(CPUSPARCState, fcc[2]), "fcc2" }, in sparc_tcg_init()
5874 { &cpu_fcc[3], offsetof(CPUSPARCState, fcc[ in sparc_tcg_init()
[all...]
/openbmc/qemu/target/loongarch/
H A Darch_dump.c57 uint64_t fcc; member
100 note.fpu.fcc = cpu_to_dump64(s, read_fcc(env)); in loongarch_write_elf64_fprpreg()
/openbmc/qemu/linux-headers/asm-loongarch/
H A Dkvm.h38 __u64 fcc; /* 8x8 */ member
/openbmc/qemu/target/loongarch/kvm/
H A Dkvm.c523 env->cf[i] = fpu.fcc & 0xFF; in kvm_loongarch_get_regs_fp()
524 fpu.fcc = fpu.fcc >> 8; in kvm_loongarch_get_regs_fp()
537 fpu.fcc = 0; in kvm_loongarch_put_regs_fp()
546 fpu.fcc |= env->cf[i] << (8 * i); in kvm_loongarch_put_regs_fp()
/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/
H A D0004-mmal_20.patch663 +static bool is_enc_supported(supported_mmal_enc_t * const support, const MMAL_FOURCC_T fcc)
667 + if (fcc == 0)
672 + if (support->supported.encodings[i] == fcc)
681 …st_enc_supported(supported_mmal_enc_t * const support, MMAL_PORT_T * port, const MMAL_FOURCC_T fcc)
698 + return is_enc_supported(support, fcc);
708 +static MMAL_FOURCC_T vlc_to_mmal_es_fourcc(const unsigned int fcc)
710 + switch (fcc){
750 +static MMAL_FOURCC_T pic_to_slice_mmal_fourcc(const MMAL_FOURCC_T fcc)
752 + switch (fcc){
5814 +static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
[all …]
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch6258 +check_size(AVCodecContext * const avctx, V4L2m2mContext * const s, const uint32_t fcc)
6264 + if (w == 0 || h == 0 || fcc == 0) {
6265 … av_log(avctx, AV_LOG_TRACE, "%s: Size %dx%d or fcc %s empty\n", __func__, w, h, av_fourcc2str(
6269 …vctx, AV_LOG_TRACE, "%s: Skipped (quirk): Size %dx%d, fcc %s\n", __func__, w, h, av_fourcc2str(fcc
6276 + .pixel_format = fcc,
6292 + w, h, av_fourcc2str(fcc), i);
12043 +static inline const char * strfourcc(char tbuf[5], uint32_t fcc) {
12044 + tbuf[0] = safechar((fcc >> 0) & 0xff);
12045 + tbuf[1] = safechar((fcc >> 8) & 0xff);
12046 + tbuf[2] = safechar((fcc >> 16) & 0xff);
[all …]