Home
last modified time | relevance | path

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

/openbmc/qemu/target/i386/tcg/
H A Dcc_helper_template.h.inc49 uint32_t cf, pf, af, zf, sf, of;
55 zf = (dst == 0) * CC_Z;
58 return cf + pf + af + zf + sf + of;
69 uint32_t cf, pf, af, zf, sf, of;
84 zf = (dst == 0) << 6;
87 return cf + pf + af + zf + sf + of;
104 uint32_t cf, pf, af, zf, sf, of;
110 zf = (dst == 0) * CC_Z;
113 return cf + pf + af + zf + sf + of;
126 uint32_t cf, pf, af, zf, sf, of;
[all …]
H A Demit.c.inc1296 TCGv zf = tcg_temp_new();
1305 tcg_gen_setcond_tl(TCG_COND_LTU, zf, s->T0, s->T1);
1306 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/
H A Dtest_arm_aspeed_ast1030.py28 with ZipFile(zip_file, 'r') as zf:
29 zf.extract(kernel_name, path=self.workdir)
50 with ZipFile(zip_file, 'r') as zf:
51 zf.extract(kernel_name, path=self.workdir)
H A Dtest_aarch64_raspi3.py27 with ZipFile(zip_path, 'r') as zf:
28 zf.extract(efi_name, path=self.workdir)
H A Dtest_ppc_amiga.py30 with ZipFile(zip_file, 'r') as zf:
31 zf.extractall(path=self.workdir)
H A Dtest_mipsel_malta.py79 with ZipFile(zip_path, 'r') as zf:
80 zf.extract(yamon_bin, path=self.workdir)
/openbmc/linux/arch/x86/include/asm/
H A Dspecial_insns.h271 bool zf; in enqcmds() local
280 : CC_OUT(z) (zf), "+m" (*__dst) in enqcmds()
284 if (zf) in enqcmds()
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dgomod.py142 with zipfile.ZipFile(ud.localpath) as zf:
146 shutil.copyfileobj(zf.open(f), mf)
259 with zipfile.ZipFile(os.path.join(unpackdir, name), mode='w') as zf:
265 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()