/third_party/elfutils/libdwfl/ |
H A D | gzip.c | 80 gzFile zf; member 158 state->zf = gzdopen (d, "r"); in open_stream() 159 if (unlikely (state->zf == NULL)) in open_stream() 186 .zf = NULL, in unzip() 361 if (result == DWFL_E_NOERROR && gzdirect (state.zf)) in unzip() 363 gzclose (state.zf); in unzip() 376 gzclose (state.zf); in unzip() 379 int n = gzread (state.zf, state.buffer + pos, state.size - pos); in unzip() 383 gzerror (state.zf, &code); in unzip() 384 gzclose (state.zf); in unzip() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | typeMatch2.js | 38 var zf = function z(n: number) { return true; }; 39 mf=zf; 41 zf(_any); 106 var zf = function z(n) { return true; };
107 mf = zf;
109 zf(_any);
|
/third_party/python/Lib/test/ |
H A D | test_zipfile.py | 1078 with zipfile.ZipFile(io.BytesIO(self.make_zip64_file(**kwargs))) as zf: 1079 zinfo = zf.infolist()[0] 1083 self.assertEqual(zf.read(zinfo), expected_content) 1107 with zipfile.ZipFile(data, mode="w", allowZip64=True) as zf: 1108 with zf.open("text.txt", mode="w", force_zip64=True) as zi: 1143 with zipfile.ZipFile(fp, mode="w", allowZip64=True) as zf: 1144 with zf.open("text.txt", mode="w", force_zip64=False) as zi: 1153 with zipfile.ZipFile(fp, mode="w", allowZip64=False) as zf: 1157 zf.open(info, mode="w") 1181 with zipfile.ZipFile(fp, mode="w", allowZip64=True) as zf [all...] |
H A D | test_shutil.py | 1453 with zipfile.ZipFile(res) as zf: 1454 self.assertCountEqual(zf.namelist(), 1466 with zipfile.ZipFile(res) as zf: 1467 self.assertCountEqual(zf.namelist(), 1492 with zipfile.ZipFile(archive) as zf: 1493 names = zf.namelist() 1494 with zipfile.ZipFile(archive2) as zf: 1495 names2 = zf.namelist()
|
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | minizip.c | 370 zipFile zf; local 375 zf = zipOpen2_64(filename_try,(opt_overwrite==2) ? 2 : 0,NULL,&ffunc); 377 zf = zipOpen64(filename_try,(opt_overwrite==2) ? 2 : 0); 380 if (zf == NULL) 413 err = zipOpenNewFileInZip(zf,filenameinzip,&zi, 450 err = zipOpenNewFileInZip3_64(zf,savefilenameinzip,&zi, 484 err = zipWriteInFileInZip (zf,buf,size_read); 501 err = zipCloseFileInZip(zf); 508 errclose = zipClose(zf,NULL);
|
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
H A D | 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);
|
/third_party/zlib/contrib/minizip/ |
H A D | minizip.c | 369 zipFile zf; in main() local 374 zf = zipOpen2_64(filename_try,(opt_overwrite == 2) ? 2 : 0,NULL,&ffunc); in main() 376 zf = zipOpen64(filename_try,(opt_overwrite==2) ? 2 : 0); in main() 379 if (zf == NULL) in main() 412 err = zipOpenNewFileInZip(zf,filenameinzip,&zi, in main() 449 err = zipOpenNewFileInZip3_64(zf,savefilenameinzip,&zi, in main() 483 err = zipWriteInFileInZip (zf,buf,(unsigned)size_read); in main() 500 err = zipCloseFileInZip(zf); in main() 507 errclose = zipClose(zf,NULL); in main()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | APIData.java | 70 ZipFile zf = null; in read() 74 zf = new ZipFile(file); in read() 75 Enumeration entryEnum = zf.entries(); in read() 78 is = zf.getInputStream(entry); in read() 96 if (zf != null) { in read() 98 zf.close(); in read()
|
/third_party/python/PCbuild/ |
H A D | get_external.py | 28 with zipfile.ZipFile(os.fspath(zip_path)) as zf: 29 zf.extractall(os.fspath(externals_dir)) 30 return externals_dir / zf.namelist()[0].split('/')[0]
|
/third_party/python/Lib/test/test_importlib/ |
H A D | update-zips.py | 36 with zipfile.ZipFile(zfpath, 'w') as zf: 40 zf.write(src, dst)
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrRenderState.hpp | 339 float zf; member 344 , zf (1.0f) in ViewportState() 351 , zf (1.0f) in ViewportState()
|
H A D | rrRenderer.cpp | 830 const float zf = state.viewport.zf; in transformVertexClipCoordsToWindowCoords() local 834 packet.position.z()*(zf - zn)/2.0f + (zn + zf)/2.0f, in transformVertexClipCoordsToWindowCoords() 1112 const float depthClampMin = de::min(state.viewport.zn, state.viewport.zf); in rasterizePrimitive() 1113 const float depthClampMax = de::max(state.viewport.zn, state.viewport.zf); in rasterizePrimitive() 1180 const float depthClampMin = de::min(state.viewport.zn, state.viewport.zf); in rasterizePrimitive() 1181 const float depthClampMax = de::max(state.viewport.zn, state.viewport.zf); in rasterizePrimitive() 1233 const float depthClampMin = de::min(state.viewport.zn, state.viewport.zf); in rasterizePrimitive() 1234 const float depthClampMax = de::max(state.viewport.zn, state.viewport.zf); in rasterizePrimitive() [all...] |
/third_party/python/PC/layout/ |
H A D | main.py | 292 def _write_to_zip(zf, dest, src, ns, checked=True): 296 zf.write(str(pyc), dest.with_suffix(".pyc")) 312 zf.write(str(f), str(dest.parent / f.name)) 325 zf.write(str(src), str(dest)) 341 with zipfile.ZipFile(zip_path, "w", zipfile.ZIP_DEFLATED) as zf: 343 _write_to_zip(zf, dest, src, ns, checked=False)
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_archive_util.py | 249 with zipfile.ZipFile(tarball) as zf: 250 self.assertEqual(sorted(zf.namelist()), self._zip_created_files) 275 with zipfile.ZipFile(tarball) as zf: 276 self.assertEqual(sorted(zf.namelist()), self._zip_created_files)
|
/third_party/python/Lib/test/test_zoneinfo/ |
H A D | test_zoneinfo.py | 557 zf = self.construct_zone(transitions, after) 558 zi = self.klass.from_file(zf) 596 zf = self.construct_zone(transitions, after) 597 zi = self.klass.from_file(zf) 629 zf = self.construct_zone(transitions, after) 634 zi = self.klass.from_file(zf) 677 zf = self.construct_zone(transitions, after) 678 zi = self.klass.from_file(zf) 694 zf = self.construct_zone([], "") 697 self.klass.from_file(zf) [all...] |
/third_party/python/Lib/ |
H A D | zipfile.py | 1139 def __init__(self, zf, zinfo, zip64): 1142 self._zipfile = zf 2395 >>> zf = ZipFile(data, 'w') 2396 >>> zf.writestr('a.txt', 'content of a') 2397 >>> zf.writestr('b/c.txt', 'content of c') 2398 >>> zf.writestr('b/d/e.txt', 'content of e') 2399 >>> zf.filename = 'mem/abcde.zip' 2403 >>> root = Path(zf) 2590 with ZipFile(src, 'r', metadata_encoding=encoding) as zf: 2591 badfile = zf [all...] |
H A D | shutil.py | 993 compression=zipfile.ZIP_DEFLATED) as zf: 999 zf.write(base_dir, arcname) 1010 zf.write(path, arcname) 1018 zf.write(path, arcname)
|
/third_party/vk-gl-cts/modules/internal/ |
H A D | ditFrameworkTests.cpp | 707 const float zf = 1.0f; in runCase() local 786 viewport.zf = zf; in runCase() 811 const float refDepth = subCase.vtx[0].z()*(zf - zn)/2.0f + (zn + zf)/2.0f; in runCase()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_target_nv50.cpp | 309 DataFile zf = (z == s) ? sf : i->src(z).getFile(); in insnCanLoad() local 310 switch (zf) { in insnCanLoad()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuTestLog.cpp | 333 float zf = ((float)z + 0.5f) / (float)d; in writeImage() local 336 Vec4 s = access.sample3D(sampler, sampler.minFilter, xf, yf, zf); in writeImage()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/ |
H A D | vktDynamicStateInheritanceTests.cpp | 932 float zf = pz * r.xyz.z() + oz; in rasterizeExpectedResults() local 964 if (!(zf < oldDepth)) continue; in rasterizeExpectedResults() 967 m_cpuDepthBuffer[y][x] = zf; in rasterizeExpectedResults()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/dynamic_state/ |
H A D | vktDynamicStateInheritanceTests.cpp | 841 float zf = pz * r.xyz.z() + oz; in rasterizeExpectedResults() local 873 if (!(zf < oldDepth)) continue; in rasterizeExpectedResults() 876 m_cpuDepthBuffer[y][x] = zf; in rasterizeExpectedResults()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_v360.c | 2281 const float zf = vec[2]; in xyz_to_flat() local 2288 uf = zf >= 0.f ? scale(uf, width) : 0.f; in xyz_to_flat() 2289 vf = zf >= 0.f ? scale(vf, height) : 0.f; in xyz_to_flat() 2294 visible = vi >= 0 && vi < height && ui >= 0 && ui < width && zf >= 0.f; in xyz_to_flat() 3977 float uf, vf, zf; in xyz_to_octahedron() local 3983 zf = vec[2]; in xyz_to_octahedron() 3985 if (zf < 0.f) { in xyz_to_octahedron() 3986 zf = vf; in xyz_to_octahedron() 3987 vf = (1.f - fabsf(uf)) * FFSIGN(zf); in xyz_to_octahedron() 3988 uf = (1.f - fabsf(zf)) * FFSIG in xyz_to_octahedron() [all...] |
H A D | vf_xfade.c | 1648 const float zf = smoothstep(0.5f, 1.f, progress); \ 1662 zoom(&u, &v, zf); \
|
/third_party/mesa3d/src/mesa/main/ |
H A D | pack.c | 1691 float zf = ((float *) src)[i * 2 + 0]; in unpack_uint_24_8_depth_stencil_Z32_S8X24() local 1692 uint32_t z24 = (uint32_t) (zf * (float) 0xffffff); in unpack_uint_24_8_depth_stencil_Z32_S8X24()
|