Home
last modified time | relevance | path

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

12

/openbmc/qemu/target/mips/tcg/
H A Dlmmi_helper.c56 uint64_t helper_paddsb(uint64_t fs, uint64_t ft) in helper_paddsb() argument
62 vt.d = ft; in helper_paddsb()
70 uint64_t helper_paddusb(uint64_t fs, uint64_t ft) in helper_paddusb() argument
76 vt.d = ft; in helper_paddusb()
84 uint64_t helper_paddsh(uint64_t fs, uint64_t ft) in helper_paddsh() argument
90 vt.d = ft; in helper_paddsh()
98 uint64_t helper_paddush(uint64_t fs, uint64_t ft) in helper_paddush() argument
104 vt.d = ft; in helper_paddush()
112 uint64_t helper_paddb(uint64_t fs, uint64_t ft) in helper_paddb() argument
118 vt.d = ft; in helper_paddb()
[all …]
H A Dfpu_helper.c1466 uint32_t helper_float_max_s(CPUMIPSState *env, uint32_t fs, uint32_t ft) in helper_float_max_s() argument
1470 fdret = float32_maxnum(fs, ft, &env->active_fpu.fp_status); in helper_float_max_s()
1476 uint64_t helper_float_max_d(CPUMIPSState *env, uint64_t fs, uint64_t ft) in helper_float_max_d() argument
1480 fdret = float64_maxnum(fs, ft, &env->active_fpu.fp_status); in helper_float_max_d()
1486 uint32_t helper_float_maxa_s(CPUMIPSState *env, uint32_t fs, uint32_t ft) in helper_float_maxa_s() argument
1490 fdret = float32_maxnummag(fs, ft, &env->active_fpu.fp_status); in helper_float_maxa_s()
1496 uint64_t helper_float_maxa_d(CPUMIPSState *env, uint64_t fs, uint64_t ft) in helper_float_maxa_d() argument
1500 fdret = float64_maxnummag(fs, ft, &env->active_fpu.fp_status); in helper_float_maxa_d()
1506 uint32_t helper_float_min_s(CPUMIPSState *env, uint32_t fs, uint32_t ft) in helper_float_min_s() argument
1510 fdret = float32_minnum(fs, ft, &env->active_fpu.fp_status); in helper_float_min_s()
[all …]
H A Dtranslate.c1748 int ft, int fs, int cc) \
1760 check_cp1_registers(ctx, fs | ft); \
1769 gen_ldcmp_fpr##bits(ctx, fp1, ft); \
1834 int ft, int fs, int fd) \
1839 check_cp1_registers(ctx, fs | ft | fd); \
1842 gen_ldcmp_fpr ## bits(ctx, fp1, ft); \
2267 static void gen_flt_ldst(DisasContext *ctx, uint32_t opc, int ft, in gen_flt_ldst() argument
2280 gen_store_fpr32(ctx, fp0, ft); in gen_flt_ldst()
2286 gen_load_fpr32(ctx, fp0, ft); in gen_flt_ldst()
2296 gen_store_fpr64(ctx, fp0, ft); in gen_flt_ldst()
[all …]
H A Dnanomips_translate.c.inc2553 int32_t ft, int32_t offset)
2558 gen_load_fpr64(ctx, t0, ft);
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/sox/sox/
H A DCVE-2022-31650.patch20 @@ -619,6 +619,11 @@ int lsx_aiffstartwrite(sox_format_t * ft)
24 + if (ft->signal.channels >= (0x7f000000 / (ft->encoding.bits_per_sample >> 3)))
26 + lsx_fail_errno(ft, SOX_EOF, "too many channels for AIFF header");
29 …return(aiffwriteheader(ft, (uint64_t) 0x7f000000 / ((ft->encoding.bits_per_sample>>3)*ft->signal.c…
44 @@ -60,9 +61,14 @@ int lsx_check_read_params(sox_format_t * ft, unsigned channels,
45 if (ft->seekable)
46 ft->data_start = lsx_tell(ft);
48 - if (channels && ft->signal.channels && ft->signal.channels != channels)
49 + if (channels && ft->signal.channels && ft->signal.channels != channels) {
50 lsx_warn("`%s': overriding number of channels", ft->filename);
[all …]
H A DCVE-2022-31651.patch19 @@ -70,9 +70,15 @@ int lsx_check_read_params(sox_format_t * ft, unsigned channels,
20 ft->signal.channels = channels;
23 - if (rate && ft->signal.rate && ft->signal.rate != rate)
24 + if (rate && ft->signal.rate && ft->signal.rate != rate) {
25 lsx_warn("`%s': overriding sample rate", ft->filename);
26 - else ft->signal.rate = rate;
29 + lsx_fail_errno(ft, EINVAL, "invalid rate value");
32 + ft->signal.rate = rate;
35 if (encoding && ft->encoding.encoding && ft->encoding.encoding != encoding)
36 lsx_warn("`%s': overriding encoding type", ft->filename);
H A DCVE-2021-3643_CVE-2021-23210.patch20 @@ -625,6 +625,10 @@ static int getblock(sox_format_t * ft)
22 ft->signal.rate = new_rate_32;
23 lsx_readb(ft, &uc);
25 + lsx_fail_errno(ft, SOX_EFMT, "2 bits per word required");
29 lsx_readb(ft, &uc);
H A DCVE-2021-33844.patch29 @@ -963,6 +963,11 @@ static int startread(sox_format_t *ft)
33 + if (ft->encoding.bits_per_sample == 0)
35 + lsx_fail_errno(ft, SOX_EHDR, "WAV file bits per sample is zero");
39 wav->numSamples = div_bits(qwDataLength, ft->encoding.bits_per_sample)
40 / ft->signal.channels;
H A DCVE-2021-23159_CVE-2021-2317.patch21 @@ -141,6 +141,11 @@ static int startread(sox_format_t * ft)
24 lsx_readw(ft, &dictsize);
27 + lsx_fail_errno(ft, SOX_EHDR, "Implausible dictionary size in HCOM header");
32 ft->encoding.encoding = SOX_ENCODING_HCOM;
H A DCVE-2023-32627.patch19 @@ -353,6 +353,11 @@ static size_t read_samples(sox_format_t * ft, sox_sample_t * buf,
24 + lsx_fail_errno(ft, EINVAL, "invalid rate value");
29 lsx_adpcm_init(&v->adpcm, 6 - v->size, SOX_SAMPLE_TO_SIGNED_16BIT(*buf, ft->clips));
H A DCVE-2021-40426.patch19 @@ -63,7 +63,8 @@ static int start_read(sox_format_t * ft)
29 @@ -105,7 +106,8 @@ static int start_read(sox_format_t * ft)
/openbmc/openbmc/poky/meta/recipes-graphics/cairo/cairo/
H A Dcairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff14 src/cairo-ft-font.c | 2 +-
17 diff --git a/src/cairo-ft-font.c b/src/cairo-ft-font.c
19 --- a/src/cairo-ft-font.c
20 +++ b/src/cairo-ft-font.c
/openbmc/qemu/disas/
H A Dnanomips.c1592 const char *ft = FPR(ft_value, info); in ADD_D() local
1596 return img_format("ADD.D %s, %s, %s", fd, fs, ft); in ADD_D()
1617 const char *ft = FPR(ft_value, info); in ADD_S() local
1621 return img_format("ADD.S %s, %s, %s", fd, fs, ft); in ADD_S()
2613 const char *ft = FPR(ft_value, info); in BC1EQZC() local
2616 return img_format("BC1EQZC %s, %s", ft, s); in BC1EQZC()
2635 const char *ft = FPR(ft_value, info); in BC1NEZC() local
2638 return img_format("BC1NEZC %s, %s", ft, s); in BC1NEZC()
3197 const char *ft = FPR(ft_value, info); in CEIL_L_D() local
3200 return img_format("CEIL.L.D %s, %s", ft, fs); in CEIL_L_D()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/sblim-sfcc/sblim-sfcc/
H A D0001-Fix-incompatible-pointer-type-error-with-gcc-option.patch49 count = enm->ft->hasNext(enm, NULL) ;
51 data = enm->ft->getNext(enm, NULL);
63 data = enm->ft->getNext(enm, NULL);
/openbmc/qemu/target/alpha/
H A Dvax_helper.c151 float32 ft, fr; in helper_sqrtf() local
153 ft = f_to_float32(env, GETPC(), t); in helper_sqrtf()
154 fr = float32_sqrt(ft, &FP_STATUS); in helper_sqrtf()
/openbmc/openbmc-test-automation/lib/
H A Dgen_robot_ssh.py21 import func_timer as ft namespace
24 func_timer = ft.func_timer_class()
/openbmc/phosphor-logging/config/
H A Dconfig.h.meson44 // vim: ft=cpp
/openbmc/libpldm/src/dsp/
H A Dfru.c231 uint16_t rsi, uint8_t rt, uint8_t ft) in get_fru_record_by_option() argument
274 if (tlv->type == ft || ft == 0) { in get_fru_record_by_option()
/openbmc/openbmc/poky/meta/recipes-graphics/piglit/piglit/
H A D0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch40 # vim: ft=cmake:
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/geany/geany-plugins/
H A D0003-projectorganizer-Use-g_pattern_spec_match_string-ins.patch23 GPatternSpec *pattern = g_pattern_spec_new(ft->pattern[j]);
/openbmc/libpldm/include/libpldm/
H A Dfru.h470 uint16_t rsi, uint8_t rt, uint8_t ft);
/openbmc/openbmc/poky/meta/lib/oe/
H A Dpackage.py204 ft = file
206 ft = ft.replace(s, replace)
208 return ft
211 ft = file
213 ft = ft.replace(replace, s)
215 return ft
/openbmc/qemu/tcg/
H A Doptimize.c2116 TempOptInfo *tt, *ft; in fold_movcond() local
2139 ft = arg_info(op->args[4]); in fold_movcond()
2140 z_mask = tt->z_mask | ft->z_mask; in fold_movcond()
2141 o_mask = tt->o_mask & ft->o_mask; in fold_movcond()
2142 s_mask = tt->s_mask & ft->s_mask; in fold_movcond()
2144 if (ti_is_const(tt) && ti_is_const(ft)) { in fold_movcond()
2146 uint64_t fv = ti_const_val(ft); in fold_movcond()
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery.dataTables-1.13.8.min.js4ft),r=l[s].match(g),a){if(l[s]=l[s].replace(ft,""),t[l[s]]=[],(a=l.slice()).splice(0,s+1),i=a.join…
H A Djquery-2.0.3.min.js4 …:!0,image:!0})i.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})i.pseudos[t]=ft(t);function dt(){}dt… function
5ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,mt(a,"script"))),t.call(this[l]…

12