Home
last modified time | relevance | path

Searched refs:srch (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/drivers/media/pci/cx88/
H A Dcx88-dsp.c239 const struct sram_channel *srch = &cx88_sram_channels[SRAM_CH27]; in read_rds_samples() local
243 unsigned int bpl = srch->fifo_size / AUD_RDS_LINES; in read_rds_samples()
247 u32 current_address = cx_read(srch->ptr1_reg); in read_rds_samples()
248 u32 offset = (current_address - srch->fifo_start + bpl); in read_rds_samples()
253 current_address - srch->fifo_start, sample_count, in read_rds_samples()
263 samples[i] = cx_read(srch->fifo_start + offset); in read_rds_samples()
/openbmc/linux/arch/m68k/math-emu/
H A Dmulti_arith.h130 #define fp_div64(quot, rem, srch, srcl, div) \ argument
132 : "dm" (div), "1" (srch), "0" (srcl))
154 #define fp_sub96c(dest, srch, srcm, srcl) ({ \ argument
161 : "d" (srch), "1" (dest.m32[0])); \
/openbmc/qemu/target/riscv/
H A Dop_helper.c98 target_ulong srcl, target_ulong srch) in helper_csrw_i128() argument
101 int128_make128(srcl, srch), in helper_csrw_i128()
110 target_ulong srcl, target_ulong srch, in helper_csrrw_i128() argument
115 int128_make128(srcl, srch), in helper_csrrw_i128()
/openbmc/linux/drivers/gpu/drm/rockchip/
H A Drockchip_drm_vop.h392 static inline int scl_get_vskiplines(uint32_t srch, uint32_t dsth) in scl_get_vskiplines() argument
397 if (srch >= vskiplines * dsth * MIN_SCL_FT_AFTER_VSKIP) in scl_get_vskiplines()
/openbmc/qemu/target/riscv/insn_trans/
H A Dtrans_rvi.c.inc487 TCGv srcl, TCGv srch, target_long imm)
491 tcg_gen_add2_tl(retl, reth, srcl, srch, imml, immh);
944 static bool do_csrw_i128(DisasContext *ctx, int rc, TCGv srcl, TCGv srch)
949 gen_helper_csrw_i128(tcg_env, csr, srcl, srch);
954 TCGv srcl, TCGv srch, TCGv maskl, TCGv maskh)
961 gen_helper_csrrw_i128(destl, tcg_env, csr, srcl, srch, maskl, maskh);
986 TCGv srch = get_gprh(ctx, a->rs1);
993 return do_csrw_i128(ctx, a->csr, srcl, srch);
997 return do_csrrw_i128(ctx, a->rd, a->csr, srcl, srch, mask, mask);