HomeSort by relevance Sort by last modified time
    Searched refs:zf (Results 1 - 25 of 34) sorted by null

1 2

  /external/qemu/target-i386/
helper_template.h 57 int cf, pf, af, zf, sf, of; local
64 zf = ((DATA_TYPE)CC_DST == 0) << 6;
67 return cf | pf | af | zf | sf | of;
81 int cf, pf, af, zf, sf, of;
88 zf = ((DATA_TYPE)CC_DST == 0) << 6;
91 return cf | pf | af | zf | sf | of;
105 int cf, pf, af, zf, sf, of;
112 zf = ((DATA_TYPE)CC_DST == 0) << 6;
115 return cf | pf | af | zf | sf | of;
130 int cf, pf, af, zf, sf, of
    [all...]
  /external/valgrind/main/none/tests/x86/
aad_aam.c 21 int cf __attribute__((unused)),pf,af __attribute__((unused)),zf,sf; local
42 zf=!!(flags&0x40);
47 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
48 // flags,cf,pf,af,zf,sf,of);
50 if (zf && ((out&0xff)!=0)) {
51 printf("Error with aam (zf)!\n");
89 zf=!!(flags&0x40);
94 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
95 // flags,cf,pf,af,zf,sf,of);
97 if (zf && ((out&0xff)!=0))
    [all...]
  /external/bzip2/
bzlib_private.h 73 #define VPrintf0(zf) \
74 fprintf(stderr,zf)
75 #define VPrintf1(zf,za1) \
76 fprintf(stderr,zf,za1)
77 #define VPrintf2(zf,za1,za2) \
78 fprintf(stderr,zf,za1,za2)
79 #define VPrintf3(zf,za1,za2,za3) \
80 fprintf(stderr,zf,za1,za2,za3)
81 #define VPrintf4(zf,za1,za2,za3,za4) \
82 fprintf(stderr,zf,za1,za2,za3,za4
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipFileTest.java 90 ZipFile zf = new ZipFile(fl); local
91 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt"));
92 InputStream is2 = zf.getInputStream(zf.getEntry("File2.txt"));
97 zf.close();
  /external/srec/srec/clib/
voc_read.c 274 zipfile_t zf = 0; local
300 zf = init_zipfile(*buf, *size);
301 if (!zf) goto FAILED;
306 ze = lookup_zipentry(zf, entryname);
318 release_zipfile(zf);
319 zf = 0;
332 if (zf) release_zipfile(zf);
  /external/chromium_org/third_party/zlib/contrib/minizip/
minizip.c 358 zipFile zf; local
363 zf = zipOpen2_64(filename_try,(opt_overwrite==2) ? 2 : 0,NULL,&ffunc);
365 zf = zipOpen64(filename_try,(opt_overwrite==2) ? 2 : 0);
368 if (zf == NULL)
401 err = zipOpenNewFileInZip(zf,filenameinzip,&zi,
438 err = zipOpenNewFileInZip3_64(zf,savefilenameinzip,&zi,
472 err = zipWriteInFileInZip (zf,buf,size_read);
489 err = zipCloseFileInZip(zf);
496 errclose = zipClose(zf,NULL);
  /external/zlib/src/contrib/minizip/
minizip.c 371 zipFile zf; local
376 zf = zipOpen2_64(filename_try,(opt_overwrite==2) ? 2 : 0,NULL,&ffunc);
378 zf = zipOpen64(filename_try,(opt_overwrite==2) ? 2 : 0);
381 if (zf == NULL)
414 err = zipOpenNewFileInZip(zf,filenameinzip,&zi,
451 err = zipOpenNewFileInZip3_64(zf,savefilenameinzip,&zi,
485 err = zipWriteInFileInZip (zf,buf,size_read);
502 err = zipCloseFileInZip(zf);
509 errclose = zipClose(zf,NULL);
  /external/valgrind/main/VEX/priv/
guest_arm_helpers.c 200 UInt zf = (cc_dep1 >> ARMG_CC_SHIFT_Z) & 1; local
201 return zf;
208 UInt zf = res == 0; local
209 return zf;
216 UInt zf = res == 0; local
217 return zf;
226 UInt zf = res == 0; local
227 return zf;
236 UInt zf = res == 0; local
237 return zf;
242 UInt zf = res == 0; local
248 UInt zf = res == 0; local
255 UInt zf = (resHi32|resLo32) == 0; local
475 UInt nf, zf, vf, cf, inv; local
    [all...]
guest_x86_helpers.c 150 { Int cf, pf, af, zf, sf, of; \
158 zf = ((DATA_UTYPE)res == 0) << 6; \
162 return cf | pf | af | zf | sf | of; \
171 { Int cf, pf, af, zf, sf, of; \
179 zf = ((DATA_UTYPE)res == 0) << 6; \
183 return cf | pf | af | zf | sf | of; \
192 { Int cf, pf, af, zf, sf, of; \
204 zf = ((DATA_UTYPE)res == 0) << 6; \
208 return cf | pf | af | zf | sf | of; \
217 { Int cf, pf, af, zf, sf, of;
646 UInt of,sf,zf,cf,pf; local
    [all...]
guest_amd64_helpers.c 192 { Long cf, pf, af, zf, sf, of; \
200 zf = ((DATA_UTYPE)res == 0) << 6; \
204 return cf | pf | af | zf | sf | of; \
213 { Long cf, pf, af, zf, sf, of; \
221 zf = ((DATA_UTYPE)res == 0) << 6; \
225 return cf | pf | af | zf | sf | of; \
234 { Long cf, pf, af, zf, sf, of; \
246 zf = ((DATA_UTYPE)res == 0) << 6; \
250 return cf | pf | af | zf | sf | of; \
259 { Long cf, pf, af, zf, sf, of;
743 ULong of,sf,zf,cf,pf; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 167 ZipFile zf = new ZipFile(fl); local
168 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt"));
169 InputStream is2 = zf.getInputStream(zf.getEntry("File2.txt"));
174 zf.close();
  /external/chromium_org/chrome/test/functional/perf/
endure_setup.py 312 zf = zipfile.ZipFile(filename)
318 for info in zf.infolist():
328 out.write(zf.read(name))
  /external/chromium_org/chrome/test/pyautolib/
pyauto_utils.py 105 zf = zipfile.ZipFile(filename)
111 for info in zf.infolist():
121 out.write(zf.read(name))
  /external/valgrind/main/drd/
drd_pthread_intercepts.c 86 * @param[in] zf Z-encoded name of the interception function.
93 #define PTH_FUNC(ret_ty, zf, implf, argl_decl, argl) \
94 ret_ty VG_WRAP_FUNCTION_ZZ(VG_Z_LIBPTHREAD_SONAME,zf) argl_decl; \
95 ret_ty VG_WRAP_FUNCTION_ZZ(VG_Z_LIBPTHREAD_SONAME,zf) argl_decl \
105 #define PTH_FUNC(ret_ty, zf, implf, argl_decl, argl) \
106 ret_ty VG_WRAP_FUNCTION_ZZ(VG_Z_LIBPTHREAD_SONAME,zf) argl_decl; \
107 ret_ty VG_WRAP_FUNCTION_ZZ(VG_Z_LIBPTHREAD_SONAME,zf) argl_decl \
113 * Z-encoded name zf, one with ZAZa ("@*") appended to the name zf and one
114 * with ZDZa ("$*") appended to the name zf. The second generated interceptio
    [all...]
  /external/chromium_org/tools/
bisect-builds.py 246 zf = zipfile.ZipFile(filename)
252 for info in zf.infolist():
262 out.write(zf.read(name))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipfile.py 808 with zipfile.ZipFile(TESTFN, "w") as zf:
809 zf.writestr(u"foo.txt", "Test for unicode filename")
810 zf.writestr(u"\xf6.txt", "Test for unicode filename")
811 self.assertIsInstance(zf.infolist()[0].filename, unicode)
813 with zipfile.ZipFile(TESTFN, "r") as zf:
814 self.assertEqual(zf.filelist[0].filename, "foo.txt")
815 self.assertEqual(zf.filelist[1].filename, u"\xf6.txt")
825 with zipfile.ZipFile(TESTFN, 'a') as zf:
826 zf.writestr(filename, content)
832 with zipfile.ZipFile(TESTFN, 'r') as zf
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipfile.py 808 with zipfile.ZipFile(TESTFN, "w") as zf:
809 zf.writestr(u"foo.txt", "Test for unicode filename")
810 zf.writestr(u"\xf6.txt", "Test for unicode filename")
811 self.assertIsInstance(zf.infolist()[0].filename, unicode)
813 with zipfile.ZipFile(TESTFN, "r") as zf:
814 self.assertEqual(zf.filelist[0].filename, "foo.txt")
815 self.assertEqual(zf.filelist[1].filename, u"\xf6.txt")
825 with zipfile.ZipFile(TESTFN, 'a') as zf:
826 zf.writestr(filename, content)
832 with zipfile.ZipFile(TESTFN, 'r') as zf
    [all...]
  /external/valgrind/main/VEX/switchback/
test_bzip2.c 436 #define VPrintf0(zf) \
437 fprintf(stderr,zf)
438 #define VPrintf1(zf,za1) \
439 fprintf(stderr,zf,za1)
440 #define VPrintf2(zf,za1,za2) \
441 fprintf(stderr,zf,za1,za2)
442 #define VPrintf3(zf,za1,za2,za3) \
443 fprintf(stderr,zf,za1,za2,za3)
444 #define VPrintf4(zf,za1,za2,za3,za4) \
445 fprintf(stderr,zf,za1,za2,za3,za4
    [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.c 459 #define VPrintf0(zf) \
460 fprintf(stderr,zf)
461 #define VPrintf1(zf,za1) \
462 fprintf(stderr,zf,za1)
463 #define VPrintf2(zf,za1,za2) \
464 fprintf(stderr,zf,za1,za2)
465 #define VPrintf3(zf,za1,za2,za3) \
466 fprintf(stderr,zf,za1,za2,za3)
467 #define VPrintf4(zf,za1,za2,za3,za4) \
468 fprintf(stderr,zf,za1,za2,za3,za4
    [all...]
  /external/valgrind/main/memcheck/tests/
origin5-bz2.c 452 #define VPrintf0(zf) \
453 fprintf(stderr,zf)
454 #define VPrintf1(zf,za1) \
455 fprintf(stderr,zf,za1)
456 #define VPrintf2(zf,za1,za2) \
457 fprintf(stderr,zf,za1,za2)
458 #define VPrintf3(zf,za1,za2,za3) \
459 fprintf(stderr,zf,za1,za2,za3)
460 #define VPrintf4(zf,za1,za2,za3,za4) \
461 fprintf(stderr,zf,za1,za2,za3,za4
    [all...]
varinfo6.c 490 #define VPrintf0(zf) \
491 fprintf(stderr,zf)
492 #define VPrintf1(zf,za1) \
493 fprintf(stderr,zf,za1)
494 #define VPrintf2(zf,za1,za2) \
495 fprintf(stderr,zf,za1,za2)
496 #define VPrintf3(zf,za1,za2,za3) \
497 fprintf(stderr,zf,za1,za2,za3)
498 #define VPrintf4(zf,za1,za2,za3,za4) \
499 fprintf(stderr,zf,za1,za2,za3,za4
    [all...]
  /external/valgrind/main/perf/
bz2.c 452 #define VPrintf0(zf) \
453 fprintf(stderr,zf)
454 #define VPrintf1(zf,za1) \
455 fprintf(stderr,zf,za1)
456 #define VPrintf2(zf,za1,za2) \
457 fprintf(stderr,zf,za1,za2)
458 #define VPrintf3(zf,za1,za2,za3) \
459 fprintf(stderr,zf,za1,za2,za3)
460 #define VPrintf4(zf,za1,za2,za3,za4) \
461 fprintf(stderr,zf,za1,za2,za3,za4
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_target_nv50.cpp 278 DataFile zf = (z == s) ? sf : i->src(z).getFile(); local
279 switch (zf) {

Completed in 714 milliseconds

1 2