Home
last modified time | relevance | path

Searched refs:zf (Results 1 – 10 of 10) sorted by relevance

/openbmc/qemu/target/i386/tcg/
H A Dcc_helper_template.h.inc49 uint32_t af_cf, pf, zf, sf, of;
53 zf = (dst == 0) * CC_Z;
65 return pf + zf + sf + af_cf + of;
139 uint32_t cf, pf, af, zf, sf, of;
144 zf = (dst == 0) * CC_Z;
147 return cf + pf + af + zf + sf + of;
152 uint32_t cf, pf, af, zf, sf, of;
157 zf = (dst == 0) * CC_Z;
160 return cf + pf + af + zf + sf + of;
165 uint32_t cf, pf, af, zf, sf, of;
[all …]
H A Demit.c.inc1300 TCGv zf = tcg_temp_new();
1309 tcg_gen_setcond_tl(TCG_COND_LTU, zf, s->T0, s->T1);
1310 tcg_gen_deposit_tl(flags, flags, zf, ctz32(CC_Z), 1);
/openbmc/u-boot/lib/bzip2/
H A Dbzlib_private.h113 #define VPrintf0(zf) \ argument
114 fprintf(stderr,zf)
115 #define VPrintf1(zf,za1) \ argument
116 fprintf(stderr,zf,za1)
117 #define VPrintf2(zf,za1,za2) \ argument
118 fprintf(stderr,zf,za1,za2)
119 #define VPrintf3(zf,za1,za2,za3) \ argument
120 fprintf(stderr,zf,za1,za2,za3)
121 #define VPrintf4(zf,za1,za2,za3,za4) \ argument
122 fprintf(stderr,zf,za1,za2,za3,za4)
[all …]
/openbmc/qemu/tests/functional/qemu_test/
H A Darchive.py44 with zipfile.ZipFile(archive, 'r') as zf:
46 zf.extract(member=member, path=dest_dir)
48 zf.extractall(path=dest_dir)
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dgomod.py151 with zipfile.ZipFile(ud.localpath) as zf:
155 shutil.copyfileobj(zf.open(f), mf)
267 with zipfile.ZipFile(os.path.join(unpackdir, name), mode='w') as zf:
273 zf.writestr(prefix + f, data)
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386.c456 for(zf = 0; zf < 2; zf++) {\
463 : "c" (ecx), "b" (!zf)); \
464 printf("%-10s ECX=" FMTLX " ZF=%ld r=%d\n", insn, ecx, zf, res); \
471 long ecx, zf; in test_loop() local
/openbmc/qemu/target/i386/
H A Dops_sse.h1609 uint64_t zf = 0, cf = 0; in glue() local
1613 zf |= (s->Q(i) & d->Q(i)); in glue()
1616 CC_SRC = (zf ? 0 : CC_Z) | (cf ? 0 : CC_C); in glue()
2298 uint32_t zf = 0, cf = 0; in SSE_HELPER_L() local
2302 zf |= (s->L(i) & d->L(i)); in SSE_HELPER_L()
2305 CC_SRC = ((zf >> 31) ? 0 : CC_Z) | ((cf >> 31) ? 0 : CC_C); in SSE_HELPER_L()
2311 uint64_t zf = 0, cf = 0; in glue() local
2315 zf |= (s->Q(i) & d->Q(i)); in glue()
2318 CC_SRC = ((zf >> 63) ? 0 : CC_Z) | ((cf >> 63) ? 0 : CC_C); in glue()
/openbmc/u-boot/doc/imx/common/
H A Dmxs.txt134 $ elftosb -zf imx23 -c arch/arm/cpu/arm926ejs/mxs/u-boot-imx23.bd \
136 $ elftosb -zf imx28 -c arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd \
/openbmc/qemu/target/arm/tcg/
H A Dtranslate-vfp.c339 TCGv_i64 tmp, zero, zf, nf, vf; in trans_VSEL() local
347 zf = tcg_temp_new_i64(); in trans_VSEL()
351 tcg_gen_extu_i32_i64(zf, cpu_ZF); in trans_VSEL()
359 tcg_gen_movcond_i64(TCG_COND_EQ, dest, zf, zero, frn, frm); in trans_VSEL()
370 tcg_gen_movcond_i64(TCG_COND_NE, dest, zf, zero, frn, frm); in trans_VSEL()
/openbmc/openbmc-tools/openbmctool/
H A Dopenbmctool.py2451 zf = zipfile.ZipFile(myDir+os.sep + filename, 'w')
2453 zf.write(myfile, os.path.basename(myfile))
2454 zf.close()