├── .gitignore ├── .parsec_uniquefile ├── CHANGELOG ├── CONTRIBUTORS ├── FAQ ├── LICENSE ├── README ├── bin ├── .#parsecmgmt.1.6 ├── bldconfadd ├── bldconfdel ├── install └── parsecmgmt ├── config ├── .gcc-pthreads.bldconf.swp ├── bibliography │ ├── bienia11parsec.bibconf │ └── woo95splash.bibconf ├── darwin.sysconf ├── gcc-hooks.bldconf ├── gcc-openmp.bldconf ├── gcc-pthreads.bldconf ├── gcc-serial.bldconf ├── gcc-tbb.bldconf ├── gcc.bldconf ├── graphite.bldconf ├── icc.bldconf ├── linux.sysconf ├── native.runconf ├── packages │ ├── parsec.blackscholes.pkgconf │ ├── parsec.bodytrack.pkgconf │ ├── parsec.canneal.pkgconf │ ├── parsec.cmake.pkgconf │ ├── parsec.dedup.pkgconf │ ├── parsec.facesim.pkgconf │ ├── parsec.ferret.pkgconf │ ├── parsec.fluidanimate.pkgconf │ ├── parsec.freqmine.pkgconf │ ├── parsec.glib.pkgconf │ ├── parsec.gsl.pkgconf │ ├── parsec.hooks.pkgconf │ ├── parsec.libjpeg.pkgconf │ ├── parsec.libtool.pkgconf │ ├── parsec.libxml2.pkgconf │ ├── parsec.mesa.pkgconf │ ├── parsec.netdedup.pkgconf │ ├── parsec.netferret.pkgconf │ ├── parsec.netstreamcluster.pkgconf │ ├── parsec.parmacs.pkgconf │ ├── parsec.raytrace.pkgconf │ ├── parsec.ssl.pkgconf │ ├── parsec.streamcluster.pkgconf │ ├── parsec.swaptions.pkgconf │ ├── parsec.tbblib.pkgconf │ ├── parsec.uptcpip.pkgconf │ ├── parsec.vips.pkgconf │ ├── parsec.x264.pkgconf │ ├── parsec.yasm.pkgconf │ ├── parsec.zlib.pkgconf │ ├── splash2.barnes.pkgconf │ ├── splash2.cholesky.pkgconf │ ├── splash2.fft.pkgconf │ ├── splash2.fmm.pkgconf │ ├── splash2.lu_cb.pkgconf │ ├── splash2.lu_ncb.pkgconf │ ├── splash2.ocean_cp.pkgconf │ ├── splash2.ocean_ncp.pkgconf │ ├── splash2.radiosity.pkgconf │ ├── splash2.radix.pkgconf │ ├── splash2.raytrace.pkgconf │ ├── splash2.volrend.pkgconf │ ├── splash2.water_nsquared.pkgconf │ ├── splash2.water_spatial.pkgconf │ ├── splash2x.barnes.pkgconf │ ├── splash2x.cholesky.pkgconf │ ├── splash2x.fft.pkgconf │ ├── splash2x.fmm.pkgconf │ ├── splash2x.lu_cb.pkgconf │ ├── splash2x.lu_ncb.pkgconf │ ├── splash2x.ocean_cp.pkgconf │ ├── splash2x.ocean_ncp.pkgconf │ ├── splash2x.radiosity.pkgconf │ ├── splash2x.radix.pkgconf │ ├── splash2x.raytrace.pkgconf │ ├── splash2x.volrend.pkgconf │ ├── splash2x.water_nsquared.pkgconf │ └── splash2x.water_spatial.pkgconf ├── simdev.runconf ├── simlarge.runconf ├── simmedium.runconf ├── simsmall.runconf ├── solaris.sysconf ├── test.runconf └── tile-cc.bldconf ├── env.sh ├── ext └── splash2x │ ├── apps │ ├── barnes │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.barnes │ │ │ ├── code.C │ │ │ ├── code.H │ │ │ ├── code_io.C │ │ │ ├── code_io.H │ │ │ ├── defs.H │ │ │ ├── getparam.C │ │ │ ├── getparam.H │ │ │ ├── grav.C │ │ │ ├── grav.H │ │ │ ├── load.C │ │ │ ├── load.H │ │ │ ├── run.sh │ │ │ ├── stdinc.H │ │ │ ├── util.C │ │ │ ├── util.H │ │ │ └── vectmath.H │ │ └── version │ ├── fmm │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.fmm │ │ │ ├── box.C │ │ │ ├── box.H │ │ │ ├── construct_grid.C │ │ │ ├── construct_grid.H │ │ │ ├── correct.out │ │ │ ├── cost_zones.C │ │ │ ├── cost_zones.H │ │ │ ├── defs.C │ │ │ ├── defs.H │ │ │ ├── fmm.C │ │ │ ├── interactions.C │ │ │ ├── interactions.H │ │ │ ├── memory.C │ │ │ ├── memory.H │ │ │ ├── particle.C │ │ │ ├── particle.H │ │ │ ├── partition_grid.C │ │ │ ├── partition_grid.H │ │ │ ├── run.sh │ │ │ └── times │ │ └── version │ ├── ocean_cp │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.ocean │ │ │ ├── correct.out │ │ │ ├── decs.H │ │ │ ├── jacobcalc.C │ │ │ ├── jacobcalc2.C │ │ │ ├── laplacalc.C │ │ │ ├── linkup.C │ │ │ ├── main.C │ │ │ ├── multi.C │ │ │ ├── parsec │ │ │ │ ├── gcc-hooks.bldconf │ │ │ │ ├── gcc-pthreads.bldconf │ │ │ │ ├── gcc-serial.bldconf │ │ │ │ ├── gcc.bldconf │ │ │ │ ├── icc.bldconf │ │ │ │ ├── native.runconf │ │ │ │ ├── simdev.runconf │ │ │ │ ├── simlarge.runconf │ │ │ │ ├── simmedium.runconf │ │ │ │ ├── simsmall.runconf │ │ │ │ └── test.runconf │ │ │ ├── run.sh │ │ │ ├── slave1.C │ │ │ ├── slave2.C │ │ │ └── subblock.C │ │ └── version │ ├── ocean_ncp │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.ocean │ │ │ ├── correct.out │ │ │ ├── decs.H │ │ │ ├── jacobcalc.C │ │ │ ├── laplacalc.C │ │ │ ├── main.C │ │ │ ├── multi.C │ │ │ ├── run.sh │ │ │ ├── slave1.C │ │ │ └── slave2.C │ │ └── version │ ├── radiosity │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.radiosity │ │ │ ├── display.C │ │ │ ├── elemman.C │ │ │ ├── glibdumb │ │ │ │ ├── Makefile │ │ │ │ ├── glib.c │ │ │ │ └── glib.h │ │ │ ├── glibps │ │ │ │ ├── Makefile │ │ │ │ ├── glibps.c │ │ │ │ └── pslib.h │ │ │ ├── model.H │ │ │ ├── modelman.C │ │ │ ├── parallel.H │ │ │ ├── patch.H │ │ │ ├── patchman.C │ │ │ ├── rad_main.C │ │ │ ├── rad_tools.C │ │ │ ├── radiosity.H │ │ │ ├── room_model.C │ │ │ ├── run.sh │ │ │ ├── smallobj.C │ │ │ ├── structs.H │ │ │ ├── task.H │ │ │ ├── taskman.C │ │ │ └── visible.C │ │ └── version │ ├── raytrace │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.raytrace │ │ │ ├── bbox.C │ │ │ ├── cr.C │ │ │ ├── env.C │ │ │ ├── fbuf.C │ │ │ ├── geo.C │ │ │ ├── huprn.C │ │ │ ├── husetup.C │ │ │ ├── hutv.C │ │ │ ├── isect.C │ │ │ ├── main.C │ │ │ ├── matrix.C │ │ │ ├── memory.C │ │ │ ├── poly.C │ │ │ ├── raystack.C │ │ │ ├── rt.H │ │ │ ├── rt_back.h │ │ │ ├── rt_pthread_i386.h │ │ │ ├── run.sh │ │ │ ├── shade.C │ │ │ ├── sph.C │ │ │ ├── trace.C │ │ │ ├── tri.C │ │ │ └── workpool.C │ │ └── version │ ├── volrend │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.volrend │ │ │ ├── adaptive.C │ │ │ ├── address.H │ │ │ ├── anl.H │ │ │ ├── const.H │ │ │ ├── file.C │ │ │ ├── global.H │ │ │ ├── incl.H │ │ │ ├── libtiff │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.DEC │ │ │ │ ├── Makefile.aix │ │ │ │ ├── Makefile.apollo │ │ │ │ ├── Makefile.hpux │ │ │ │ ├── Makefile.mips │ │ │ │ ├── Makefile.next │ │ │ │ ├── Makefile.sgi │ │ │ │ ├── Makefile.sun │ │ │ │ ├── Makefile.tahoe │ │ │ │ ├── Makefile.vax │ │ │ │ ├── README │ │ │ │ ├── machdep.h │ │ │ │ ├── mkg3states.c │ │ │ │ ├── mkspans.c │ │ │ │ ├── prototypes.h │ │ │ │ ├── t4.h │ │ │ │ ├── tif_aux.c │ │ │ │ ├── tif_ccittrle.c │ │ │ │ ├── tif_close.c │ │ │ │ ├── tif_compat.c │ │ │ │ ├── tif_compress.c │ │ │ │ ├── tif_dir.c │ │ │ │ ├── tif_dirinfo.c │ │ │ │ ├── tif_dirread.c │ │ │ │ ├── tif_dirwrite.c │ │ │ │ ├── tif_dumpmode.c │ │ │ │ ├── tif_error.c │ │ │ │ ├── tif_fax3.c │ │ │ │ ├── tif_fax3.h │ │ │ │ ├── tif_fax4.c │ │ │ │ ├── tif_flush.c │ │ │ │ ├── tif_getimage.c │ │ │ │ ├── tif_jpeg.c │ │ │ │ ├── tif_lzw.c │ │ │ │ ├── tif_machdep.c │ │ │ │ ├── tif_next.c │ │ │ │ ├── tif_open.c │ │ │ │ ├── tif_packbits.c │ │ │ │ ├── tif_print.c │ │ │ │ ├── tif_read.c │ │ │ │ ├── tif_strip.c │ │ │ │ ├── tif_swab.c │ │ │ │ ├── tif_thunder.c │ │ │ │ ├── tif_tile.c │ │ │ │ ├── tif_version.c │ │ │ │ ├── tif_warning.c │ │ │ │ ├── tif_write.c │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffcompat.h │ │ │ │ ├── tiffio.h │ │ │ │ └── tiffioP.h │ │ │ ├── macros.H │ │ │ ├── main.C │ │ │ ├── map.C │ │ │ ├── my_types.H │ │ │ ├── normal.C │ │ │ ├── octree.C │ │ │ ├── opacity.C │ │ │ ├── option.C │ │ │ ├── raytrace.C │ │ │ ├── render.C │ │ │ ├── run.sh │ │ │ ├── user_options.H │ │ │ └── view.C │ │ └── version │ ├── water_nsquared │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── README.water-nsquared │ │ │ ├── bndry.C │ │ │ ├── cnst.H │ │ │ ├── cnstnt.C │ │ │ ├── cshift.C │ │ │ ├── fileio.H │ │ │ ├── frcnst.H │ │ │ ├── global.H │ │ │ ├── initia.C │ │ │ ├── interf.C │ │ │ ├── intraf.C │ │ │ ├── kineti.C │ │ │ ├── mddata.H │ │ │ ├── mdmain.C │ │ │ ├── mdvar.H │ │ │ ├── parameters.H │ │ │ ├── poteng.C │ │ │ ├── predcor.C │ │ │ ├── randno.H │ │ │ ├── run.sh │ │ │ ├── split.H │ │ │ ├── syscons.C │ │ │ ├── water.C │ │ │ ├── water.H │ │ │ └── wwpot.H │ │ └── version │ └── water_spatial │ │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc.bldconf │ │ ├── icc.bldconf │ │ ├── native.runconf │ │ ├── simdev.runconf │ │ ├── simlarge.runconf │ │ ├── simmedium.runconf │ │ ├── simsmall.runconf │ │ └── test.runconf │ │ ├── src │ │ ├── Makefile │ │ ├── README.water-spatial │ │ ├── bndry.C │ │ ├── cnst.H │ │ ├── cnstnt.C │ │ ├── cshift.C │ │ ├── fileio.H │ │ ├── frcnst.H │ │ ├── global.H │ │ ├── initia.C │ │ ├── interf.C │ │ ├── intraf.C │ │ ├── kineti.C │ │ ├── mddata.H │ │ ├── mdmain.C │ │ ├── mdvar.H │ │ ├── parameters.H │ │ ├── poteng.C │ │ ├── predcor.C │ │ ├── randno.H │ │ ├── run.sh │ │ ├── split.H │ │ ├── syscons.C │ │ ├── water.C │ │ ├── water.H │ │ └── wwpot.H │ │ └── version │ └── kernels │ ├── cholesky │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc.bldconf │ │ ├── icc.bldconf │ │ ├── native.runconf │ │ ├── simdev.runconf │ │ ├── simlarge.runconf │ │ ├── simmedium.runconf │ │ ├── simsmall.runconf │ │ └── test.runconf │ ├── src │ │ ├── Makefile │ │ ├── README.cholesky │ │ ├── amal.C │ │ ├── assign.C │ │ ├── bfac.C │ │ ├── bksolve.C │ │ ├── block2.C │ │ ├── fo.C │ │ ├── malloc.C │ │ ├── matrix.H │ │ ├── mf.C │ │ ├── numLL.C │ │ ├── parts.C │ │ ├── run.sh │ │ ├── seg.C │ │ ├── solve.C │ │ ├── tree.C │ │ └── util.C │ └── version │ ├── fft │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc.bldconf │ │ ├── icc.bldconf │ │ ├── native.runconf │ │ ├── simdev.runconf │ │ ├── simlarge.runconf │ │ ├── simmedium.runconf │ │ ├── simsmall.runconf │ │ └── test.runconf │ ├── src │ │ ├── Makefile │ │ ├── README.fft │ │ ├── fft.C │ │ └── run.sh │ └── version │ ├── lu_cb │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc.bldconf │ │ ├── icc.bldconf │ │ ├── native.runconf │ │ ├── simdev.runconf │ │ ├── simlarge.runconf │ │ ├── simmedium.runconf │ │ ├── simsmall.runconf │ │ └── test.runconf │ ├── src │ │ ├── Makefile │ │ ├── README.lu │ │ ├── lu.C │ │ └── run.sh │ └── version │ ├── lu_ncb │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc.bldconf │ │ ├── icc.bldconf │ │ ├── native.runconf │ │ ├── simdev.runconf │ │ ├── simlarge.runconf │ │ ├── simmedium.runconf │ │ ├── simsmall.runconf │ │ └── test.runconf │ ├── src │ │ ├── Makefile │ │ ├── README.lu │ │ ├── lu.C │ │ └── run.sh │ └── version │ └── radix │ ├── parsec │ ├── gcc-hooks.bldconf │ ├── gcc-pthreads.bldconf │ ├── gcc-serial.bldconf │ ├── gcc.bldconf │ ├── icc.bldconf │ ├── native.runconf │ ├── simdev.runconf │ ├── simlarge.runconf │ ├── simmedium.runconf │ ├── simsmall.runconf │ └── test.runconf │ ├── src │ ├── Makefile │ ├── README.radix │ ├── radix.C │ └── run.sh │ └── version ├── man ├── man1 │ ├── bldconfadd.1.gz │ ├── bldconfdel.1.gz │ └── parsecmgmt.1.gz ├── man3 │ ├── ENABLE_SIMICS_MAGIC.3.gz │ ├── ENABLE_TIMING.3.gz │ ├── HOOKS_PREFIX.3.gz │ ├── HOOKS_VERSION.3.gz │ ├── __parsec_bench_begin.3.gz │ ├── __parsec_bench_end.3.gz │ ├── __parsec_benchmark.3.gz │ ├── __parsec_roi_begin.3.gz │ ├── __parsec_roi_end.3.gz │ ├── config.h.3.gz │ ├── hooks.c.3.gz │ └── hooks.h.3.gz ├── man5 │ ├── bldconf.5.gz │ ├── pkgconf.5.gz │ ├── runconf.5.gz │ └── sysconf.5.gz └── man7 │ ├── hooks.7.gz │ └── parsec.7.gz ├── pkgs ├── apps │ ├── blackscholes │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-openmp.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc-tbb.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── blackscholes.c │ │ │ ├── blackscholes.simd.c │ │ │ ├── blackscholes.simd.vcproj │ │ │ ├── blackscholes.sln │ │ │ ├── blackscholes.vcproj │ │ │ ├── c.m4.pthreads │ │ │ ├── inputgen.c │ │ │ └── optionData.txt │ │ └── version │ ├── bodytrack │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-openmp.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc-tbb.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── FlexImageLib │ │ │ │ ├── BinaryImage.h │ │ │ │ ├── FlexColor.h │ │ │ │ ├── FlexDataExchange.h │ │ │ │ ├── FlexDefs.h │ │ │ │ ├── FlexDraw.h │ │ │ │ ├── FlexFilter.h │ │ │ │ ├── FlexIO.cpp │ │ │ │ ├── FlexIO.h │ │ │ │ ├── FlexImage.cpp │ │ │ │ ├── FlexImage.h │ │ │ │ ├── FlexImageLib.icproj │ │ │ │ ├── FlexImageLib.vcproj │ │ │ │ ├── FlexImageStatus.h │ │ │ │ ├── FlexImageStore.h │ │ │ │ ├── FlexLib.h │ │ │ │ ├── FlexOperators.h │ │ │ │ ├── FlexThreshold.h │ │ │ │ ├── FlexTransform.h │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── TrackingBenchmark.sln │ │ │ ├── TrackingBenchmark │ │ │ │ ├── AnnealingFactor.cpp │ │ │ │ ├── AnnealingFactor.h │ │ │ │ ├── AsyncIO.cpp │ │ │ │ ├── AsyncIO.h │ │ │ │ ├── BodyGeometry.cpp │ │ │ │ ├── BodyGeometry.h │ │ │ │ ├── BodyPose.cpp │ │ │ │ ├── BodyPose.h │ │ │ │ ├── CameraModel.cpp │ │ │ │ ├── CameraModel.h │ │ │ │ ├── CovarianceMatrix.cpp │ │ │ │ ├── CovarianceMatrix.h │ │ │ │ ├── DMatrix.h │ │ │ │ ├── ImageMeasurements.cpp │ │ │ │ ├── ImageMeasurements.h │ │ │ │ ├── ImageProjection.cpp │ │ │ │ ├── ImageProjection.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ParticleFilter.h │ │ │ │ ├── ParticleFilterOMP.h │ │ │ │ ├── ParticleFilterPthread.h │ │ │ │ ├── ParticleFilterTBB.h │ │ │ │ ├── RandomGenerator.cpp │ │ │ │ ├── RandomGenerator.h │ │ │ │ ├── SmallVectors.h │ │ │ │ ├── TBBtypes.h │ │ │ │ ├── TrackingBenchmark.icproj │ │ │ │ ├── TrackingBenchmark.vcproj │ │ │ │ ├── TrackingModel.cpp │ │ │ │ ├── TrackingModel.h │ │ │ │ ├── TrackingModelOMP.cpp │ │ │ │ ├── TrackingModelOMP.h │ │ │ │ ├── TrackingModelPthread.cpp │ │ │ │ ├── TrackingModelPthread.h │ │ │ │ ├── TrackingModelTBB.cpp │ │ │ │ ├── TrackingModelTBB.h │ │ │ │ ├── Vector3.h │ │ │ │ ├── WorkPoolPthread.h │ │ │ │ ├── main.cpp │ │ │ │ ├── system.h │ │ │ │ └── threads │ │ │ │ │ ├── Barrier.cpp │ │ │ │ │ ├── Barrier.h │ │ │ │ │ ├── Condition.cpp │ │ │ │ │ ├── Condition.h │ │ │ │ │ ├── LockTypes.h │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Mutex.cpp │ │ │ │ │ ├── Mutex.h │ │ │ │ │ ├── RWLock.cpp │ │ │ │ │ ├── RWLock.h │ │ │ │ │ ├── SynchQueue.h │ │ │ │ │ ├── Thread.cpp │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── ThreadGroup.cpp │ │ │ │ │ ├── ThreadGroup.h │ │ │ │ │ ├── TicketDispenser.h │ │ │ │ │ ├── WorkerGroup.cpp │ │ │ │ │ ├── WorkerGroup.h │ │ │ │ │ └── atomic │ │ │ │ │ ├── amd64 │ │ │ │ │ └── atomic.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── i386 │ │ │ │ │ └── atomic.h │ │ │ │ │ ├── ia64 │ │ │ │ │ └── atomic.h │ │ │ │ │ ├── powerpc │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ │ │ └── sparc │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ ├── aclocal.m4 │ │ │ ├── autom4te.cache │ │ │ │ ├── output.0 │ │ │ │ ├── output.1 │ │ │ │ ├── output.2 │ │ │ │ ├── output.3 │ │ │ │ ├── requests │ │ │ │ ├── traces.0 │ │ │ │ ├── traces.1 │ │ │ │ ├── traces.2 │ │ │ │ └── traces.3 │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ └── version │ ├── facesim │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Benchmarks │ │ │ │ ├── README_FIRST.txt │ │ │ │ └── facesim │ │ │ │ │ ├── ACTIVATION_CONTROL_SET.h │ │ │ │ │ ├── ATTACHMENT_FRAME_CONTROL_SET.h │ │ │ │ │ ├── FACE_CONTROL_PARAMETERS.h │ │ │ │ │ ├── FACE_CONTROL_SET.h │ │ │ │ │ ├── FACE_DRIVER.cpp │ │ │ │ │ ├── FACE_DRIVER.h │ │ │ │ │ ├── FACE_EXAMPLE.h │ │ │ │ │ ├── FACE_LANDMARK_OPTIMIZATION_GOAL.cpp │ │ │ │ │ ├── FACE_LANDMARK_OPTIMIZATION_GOAL.h │ │ │ │ │ ├── FACE_OPTIMIZATION.cpp │ │ │ │ │ ├── FACE_OPTIMIZATION.h │ │ │ │ │ ├── FACE_OPTIMIZATION_GOAL.h │ │ │ │ │ ├── GLOBAL_FRAME_CONTROL_SET.h │ │ │ │ │ ├── LANDMARK_3D.h │ │ │ │ │ ├── LANDMARK_PROXIMITY_OPTIMIZATION.cpp │ │ │ │ │ ├── LANDMARK_PROXIMITY_OPTIMIZATION.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── QUASISTATICS_DRIVER.h │ │ │ │ │ ├── QUASISTATICS_EXAMPLE.h │ │ │ │ │ ├── QUASI_RIGID_TRANSFORM_3D.h │ │ │ │ │ ├── README_face.txt │ │ │ │ │ ├── Storytelling │ │ │ │ │ └── STORYTELLING_EXAMPLE.h │ │ │ │ │ └── main.cpp │ │ │ ├── COPYRIGHT │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Public_Library │ │ │ │ ├── Arrays │ │ │ │ │ ├── ARRAY.h │ │ │ │ │ ├── ARRAYS.h │ │ │ │ │ ├── ARRAYS_1D.h │ │ │ │ │ ├── ARRAYS_2D.h │ │ │ │ │ ├── ARRAYS_3D.h │ │ │ │ │ ├── ARRAYS_RANGE.h │ │ │ │ │ ├── ARRAY_PARALLEL_OPERATIONS.cpp │ │ │ │ │ ├── ARRAY_PARALLEL_OPERATIONS.h │ │ │ │ │ ├── ARRAY_RANGE.h │ │ │ │ │ ├── LIST_ARRAY.h │ │ │ │ │ └── LIST_ARRAYS.h │ │ │ │ ├── Collisions_And_Interactions │ │ │ │ │ ├── BOX_HIERARCHY.cpp │ │ │ │ │ ├── BOX_HIERARCHY.h │ │ │ │ │ ├── COLLISION_BODY_3D.h │ │ │ │ │ ├── COLLISION_BODY_LIST_3D.cpp │ │ │ │ │ ├── COLLISION_BODY_LIST_3D.h │ │ │ │ │ ├── COLLISION_PENALTY_FORCES.h │ │ │ │ │ ├── PARTICLE_PARTITION.h │ │ │ │ │ ├── TETRAHEDRON_COLLISION_BODY.cpp │ │ │ │ │ ├── TETRAHEDRON_COLLISION_BODY.h │ │ │ │ │ ├── TETRAHEDRON_HIERARCHY.cpp │ │ │ │ │ └── TETRAHEDRON_HIERARCHY.h │ │ │ │ ├── Constitutive_Models │ │ │ │ │ ├── CONSTITUTIVE_MODEL_3D.h │ │ │ │ │ ├── DIAGONALIZED_CONSTITUTIVE_MODEL_3D.h │ │ │ │ │ ├── DIAGONALIZED_FACE_3D.h │ │ │ │ │ ├── DIAGONALIZED_ISOTROPIC_STRESS_DERIVATIVE_3D.h │ │ │ │ │ ├── STRAIN_MEASURE_3D.cpp │ │ │ │ │ └── STRAIN_MEASURE_3D.h │ │ │ │ ├── Data_Structures │ │ │ │ │ ├── DYNAMIC_LIST.h │ │ │ │ │ ├── HASHTABLE_2D.h │ │ │ │ │ ├── HASHTABLE_3D.h │ │ │ │ │ ├── PAIR.h │ │ │ │ │ ├── QUEUE.h │ │ │ │ │ ├── SPLAY_TREE.cpp │ │ │ │ │ ├── SPLAY_TREE.h │ │ │ │ │ ├── SPLAY_TREE_NODE.h │ │ │ │ │ ├── STACK.h │ │ │ │ │ └── UNION_FIND.h │ │ │ │ ├── Deformable_Objects │ │ │ │ │ ├── DEFORMABLE_OBJECT.cpp │ │ │ │ │ ├── DEFORMABLE_OBJECT.h │ │ │ │ │ ├── DEFORMABLE_OBJECT_3D.cpp │ │ │ │ │ ├── DEFORMABLE_OBJECT_3D.h │ │ │ │ │ ├── DEFORMABLE_OBJECT_COLLISIONS.h │ │ │ │ │ ├── DEFORMABLE_OBJECT_COLLISIONS_3D.cpp │ │ │ │ │ ├── DEFORMABLE_OBJECT_COLLISIONS_3D.h │ │ │ │ │ └── DEFORMABLE_OBJECT_LIST_3D.h │ │ │ │ ├── Forces_And_Torques │ │ │ │ │ ├── BODY_FORCES_3D.cpp │ │ │ │ │ ├── BODY_FORCES_3D.h │ │ │ │ │ ├── DIAGONALIZED_FINITE_VOLUME_3D.cpp │ │ │ │ │ ├── DIAGONALIZED_FINITE_VOLUME_3D.h │ │ │ │ │ ├── DIAGONALIZED_SEMI_IMPLICIT_ELEMENT_3D.h │ │ │ │ │ ├── EXTERNAL_FORCES_AND_VELOCITIES.h │ │ │ │ │ └── SOLIDS_FORCES.h │ │ │ │ ├── Fracture │ │ │ │ │ ├── EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.cpp │ │ │ │ │ └── EMBEDDED_TETRAHEDRALIZED_VOLUME_BOUNDARY_SURFACE.h │ │ │ │ ├── Geometry │ │ │ │ │ ├── BOX_2D.cpp │ │ │ │ │ ├── BOX_2D.h │ │ │ │ │ ├── BOX_3D.cpp │ │ │ │ │ ├── BOX_3D.h │ │ │ │ │ ├── EMBEDDED_OBJECT.cpp │ │ │ │ │ ├── EMBEDDED_OBJECT.h │ │ │ │ │ ├── EMBEDDED_TETRAHEDRALIZED_VOLUME.cpp │ │ │ │ │ ├── EMBEDDED_TETRAHEDRALIZED_VOLUME.h │ │ │ │ │ ├── IMPLICIT_SURFACE.cpp │ │ │ │ │ ├── IMPLICIT_SURFACE.h │ │ │ │ │ ├── IMPLICIT_SURFACE_LIST.cpp │ │ │ │ │ ├── IMPLICIT_SURFACE_LIST.h │ │ │ │ │ ├── LEVELSET_IMPLICIT_SURFACE.h │ │ │ │ │ ├── ORIENTED_BOX_2D.h │ │ │ │ │ ├── ORIENTED_BOX_3D.h │ │ │ │ │ ├── PLANE.cpp │ │ │ │ │ ├── PLANE.h │ │ │ │ │ ├── POLYGON.h │ │ │ │ │ ├── RAY_2D.h │ │ │ │ │ ├── RAY_3D.h │ │ │ │ │ ├── SEGMENTED_CURVE_3D.cpp │ │ │ │ │ ├── SEGMENTED_CURVE_3D.h │ │ │ │ │ ├── SEGMENT_2D.cpp │ │ │ │ │ ├── SEGMENT_2D.h │ │ │ │ │ ├── SEGMENT_3D.cpp │ │ │ │ │ ├── SEGMENT_3D.h │ │ │ │ │ ├── TETRAHEDRALIZED_VOLUME.cpp │ │ │ │ │ ├── TETRAHEDRALIZED_VOLUME.h │ │ │ │ │ ├── TETRAHEDRALIZED_VOLUME_LIST.cpp │ │ │ │ │ ├── TETRAHEDRALIZED_VOLUME_LIST.h │ │ │ │ │ ├── TETRAHEDRON.cpp │ │ │ │ │ ├── TETRAHEDRON.h │ │ │ │ │ ├── TRIANGLE_3D.cpp │ │ │ │ │ ├── TRIANGLE_3D.h │ │ │ │ │ ├── TRIANGULATED_OBJECT.cpp │ │ │ │ │ ├── TRIANGULATED_OBJECT.h │ │ │ │ │ ├── TRIANGULATED_SURFACE.cpp │ │ │ │ │ ├── TRIANGULATED_SURFACE.h │ │ │ │ │ ├── TRIANGULATED_SURFACE_LIST.cpp │ │ │ │ │ └── TRIANGULATED_SURFACE_LIST.h │ │ │ │ ├── Grids │ │ │ │ │ ├── Documentation │ │ │ │ │ │ ├── red_green_grid_ordering_2d.jpg │ │ │ │ │ │ └── red_green_grid_ordering_3d.jpg │ │ │ │ │ ├── GRID_1D.h │ │ │ │ │ ├── GRID_2D.h │ │ │ │ │ ├── GRID_3D.h │ │ │ │ │ ├── SEGMENT_MESH.cpp │ │ │ │ │ ├── SEGMENT_MESH.h │ │ │ │ │ ├── TETRAHEDRON_MESH.cpp │ │ │ │ │ ├── TETRAHEDRON_MESH.h │ │ │ │ │ ├── TRIANGLE_MESH.cpp │ │ │ │ │ └── TRIANGLE_MESH.h │ │ │ │ ├── Interpolation │ │ │ │ │ ├── INTERPOLATION.h │ │ │ │ │ └── LINEAR_INTERPOLATION.h │ │ │ │ ├── Level_Sets │ │ │ │ │ ├── LEVELSET.cpp │ │ │ │ │ ├── LEVELSET.h │ │ │ │ │ ├── LEVELSET_3D.cpp │ │ │ │ │ └── LEVELSET_3D.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.PhysBAM │ │ │ │ ├── Makefile.common │ │ │ │ ├── Math_Tools │ │ │ │ │ ├── abs.h │ │ │ │ │ ├── clamp.h │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── exchange.h │ │ │ │ │ ├── exchange_sort.h │ │ │ │ │ ├── hash_function.h │ │ │ │ │ ├── max.h │ │ │ │ │ ├── maxabs.h │ │ │ │ │ ├── maxmag.h │ │ │ │ │ ├── min.h │ │ │ │ │ ├── minmag.h │ │ │ │ │ ├── sign.h │ │ │ │ │ └── sqr.h │ │ │ │ ├── Matrices_And_Vectors │ │ │ │ │ ├── DIAGONAL_MATRIX_2X2.h │ │ │ │ │ ├── DIAGONAL_MATRIX_3X3.h │ │ │ │ │ ├── FRAME.h │ │ │ │ │ ├── MATRIX_2X2.h │ │ │ │ │ ├── MATRIX_3X2.h │ │ │ │ │ ├── MATRIX_3X3.cpp │ │ │ │ │ ├── MATRIX_3X3.h │ │ │ │ │ ├── MATRIX_4X4.h │ │ │ │ │ ├── MATRIX_MXN.h │ │ │ │ │ ├── MATRIX_NXN.h │ │ │ │ │ ├── QUATERNION.h │ │ │ │ │ ├── SYMMETRIC_MATRIX_2X2.h │ │ │ │ │ ├── SYMMETRIC_MATRIX_3X3.cpp │ │ │ │ │ ├── SYMMETRIC_MATRIX_3X3.h │ │ │ │ │ ├── UPPER_TRIANGULAR_MATRIX_2X2.h │ │ │ │ │ ├── UPPER_TRIANGULAR_MATRIX_3X3.h │ │ │ │ │ ├── VECTOR_1D.h │ │ │ │ │ ├── VECTOR_2D.h │ │ │ │ │ ├── VECTOR_3D.h │ │ │ │ │ ├── VECTOR_ND.h │ │ │ │ │ ├── VECTOR_ND_PARALLEL.cpp │ │ │ │ │ └── VECTOR_ND_PARALLEL.h │ │ │ │ ├── Particles │ │ │ │ │ ├── PARTICLE.cpp │ │ │ │ │ ├── PARTICLE.h │ │ │ │ │ ├── PARTICLE_ATTRIBUTE.h │ │ │ │ │ ├── PARTICLE_ATTRIBUTE_COLLECTION.h │ │ │ │ │ ├── PARTICLE_ATTRIBUTE_COLLECTION_MAP.h │ │ │ │ │ ├── PARTICLE_ATTRIBUTE_UNTEMPLATIZED.h │ │ │ │ │ ├── PARTICLE_MASS_ATTRIBUTE.h │ │ │ │ │ ├── PARTICLE_POSITION_ATTRIBUTE.h │ │ │ │ │ ├── PARTICLE_VELOCITY_ATTRIBUTE.h │ │ │ │ │ ├── SOLIDS_PARTICLE.cpp │ │ │ │ │ └── SOLIDS_PARTICLE.h │ │ │ │ ├── Read_Write │ │ │ │ │ ├── FILE_UTILITIES.cpp │ │ │ │ │ ├── FILE_UTILITIES.h │ │ │ │ │ └── READ_WRITE_FUNCTIONS.h │ │ │ │ ├── Rigid_Bodies │ │ │ │ │ ├── MASS_PROPERTIES_3D.cpp │ │ │ │ │ ├── MASS_PROPERTIES_3D.h │ │ │ │ │ ├── RIGID_BODY_3D.cpp │ │ │ │ │ ├── RIGID_BODY_3D.h │ │ │ │ │ ├── RIGID_BODY_BOUNDING_VOLUMES.h │ │ │ │ │ ├── RIGID_BODY_COLLISIONS.h │ │ │ │ │ ├── RIGID_BODY_COLLISIONS_3D.cpp │ │ │ │ │ ├── RIGID_BODY_COLLISIONS_3D.h │ │ │ │ │ ├── RIGID_BODY_COLLISION_MANAGER.h │ │ │ │ │ ├── RIGID_BODY_EVOLUTION.h │ │ │ │ │ ├── RIGID_BODY_EVOLUTION_3D.cpp │ │ │ │ │ ├── RIGID_BODY_EVOLUTION_3D.h │ │ │ │ │ ├── RIGID_BODY_INTERSECTIONS_3D.cpp │ │ │ │ │ ├── RIGID_BODY_INTERSECTIONS_3D.h │ │ │ │ │ ├── RIGID_BODY_LIST_3D.cpp │ │ │ │ │ ├── RIGID_BODY_LIST_3D.h │ │ │ │ │ ├── RIGID_BODY_SKIP_COLLISION_CHECK.h │ │ │ │ │ ├── RIGID_BODY_SPATIAL_PARTITION_3D.h │ │ │ │ │ └── RIGID_BODY_STATE_3D.h │ │ │ │ ├── Solids_And_Fluids │ │ │ │ │ ├── DEFORMABLE_BODY_PARAMETERS.h │ │ │ │ │ ├── DEFORMABLE_BODY_PARAMETERS_3D.h │ │ │ │ │ ├── RIGID_BODY_PARAMETERS.h │ │ │ │ │ ├── RIGID_BODY_PARAMETERS_3D.h │ │ │ │ │ ├── RIGID_BODY_PARAMETERS_CALLBACKS.h │ │ │ │ │ ├── SOLIDS_EVOLUTION_3D.cpp │ │ │ │ │ ├── SOLIDS_EVOLUTION_3D.h │ │ │ │ │ ├── SOLIDS_EVOLUTION_CALLBACKS.h │ │ │ │ │ ├── SOLIDS_FLUIDS_DRIVER.cpp │ │ │ │ │ ├── SOLIDS_FLUIDS_DRIVER.h │ │ │ │ │ ├── SOLIDS_FLUIDS_DRIVER_3D.cpp │ │ │ │ │ ├── SOLIDS_FLUIDS_DRIVER_3D.h │ │ │ │ │ ├── SOLIDS_FLUIDS_EXAMPLE.h │ │ │ │ │ ├── SOLIDS_FLUIDS_EXAMPLE_3D.cpp │ │ │ │ │ ├── SOLIDS_FLUIDS_EXAMPLE_3D.h │ │ │ │ │ ├── SOLIDS_PARAMETERS.h │ │ │ │ │ ├── SOLIDS_PARAMETERS_3D.cpp │ │ │ │ │ └── SOLIDS_PARAMETERS_3D.h │ │ │ │ ├── Thread_Utilities │ │ │ │ │ ├── THREAD_ARRAY_LOCK.cpp │ │ │ │ │ ├── THREAD_ARRAY_LOCK.h │ │ │ │ │ ├── THREAD_CONDITION.h │ │ │ │ │ ├── THREAD_DIVISION_PARAMETERS.cpp │ │ │ │ │ ├── THREAD_DIVISION_PARAMETERS.h │ │ │ │ │ ├── THREAD_LOCK.h │ │ │ │ │ ├── THREAD_POOL.cpp │ │ │ │ │ ├── THREAD_POOL.h │ │ │ │ │ ├── THREAD_POOL_ALAMERE.cpp │ │ │ │ │ └── THREAD_POOL_SINGLE.cpp │ │ │ │ └── Utilities │ │ │ │ │ ├── ARG_DATA.h │ │ │ │ │ ├── DEBUG_UTILITIES.cpp │ │ │ │ │ ├── DEBUG_UTILITIES.h │ │ │ │ │ ├── LOG.cpp │ │ │ │ │ ├── LOG.h │ │ │ │ │ ├── LOG_ENTRY.cpp │ │ │ │ │ ├── LOG_ENTRY.h │ │ │ │ │ ├── LOG_SCOPE.h │ │ │ │ │ ├── PARSE_ARGS.cpp │ │ │ │ │ ├── PARSE_ARGS.h │ │ │ │ │ ├── STATIC_ASSERT.h │ │ │ │ │ ├── STRING_UTILITIES.cpp │ │ │ │ │ ├── STRING_UTILITIES.h │ │ │ │ │ ├── TIMER.cpp │ │ │ │ │ ├── TIMER.h │ │ │ │ │ └── TYPE_UTILITIES.h │ │ │ ├── README │ │ │ └── TaskQ │ │ │ │ ├── include │ │ │ │ └── taskQ.h │ │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ ├── alamere.h │ │ │ │ ├── config.h │ │ │ │ ├── taskQDistCommon.c │ │ │ │ ├── taskQDistFixed.c │ │ │ │ ├── taskQDistFixed.h │ │ │ │ ├── taskQInternal.h │ │ │ │ └── taskQList.h │ │ └── version │ ├── ferret │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc-tbb.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── COPYRIGHT │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── benchmark │ │ │ │ ├── Makefile │ │ │ │ ├── ferret-pthreads.c │ │ │ │ ├── ferret-serial.c │ │ │ │ ├── ferret-tbb.cpp │ │ │ │ ├── ferret-tbb.h │ │ │ │ ├── mkdb │ │ │ │ ├── runbench │ │ │ │ └── runbench2 │ │ │ ├── doc │ │ │ │ ├── manual │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── datatype.texi │ │ │ │ │ ├── extend.texi │ │ │ │ │ ├── feature.texi │ │ │ │ │ ├── ferret.texi │ │ │ │ │ ├── index.texi │ │ │ │ │ ├── install.texi │ │ │ │ │ ├── intro.texi │ │ │ │ │ ├── layout.texi │ │ │ │ │ ├── library.texi │ │ │ │ │ ├── server.texi │ │ │ │ │ ├── util.texi │ │ │ │ │ ├── vecdist.texi │ │ │ │ │ └── vecsetdist.texi │ │ │ │ └── spec │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cass.pdf │ │ │ │ │ ├── cass.tex │ │ │ │ │ ├── cass_arch.pdf │ │ │ │ │ ├── cass_arch.ppt │ │ │ │ │ ├── depend.mk │ │ │ │ │ ├── distfunc.tex │ │ │ │ │ ├── index.tex │ │ │ │ │ ├── management.tex │ │ │ │ │ ├── overview.tex │ │ │ │ │ ├── queryplan.tex │ │ │ │ │ ├── storage.tex │ │ │ │ │ ├── texdep │ │ │ │ │ ├── texdep.awk │ │ │ │ │ └── vecset.tex │ │ │ ├── image │ │ │ │ ├── Makefile │ │ │ │ ├── cass_img_extract.c │ │ │ │ ├── edge.c │ │ │ │ ├── extract.c │ │ │ │ ├── image.c │ │ │ │ ├── image.h │ │ │ │ └── srm.c │ │ │ ├── include │ │ │ │ ├── arena.h │ │ │ │ ├── cass.h │ │ │ │ ├── cass_array.h │ │ │ │ ├── cass_bench.h │ │ │ │ ├── cass_bitmap.h │ │ │ │ ├── cass_dist.h │ │ │ │ ├── cass_endian.h │ │ │ │ ├── cass_file.h │ │ │ │ ├── cass_hash.h │ │ │ │ ├── cass_heap.h │ │ │ │ ├── cass_matrix.h │ │ │ │ ├── cass_reg.h │ │ │ │ ├── cass_stat.h │ │ │ │ ├── cass_timer.h │ │ │ │ ├── cass_topk.h │ │ │ │ ├── cass_type.h │ │ │ │ ├── dat.h │ │ │ │ ├── datalog.h │ │ │ │ ├── hash_table.h │ │ │ │ ├── heap.h │ │ │ │ ├── lsh_pickpert.h │ │ │ │ ├── lsh_table.h │ │ │ │ ├── queue.h │ │ │ │ └── tpool.h │ │ │ ├── src │ │ │ │ ├── Makefile │ │ │ │ ├── arena.c │ │ │ │ ├── assign.c │ │ │ │ ├── bench.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── cass.c │ │ │ │ ├── cass_dist.c │ │ │ │ ├── cass_reg.c │ │ │ │ ├── chunk_cnt.inc │ │ │ │ ├── cuckoo_hash.c │ │ │ │ ├── cuckoo_hash.h │ │ │ │ ├── dataset.c │ │ │ │ ├── dist.c │ │ │ │ ├── emd.c │ │ │ │ ├── emd.h │ │ │ │ ├── env.c │ │ │ │ ├── error.c │ │ │ │ ├── hash.c │ │ │ │ ├── hash_table.c │ │ │ │ ├── heap.c │ │ │ │ ├── import.c │ │ │ │ ├── lsh │ │ │ │ │ ├── LSH.c │ │ │ │ │ ├── LSH.h │ │ │ │ │ ├── LSH_query.c │ │ │ │ │ ├── LSH_query_batch.c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── local.c │ │ │ │ │ ├── local.h │ │ │ │ │ ├── perturb.c │ │ │ │ │ ├── perturb.h │ │ │ │ │ └── recall.c │ │ │ │ ├── map.c │ │ │ │ ├── matrix.c │ │ │ │ ├── queue.c │ │ │ │ ├── raw.c │ │ │ │ ├── stat.c │ │ │ │ ├── table.c │ │ │ │ ├── timer.c │ │ │ │ ├── topk.c │ │ │ │ ├── tp.c │ │ │ │ ├── tpool.c │ │ │ │ └── util.c │ │ │ └── tools │ │ │ │ ├── Makefile │ │ │ │ ├── cass_add_cfg.c │ │ │ │ ├── cass_add_index.c │ │ │ │ ├── cass_add_map.c │ │ │ │ ├── cass_add_table.c │ │ │ │ ├── cass_add_vec_dist.c │ │ │ │ ├── cass_add_vecset_dist.c │ │ │ │ ├── cass_describe.c │ │ │ │ ├── cass_export.c │ │ │ │ ├── cass_import.c │ │ │ │ └── cass_init.c │ │ └── version │ ├── fluidanimate │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc-tbb.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── Makefile.pthreads │ │ │ ├── Makefile.serial │ │ │ ├── Makefile.tbb │ │ │ ├── README │ │ │ ├── cellpool.cpp │ │ │ ├── cellpool.hpp │ │ │ ├── fluid.hpp │ │ │ ├── fluidcmp.cpp │ │ │ ├── fluidview.cpp │ │ │ ├── fluidview.hpp │ │ │ ├── parsec_barrier.cpp │ │ │ ├── parsec_barrier.hpp │ │ │ ├── pthreads.cpp │ │ │ ├── serial.cpp │ │ │ └── tbb.cpp │ │ └── version │ ├── freqmine │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-openmp.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── COPYRIGHT │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── buffer.cpp │ │ │ ├── buffer.h │ │ │ ├── common.h │ │ │ ├── data.cpp │ │ │ ├── data.h │ │ │ ├── fp_node.cpp │ │ │ ├── fp_node.h │ │ │ ├── fp_tree.cpp │ │ │ ├── fp_tree.h │ │ │ ├── fpmax.cpp │ │ │ ├── fsout.cpp │ │ │ ├── fsout.h │ │ │ ├── wtime.cpp │ │ │ └── wtime.h │ │ └── version │ ├── raytrace │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── LRT │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CmdLine.hxx │ │ │ │ ├── FrameBuffer.cxx │ │ │ │ ├── FrameBuffer.hxx │ │ │ │ ├── FrameBuffer │ │ │ │ │ ├── GLTextureFB.cxx │ │ │ │ │ ├── GLTextureFB.hxx │ │ │ │ │ ├── MemoryFrameBuffer.hxx │ │ │ │ │ ├── PBOFrameBuffer.cxx │ │ │ │ │ ├── PBOFrameBuffer.hxx │ │ │ │ │ └── TiledFrameBuffer.hxx │ │ │ │ ├── Init.cxx │ │ │ │ ├── RenderToTexture.cxx │ │ │ │ ├── include │ │ │ │ │ └── lrt.h │ │ │ │ ├── render.cxx │ │ │ │ └── test │ │ │ │ │ └── api_static_cube │ │ │ │ │ └── static_cube.cxx │ │ │ ├── MiniView │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Camera.hxx │ │ │ │ ├── ImagePPM.hxx │ │ │ │ ├── ObjParser.hxx │ │ │ │ └── rtview.cxx │ │ │ ├── README │ │ │ ├── RTTL │ │ │ │ ├── API │ │ │ │ │ ├── ISG.cxx │ │ │ │ │ ├── ISG.hxx │ │ │ │ │ └── rt.h │ │ │ │ ├── BVH │ │ │ │ │ ├── BVH.cxx │ │ │ │ │ ├── BVH.hxx │ │ │ │ │ └── Builder │ │ │ │ │ │ ├── BinnedAllDims.cxx │ │ │ │ │ │ ├── BinnedAllDims.hxx │ │ │ │ │ │ ├── BinnedAllDimsSaveSpace.cxx │ │ │ │ │ │ ├── BinnedAllDimsSaveSpace.hxx │ │ │ │ │ │ ├── Builder.cxx │ │ │ │ │ │ ├── Builder.hxx │ │ │ │ │ │ ├── OnDemandBuilder.cxx │ │ │ │ │ │ ├── OnDemandBuilder.hxx │ │ │ │ │ │ ├── Sweep.cxx │ │ │ │ │ │ └── Sweep.hxx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Grid │ │ │ │ │ └── Grid.hxx │ │ │ │ ├── Mesh │ │ │ │ │ └── Mesh.hxx │ │ │ │ ├── Texture │ │ │ │ │ └── Texture.hxx │ │ │ │ ├── Triangle │ │ │ │ │ └── Triangle.hxx │ │ │ │ ├── common │ │ │ │ │ ├── MapOptions.cxx │ │ │ │ │ ├── MapOptions.hxx │ │ │ │ │ ├── RTBox.hxx │ │ │ │ │ ├── RTData.hxx │ │ │ │ │ ├── RTDataAligned.hxx │ │ │ │ │ ├── RTEmulatedSSE.hxx │ │ │ │ │ ├── RTInclude.hxx │ │ │ │ │ ├── RTIntervalArith.hxx │ │ │ │ │ ├── RTMatrix.hxx │ │ │ │ │ ├── RTRay.hxx │ │ │ │ │ ├── RTSSE.hxx │ │ │ │ │ ├── RTSSEAliases.hxx │ │ │ │ │ ├── RTShader.hxx │ │ │ │ │ ├── RTThread.cxx │ │ │ │ │ ├── RTThread.hxx │ │ │ │ │ ├── RTVec.hxx │ │ │ │ │ ├── RTVecBody.h │ │ │ │ │ ├── RTcoutRedirect.hxx │ │ │ │ │ ├── Timer.hxx │ │ │ │ │ ├── atomic │ │ │ │ │ │ ├── alpha │ │ │ │ │ │ │ └── atomic.h │ │ │ │ │ │ ├── amd64 │ │ │ │ │ │ │ └── atomic.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── i386 │ │ │ │ │ │ │ └── atomic.h │ │ │ │ │ │ ├── ia64 │ │ │ │ │ │ │ └── atomic.h │ │ │ │ │ │ ├── powerpc │ │ │ │ │ │ │ └── atomic.h │ │ │ │ │ │ └── sparc │ │ │ │ │ │ │ ├── asi.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ └── cpufunc.h │ │ │ │ │ ├── cmake_autoconfig.h │ │ │ │ │ ├── cmake_autoconfig_template.h │ │ │ │ │ └── non_cmake_config.h │ │ │ │ └── test │ │ │ │ │ ├── TestMesh │ │ │ │ │ ├── RTMesh.hxx │ │ │ │ │ ├── RTMeshDescriptor.hxx │ │ │ │ │ ├── RTMeshInstantiation.hxx │ │ │ │ │ ├── RTObjReader.hxx │ │ │ │ │ ├── TestMesh.cxx │ │ │ │ │ ├── TestMesh.sln │ │ │ │ │ └── TestMesh.vcproj │ │ │ │ │ ├── TestOptions │ │ │ │ │ ├── TestOptions.cxx │ │ │ │ │ ├── TestOptions.icproj │ │ │ │ │ ├── TestOptions.sln │ │ │ │ │ ├── TestOptions.vcproj │ │ │ │ │ └── test.ini │ │ │ │ │ ├── TestRTVec │ │ │ │ │ ├── TestRTVec.cxx │ │ │ │ │ ├── TestRTVec.icproj │ │ │ │ │ ├── TestRTVec.sln │ │ │ │ │ ├── TestRTVec.vcproj │ │ │ │ │ └── test_aligned_and_unaligned.cxx │ │ │ │ │ ├── TestRays │ │ │ │ │ ├── TestRays.cxx │ │ │ │ │ ├── TestRays.icproj │ │ │ │ │ ├── TestRays.sln │ │ │ │ │ └── TestRays.vcproj │ │ │ │ │ ├── api_newmesh │ │ │ │ │ └── newmesh.cxx │ │ │ │ │ └── api_vertex_conversion │ │ │ │ │ └── vertex_conversion.cxx │ │ │ ├── Testing │ │ │ │ ├── testglut.cxx │ │ │ │ └── testpbo.cxx │ │ │ ├── Utils │ │ │ │ ├── glut-win32 │ │ │ │ │ ├── GL │ │ │ │ │ │ └── glut.h │ │ │ │ │ ├── README-win32.txt │ │ │ │ │ ├── glext_win.h │ │ │ │ │ ├── glut.def │ │ │ │ │ ├── glut32.dll │ │ │ │ │ └── glut32.lib │ │ │ │ └── pthread-win32 │ │ │ │ │ ├── include │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── sched.h │ │ │ │ │ └── semaphore.h │ │ │ │ │ └── lib │ │ │ │ │ ├── pthreadVC2.dll │ │ │ │ │ ├── pthreadVC2.lib │ │ │ │ │ ├── pthreadVCE2.dll │ │ │ │ │ ├── pthreadVCE2.lib │ │ │ │ │ ├── pthreadVSE2.dll │ │ │ │ │ └── pthreadVSE2.lib │ │ │ ├── configure │ │ │ ├── doc │ │ │ │ ├── api_layers.dox │ │ │ │ ├── apinotes.dox │ │ │ │ ├── building.dox │ │ │ │ ├── building_using_and_calling.dox │ │ │ │ ├── data_arrays.dox │ │ │ │ ├── data_sharing.dox │ │ │ │ ├── demo_code_snippets │ │ │ │ │ └── fasttransfers.cpp │ │ │ │ ├── driver_device_app.dox │ │ │ │ ├── example_new_mesh.dox │ │ │ │ ├── examples.dox │ │ │ │ ├── glossary.dox │ │ │ │ ├── index.dox │ │ │ │ └── node_ownership.dox │ │ │ ├── fullmanual.doxyfile │ │ │ ├── rtview.icproj │ │ │ ├── rtview.sln │ │ │ ├── rtview.vcproj │ │ │ └── shortmanual.doxyfile │ │ └── version │ ├── swaptions │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc-tbb.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── COPYRIGHT │ │ │ ├── CumNormalInv.cpp │ │ │ ├── HJM.cpp │ │ │ ├── HJM.h │ │ │ ├── HJM_Securities.cpp │ │ │ ├── HJM_Securities.h │ │ │ ├── HJM_SimPath_Forward_Blocking.cpp │ │ │ ├── HJM_Swaption_Blocking.cpp │ │ │ ├── HJM_type.h │ │ │ ├── Makefile │ │ │ ├── MaxFunction.cpp │ │ │ ├── RanUnif.cpp │ │ │ ├── icdf.cpp │ │ │ ├── nr_routines.c │ │ │ ├── nr_routines.h │ │ │ └── resource.h │ │ └── version │ ├── vips │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── acinclude.m4 │ │ │ ├── aclocal.m4 │ │ │ ├── benchmark │ │ │ │ ├── README │ │ │ │ ├── benchmarkn.sh │ │ │ │ └── sample2.v │ │ │ ├── bootstrap.sh │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── depcomp │ │ │ ├── doc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── html │ │ │ │ │ ├── figs │ │ │ │ │ │ ├── arch.png │ │ │ │ │ │ └── interconvert.png │ │ │ │ │ ├── vipsmanual.css │ │ │ │ │ ├── vipsmanual.html │ │ │ │ │ ├── vipsmanualch1.html │ │ │ │ │ ├── vipsmanualch2.html │ │ │ │ │ ├── vipsmanualch3.html │ │ │ │ │ ├── vipsmanualch4.html │ │ │ │ │ ├── vipsmanualli1.html │ │ │ │ │ ├── vipsmanualli2.html │ │ │ │ │ ├── vipsmanualli3.html │ │ │ │ │ ├── vipsmanualse1.html │ │ │ │ │ ├── vipsmanualse10.html │ │ │ │ │ ├── vipsmanualse11.html │ │ │ │ │ ├── vipsmanualse12.html │ │ │ │ │ ├── vipsmanualse13.html │ │ │ │ │ ├── vipsmanualse14.html │ │ │ │ │ ├── vipsmanualse15.html │ │ │ │ │ ├── vipsmanualse16.html │ │ │ │ │ ├── vipsmanualse17.html │ │ │ │ │ ├── vipsmanualse18.html │ │ │ │ │ ├── vipsmanualse2.html │ │ │ │ │ ├── vipsmanualse3.html │ │ │ │ │ ├── vipsmanualse4.html │ │ │ │ │ ├── vipsmanualse5.html │ │ │ │ │ ├── vipsmanualse6.html │ │ │ │ │ ├── vipsmanualse7.html │ │ │ │ │ ├── vipsmanualse8.html │ │ │ │ │ └── vipsmanualse9.html │ │ │ │ ├── pdf │ │ │ │ │ └── vipsmanual.pdf │ │ │ │ ├── reference │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── html │ │ │ │ │ │ ├── VipsFormat.html │ │ │ │ │ │ ├── VipsInterpolate.html │ │ │ │ │ │ ├── VipsThreadState.html │ │ │ │ │ │ ├── api-index-full.html │ │ │ │ │ │ ├── ch01.html │ │ │ │ │ │ ├── ch02.html │ │ │ │ │ │ ├── ch03.html │ │ │ │ │ │ ├── ch04.html │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.sgml │ │ │ │ │ │ ├── interconvert.png │ │ │ │ │ │ ├── left.png │ │ │ │ │ │ ├── libvips-VipsArgument.html │ │ │ │ │ │ ├── libvips-arithmetic.html │ │ │ │ │ │ ├── libvips-boolean.html │ │ │ │ │ │ ├── libvips-buf.html │ │ │ │ │ │ ├── libvips-callback.html │ │ │ │ │ │ ├── libvips-check.html │ │ │ │ │ │ ├── libvips-cimg-funcs.html │ │ │ │ │ │ ├── libvips-colour.html │ │ │ │ │ │ ├── libvips-conversion.html │ │ │ │ │ │ ├── libvips-convolution.html │ │ │ │ │ │ ├── libvips-dispatch.html │ │ │ │ │ │ ├── libvips-error.html │ │ │ │ │ │ ├── libvips-freq-filt.html │ │ │ │ │ │ ├── libvips-generate.html │ │ │ │ │ │ ├── libvips-header.html │ │ │ │ │ │ ├── libvips-histograms-lut.html │ │ │ │ │ │ ├── libvips-image.html │ │ │ │ │ │ ├── libvips-inplace.html │ │ │ │ │ │ ├── libvips-mask.html │ │ │ │ │ │ ├── libvips-memory.html │ │ │ │ │ │ ├── libvips-meta.html │ │ │ │ │ │ ├── libvips-morphology.html │ │ │ │ │ │ ├── libvips-mosaicing.html │ │ │ │ │ │ ├── libvips-other.html │ │ │ │ │ │ ├── libvips-rect.html │ │ │ │ │ │ ├── libvips-region.html │ │ │ │ │ │ ├── libvips-relational.html │ │ │ │ │ │ ├── libvips-resample.html │ │ │ │ │ │ ├── libvips-semaphore.html │ │ │ │ │ │ ├── libvips-transform.html │ │ │ │ │ │ ├── libvips-type.html │ │ │ │ │ │ ├── libvips-util.html │ │ │ │ │ │ ├── libvips-version.html │ │ │ │ │ │ ├── libvips-video.html │ │ │ │ │ │ ├── libvips.devhelp │ │ │ │ │ │ ├── libvips.devhelp2 │ │ │ │ │ │ ├── object-tree.html │ │ │ │ │ │ ├── right.png │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── up.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── interconvert.png │ │ │ │ │ │ └── interconvert.svg │ │ │ │ │ ├── libvips-docs.sgml │ │ │ │ │ ├── libvips-docs.sgml.in │ │ │ │ │ ├── libvips-overrides.txt │ │ │ │ │ └── libvips-sections.txt │ │ │ │ └── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── applintro.tex │ │ │ │ │ ├── cppintro.tex │ │ │ │ │ ├── figs │ │ │ │ │ ├── arch.png │ │ │ │ │ ├── arch.svg │ │ │ │ │ ├── interconvert.png │ │ │ │ │ └── interconvert.svg │ │ │ │ │ ├── fileformat.tex │ │ │ │ │ ├── format.tex │ │ │ │ │ ├── fred │ │ │ │ │ ├── func.tex │ │ │ │ │ ├── html.cfg │ │ │ │ │ ├── interpolate.tex │ │ │ │ │ ├── iosys.tex │ │ │ │ │ ├── ipio.tex │ │ │ │ │ ├── mydefs.tex │ │ │ │ │ ├── object.tex │ │ │ │ │ ├── operintro.tex │ │ │ │ │ ├── packages.tex │ │ │ │ │ ├── pio.tex │ │ │ │ │ ├── refintro.tex │ │ │ │ │ ├── vdisplay.tex │ │ │ │ │ ├── verror.tex │ │ │ │ │ ├── vimage.tex │ │ │ │ │ ├── vipsmanual.4ct │ │ │ │ │ ├── vipsmanual.4tc │ │ │ │ │ ├── vipsmanual.aux │ │ │ │ │ ├── vipsmanual.css │ │ │ │ │ ├── vipsmanual.dvi │ │ │ │ │ ├── vipsmanual.html │ │ │ │ │ ├── vipsmanual.idv │ │ │ │ │ ├── vipsmanual.lg │ │ │ │ │ ├── vipsmanual.lof │ │ │ │ │ ├── vipsmanual.log │ │ │ │ │ ├── vipsmanual.lot │ │ │ │ │ ├── vipsmanual.pdf │ │ │ │ │ ├── vipsmanual.tex │ │ │ │ │ ├── vipsmanual.tmp │ │ │ │ │ ├── vipsmanual.toc │ │ │ │ │ ├── vipsmanual.xref │ │ │ │ │ ├── vipsmanual │ │ │ │ │ ├── figs │ │ │ │ │ │ ├── arch.png │ │ │ │ │ │ └── interconvert.png │ │ │ │ │ ├── vipsmanual.css │ │ │ │ │ ├── vipsmanual.html │ │ │ │ │ ├── vipsmanualch1.html │ │ │ │ │ ├── vipsmanualch2.html │ │ │ │ │ ├── vipsmanualch3.html │ │ │ │ │ ├── vipsmanualch4.html │ │ │ │ │ ├── vipsmanualli1.html │ │ │ │ │ ├── vipsmanualli2.html │ │ │ │ │ ├── vipsmanualli3.html │ │ │ │ │ ├── vipsmanualse1.html │ │ │ │ │ ├── vipsmanualse10.html │ │ │ │ │ ├── vipsmanualse11.html │ │ │ │ │ ├── vipsmanualse12.html │ │ │ │ │ ├── vipsmanualse13.html │ │ │ │ │ ├── vipsmanualse14.html │ │ │ │ │ ├── vipsmanualse15.html │ │ │ │ │ ├── vipsmanualse16.html │ │ │ │ │ ├── vipsmanualse17.html │ │ │ │ │ ├── vipsmanualse18.html │ │ │ │ │ ├── vipsmanualse2.html │ │ │ │ │ ├── vipsmanualse3.html │ │ │ │ │ ├── vipsmanualse4.html │ │ │ │ │ ├── vipsmanualse5.html │ │ │ │ │ ├── vipsmanualse6.html │ │ │ │ │ ├── vipsmanualse7.html │ │ │ │ │ ├── vipsmanualse8.html │ │ │ │ │ └── vipsmanualse9.html │ │ │ │ │ ├── vipsmanualch1.html │ │ │ │ │ ├── vipsmanualch2.html │ │ │ │ │ ├── vipsmanualch3.html │ │ │ │ │ ├── vipsmanualch4.html │ │ │ │ │ ├── vipsmanualli1.html │ │ │ │ │ ├── vipsmanualli2.html │ │ │ │ │ ├── vipsmanualli3.html │ │ │ │ │ ├── vipsmanualse1.html │ │ │ │ │ ├── vipsmanualse10.html │ │ │ │ │ ├── vipsmanualse11.html │ │ │ │ │ ├── vipsmanualse12.html │ │ │ │ │ ├── vipsmanualse13.html │ │ │ │ │ ├── vipsmanualse14.html │ │ │ │ │ ├── vipsmanualse15.html │ │ │ │ │ ├── vipsmanualse16.html │ │ │ │ │ ├── vipsmanualse17.html │ │ │ │ │ ├── vipsmanualse18.html │ │ │ │ │ ├── vipsmanualse2.html │ │ │ │ │ ├── vipsmanualse3.html │ │ │ │ │ ├── vipsmanualse4.html │ │ │ │ │ ├── vipsmanualse5.html │ │ │ │ │ ├── vipsmanualse6.html │ │ │ │ │ ├── vipsmanualse7.html │ │ │ │ │ ├── vipsmanualse8.html │ │ │ │ │ ├── vipsmanualse9.html │ │ │ │ │ ├── vmask.tex │ │ │ │ │ └── wio.tex │ │ │ ├── gtk-doc.make │ │ │ ├── install-sh │ │ │ ├── libvips │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── acquire │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── im_clamp.c │ │ │ │ ├── arithmetic │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── arith_dispatch.c │ │ │ │ │ ├── im_abs.c │ │ │ │ │ ├── im_add.c │ │ │ │ │ ├── im_avg.c │ │ │ │ │ ├── im_bandmean.c │ │ │ │ │ ├── im_cross_phase.c │ │ │ │ │ ├── im_deviate.c │ │ │ │ │ ├── im_divide.c │ │ │ │ │ ├── im_invert.c │ │ │ │ │ ├── im_linreg.c │ │ │ │ │ ├── im_lintra.c │ │ │ │ │ ├── im_maxpos.c │ │ │ │ │ ├── im_maxpos_avg.c │ │ │ │ │ ├── im_maxpos_vec.c │ │ │ │ │ ├── im_measure.c │ │ │ │ │ ├── im_minpos.c │ │ │ │ │ ├── im_multiply.c │ │ │ │ │ ├── im_point_bilinear.c │ │ │ │ │ ├── im_recomb.c │ │ │ │ │ ├── im_remainder.c │ │ │ │ │ ├── im_sign.c │ │ │ │ │ ├── im_stats.c │ │ │ │ │ ├── im_subtract.c │ │ │ │ │ ├── math.c │ │ │ │ │ ├── power.c │ │ │ │ │ └── round.c │ │ │ │ ├── boolean │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bool_dispatch.c │ │ │ │ │ └── boolean.c │ │ │ │ ├── cimg │ │ │ │ │ ├── CImg.h │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── cimg.cpp │ │ │ │ │ └── cimg_dispatch.c │ │ │ │ ├── colour │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── colour.c │ │ │ │ │ ├── colour_dispatch.c │ │ │ │ │ ├── derived.c │ │ │ │ │ ├── disp.c │ │ │ │ │ ├── im_LCh2Lab.c │ │ │ │ │ ├── im_LCh2UCS.c │ │ │ │ │ ├── im_Lab2LCh.c │ │ │ │ │ ├── im_Lab2LabQ.c │ │ │ │ │ ├── im_Lab2LabS.c │ │ │ │ │ ├── im_Lab2XYZ.c │ │ │ │ │ ├── im_LabQ2Lab.c │ │ │ │ │ ├── im_LabQ2LabS.c │ │ │ │ │ ├── im_LabQ2disp.c │ │ │ │ │ ├── im_LabS2Lab.c │ │ │ │ │ ├── im_LabS2LabQ.c │ │ │ │ │ ├── im_UCS2LCh.c │ │ │ │ │ ├── im_XYZ2Lab.c │ │ │ │ │ ├── im_XYZ2Yxy.c │ │ │ │ │ ├── im_XYZ2disp.c │ │ │ │ │ ├── im_Yxy2XYZ.c │ │ │ │ │ ├── im_dE00_fromLab.c │ │ │ │ │ ├── im_dECMC_fromLab.c │ │ │ │ │ ├── im_dE_fromLab.c │ │ │ │ │ ├── im_disp2XYZ.c │ │ │ │ │ ├── im_float2rad.c │ │ │ │ │ ├── im_icc_transform.c │ │ │ │ │ ├── im_lab_morph.c │ │ │ │ │ └── im_rad2float.c │ │ │ │ ├── conversion │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── conver_dispatch.c │ │ │ │ │ ├── im_black.c │ │ │ │ │ ├── im_c2amph.c │ │ │ │ │ ├── im_c2imag.c │ │ │ │ │ ├── im_c2real.c │ │ │ │ │ ├── im_c2rect.c │ │ │ │ │ ├── im_clip2fmt.c │ │ │ │ │ ├── im_copy.c │ │ │ │ │ ├── im_copy_file.c │ │ │ │ │ ├── im_embed.c │ │ │ │ │ ├── im_extract.c │ │ │ │ │ ├── im_falsecolour.c │ │ │ │ │ ├── im_fliphor.c │ │ │ │ │ ├── im_flipver.c │ │ │ │ │ ├── im_gaussnoise.c │ │ │ │ │ ├── im_gbandjoin.c │ │ │ │ │ ├── im_grid.c │ │ │ │ │ ├── im_insert.c │ │ │ │ │ ├── im_lrjoin.c │ │ │ │ │ ├── im_mask2vips.c │ │ │ │ │ ├── im_msb.c │ │ │ │ │ ├── im_replicate.c │ │ │ │ │ ├── im_ri2c.c │ │ │ │ │ ├── im_rot180.c │ │ │ │ │ ├── im_rot270.c │ │ │ │ │ ├── im_rot90.c │ │ │ │ │ ├── im_scale.c │ │ │ │ │ ├── im_scaleps.c │ │ │ │ │ ├── im_subsample.c │ │ │ │ │ ├── im_system.c │ │ │ │ │ ├── im_system_image.c │ │ │ │ │ ├── im_tbjoin.c │ │ │ │ │ ├── im_text.c │ │ │ │ │ ├── im_vips2mask.c │ │ │ │ │ ├── im_wrap.c │ │ │ │ │ └── im_zoom.c │ │ │ │ ├── convolution │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── convol_dispatch.c │ │ │ │ │ ├── im_addgnoise.c │ │ │ │ │ ├── im_compass.c │ │ │ │ │ ├── im_contrast_surface.c │ │ │ │ │ ├── im_conv.c │ │ │ │ │ ├── im_conv_f.c │ │ │ │ │ ├── im_convsep.c │ │ │ │ │ ├── im_convsep_f.c │ │ │ │ │ ├── im_fastcor.c │ │ │ │ │ ├── im_gradcor.c │ │ │ │ │ ├── im_sharpen.c │ │ │ │ │ └── im_spcor.c │ │ │ │ ├── deprecated │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── deprecated_dispatch.c │ │ │ │ │ ├── im_bernd.c │ │ │ │ │ ├── im_cmulnorm.c │ │ │ │ │ ├── im_convsub.c │ │ │ │ │ ├── im_debugim.c │ │ │ │ │ ├── im_fav4.c │ │ │ │ │ ├── im_gadd.c │ │ │ │ │ ├── im_gaddim.c │ │ │ │ │ ├── im_gfadd.c │ │ │ │ │ ├── im_line.c │ │ │ │ │ ├── im_litecor.c │ │ │ │ │ ├── im_print.c │ │ │ │ │ ├── im_printlines.c │ │ │ │ │ ├── im_resize_linear.c │ │ │ │ │ ├── im_setbox.c │ │ │ │ │ ├── im_slice.c │ │ │ │ │ ├── im_thresh.c │ │ │ │ │ └── rename.c │ │ │ │ ├── dummy.c │ │ │ │ ├── dummy2.cc │ │ │ │ ├── format │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── dbh.h │ │ │ │ │ ├── format.c │ │ │ │ │ ├── format_dispatch.c │ │ │ │ │ ├── im_analyze2vips.c │ │ │ │ │ ├── im_csv2vips.c │ │ │ │ │ ├── im_exr2vips.c │ │ │ │ │ ├── im_jpeg2vips.c │ │ │ │ │ ├── im_magick2vips.c │ │ │ │ │ ├── im_png2vips.c │ │ │ │ │ ├── im_ppm2vips.c │ │ │ │ │ ├── im_raw2vips.c │ │ │ │ │ ├── im_tiff2vips.c │ │ │ │ │ ├── im_tile_cache.c │ │ │ │ │ ├── im_vips2csv.c │ │ │ │ │ ├── im_vips2jpeg.c │ │ │ │ │ ├── im_vips2png.c │ │ │ │ │ ├── im_vips2ppm.c │ │ │ │ │ ├── im_vips2raw.c │ │ │ │ │ ├── im_vips2tiff.c │ │ │ │ │ ├── matlab.c │ │ │ │ │ └── radiance.c │ │ │ │ ├── freq_filt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── fft_sp.c │ │ │ │ │ ├── fmask4th.c │ │ │ │ │ ├── fmaskcir.c │ │ │ │ │ ├── freq_dispatch.c │ │ │ │ │ ├── im_disp_ps.c │ │ │ │ │ ├── im_fractsurf.c │ │ │ │ │ ├── im_freq_mask.c │ │ │ │ │ ├── im_freqflt.c │ │ │ │ │ ├── im_fwfft.c │ │ │ │ │ ├── im_invfft.c │ │ │ │ │ ├── im_invfftr.c │ │ │ │ │ ├── im_phasecor_fft.c │ │ │ │ │ └── im_rotquad.c │ │ │ │ ├── histograms_lut │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── hist_dispatch.c │ │ │ │ │ ├── im_buildlut.c │ │ │ │ │ ├── im_gammacorrect.c │ │ │ │ │ ├── im_heq.c │ │ │ │ │ ├── im_hist.c │ │ │ │ │ ├── im_histeq.c │ │ │ │ │ ├── im_histgr.c │ │ │ │ │ ├── im_histindexed.c │ │ │ │ │ ├── im_histnD.c │ │ │ │ │ ├── im_histplot.c │ │ │ │ │ ├── im_histspec.c │ │ │ │ │ ├── im_hsp.c │ │ │ │ │ ├── im_identity.c │ │ │ │ │ ├── im_invertlut.c │ │ │ │ │ ├── im_lhisteq.c │ │ │ │ │ ├── im_maplut.c │ │ │ │ │ ├── im_mpercent.c │ │ │ │ │ ├── im_project.c │ │ │ │ │ ├── im_stdif.c │ │ │ │ │ └── tone.c │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── vips │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── almostdeprecated.h │ │ │ │ │ │ ├── arithmetic.h │ │ │ │ │ │ ├── boolean.h │ │ │ │ │ │ ├── buf.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ ├── cimg_funcs.h │ │ │ │ │ │ ├── colour.h │ │ │ │ │ │ ├── conversion.h │ │ │ │ │ │ ├── convolution.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── deprecated.h │ │ │ │ │ │ ├── disp.h │ │ │ │ │ │ ├── dispatch.h │ │ │ │ │ │ ├── error.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── freq_filt.h │ │ │ │ │ │ ├── generate.h │ │ │ │ │ │ ├── header.h │ │ │ │ │ │ ├── histograms_lut.h │ │ │ │ │ │ ├── image.h │ │ │ │ │ │ ├── inplace.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── interpolate.h │ │ │ │ │ │ ├── intl.h │ │ │ │ │ │ ├── mask.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── meta.h │ │ │ │ │ │ ├── morphology.h │ │ │ │ │ │ ├── mosaicing.h │ │ │ │ │ │ ├── object.h │ │ │ │ │ │ ├── other.h │ │ │ │ │ │ ├── private.h │ │ │ │ │ │ ├── rect.h │ │ │ │ │ │ ├── region.h │ │ │ │ │ │ ├── relational.h │ │ │ │ │ │ ├── resample.h │ │ │ │ │ │ ├── semaphore.h │ │ │ │ │ │ ├── struct.h │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ ├── threadpool.h │ │ │ │ │ │ ├── transform.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ ├── version.h.in │ │ │ │ │ │ ├── video.h │ │ │ │ │ │ └── vips.h │ │ │ │ ├── inplace │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── flood.c │ │ │ │ │ ├── im_circle.c │ │ │ │ │ ├── im_insertplace.c │ │ │ │ │ ├── im_paintrect.c │ │ │ │ │ ├── im_plotmask.c │ │ │ │ │ ├── inplace_dispatch.c │ │ │ │ │ ├── line_draw.c │ │ │ │ │ ├── plot_point.c │ │ │ │ │ └── smudge_area.c │ │ │ │ ├── iofuncs │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── buf.c │ │ │ │ │ ├── buffer.c │ │ │ │ │ ├── callback.c │ │ │ │ │ ├── check.c │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── dispatch_types.c │ │ │ │ │ ├── error.c │ │ │ │ │ ├── header.c │ │ │ │ │ ├── im_binfile.c │ │ │ │ │ ├── im_close.c │ │ │ │ │ ├── im_cp_desc.c │ │ │ │ │ ├── im_demand_hint.c │ │ │ │ │ ├── im_generate.c │ │ │ │ │ ├── im_guess_prefix.c │ │ │ │ │ ├── im_histlin.c │ │ │ │ │ ├── im_image.c │ │ │ │ │ ├── im_init_world.c │ │ │ │ │ ├── im_mapfile.c │ │ │ │ │ ├── im_open.c │ │ │ │ │ ├── im_open_vips.c │ │ │ │ │ ├── im_partial.c │ │ │ │ │ ├── im_prepare.c │ │ │ │ │ ├── im_setbuf.c │ │ │ │ │ ├── im_setupout.c │ │ │ │ │ ├── im_unmapfile.c │ │ │ │ │ ├── im_wrapmany.c │ │ │ │ │ ├── im_writeline.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── meta.c │ │ │ │ │ ├── object.c │ │ │ │ │ ├── package.c │ │ │ │ │ ├── rect.c │ │ │ │ │ ├── region.c │ │ │ │ │ ├── semaphore.c │ │ │ │ │ ├── sink.c │ │ │ │ │ ├── sinkdisc.c │ │ │ │ │ ├── sinkmemory.c │ │ │ │ │ ├── sinkscreen.c │ │ │ │ │ ├── threadpool.c │ │ │ │ │ ├── time.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── window.c │ │ │ │ ├── mask │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── im_gaussmasks.c │ │ │ │ │ ├── im_logmasks.c │ │ │ │ │ ├── im_matcat.c │ │ │ │ │ ├── im_matinv.c │ │ │ │ │ ├── im_matmul.c │ │ │ │ │ ├── im_mattrn.c │ │ │ │ │ ├── mask_dispatch.c │ │ │ │ │ ├── matalloc.c │ │ │ │ │ ├── rotmask.c │ │ │ │ │ └── rw_mask.c │ │ │ │ ├── morphology │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── im_cntlines.c │ │ │ │ │ ├── im_dilate.c │ │ │ │ │ ├── im_erode.c │ │ │ │ │ ├── im_label_regions.c │ │ │ │ │ ├── im_profile.c │ │ │ │ │ ├── im_rank.c │ │ │ │ │ ├── im_rank_image.c │ │ │ │ │ ├── im_zerox.c │ │ │ │ │ └── morph_dispatch.c │ │ │ │ ├── mosaicing │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── global_balance.c │ │ │ │ │ ├── global_balance.h │ │ │ │ │ ├── im_align_bands.c │ │ │ │ │ ├── im_avgdxdy.c │ │ │ │ │ ├── im_chkpair.c │ │ │ │ │ ├── im_clinear.c │ │ │ │ │ ├── im_improve.c │ │ │ │ │ ├── im_initialize.c │ │ │ │ │ ├── im_lrcalcon.c │ │ │ │ │ ├── im_lrmerge.c │ │ │ │ │ ├── im_lrmosaic.c │ │ │ │ │ ├── im_maxpos_subpel.c │ │ │ │ │ ├── im_remosaic.c │ │ │ │ │ ├── im_tbcalcon.c │ │ │ │ │ ├── im_tbmerge.c │ │ │ │ │ ├── im_tbmosaic.c │ │ │ │ │ ├── match.c │ │ │ │ │ ├── merge.h │ │ │ │ │ ├── mosaic.h │ │ │ │ │ ├── mosaic1.c │ │ │ │ │ └── mosaicing_dispatch.c │ │ │ │ ├── other │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── cooc_funcs.c │ │ │ │ │ ├── glds_funcs.c │ │ │ │ │ ├── im_benchmark.c │ │ │ │ │ ├── im_dif_std.c │ │ │ │ │ ├── im_eye.c │ │ │ │ │ ├── im_grey.c │ │ │ │ │ ├── im_make_xy.c │ │ │ │ │ ├── im_meanstd.c │ │ │ │ │ ├── im_simcontr.c │ │ │ │ │ ├── im_sines.c │ │ │ │ │ ├── im_spatres.c │ │ │ │ │ ├── im_zone.c │ │ │ │ │ └── other_dispatch.c │ │ │ │ ├── relational │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── im_blend.c │ │ │ │ │ ├── im_ifthenelse.c │ │ │ │ │ ├── relational.c │ │ │ │ │ └── relational_dispatch.c │ │ │ │ ├── resample │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bicubic.cpp │ │ │ │ │ ├── im_affine.c │ │ │ │ │ ├── im_rightshift_size.c │ │ │ │ │ ├── im_shrink.c │ │ │ │ │ ├── im_stretch3.c │ │ │ │ │ ├── interpolate.c │ │ │ │ │ ├── lbb.cpp │ │ │ │ │ ├── nohalo.cpp │ │ │ │ │ ├── resample_dispatch.c │ │ │ │ │ ├── templates.h │ │ │ │ │ ├── transform.c │ │ │ │ │ └── vsqbs.cpp │ │ │ │ └── video │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── im_video_test.c │ │ │ │ │ ├── im_video_v4l1.c │ │ │ │ │ └── video_dispatch.c │ │ │ ├── libvipsCC │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── VDisplay.cc │ │ │ │ ├── VError.cc │ │ │ │ ├── VImage.cc │ │ │ │ ├── VMask.cc │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── vips │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── VDisplay.h │ │ │ │ │ │ ├── VError.h │ │ │ │ │ │ ├── VImage.h │ │ │ │ │ │ ├── VMask.h │ │ │ │ │ │ ├── vips │ │ │ │ │ │ ├── vipsc++.h │ │ │ │ │ │ └── vipscpp.h │ │ │ │ └── vipsc++.cc │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ ├── gtk-doc.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── man │ │ │ │ ├── IM_ARRAY.3 │ │ │ │ ├── IM_IMAGE_ADDR.3 │ │ │ │ ├── IM_IMAGE_N_ELEMENTS.3 │ │ │ │ ├── IM_IMAGE_SIZEOF_ELEMENT.3 │ │ │ │ ├── IM_IMAGE_SIZEOF_LINE.3 │ │ │ │ ├── IM_IMAGE_SIZEOF_PEL.3 │ │ │ │ ├── IM_MACROS.3 │ │ │ │ ├── IM_NEW.3 │ │ │ │ ├── IM_NUMBER.3 │ │ │ │ ├── IM_RECT_BOTTOM.3 │ │ │ │ ├── IM_RECT_HCENTRE.3 │ │ │ │ ├── IM_RECT_RIGHT.3 │ │ │ │ ├── IM_RECT_VCENTRE.3 │ │ │ │ ├── IM_REGION_ADDR.3 │ │ │ │ ├── IM_REGION_LSKIP.3 │ │ │ │ ├── IM_REGION_N_ELEMENTS.3 │ │ │ │ ├── IM_REGION_SIZEOF_LINE.3 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── VipsFormat.3 │ │ │ │ ├── VipsInterpolate.3 │ │ │ │ ├── VipsObject.3 │ │ │ │ ├── batch_crop.1 │ │ │ │ ├── batch_image_convert.1 │ │ │ │ ├── batch_rubber_sheet.1 │ │ │ │ ├── binfile.1 │ │ │ │ ├── cooc.1 │ │ │ │ ├── cooc_features.1 │ │ │ │ ├── debugim.1 │ │ │ │ ├── edvips.1 │ │ │ │ ├── error_exit.3 │ │ │ │ ├── glds.1 │ │ │ │ ├── glds_features.1 │ │ │ │ ├── header.1 │ │ │ │ ├── im_BandFmt2char.3 │ │ │ │ ├── im_Coding2char.3 │ │ │ │ ├── im_Compression2char.3 │ │ │ │ ├── im_LCh2Lab.3 │ │ │ │ ├── im_LCh2UCS.3 │ │ │ │ ├── im_Lab2LCh.3 │ │ │ │ ├── im_Lab2LabQ.3 │ │ │ │ ├── im_Lab2LabS.3 │ │ │ │ ├── im_Lab2UCS.3 │ │ │ │ ├── im_Lab2XYZ.3 │ │ │ │ ├── im_Lab2disp.3 │ │ │ │ ├── im_LabQ2Lab.3 │ │ │ │ ├── im_LabQ2LabS.3 │ │ │ │ ├── im_LabQ2XYZ.3 │ │ │ │ ├── im_LabQ2disp.3 │ │ │ │ ├── im_LabQ2disp_build_table.3 │ │ │ │ ├── im_LabQ2disp_table.3 │ │ │ │ ├── im_LabS2Lab.3 │ │ │ │ ├── im_LabS2LabQ.3 │ │ │ │ ├── im_Type2char.3 │ │ │ │ ├── im_UCS2LCh.3 │ │ │ │ ├── im_UCS2Lab.3 │ │ │ │ ├── im_UCS2XYZ.3 │ │ │ │ ├── im_XYZ2Lab.3 │ │ │ │ ├── im_XYZ2UCS.3 │ │ │ │ ├── im_XYZ2Yxy.3 │ │ │ │ ├── im_XYZ2disp.3 │ │ │ │ ├── im_XYZ2sRGB.3 │ │ │ │ ├── im_Yxy2XYZ.3 │ │ │ │ ├── im_abs.3 │ │ │ │ ├── im_acostra.3 │ │ │ │ ├── im_add.3 │ │ │ │ ├── im_add_close_callback.3 │ │ │ │ ├── im_add_eval_callback.3 │ │ │ │ ├── im_add_evalend_callback.3 │ │ │ │ ├── im_add_evalstart_callback.3 │ │ │ │ ├── im_add_invalidate_callback.3 │ │ │ │ ├── im_add_preclose_callback.3 │ │ │ │ ├── im_addgnoise.3 │ │ │ │ ├── im_affine.3 │ │ │ │ ├── im_affinei.3 │ │ │ │ ├── im_affinei_all.3 │ │ │ │ ├── im_allocate_input_array.3 │ │ │ │ ├── im_amiMSBfirst.3 │ │ │ │ ├── im_analyze2vips.3 │ │ │ │ ├── im_and_vec.3 │ │ │ │ ├── im_andconst.3 │ │ │ │ ├── im_andimage.3 │ │ │ │ ├── im_asintra.3 │ │ │ │ ├── im_atantra.3 │ │ │ │ ├── im_avg.3 │ │ │ │ ├── im_bandjoin.3 │ │ │ │ ├── im_bandmean.3 │ │ │ │ ├── im_benchmark.3 │ │ │ │ ├── im_binfile.3 │ │ │ │ ├── im_bits_of_fmt.3 │ │ │ │ ├── im_black.3 │ │ │ │ ├── im_blend.3 │ │ │ │ ├── im_buildlut.3 │ │ │ │ ├── im_c2amph.3 │ │ │ │ ├── im_c2imag.3 │ │ │ │ ├── im_c2ps.3 │ │ │ │ ├── im_c2real.3 │ │ │ │ ├── im_c2rect.3 │ │ │ │ ├── im_cache.3 │ │ │ │ ├── im_ceil.3 │ │ │ │ ├── im_char2BandFmt.3 │ │ │ │ ├── im_char2Coding.3 │ │ │ │ ├── im_char2Compression.3 │ │ │ │ ├── im_char2Type.3 │ │ │ │ ├── im_circle.3 │ │ │ │ ├── im_clip.3 │ │ │ │ ├── im_clip2c.3 │ │ │ │ ├── im_clip2cm.3 │ │ │ │ ├── im_clip2d.3 │ │ │ │ ├── im_clip2dcm.3 │ │ │ │ ├── im_clip2f.3 │ │ │ │ ├── im_clip2fmt.3 │ │ │ │ ├── im_clip2i.3 │ │ │ │ ├── im_clip2s.3 │ │ │ │ ├── im_clip2ui.3 │ │ │ │ ├── im_clip2us.3 │ │ │ │ ├── im_close.3 │ │ │ │ ├── im_cmulnorm.3 │ │ │ │ ├── im_cntlines.3 │ │ │ │ ├── im_col_C2Cucs.3 │ │ │ │ ├── im_col_Ch2ab.3 │ │ │ │ ├── im_col_Ch2hucs.3 │ │ │ │ ├── im_col_Chucs2h.3 │ │ │ │ ├── im_col_Cucs2C.3 │ │ │ │ ├── im_col_L2Lucs.3 │ │ │ │ ├── im_col_Lab2XYZ.3 │ │ │ │ ├── im_col_Lucs2L.3 │ │ │ │ ├── im_col_XYZ2Lab.3 │ │ │ │ ├── im_col_XYZ2rgb.3 │ │ │ │ ├── im_col_ab2Ch.3 │ │ │ │ ├── im_col_dECMC.3 │ │ │ │ ├── im_col_display.3 │ │ │ │ ├── im_col_make_tables_RGB.3 │ │ │ │ ├── im_col_make_tables_UCS.3 │ │ │ │ ├── im_col_pythagoras.3 │ │ │ │ ├── im_col_rgb2XYZ.3 │ │ │ │ ├── im_compass.3 │ │ │ │ ├── im_concurrency_get.3 │ │ │ │ ├── im_concurrency_set.3 │ │ │ │ ├── im_contrast_surface.3 │ │ │ │ ├── im_contrast_surface_raw.3 │ │ │ │ ├── im_conv.3 │ │ │ │ ├── im_conv_raw.3 │ │ │ │ ├── im_convf.3 │ │ │ │ ├── im_convf_raw.3 │ │ │ │ ├── im_convsep.3 │ │ │ │ ├── im_convsep_raw.3 │ │ │ │ ├── im_convsepf.3 │ │ │ │ ├── im_convsepf_raw.3 │ │ │ │ ├── im_convsub.3 │ │ │ │ ├── im_cooc_asm.3 │ │ │ │ ├── im_cooc_contrast.3 │ │ │ │ ├── im_cooc_correlation.3 │ │ │ │ ├── im_cooc_entropy.3 │ │ │ │ ├── im_cooc_matrix.3 │ │ │ │ ├── im_copy.3 │ │ │ │ ├── im_copy_from.3 │ │ │ │ ├── im_copy_morph.3 │ │ │ │ ├── im_copy_set.3 │ │ │ │ ├── im_copy_set_meta.3 │ │ │ │ ├── im_copy_swap.3 │ │ │ │ ├── im_correl.3 │ │ │ │ ├── im_costra.3 │ │ │ │ ├── im_cp_desc.3 │ │ │ │ ├── im_cp_desc_array.3 │ │ │ │ ├── im_cp_descv.3 │ │ │ │ ├── im_create_dmask.3 │ │ │ │ ├── im_create_fmask.3 │ │ │ │ ├── im_create_imask.3 │ │ │ │ ├── im_csv2vips.3 │ │ │ │ ├── im_dE00_fromLab.3 │ │ │ │ ├── im_dECMC_fromLab.3 │ │ │ │ ├── im_dECMC_fromdisp.3 │ │ │ │ ├── im_dE_fromLab.3 │ │ │ │ ├── im_dE_fromXYZ.3 │ │ │ │ ├── im_dE_fromdisp.3 │ │ │ │ ├── im_debugim.3 │ │ │ │ ├── im_demand_hint.3 │ │ │ │ ├── im_demand_hint_array.3 │ │ │ │ ├── im_deviate.3 │ │ │ │ ├── im_diag.3 │ │ │ │ ├── im_dif_std.3 │ │ │ │ ├── im_dilate.3 │ │ │ │ ├── im_dilate_raw.3 │ │ │ │ ├── im_disp2Lab.3 │ │ │ │ ├── im_disp2XYZ.3 │ │ │ │ ├── im_disp_ps.3 │ │ │ │ ├── im_divide.3 │ │ │ │ ├── im_dup_dmask.3 │ │ │ │ ├── im_dup_imask.3 │ │ │ │ ├── im_embed.3 │ │ │ │ ├── im_eor_vec.3 │ │ │ │ ├── im_eorconst.3 │ │ │ │ ├── im_eorimage.3 │ │ │ │ ├── im_equal.3 │ │ │ │ ├── im_equal_vec.3 │ │ │ │ ├── im_equalconst.3 │ │ │ │ ├── im_erode.3 │ │ │ │ ├── im_erode_raw.3 │ │ │ │ ├── im_error.3 │ │ │ │ ├── im_error_buffer.3 │ │ │ │ ├── im_error_clear.3 │ │ │ │ ├── im_exp10tra.3 │ │ │ │ ├── im_expntra.3 │ │ │ │ ├── im_expntra_vec.3 │ │ │ │ ├── im_exptra.3 │ │ │ │ ├── im_exr2vips.3 │ │ │ │ ├── im_extract.3 │ │ │ │ ├── im_extract_area.3 │ │ │ │ ├── im_extract_areabands.3 │ │ │ │ ├── im_extract_bands.3 │ │ │ │ ├── im_eye.3 │ │ │ │ ├── im_falsecolour.3 │ │ │ │ ├── im_fastcor.3 │ │ │ │ ├── im_fastline.3 │ │ │ │ ├── im_fastlineuser.3 │ │ │ │ ├── im_fav4.3 │ │ │ │ ├── im_feye.3 │ │ │ │ ├── im_fgrey.3 │ │ │ │ ├── im_fliphor.3 │ │ │ │ ├── im_flipver.3 │ │ │ │ ├── im_float2rad.3 │ │ │ │ ├── im_flood.3 │ │ │ │ ├── im_flood_blob.3 │ │ │ │ ├── im_floor.3 │ │ │ │ ├── im_flt_imag_freq.3 │ │ │ │ ├── im_fractsurf.3 │ │ │ │ ├── im_free.3 │ │ │ │ ├── im_free_dmask.3 │ │ │ │ ├── im_free_imask.3 │ │ │ │ ├── im_freqflt.3 │ │ │ │ ├── im_fwfft.3 │ │ │ │ ├── im_fzone.3 │ │ │ │ ├── im_gadd.3 │ │ │ │ ├── im_gaddim.3 │ │ │ │ ├── im_gammacorrect.3 │ │ │ │ ├── im_gauss_dmask.3 │ │ │ │ ├── im_gauss_imask.3 │ │ │ │ ├── im_gauss_imask_sep.3 │ │ │ │ ├── im_gaussnoise.3 │ │ │ │ ├── im_gbandjoin.3 │ │ │ │ ├── im_generate.3 │ │ │ │ ├── im_get_option_group.3 │ │ │ │ ├── im_gfadd.3 │ │ │ │ ├── im_glds_asm.3 │ │ │ │ ├── im_glds_contrast.3 │ │ │ │ ├── im_glds_entropy.3 │ │ │ │ ├── im_glds_matrix.3 │ │ │ │ ├── im_glds_mean.3 │ │ │ │ ├── im_global_balance.3 │ │ │ │ ├── im_global_balance_float.3 │ │ │ │ ├── im_grad_x.3 │ │ │ │ ├── im_grad_y.3 │ │ │ │ ├── im_gradcor.3 │ │ │ │ ├── im_gradient.3 │ │ │ │ ├── im_grey.3 │ │ │ │ ├── im_grid.3 │ │ │ │ ├── im_guess_libdir.3 │ │ │ │ ├── im_guess_prefix.3 │ │ │ │ ├── im_header.3 │ │ │ │ ├── im_header_double.3 │ │ │ │ ├── im_header_get.3 │ │ │ │ ├── im_header_get_type.3 │ │ │ │ ├── im_header_int.3 │ │ │ │ ├── im_header_map.3 │ │ │ │ ├── im_header_string.3 │ │ │ │ ├── im_heq.3 │ │ │ │ ├── im_hist.3 │ │ │ │ ├── im_histcum.3 │ │ │ │ ├── im_histeq.3 │ │ │ │ ├── im_histgr.3 │ │ │ │ ├── im_histlin.3 │ │ │ │ ├── im_histnD.3 │ │ │ │ ├── im_histnorm.3 │ │ │ │ ├── im_history_get.3 │ │ │ │ ├── im_histplot.3 │ │ │ │ ├── im_histspec.3 │ │ │ │ ├── im_hsp.3 │ │ │ │ ├── im_icc_ac2rc.3 │ │ │ │ ├── im_icc_export.3 │ │ │ │ ├── im_icc_export_depth.3 │ │ │ │ ├── im_icc_import.3 │ │ │ │ ├── im_icc_import_embedded.3 │ │ │ │ ├── im_icc_present.3 │ │ │ │ ├── im_icc_transform.3 │ │ │ │ ├── im_identity.3 │ │ │ │ ├── im_identity_ushort.3 │ │ │ │ ├── im_ifthenelse.3 │ │ │ │ ├── im_image.3 │ │ │ │ ├── im_image_sanity.3 │ │ │ │ ├── im_incheck.3 │ │ │ │ ├── im_init.3 │ │ │ │ ├── im_init_world.3 │ │ │ │ ├── im_initdesc.3 │ │ │ │ ├── im_insert.3 │ │ │ │ ├── im_insertplace.3 │ │ │ │ ├── im_invalidate.3 │ │ │ │ ├── im_invert.3 │ │ │ │ ├── im_invertlut.3 │ │ │ │ ├── im_invfft.3 │ │ │ │ ├── im_invfftr.3 │ │ │ │ ├── im_iocheck.3 │ │ │ │ ├── im_isMSBfirst.3 │ │ │ │ ├── im_iscomplex.3 │ │ │ │ ├── im_isfile.3 │ │ │ │ ├── im_isfloat.3 │ │ │ │ ├── im_isint.3 │ │ │ │ ├── im_ispartial.3 │ │ │ │ ├── im_isscalar.3 │ │ │ │ ├── im_isuint.3 │ │ │ │ ├── im_isvips.3 │ │ │ │ ├── im_iterate.3 │ │ │ │ ├── im_jpeg2vips.3 │ │ │ │ ├── im_lab_morph.3 │ │ │ │ ├── im_less.3 │ │ │ │ ├── im_less_vec.3 │ │ │ │ ├── im_lessconst.3 │ │ │ │ ├── im_lesseq.3 │ │ │ │ ├── im_lesseq_vec.3 │ │ │ │ ├── im_lesseqconst.3 │ │ │ │ ├── im_lhisteq.3 │ │ │ │ ├── im_lhisteq_raw.3 │ │ │ │ ├── im_lindetect.3 │ │ │ │ ├── im_line.3 │ │ │ │ ├── im_lineset.3 │ │ │ │ ├── im_lintra.3 │ │ │ │ ├── im_lintra_vec.3 │ │ │ │ ├── im_litecor.3 │ │ │ │ ├── im_log10tra.3 │ │ │ │ ├── im_log_dmask.3 │ │ │ │ ├── im_log_imask.3 │ │ │ │ ├── im_logtra.3 │ │ │ │ ├── im_lowpass.3 │ │ │ │ ├── im_lrjoin.3 │ │ │ │ ├── im_lrmerge.3 │ │ │ │ ├── im_lrmosaic.3 │ │ │ │ ├── im_lu_decomp.3 │ │ │ │ ├── im_lu_solve.3 │ │ │ │ ├── im_magick2vips.3 │ │ │ │ ├── im_make_xy.3 │ │ │ │ ├── im_makerw.3 │ │ │ │ ├── im_malloc.3 │ │ │ │ ├── im_maplut.3 │ │ │ │ ├── im_mask2vips.3 │ │ │ │ ├── im_matcat.3 │ │ │ │ ├── im_match_linear.3 │ │ │ │ ├── im_match_linear_search.3 │ │ │ │ ├── im_matinv.3 │ │ │ │ ├── im_matinv_inplace.3 │ │ │ │ ├── im_matmul.3 │ │ │ │ ├── im_mattrn.3 │ │ │ │ ├── im_max.3 │ │ │ │ ├── im_maxpos.3 │ │ │ │ ├── im_maxpos_vec.3 │ │ │ │ ├── im_maxvalue.3 │ │ │ │ ├── im_mean_std_double_buffer.3 │ │ │ │ ├── im_mean_std_int_buffer.3 │ │ │ │ ├── im_measure.3 │ │ │ │ ├── im_meta.3 │ │ │ │ ├── im_meta_get.3 │ │ │ │ ├── im_meta_get_area.3 │ │ │ │ ├── im_meta_get_blob.3 │ │ │ │ ├── im_meta_get_double.3 │ │ │ │ ├── im_meta_get_int.3 │ │ │ │ ├── im_meta_get_string.3 │ │ │ │ ├── im_meta_get_type.3 │ │ │ │ ├── im_meta_set.3 │ │ │ │ ├── im_meta_set_area.3 │ │ │ │ ├── im_meta_set_blob.3 │ │ │ │ ├── im_meta_set_double.3 │ │ │ │ ├── im_meta_set_int.3 │ │ │ │ ├── im_meta_set_string.3 │ │ │ │ ├── im_min.3 │ │ │ │ ├── im_minpos.3 │ │ │ │ ├── im_minpos_vec.3 │ │ │ │ ├── im_mmapin.3 │ │ │ │ ├── im_mmapinrw.3 │ │ │ │ ├── im_more.3 │ │ │ │ ├── im_more_vec.3 │ │ │ │ ├── im_moreconst.3 │ │ │ │ ├── im_moreeq.3 │ │ │ │ ├── im_moreeq_vec.3 │ │ │ │ ├── im_moreeqconst.3 │ │ │ │ ├── im_mpercent.3 │ │ │ │ ├── im_msb.3 │ │ │ │ ├── im_msb_band.3 │ │ │ │ ├── im_multiply.3 │ │ │ │ ├── im_norm_dmask.3 │ │ │ │ ├── im_notequal.3 │ │ │ │ ├── im_notequal_vec.3 │ │ │ │ ├── im_notequalconst.3 │ │ │ │ ├── im_offsets45.3 │ │ │ │ ├── im_offsets90.3 │ │ │ │ ├── im_open.3 │ │ │ │ ├── im_open_local.3 │ │ │ │ ├── im_open_local_array.3 │ │ │ │ ├── im_openout.3 │ │ │ │ ├── im_or_vec.3 │ │ │ │ ├── im_orconst.3 │ │ │ │ ├── im_orimage.3 │ │ │ │ ├── im_outcheck.3 │ │ │ │ ├── im_paintrect.3 │ │ │ │ ├── im_partial.3 │ │ │ │ ├── im_pincheck.3 │ │ │ │ ├── im_piocheck.3 │ │ │ │ ├── im_plotmask.3 │ │ │ │ ├── im_plotpoint.3 │ │ │ │ ├── im_png2vips.3 │ │ │ │ ├── im_poutcheck.3 │ │ │ │ ├── im_powtra.3 │ │ │ │ ├── im_powtra_vec.3 │ │ │ │ ├── im_ppm2vips.3 │ │ │ │ ├── im_prepare.3 │ │ │ │ ├── im_prepare_many.3 │ │ │ │ ├── im_prepare_to.3 │ │ │ │ ├── im_print.3 │ │ │ │ ├── im_print_dmask.3 │ │ │ │ ├── im_print_imask.3 │ │ │ │ ├── im_printdesc.3 │ │ │ │ ├── im_printlines.3 │ │ │ │ ├── im_profile.3 │ │ │ │ ├── im_project.3 │ │ │ │ ├── im_quantim.3 │ │ │ │ ├── im_quantlut.3 │ │ │ │ ├── im_rad2float.3 │ │ │ │ ├── im_rank.3 │ │ │ │ ├── im_rank_image.3 │ │ │ │ ├── im_raw2vips.3 │ │ │ │ ├── im_read_dmask.3 │ │ │ │ ├── im_read_imask.3 │ │ │ │ ├── im_readpoint.3 │ │ │ │ ├── im_recomb.3 │ │ │ │ ├── im_rect_dup.3 │ │ │ │ ├── im_rect_equalsrect.3 │ │ │ │ ├── im_rect_includespoint.3 │ │ │ │ ├── im_rect_includesrect.3 │ │ │ │ ├── im_rect_intersectrect.3 │ │ │ │ ├── im_rect_isempty.3 │ │ │ │ ├── im_rect_marginadjust.3 │ │ │ │ ├── im_rect_normalise.3 │ │ │ │ ├── im_rect_unionrect.3 │ │ │ │ ├── im_region_buffer.3 │ │ │ │ ├── im_region_create.3 │ │ │ │ ├── im_region_free.3 │ │ │ │ ├── im_region_image.3 │ │ │ │ ├── im_region_position.3 │ │ │ │ ├── im_region_region.3 │ │ │ │ ├── im_remainder.3 │ │ │ │ ├── im_remainderconst.3 │ │ │ │ ├── im_remainderconst_vec.3 │ │ │ │ ├── im_remosaic.3 │ │ │ │ ├── im_render.3 │ │ │ │ ├── im_render_fade.3 │ │ │ │ ├── im_replicate.3 │ │ │ │ ├── im_resize_linear.3 │ │ │ │ ├── im_ri2c.3 │ │ │ │ ├── im_rightshift_size.3 │ │ │ │ ├── im_rint.3 │ │ │ │ ├── im_rot180.3 │ │ │ │ ├── im_rot270.3 │ │ │ │ ├── im_rot90.3 │ │ │ │ ├── im_rotate_dmask45.3 │ │ │ │ ├── im_rotate_dmask90.3 │ │ │ │ ├── im_rotate_imask45.3 │ │ │ │ ├── im_rotate_imask90.3 │ │ │ │ ├── im_rotquad.3 │ │ │ │ ├── im_sRGB2XYZ.3 │ │ │ │ ├── im_scale.3 │ │ │ │ ├── im_scale_dmask.3 │ │ │ │ ├── im_scaleps.3 │ │ │ │ ├── im_setbuf.3 │ │ │ │ ├── im_setupout.3 │ │ │ │ ├── im_sharpen.3 │ │ │ │ ├── im_shiftleft.3 │ │ │ │ ├── im_shiftright.3 │ │ │ │ ├── im_shrink.3 │ │ │ │ ├── im_sign.3 │ │ │ │ ├── im_simcontr.3 │ │ │ │ ├── im_similarity.3 │ │ │ │ ├── im_similarity_area.3 │ │ │ │ ├── im_sines.3 │ │ │ │ ├── im_sintra.3 │ │ │ │ ├── im_slice.3 │ │ │ │ ├── im_smear.3 │ │ │ │ ├── im_smudge.3 │ │ │ │ ├── im_spatres.3 │ │ │ │ ├── im_spcor.3 │ │ │ │ ├── im_start_many.3 │ │ │ │ ├── im_start_one.3 │ │ │ │ ├── im_stats.3 │ │ │ │ ├── im_stdif.3 │ │ │ │ ├── im_stop_many.3 │ │ │ │ ├── im_stop_one.3 │ │ │ │ ├── im_stretch3.3 │ │ │ │ ├── im_subsample.3 │ │ │ │ ├── im_subtract.3 │ │ │ │ ├── im_system.3 │ │ │ │ ├── im_tantra.3 │ │ │ │ ├── im_tbjoin.3 │ │ │ │ ├── im_tbmerge.3 │ │ │ │ ├── im_tbmosaic.3 │ │ │ │ ├── im_text.3 │ │ │ │ ├── im_thresh.3 │ │ │ │ ├── im_tiff2vips.3 │ │ │ │ ├── im_tile_cache.3 │ │ │ │ ├── im_tone_analyse.3 │ │ │ │ ├── im_tone_build.3 │ │ │ │ ├── im_tone_map.3 │ │ │ │ ├── im_updatehist.3 │ │ │ │ ├── im_verror.3 │ │ │ │ ├── im_version.3 │ │ │ │ ├── im_version_string.3 │ │ │ │ ├── im_video_v4l1.3 │ │ │ │ ├── im_vips2bufjpeg.3 │ │ │ │ ├── im_vips2csv.3 │ │ │ │ ├── im_vips2jpeg.3 │ │ │ │ ├── im_vips2mask.3 │ │ │ │ ├── im_vips2mimejpeg.3 │ │ │ │ ├── im_vips2png.3 │ │ │ │ ├── im_vips2ppm.3 │ │ │ │ ├── im_vips2raw.3 │ │ │ │ ├── im_vips2tiff.3 │ │ │ │ ├── im_warn.3 │ │ │ │ ├── im_wrapmany.3 │ │ │ │ ├── im_wrapone.3 │ │ │ │ ├── im_write_dmask.3 │ │ │ │ ├── im_write_dmask_name.3 │ │ │ │ ├── im_write_imask.3 │ │ │ │ ├── im_write_imask_name.3 │ │ │ │ ├── im_writeline.3 │ │ │ │ ├── im_zerox.3 │ │ │ │ ├── im_zone.3 │ │ │ │ ├── im_zoom.3 │ │ │ │ ├── light_correct.1 │ │ │ │ ├── printlines.1 │ │ │ │ ├── simcontr.1 │ │ │ │ ├── sines.1 │ │ │ │ ├── squares.1 │ │ │ │ ├── vips.1 │ │ │ │ ├── vips_format_for_file.3 │ │ │ │ ├── vips_format_for_name.3 │ │ │ │ ├── vips_format_map.3 │ │ │ │ ├── vips_format_read.3 │ │ │ │ ├── vips_format_write.3 │ │ │ │ └── vipsthumbnail.1 │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ ├── po │ │ │ │ ├── ChangeLog │ │ │ │ ├── LINGUAS │ │ │ │ ├── Makefile.in.in │ │ │ │ ├── POTFILES.in │ │ │ │ ├── de.gmo │ │ │ │ ├── de.po │ │ │ │ ├── en_GB.gmo │ │ │ │ ├── en_GB.po │ │ │ │ └── vips7.pot │ │ │ ├── py-compile │ │ │ ├── swig │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── python │ │ │ │ │ └── setup.py.in │ │ │ │ ├── test │ │ │ │ │ ├── bench_pil.py │ │ │ │ │ ├── bench_vips.py │ │ │ │ │ ├── pilvips.py │ │ │ │ │ └── testvipsCC.py │ │ │ │ └── vipsCC │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── VDisplay.i │ │ │ │ │ ├── VDisplay.py │ │ │ │ │ ├── VError.i │ │ │ │ │ ├── VError.py │ │ │ │ │ ├── VImage.i │ │ │ │ │ ├── VImage.py │ │ │ │ │ ├── VMask.i │ │ │ │ │ ├── VMask.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── vdisplaymodule.cxx │ │ │ │ │ ├── verrormodule.cxx │ │ │ │ │ ├── vimagemodule.cxx │ │ │ │ │ └── vmaskmodule.cxx │ │ │ ├── tools │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── iofuncs │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── edvips.c │ │ │ │ │ ├── header.c │ │ │ │ │ ├── vips.c │ │ │ │ │ └── vipsthumbnail.c │ │ │ │ ├── mosaicing │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── find_mosaic.c │ │ │ │ │ └── mergeup.c │ │ │ │ ├── other │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── cooc.c │ │ │ │ │ ├── cooc_features.c │ │ │ │ │ ├── glds.c │ │ │ │ │ ├── glds_features.c │ │ │ │ │ ├── simcontr.c │ │ │ │ │ ├── sines.c │ │ │ │ │ ├── spatres.c │ │ │ │ │ └── squares.c │ │ │ │ └── scripts │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── batch_crop.in │ │ │ │ │ ├── batch_image_convert.in │ │ │ │ │ ├── batch_rubber_sheet.in │ │ │ │ │ ├── light_correct.in │ │ │ │ │ ├── post_install │ │ │ │ │ ├── shrink_width.in │ │ │ │ │ └── vips-7.22 │ │ │ ├── vips-7.22.pc.in │ │ │ └── vipsCC-7.22.pc.in │ │ └── version │ └── x264 │ │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc.bldconf │ │ ├── icc.bldconf │ │ ├── native.runconf │ │ ├── simdev.runconf │ │ ├── simlarge.runconf │ │ ├── simmedium.runconf │ │ ├── simsmall.runconf │ │ └── test.runconf │ │ ├── src │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── build │ │ │ └── win32 │ │ │ │ ├── libx264.vcproj │ │ │ │ ├── x264.sln │ │ │ │ └── x264.vcproj │ │ ├── common │ │ │ ├── bs.h │ │ │ ├── cabac.c │ │ │ ├── cabac.h │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── dct.c │ │ │ ├── dct.h │ │ │ ├── display-x11.c │ │ │ ├── display.h │ │ │ ├── frame.c │ │ │ ├── frame.h │ │ │ ├── macroblock.c │ │ │ ├── macroblock.h │ │ │ ├── mc.c │ │ │ ├── mc.h │ │ │ ├── mdate.c │ │ │ ├── osdep.h │ │ │ ├── pixel.c │ │ │ ├── pixel.h │ │ │ ├── ppc │ │ │ │ ├── dct.c │ │ │ │ ├── dct.h │ │ │ │ ├── deblock.c │ │ │ │ ├── mc.c │ │ │ │ ├── mc.h │ │ │ │ ├── pixel.c │ │ │ │ ├── pixel.h │ │ │ │ ├── ppccommon.h │ │ │ │ ├── predict.c │ │ │ │ ├── predict.h │ │ │ │ ├── quant.c │ │ │ │ └── quant.h │ │ │ ├── predict.c │ │ │ ├── predict.h │ │ │ ├── quant.c │ │ │ ├── quant.h │ │ │ ├── set.c │ │ │ ├── set.h │ │ │ ├── sparc │ │ │ │ ├── pixel.asm │ │ │ │ └── pixel.h │ │ │ ├── visualize.c │ │ │ ├── visualize.h │ │ │ ├── vlc.c │ │ │ └── x86 │ │ │ │ ├── cabac-a.asm │ │ │ │ ├── cpu-a.asm │ │ │ │ ├── dct-32.asm │ │ │ │ ├── dct-64.asm │ │ │ │ ├── dct-a.asm │ │ │ │ ├── dct.h │ │ │ │ ├── deblock-a.asm │ │ │ │ ├── mc-a.asm │ │ │ │ ├── mc-a2.asm │ │ │ │ ├── mc-c.c │ │ │ │ ├── mc.h │ │ │ │ ├── pixel-32.asm │ │ │ │ ├── pixel-a.asm │ │ │ │ ├── pixel.h │ │ │ │ ├── predict-a.asm │ │ │ │ ├── predict-c.c │ │ │ │ ├── predict.h │ │ │ │ ├── quant-a.asm │ │ │ │ ├── quant.h │ │ │ │ ├── sad-a.asm │ │ │ │ ├── util.h │ │ │ │ ├── x86inc.asm │ │ │ │ └── x86util.asm │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── conftest.asm │ │ ├── doc │ │ │ ├── ratecontrol.txt │ │ │ ├── regression_test.txt │ │ │ ├── standards.txt │ │ │ ├── threads.txt │ │ │ └── vui.txt │ │ ├── encoder │ │ │ ├── analyse.c │ │ │ ├── analyse.h │ │ │ ├── cabac.c │ │ │ ├── cavlc.c │ │ │ ├── encoder.c │ │ │ ├── macroblock.c │ │ │ ├── macroblock.h │ │ │ ├── me.c │ │ │ ├── me.h │ │ │ ├── ratecontrol.c │ │ │ ├── ratecontrol.h │ │ │ ├── rdo.c │ │ │ ├── set.c │ │ │ ├── set.h │ │ │ └── slicetype.c │ │ ├── extras │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ └── stdint.h │ │ ├── matroska.c │ │ ├── matroska.h │ │ ├── muxers.c │ │ ├── muxers.h │ │ ├── tools │ │ │ ├── checkasm-a.asm │ │ │ ├── checkasm.c │ │ │ ├── countquant_x264.pl │ │ │ ├── q_matrix_jvt.cfg │ │ │ ├── regression-test.pl │ │ │ └── xyuv.c │ │ ├── version.sh │ │ ├── x264.c │ │ └── x264.h │ │ └── version ├── kernels │ ├── canneal │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── AtomicPtr.h │ │ │ ├── COPYRIGHT │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── MersenneTwister.h │ │ │ ├── annealer_thread.cpp │ │ │ ├── annealer_thread.h │ │ │ ├── annealer_types.h │ │ │ ├── atomic │ │ │ │ ├── alpha │ │ │ │ │ └── atomic.h │ │ │ │ ├── amd64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── atomic.h │ │ │ │ ├── i386 │ │ │ │ │ └── atomic.h │ │ │ │ ├── ia64 │ │ │ │ │ └── atomic.h │ │ │ │ ├── powerpc │ │ │ │ │ └── atomic.h │ │ │ │ ├── riscv_atomic.h │ │ │ │ └── sparc │ │ │ │ │ ├── asi.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ └── cpufunc.h │ │ │ ├── location_t.h │ │ │ ├── main.cpp │ │ │ ├── netlist.cpp │ │ │ ├── netlist.h │ │ │ ├── netlist_elem.cpp │ │ │ ├── netlist_elem.h │ │ │ ├── rng.cpp │ │ │ └── rng.h │ │ └── version │ ├── dedup │ │ ├── parsec │ │ │ ├── gcc-hooks.bldconf │ │ │ ├── gcc-pthreads.bldconf │ │ │ ├── gcc-serial.bldconf │ │ │ ├── gcc.bldconf │ │ │ ├── icc.bldconf │ │ │ ├── native.runconf │ │ │ ├── simdev.runconf │ │ │ ├── simlarge.runconf │ │ │ ├── simmedium.runconf │ │ │ ├── simsmall.runconf │ │ │ └── test.runconf │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── binheap.c │ │ │ ├── binheap.h │ │ │ ├── config.h │ │ │ ├── debug.h │ │ │ ├── decoder.c │ │ │ ├── decoder.h │ │ │ ├── dedup.c │ │ │ ├── dedupdef.h │ │ │ ├── encoder.c │ │ │ ├── encoder.h │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── hashtable_private.h │ │ │ ├── mbuffer.c │ │ │ ├── mbuffer.h │ │ │ ├── openssl │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── md32_common.h │ │ │ │ ├── sha.h │ │ │ │ └── sha_locl.h │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── rabin.c │ │ │ ├── rabin.h │ │ │ ├── sha.c │ │ │ ├── sha.h │ │ │ ├── tree.c │ │ │ ├── tree.h │ │ │ ├── util.c │ │ │ └── util.h │ │ └── version │ └── streamcluster │ │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ ├── icc.bldconf │ │ ├── native.runconf │ │ ├── simdev.runconf │ │ ├── simlarge.runconf │ │ ├── simmedium.runconf │ │ ├── simsmall.runconf │ │ └── test.runconf │ │ ├── src │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ ├── parsec_barrier.cpp │ │ ├── parsec_barrier.hpp │ │ └── streamcluster.cpp │ │ └── version └── libs │ ├── glib │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── ChangeLog.pre-1-2 │ │ ├── ChangeLog.pre-2-0 │ │ ├── ChangeLog.pre-2-10 │ │ ├── ChangeLog.pre-2-12 │ │ ├── ChangeLog.pre-2-14 │ │ ├── ChangeLog.pre-2-16 │ │ ├── ChangeLog.pre-2-18 │ │ ├── ChangeLog.pre-2-2 │ │ ├── ChangeLog.pre-2-20 │ │ ├── ChangeLog.pre-2-4 │ │ ├── ChangeLog.pre-2-6 │ │ ├── ChangeLog.pre-2-8 │ │ ├── HACKING │ │ ├── INSTALL │ │ ├── INSTALL.in │ │ ├── MAINTAINERS │ │ ├── Makefile.am │ │ ├── Makefile.decl │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── NEWS.pre-1-3 │ │ ├── README │ │ ├── README.commits │ │ ├── README.in │ │ ├── README.win32 │ │ ├── acglib.m4 │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── build │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── win32 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── dirent │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── dirent-zip │ │ │ │ ├── dirent.c │ │ │ │ ├── dirent.h │ │ │ │ ├── makefile.msc │ │ │ │ └── wdirent.c │ │ │ │ ├── make.msc │ │ │ │ ├── module.defs │ │ │ │ └── vs9 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.txt │ │ │ │ ├── gio.vcproj │ │ │ │ ├── gio.vcprojin │ │ │ │ ├── glib-genmarshal.vcproj │ │ │ │ ├── glib.sln │ │ │ │ ├── glib.vcproj │ │ │ │ ├── glib.vcprojin │ │ │ │ ├── glib.vsprops │ │ │ │ ├── gmodule.vcproj │ │ │ │ ├── gobject.vcproj │ │ │ │ ├── gobject.vcprojin │ │ │ │ ├── gspawn-win32-helper-console.vcproj │ │ │ │ ├── gspawn-win32-helper.vcproj │ │ │ │ ├── gthread.vcproj │ │ │ │ ├── install.vcproj │ │ │ │ └── testglib.vcproj │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.h.win32 │ │ ├── config.h.win32.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── depcomp │ │ ├── docs │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── debugging.txt │ │ │ ├── macros.txt │ │ │ └── reference │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── gio │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── gio-docs.xml │ │ │ │ ├── gio-overrides.txt │ │ │ │ ├── gio-sections.txt │ │ │ │ ├── gio.types │ │ │ │ ├── gvfs-overview.png │ │ │ │ ├── html │ │ │ │ │ ├── GAppInfo.html │ │ │ │ │ ├── GAsyncInitable.html │ │ │ │ │ ├── GAsyncResult.html │ │ │ │ │ ├── GBufferedInputStream.html │ │ │ │ │ ├── GBufferedOutputStream.html │ │ │ │ │ ├── GCancellable.html │ │ │ │ │ ├── GCharsetConverter.html │ │ │ │ │ ├── GConverter.html │ │ │ │ │ ├── GDataInputStream.html │ │ │ │ │ ├── GDataOutputStream.html │ │ │ │ │ ├── GDrive.html │ │ │ │ │ ├── GEmblem.html │ │ │ │ │ ├── GEmblemedIcon.html │ │ │ │ │ ├── GFile.html │ │ │ │ │ ├── GFileDescriptorBased.html │ │ │ │ │ ├── GFileEnumerator.html │ │ │ │ │ ├── GFileIOStream.html │ │ │ │ │ ├── GFileIcon.html │ │ │ │ │ ├── GFileInfo.html │ │ │ │ │ ├── GFileInputStream.html │ │ │ │ │ ├── GFileMonitor.html │ │ │ │ │ ├── GFileOutputStream.html │ │ │ │ │ ├── GFilenameCompleter.html │ │ │ │ │ ├── GFilterInputStream.html │ │ │ │ │ ├── GFilterOutputStream.html │ │ │ │ │ ├── GIOModule.html │ │ │ │ │ ├── GIOStream.html │ │ │ │ │ ├── GIcon.html │ │ │ │ │ ├── GInetAddress.html │ │ │ │ │ ├── GInetSocketAddress.html │ │ │ │ │ ├── GInitable.html │ │ │ │ │ ├── GInputStream.html │ │ │ │ │ ├── GLoadableIcon.html │ │ │ │ │ ├── GMemoryInputStream.html │ │ │ │ │ ├── GMemoryOutputStream.html │ │ │ │ │ ├── GMount.html │ │ │ │ │ ├── GMountOperation.html │ │ │ │ │ ├── GNetworkAddress.html │ │ │ │ │ ├── GNetworkService.html │ │ │ │ │ ├── GOutputStream.html │ │ │ │ │ ├── GResolver.html │ │ │ │ │ ├── GSeekable.html │ │ │ │ │ ├── GSimpleAsyncResult.html │ │ │ │ │ ├── GSocket.html │ │ │ │ │ ├── GSocketAddress.html │ │ │ │ │ ├── GSocketClient.html │ │ │ │ │ ├── GSocketConnectable.html │ │ │ │ │ ├── GSocketConnection.html │ │ │ │ │ ├── GSocketControlMessage.html │ │ │ │ │ ├── GSocketListener.html │ │ │ │ │ ├── GSocketService.html │ │ │ │ │ ├── GThemedIcon.html │ │ │ │ │ ├── GThreadedSocketService.html │ │ │ │ │ ├── GUnixFDList.html │ │ │ │ │ ├── GUnixFDMessage.html │ │ │ │ │ ├── GUnixInputStream.html │ │ │ │ │ ├── GUnixOutputStream.html │ │ │ │ │ ├── GUnixSocketAddress.html │ │ │ │ │ ├── GVfs.html │ │ │ │ │ ├── GVolume.html │ │ │ │ │ ├── GVolumeMonitor.html │ │ │ │ │ ├── GZlibCompressor.html │ │ │ │ │ ├── GZlibDecompressor.html │ │ │ │ │ ├── api-index-2-18.html │ │ │ │ │ ├── api-index-2-20.html │ │ │ │ │ ├── api-index-2-22.html │ │ │ │ │ ├── api-index-2-24.html │ │ │ │ │ ├── api-index-deprecated.html │ │ │ │ │ ├── api-index-full.html │ │ │ │ │ ├── async.html │ │ │ │ │ ├── ch01.html │ │ │ │ │ ├── ch02.html │ │ │ │ │ ├── ch03.html │ │ │ │ │ ├── ch19.html │ │ │ │ │ ├── ch20.html │ │ │ │ │ ├── ch20s02.html │ │ │ │ │ ├── ch20s03.html │ │ │ │ │ ├── conversion.html │ │ │ │ │ ├── extending-gio.html │ │ │ │ │ ├── extending.html │ │ │ │ │ ├── failable_initialization.html │ │ │ │ │ ├── file_mon.html │ │ │ │ │ ├── file_ops.html │ │ │ │ │ ├── gio-Desktop-file-based-GAppInfo.html │ │ │ │ │ ├── gio-Extension-Points.html │ │ │ │ │ ├── gio-GContentType.html │ │ │ │ │ ├── gio-GConverterInputstream.html │ │ │ │ │ ├── gio-GConverterOutputstream.html │ │ │ │ │ ├── gio-GFileAttribute.html │ │ │ │ │ ├── gio-GIOError.html │ │ │ │ │ ├── gio-GIOScheduler.html │ │ │ │ │ ├── gio-GSrvTarget.html │ │ │ │ │ ├── gio-Unix-Mounts.html │ │ │ │ │ ├── gio-hierarchy.html │ │ │ │ │ ├── gio.devhelp │ │ │ │ │ ├── gio.devhelp2 │ │ │ │ │ ├── gvfs-overview.png │ │ │ │ │ ├── highlevel-socket.html │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.sgml │ │ │ │ │ ├── left.png │ │ │ │ │ ├── migrating.html │ │ │ │ │ ├── networking.html │ │ │ │ │ ├── pt01.html │ │ │ │ │ ├── pt02.html │ │ │ │ │ ├── resolver.html │ │ │ │ │ ├── right.png │ │ │ │ │ ├── streaming.html │ │ │ │ │ ├── style.css │ │ │ │ │ ├── types.html │ │ │ │ │ ├── up.png │ │ │ │ │ ├── utils.html │ │ │ │ │ └── volume_mon.html │ │ │ │ ├── migrating.xml │ │ │ │ ├── overview.xml │ │ │ │ ├── tmpl │ │ │ │ │ ├── extensionpoints.sgml │ │ │ │ │ ├── gappinfo.sgml │ │ │ │ │ ├── gasyncinitable.sgml │ │ │ │ │ ├── gasyncresult.sgml │ │ │ │ │ ├── gbufferedinputstream.sgml │ │ │ │ │ ├── gbufferedoutputstream.sgml │ │ │ │ │ ├── gcancellable.sgml │ │ │ │ │ ├── gcharsetconverter.sgml │ │ │ │ │ ├── gcontenttype.sgml │ │ │ │ │ ├── gconverter.sgml │ │ │ │ │ ├── gconverterinputstream.sgml │ │ │ │ │ ├── gconverteroutputstream.sgml │ │ │ │ │ ├── gdatainputstream.sgml │ │ │ │ │ ├── gdataoutputstream.sgml │ │ │ │ │ ├── gdesktopappinfo.sgml │ │ │ │ │ ├── gdrive.sgml │ │ │ │ │ ├── gemblem.sgml │ │ │ │ │ ├── gemblemedicon.sgml │ │ │ │ │ ├── gfile.sgml │ │ │ │ │ ├── gfileattribute.sgml │ │ │ │ │ ├── gfiledescriptorbased.sgml │ │ │ │ │ ├── gfileenumerator.sgml │ │ │ │ │ ├── gfileicon.sgml │ │ │ │ │ ├── gfileinfo.sgml │ │ │ │ │ ├── gfileinputstream.sgml │ │ │ │ │ ├── gfileiostream.sgml │ │ │ │ │ ├── gfilemonitor.sgml │ │ │ │ │ ├── gfilenamecompleter.sgml │ │ │ │ │ ├── gfileoutputstream.sgml │ │ │ │ │ ├── gfilterinputstream.sgml │ │ │ │ │ ├── gfilteroutputstream.sgml │ │ │ │ │ ├── gicon.sgml │ │ │ │ │ ├── ginetaddress.sgml │ │ │ │ │ ├── ginetsocketaddress.sgml │ │ │ │ │ ├── ginitable.sgml │ │ │ │ │ ├── ginputstream.sgml │ │ │ │ │ ├── gio-unused.sgml │ │ │ │ │ ├── gioerror.sgml │ │ │ │ │ ├── giomodule.sgml │ │ │ │ │ ├── gioscheduler.sgml │ │ │ │ │ ├── giostream.sgml │ │ │ │ │ ├── gloadableicon.sgml │ │ │ │ │ ├── gmemoryinputstream.sgml │ │ │ │ │ ├── gmemoryoutputstream.sgml │ │ │ │ │ ├── gmount.sgml │ │ │ │ │ ├── gmountoperation.sgml │ │ │ │ │ ├── gnetworkaddress.sgml │ │ │ │ │ ├── gnetworkservice.sgml │ │ │ │ │ ├── goutputstream.sgml │ │ │ │ │ ├── gresolver.sgml │ │ │ │ │ ├── gseekable.sgml │ │ │ │ │ ├── gsimpleasyncresult.sgml │ │ │ │ │ ├── gsocket.sgml │ │ │ │ │ ├── gsocketaddress.sgml │ │ │ │ │ ├── gsocketclient.sgml │ │ │ │ │ ├── gsocketconnectable.sgml │ │ │ │ │ ├── gsocketconnection.sgml │ │ │ │ │ ├── gsocketcontrolmessage.sgml │ │ │ │ │ ├── gsocketlistener.sgml │ │ │ │ │ ├── gsocketservice.sgml │ │ │ │ │ ├── gsrvtarget.sgml │ │ │ │ │ ├── gthemedicon.sgml │ │ │ │ │ ├── gthreadedsocketservice.sgml │ │ │ │ │ ├── gunixfdlist.sgml │ │ │ │ │ ├── gunixfdmessage.sgml │ │ │ │ │ ├── gunixinputstream.sgml │ │ │ │ │ ├── gunixmounts.sgml │ │ │ │ │ ├── gunixoutputstream.sgml │ │ │ │ │ ├── gunixsocketaddress.sgml │ │ │ │ │ ├── gvfs.sgml │ │ │ │ │ ├── gvolume.sgml │ │ │ │ │ ├── gvolumemonitor.sgml │ │ │ │ │ ├── gzcompressor.sgml │ │ │ │ │ └── gzdecompressor.sgml │ │ │ │ ├── version.xml │ │ │ │ └── version.xml.in │ │ │ │ ├── glib │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── building.sgml │ │ │ │ ├── changes.sgml │ │ │ │ ├── compiling.sgml │ │ │ │ ├── cross.sgml │ │ │ │ ├── file-name-encodings.png │ │ │ │ ├── file-name-encodings.sxd │ │ │ │ ├── glib-docs.sgml │ │ │ │ ├── glib-gettextize.1 │ │ │ │ ├── glib-gettextize.xml │ │ │ │ ├── glib-overrides.txt │ │ │ │ ├── glib-sections.txt │ │ │ │ ├── glib.types │ │ │ │ ├── gtester-report.1 │ │ │ │ ├── gtester-report.xml │ │ │ │ ├── gtester.1 │ │ │ │ ├── gtester.xml │ │ │ │ ├── gvariant-varargs.xml │ │ │ │ ├── html │ │ │ │ │ ├── api-index-2-10.html │ │ │ │ │ ├── api-index-2-12.html │ │ │ │ │ ├── api-index-2-14.html │ │ │ │ │ ├── api-index-2-16.html │ │ │ │ │ ├── api-index-2-18.html │ │ │ │ │ ├── api-index-2-2.html │ │ │ │ │ ├── api-index-2-20.html │ │ │ │ │ ├── api-index-2-22.html │ │ │ │ │ ├── api-index-2-24.html │ │ │ │ │ ├── api-index-2-4.html │ │ │ │ │ ├── api-index-2-6.html │ │ │ │ │ ├── api-index-2-8.html │ │ │ │ │ ├── api-index-deprecated.html │ │ │ │ │ ├── api-index-full.html │ │ │ │ │ ├── file-name-encodings.png │ │ │ │ │ ├── glib-Arrays.html │ │ │ │ │ ├── glib-Asynchronous-Queues.html │ │ │ │ │ ├── glib-Atomic-Operations.html │ │ │ │ │ ├── glib-Automatic-String-Completion.html │ │ │ │ │ ├── glib-Balanced-Binary-Trees.html │ │ │ │ │ ├── glib-Base64-Encoding.html │ │ │ │ │ ├── glib-Basic-Types.html │ │ │ │ │ ├── glib-Bookmark-file-parser.html │ │ │ │ │ ├── glib-Byte-Arrays.html │ │ │ │ │ ├── glib-Byte-Order-Macros.html │ │ │ │ │ ├── glib-Caches.html │ │ │ │ │ ├── glib-Character-Set-Conversion.html │ │ │ │ │ ├── glib-Commandline-option-parser.html │ │ │ │ │ ├── glib-Data-Checksums.html │ │ │ │ │ ├── glib-Datasets.html │ │ │ │ │ ├── glib-Date-and-Time-Functions.html │ │ │ │ │ ├── glib-Double-ended-Queues.html │ │ │ │ │ ├── glib-Doubly-Linked-Lists.html │ │ │ │ │ ├── glib-Dynamic-Loading-of-Modules.html │ │ │ │ │ ├── glib-Error-Reporting.html │ │ │ │ │ ├── glib-File-Utilities.html │ │ │ │ │ ├── glib-GVariant.html │ │ │ │ │ ├── glib-GVariantType.html │ │ │ │ │ ├── glib-Glob-style-pattern-matching.html │ │ │ │ │ ├── glib-Hash-Tables.html │ │ │ │ │ ├── glib-Hook-Functions.html │ │ │ │ │ ├── glib-Hostname-Utilities.html │ │ │ │ │ ├── glib-I18N.html │ │ │ │ │ ├── glib-IO-Channels.html │ │ │ │ │ ├── glib-Key-value-file-parser.html │ │ │ │ │ ├── glib-Keyed-Data-Lists.html │ │ │ │ │ ├── glib-Lexical-Scanner.html │ │ │ │ │ ├── glib-Limits-of-Basic-Types.html │ │ │ │ │ ├── glib-Memory-Allocation.html │ │ │ │ │ ├── glib-Memory-Allocators.html │ │ │ │ │ ├── glib-Memory-Chunks.html │ │ │ │ │ ├── glib-Memory-Slices.html │ │ │ │ │ ├── glib-Message-Logging.html │ │ │ │ │ ├── glib-Miscellaneous-Macros.html │ │ │ │ │ ├── glib-Miscellaneous-Utility-Functions.html │ │ │ │ │ ├── glib-N-ary-Trees.html │ │ │ │ │ ├── glib-Numerical-Definitions.html │ │ │ │ │ ├── glib-Perl-compatible-regular-expressions.html │ │ │ │ │ ├── glib-Pointer-Arrays.html │ │ │ │ │ ├── glib-Quarks.html │ │ │ │ │ ├── glib-Random-Numbers.html │ │ │ │ │ ├── glib-Relations-and-Tuples.html │ │ │ │ │ ├── glib-Sequences.html │ │ │ │ │ ├── glib-Shell-related-Utilities.html │ │ │ │ │ ├── glib-Simple-XML-Subset-Parser.html │ │ │ │ │ ├── glib-Singly-Linked-Lists.html │ │ │ │ │ ├── glib-Spawning-Processes.html │ │ │ │ │ ├── glib-Standard-Macros.html │ │ │ │ │ ├── glib-String-Chunks.html │ │ │ │ │ ├── glib-String-Utility-Functions.html │ │ │ │ │ ├── glib-Strings.html │ │ │ │ │ ├── glib-Testing.html │ │ │ │ │ ├── glib-The-Main-Event-Loop.html │ │ │ │ │ ├── glib-Thread-Pools.html │ │ │ │ │ ├── glib-Threads.html │ │ │ │ │ ├── glib-Timers.html │ │ │ │ │ ├── glib-Trash-Stacks.html │ │ │ │ │ ├── glib-Type-Conversion-Macros.html │ │ │ │ │ ├── glib-URI-Functions.html │ │ │ │ │ ├── glib-Unicode-Manipulation.html │ │ │ │ │ ├── glib-Version-Information.html │ │ │ │ │ ├── glib-Warnings-and-Assertions.html │ │ │ │ │ ├── glib-Windows-Compatibility-Functions.html │ │ │ │ │ ├── glib-building.html │ │ │ │ │ ├── glib-changes.html │ │ │ │ │ ├── glib-compiling.html │ │ │ │ │ ├── glib-core.html │ │ │ │ │ ├── glib-cross-compiling.html │ │ │ │ │ ├── glib-data-types.html │ │ │ │ │ ├── glib-fundamentals.html │ │ │ │ │ ├── glib-gettextize.html │ │ │ │ │ ├── glib-regex-syntax.html │ │ │ │ │ ├── glib-resources.html │ │ │ │ │ ├── glib-running.html │ │ │ │ │ ├── glib-utilities.html │ │ │ │ │ ├── glib.devhelp │ │ │ │ │ ├── glib.devhelp2 │ │ │ │ │ ├── glib.html │ │ │ │ │ ├── gtester-report.html │ │ │ │ │ ├── gtester.html │ │ │ │ │ ├── gvariant-format-strings.html │ │ │ │ │ ├── home.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.sgml │ │ │ │ │ ├── left.png │ │ │ │ │ ├── mainloop-states.gif │ │ │ │ │ ├── right.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── tools.html │ │ │ │ │ └── up.png │ │ │ │ ├── mainloop-states.eps │ │ │ │ ├── mainloop-states.fig │ │ │ │ ├── mainloop-states.gif │ │ │ │ ├── mainloop-states.png │ │ │ │ ├── regex-syntax.sgml │ │ │ │ ├── resources.sgml │ │ │ │ ├── running.sgml │ │ │ │ ├── tmpl │ │ │ │ │ ├── allocators.sgml │ │ │ │ │ ├── arrays.sgml │ │ │ │ │ ├── arrays_byte.sgml │ │ │ │ │ ├── arrays_pointer.sgml │ │ │ │ │ ├── async_queues.sgml │ │ │ │ │ ├── atomic_operations.sgml │ │ │ │ │ ├── base64.sgml │ │ │ │ │ ├── bookmarkfile.sgml │ │ │ │ │ ├── byte_order.sgml │ │ │ │ │ ├── caches.sgml │ │ │ │ │ ├── checksum.sgml │ │ │ │ │ ├── completion.sgml │ │ │ │ │ ├── conversions.sgml │ │ │ │ │ ├── datalist.sgml │ │ │ │ │ ├── datasets.sgml │ │ │ │ │ ├── date.sgml │ │ │ │ │ ├── error_reporting.sgml │ │ │ │ │ ├── fileutils.sgml │ │ │ │ │ ├── ghostutils.sgml │ │ │ │ │ ├── glib-unused.sgml │ │ │ │ │ ├── gregex.sgml │ │ │ │ │ ├── gurifuncs.sgml │ │ │ │ │ ├── gvariant.sgml │ │ │ │ │ ├── gvarianttype.sgml │ │ │ │ │ ├── hash_tables.sgml │ │ │ │ │ ├── hooks.sgml │ │ │ │ │ ├── i18n.sgml │ │ │ │ │ ├── iochannels.sgml │ │ │ │ │ ├── keyfile.sgml │ │ │ │ │ ├── limits.sgml │ │ │ │ │ ├── linked_lists_double.sgml │ │ │ │ │ ├── linked_lists_single.sgml │ │ │ │ │ ├── macros.sgml │ │ │ │ │ ├── macros_misc.sgml │ │ │ │ │ ├── main.sgml │ │ │ │ │ ├── markup.sgml │ │ │ │ │ ├── memory.sgml │ │ │ │ │ ├── memory_chunks.sgml │ │ │ │ │ ├── memory_slices.sgml │ │ │ │ │ ├── messages.sgml │ │ │ │ │ ├── misc_utils.sgml │ │ │ │ │ ├── modules.sgml │ │ │ │ │ ├── numerical.sgml │ │ │ │ │ ├── option.sgml │ │ │ │ │ ├── patterns.sgml │ │ │ │ │ ├── quarks.sgml │ │ │ │ │ ├── queue.sgml │ │ │ │ │ ├── random_numbers.sgml │ │ │ │ │ ├── relations.sgml │ │ │ │ │ ├── scanner.sgml │ │ │ │ │ ├── sequence.sgml │ │ │ │ │ ├── shell.sgml │ │ │ │ │ ├── spawn.sgml │ │ │ │ │ ├── string_chunks.sgml │ │ │ │ │ ├── string_utils.sgml │ │ │ │ │ ├── strings.sgml │ │ │ │ │ ├── testing.sgml │ │ │ │ │ ├── thread_pools.sgml │ │ │ │ │ ├── threads.sgml │ │ │ │ │ ├── timers.sgml │ │ │ │ │ ├── trash_stack.sgml │ │ │ │ │ ├── trees-binary.sgml │ │ │ │ │ ├── trees-nary.sgml │ │ │ │ │ ├── type_conversion.sgml │ │ │ │ │ ├── types.sgml │ │ │ │ │ ├── unicode.sgml │ │ │ │ │ ├── version.sgml │ │ │ │ │ ├── warnings.sgml │ │ │ │ │ └── windows.sgml │ │ │ │ ├── version.xml │ │ │ │ └── version.xml.in │ │ │ │ └── gobject │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── glib-genmarshal.1 │ │ │ │ ├── glib-genmarshal.xml │ │ │ │ ├── glib-mkenums.1 │ │ │ │ ├── glib-mkenums.xml │ │ │ │ ├── gobject-docs.sgml │ │ │ │ ├── gobject-overrides.txt │ │ │ │ ├── gobject-query.1 │ │ │ │ ├── gobject-query.xml │ │ │ │ ├── gobject-sections.txt │ │ │ │ ├── gobject.cI │ │ │ │ ├── gobject.types │ │ │ │ ├── html │ │ │ │ ├── GTypeModule.html │ │ │ │ ├── GTypePlugin.html │ │ │ │ ├── api-index-2-10.html │ │ │ │ ├── api-index-2-12.html │ │ │ │ ├── api-index-2-14.html │ │ │ │ ├── api-index-2-18.html │ │ │ │ ├── api-index-2-2.html │ │ │ │ ├── api-index-2-22.html │ │ │ │ ├── api-index-2-24.html │ │ │ │ ├── api-index-2-4.html │ │ │ │ ├── api-index-2-6.html │ │ │ │ ├── api-index-2-8.html │ │ │ │ ├── api-index-deprecated.html │ │ │ │ ├── api-index-full.html │ │ │ │ ├── ch01s02.html │ │ │ │ ├── ch06s03.html │ │ │ │ ├── chapter-gobject.html │ │ │ │ ├── chapter-gtype.html │ │ │ │ ├── chapter-intro.html │ │ │ │ ├── chapter-signal.html │ │ │ │ ├── glib-genmarshal.html │ │ │ │ ├── glib-mkenums.html │ │ │ │ ├── glue.png │ │ │ │ ├── gobject-Boxed-Types.html │ │ │ │ ├── gobject-Closures.html │ │ │ │ ├── gobject-Enumeration-and-Flag-Types.html │ │ │ │ ├── gobject-GParamSpec.html │ │ │ │ ├── gobject-Generic-values.html │ │ │ │ ├── gobject-Signals.html │ │ │ │ ├── gobject-Standard-Parameter-and-Value-Types.html │ │ │ │ ├── gobject-The-Base-Object-Type.html │ │ │ │ ├── gobject-Type-Information.html │ │ │ │ ├── gobject-Value-arrays.html │ │ │ │ ├── gobject-Varargs-Value-Collection.html │ │ │ │ ├── gobject-memory.html │ │ │ │ ├── gobject-properties.html │ │ │ │ ├── gobject-query.html │ │ │ │ ├── gobject.devhelp │ │ │ │ ├── gobject.devhelp2 │ │ │ │ ├── gtype-conventions.html │ │ │ │ ├── gtype-instantiable-classed.html │ │ │ │ ├── gtype-non-instantiable-classed.html │ │ │ │ ├── gtype-non-instantiable.html │ │ │ │ ├── home.png │ │ │ │ ├── howto-gobject-chainup.html │ │ │ │ ├── howto-gobject-code.html │ │ │ │ ├── howto-gobject-construction.html │ │ │ │ ├── howto-gobject-destruction.html │ │ │ │ ├── howto-gobject-methods.html │ │ │ │ ├── howto-gobject.html │ │ │ │ ├── howto-interface-implement.html │ │ │ │ ├── howto-interface-properties.html │ │ │ │ ├── howto-interface.html │ │ │ │ ├── howto-signals.html │ │ │ │ ├── index.html │ │ │ │ ├── index.sgml │ │ │ │ ├── left.png │ │ │ │ ├── pr01.html │ │ │ │ ├── pt01.html │ │ │ │ ├── pt02.html │ │ │ │ ├── pt03.html │ │ │ │ ├── right.png │ │ │ │ ├── rn01.html │ │ │ │ ├── rn02.html │ │ │ │ ├── signal.html │ │ │ │ ├── style.css │ │ │ │ ├── tools-ginspector.html │ │ │ │ ├── tools-gob.html │ │ │ │ ├── tools-gtkdoc.html │ │ │ │ ├── tools-refdb.html │ │ │ │ ├── tools-vala.html │ │ │ │ └── up.png │ │ │ │ ├── images │ │ │ │ └── glue.png │ │ │ │ ├── tmpl │ │ │ │ ├── enumerations_flags.sgml │ │ │ │ ├── gboxed.sgml │ │ │ │ ├── gclosure.sgml │ │ │ │ ├── generic_values.sgml │ │ │ │ ├── gobject-unused.sgml │ │ │ │ ├── gparamspec.sgml │ │ │ │ ├── gtype.sgml │ │ │ │ ├── gtypemodule.sgml │ │ │ │ ├── gtypeplugin.sgml │ │ │ │ ├── objects.sgml │ │ │ │ ├── param_value_types.sgml │ │ │ │ ├── signals.sgml │ │ │ │ ├── value_arrays.sgml │ │ │ │ └── value_collection.sgml │ │ │ │ ├── tut_gobject.xml │ │ │ │ ├── tut_gsignal.xml │ │ │ │ ├── tut_gtype.xml │ │ │ │ ├── tut_howto.xml │ │ │ │ ├── tut_intro.xml │ │ │ │ ├── tut_tools.xml │ │ │ │ ├── version.xml │ │ │ │ └── version.xml.in │ │ ├── gio-2.0-uninstalled.pc.in │ │ ├── gio-2.0.pc.in │ │ ├── gio-unix-2.0-uninstalled.pc.in │ │ ├── gio-unix-2.0.pc.in │ │ ├── gio │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── abicheck.sh │ │ │ ├── fam │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fam-helper.c │ │ │ │ ├── fam-helper.h │ │ │ │ ├── fam-module.c │ │ │ │ ├── gfamdirectorymonitor.c │ │ │ │ ├── gfamdirectorymonitor.h │ │ │ │ ├── gfamfilemonitor.c │ │ │ │ └── gfamfilemonitor.h │ │ │ ├── fen │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fen-data.c │ │ │ │ ├── fen-data.h │ │ │ │ ├── fen-dump.c │ │ │ │ ├── fen-dump.h │ │ │ │ ├── fen-helper.c │ │ │ │ ├── fen-helper.h │ │ │ │ ├── fen-kernel.c │ │ │ │ ├── fen-kernel.h │ │ │ │ ├── fen-missing.c │ │ │ │ ├── fen-missing.h │ │ │ │ ├── fen-node.c │ │ │ │ ├── fen-node.h │ │ │ │ ├── fen-sub.c │ │ │ │ ├── fen-sub.h │ │ │ │ ├── gfendirectorymonitor.c │ │ │ │ ├── gfendirectorymonitor.h │ │ │ │ ├── gfenfilemonitor.c │ │ │ │ └── gfenfilemonitor.h │ │ │ ├── gappinfo.c │ │ │ ├── gappinfo.h │ │ │ ├── gasynchelper.c │ │ │ ├── gasynchelper.h │ │ │ ├── gasyncinitable.c │ │ │ ├── gasyncinitable.h │ │ │ ├── gasyncresult.c │ │ │ ├── gasyncresult.h │ │ │ ├── gbufferedinputstream.c │ │ │ ├── gbufferedinputstream.h │ │ │ ├── gbufferedoutputstream.c │ │ │ ├── gbufferedoutputstream.h │ │ │ ├── gcancellable.c │ │ │ ├── gcancellable.h │ │ │ ├── gcharsetconverter.c │ │ │ ├── gcharsetconverter.h │ │ │ ├── gcontenttype.c │ │ │ ├── gcontenttype.h │ │ │ ├── gcontenttypeprivate.h │ │ │ ├── gconverter.c │ │ │ ├── gconverter.h │ │ │ ├── gconverterinputstream.c │ │ │ ├── gconverterinputstream.h │ │ │ ├── gconverteroutputstream.c │ │ │ ├── gconverteroutputstream.h │ │ │ ├── gdatainputstream.c │ │ │ ├── gdatainputstream.h │ │ │ ├── gdataoutputstream.c │ │ │ ├── gdataoutputstream.h │ │ │ ├── gdesktopappinfo.c │ │ │ ├── gdesktopappinfo.h │ │ │ ├── gdrive.c │ │ │ ├── gdrive.h │ │ │ ├── gdummyfile.c │ │ │ ├── gdummyfile.h │ │ │ ├── gemblem.c │ │ │ ├── gemblem.h │ │ │ ├── gemblemedicon.c │ │ │ ├── gemblemedicon.h │ │ │ ├── gfile.c │ │ │ ├── gfile.h │ │ │ ├── gfileattribute-priv.h │ │ │ ├── gfileattribute.c │ │ │ ├── gfileattribute.h │ │ │ ├── gfiledescriptorbased.c │ │ │ ├── gfiledescriptorbased.h │ │ │ ├── gfileenumerator.c │ │ │ ├── gfileenumerator.h │ │ │ ├── gfileicon.c │ │ │ ├── gfileicon.h │ │ │ ├── gfileinfo-priv.h │ │ │ ├── gfileinfo.c │ │ │ ├── gfileinfo.h │ │ │ ├── gfileinputstream.c │ │ │ ├── gfileinputstream.h │ │ │ ├── gfileiostream.c │ │ │ ├── gfileiostream.h │ │ │ ├── gfilemonitor.c │ │ │ ├── gfilemonitor.h │ │ │ ├── gfilenamecompleter.c │ │ │ ├── gfilenamecompleter.h │ │ │ ├── gfileoutputstream.c │ │ │ ├── gfileoutputstream.h │ │ │ ├── gfilterinputstream.c │ │ │ ├── gfilterinputstream.h │ │ │ ├── gfilteroutputstream.c │ │ │ ├── gfilteroutputstream.h │ │ │ ├── gicon.c │ │ │ ├── gicon.h │ │ │ ├── ginetaddress.c │ │ │ ├── ginetaddress.h │ │ │ ├── ginetsocketaddress.c │ │ │ ├── ginetsocketaddress.h │ │ │ ├── ginitable.c │ │ │ ├── ginitable.h │ │ │ ├── ginputstream.c │ │ │ ├── ginputstream.h │ │ │ ├── gio-marshal.c │ │ │ ├── gio-marshal.h │ │ │ ├── gio-marshal.list │ │ │ ├── gio-querymodules.c │ │ │ ├── gio.h │ │ │ ├── gio.rc │ │ │ ├── gio.rc.in │ │ │ ├── gio.symbols │ │ │ ├── gioalias.h │ │ │ ├── gioaliasdef.c │ │ │ ├── gioenums.h │ │ │ ├── gioenumtypes.c │ │ │ ├── gioenumtypes.c.template │ │ │ ├── gioenumtypes.h │ │ │ ├── gioenumtypes.h.template │ │ │ ├── gioerror.c │ │ │ ├── gioerror.h │ │ │ ├── giomodule-priv.h │ │ │ ├── giomodule.c │ │ │ ├── giomodule.h │ │ │ ├── gioscheduler.c │ │ │ ├── gioscheduler.h │ │ │ ├── giostream.c │ │ │ ├── giostream.h │ │ │ ├── giotypes.h │ │ │ ├── gloadableicon.c │ │ │ ├── gloadableicon.h │ │ │ ├── glocaldirectorymonitor.c │ │ │ ├── glocaldirectorymonitor.h │ │ │ ├── glocalfile.c │ │ │ ├── glocalfile.h │ │ │ ├── glocalfileenumerator.c │ │ │ ├── glocalfileenumerator.h │ │ │ ├── glocalfileinfo.c │ │ │ ├── glocalfileinfo.h │ │ │ ├── glocalfileinputstream.c │ │ │ ├── glocalfileinputstream.h │ │ │ ├── glocalfileiostream.c │ │ │ ├── glocalfileiostream.h │ │ │ ├── glocalfilemonitor.c │ │ │ ├── glocalfilemonitor.h │ │ │ ├── glocalfileoutputstream.c │ │ │ ├── glocalfileoutputstream.h │ │ │ ├── glocalvfs.c │ │ │ ├── glocalvfs.h │ │ │ ├── gmemoryinputstream.c │ │ │ ├── gmemoryinputstream.h │ │ │ ├── gmemoryoutputstream.c │ │ │ ├── gmemoryoutputstream.h │ │ │ ├── gmount.c │ │ │ ├── gmount.h │ │ │ ├── gmountoperation.c │ │ │ ├── gmountoperation.h │ │ │ ├── gmountprivate.h │ │ │ ├── gnativevolumemonitor.c │ │ │ ├── gnativevolumemonitor.h │ │ │ ├── gnetworkaddress.c │ │ │ ├── gnetworkaddress.h │ │ │ ├── gnetworkingprivate.h │ │ │ ├── gnetworkservice.c │ │ │ ├── gnetworkservice.h │ │ │ ├── goutputstream.c │ │ │ ├── goutputstream.h │ │ │ ├── gpollfilemonitor.c │ │ │ ├── gpollfilemonitor.h │ │ │ ├── gresolver.c │ │ │ ├── gresolver.h │ │ │ ├── gseekable.c │ │ │ ├── gseekable.h │ │ │ ├── gsimpleasyncresult.c │ │ │ ├── gsimpleasyncresult.h │ │ │ ├── gsocket.c │ │ │ ├── gsocket.h │ │ │ ├── gsocketaddress.c │ │ │ ├── gsocketaddress.h │ │ │ ├── gsocketaddressenumerator.c │ │ │ ├── gsocketaddressenumerator.h │ │ │ ├── gsocketclient.c │ │ │ ├── gsocketclient.h │ │ │ ├── gsocketconnectable.c │ │ │ ├── gsocketconnectable.h │ │ │ ├── gsocketconnection.c │ │ │ ├── gsocketconnection.h │ │ │ ├── gsocketcontrolmessage.c │ │ │ ├── gsocketcontrolmessage.h │ │ │ ├── gsocketinputstream.c │ │ │ ├── gsocketinputstream.h │ │ │ ├── gsocketlistener.c │ │ │ ├── gsocketlistener.h │ │ │ ├── gsocketoutputstream.c │ │ │ ├── gsocketoutputstream.h │ │ │ ├── gsocketservice.c │ │ │ ├── gsocketservice.h │ │ │ ├── gsrvtarget.c │ │ │ ├── gsrvtarget.h │ │ │ ├── gtcpconnection.c │ │ │ ├── gtcpconnection.h │ │ │ ├── gthemedicon.c │ │ │ ├── gthemedicon.h │ │ │ ├── gthreadedresolver.c │ │ │ ├── gthreadedresolver.h │ │ │ ├── gthreadedsocketservice.c │ │ │ ├── gthreadedsocketservice.h │ │ │ ├── gunionvolumemonitor.c │ │ │ ├── gunionvolumemonitor.h │ │ │ ├── gunixconnection.c │ │ │ ├── gunixconnection.h │ │ │ ├── gunixfdlist.c │ │ │ ├── gunixfdlist.h │ │ │ ├── gunixfdmessage.c │ │ │ ├── gunixfdmessage.h │ │ │ ├── gunixinputstream.c │ │ │ ├── gunixinputstream.h │ │ │ ├── gunixmount.c │ │ │ ├── gunixmount.h │ │ │ ├── gunixmounts.c │ │ │ ├── gunixmounts.h │ │ │ ├── gunixoutputstream.c │ │ │ ├── gunixoutputstream.h │ │ │ ├── gunixresolver.c │ │ │ ├── gunixresolver.h │ │ │ ├── gunixsocketaddress.c │ │ │ ├── gunixsocketaddress.h │ │ │ ├── gunixvolume.c │ │ │ ├── gunixvolume.h │ │ │ ├── gunixvolumemonitor.c │ │ │ ├── gunixvolumemonitor.h │ │ │ ├── gvfs.c │ │ │ ├── gvfs.h │ │ │ ├── gvolume.c │ │ │ ├── gvolume.h │ │ │ ├── gvolumemonitor.c │ │ │ ├── gvolumemonitor.h │ │ │ ├── gwin32appinfo.c │ │ │ ├── gwin32appinfo.h │ │ │ ├── gwin32mount.c │ │ │ ├── gwin32mount.h │ │ │ ├── gwin32resolver.c │ │ │ ├── gwin32resolver.h │ │ │ ├── gwin32volumemonitor.c │ │ │ ├── gwin32volumemonitor.h │ │ │ ├── gzlibcompressor.c │ │ │ ├── gzlibcompressor.h │ │ │ ├── gzlibdecompressor.c │ │ │ ├── gzlibdecompressor.h │ │ │ ├── inotify │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ginotifydirectorymonitor.c │ │ │ │ ├── ginotifydirectorymonitor.h │ │ │ │ ├── ginotifyfilemonitor.c │ │ │ │ ├── ginotifyfilemonitor.h │ │ │ │ ├── inotify-diag.c │ │ │ │ ├── inotify-diag.h │ │ │ │ ├── inotify-helper.c │ │ │ │ ├── inotify-helper.h │ │ │ │ ├── inotify-kernel.c │ │ │ │ ├── inotify-kernel.h │ │ │ │ ├── inotify-missing.c │ │ │ │ ├── inotify-missing.h │ │ │ │ ├── inotify-path.c │ │ │ │ ├── inotify-path.h │ │ │ │ ├── inotify-sub.c │ │ │ │ └── inotify-sub.h │ │ │ ├── libasyncns │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── asyncns.c │ │ │ │ ├── asyncns.h │ │ │ │ ├── g-asyncns.h │ │ │ │ └── update.sh │ │ │ ├── makefile.msc │ │ │ ├── makegioalias.pl │ │ │ ├── pltcheck.sh │ │ │ ├── tests │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── buffered-input-stream.c │ │ │ │ ├── contexts.c │ │ │ │ ├── converter-stream.c │ │ │ │ ├── data-input-stream.c │ │ │ │ ├── data-output-stream.c │ │ │ │ ├── desktop-app-info.c │ │ │ │ ├── echo-server.c │ │ │ │ ├── filter-cat.c │ │ │ │ ├── filter-streams.c │ │ │ │ ├── g-file-info.c │ │ │ │ ├── g-file.c │ │ │ │ ├── g-icon.c │ │ │ │ ├── httpd.c │ │ │ │ ├── live-g-file.c │ │ │ │ ├── memory-input-stream.c │ │ │ │ ├── memory-output-stream.c │ │ │ │ ├── readwrite.c │ │ │ │ ├── resolver.c │ │ │ │ ├── send-data.c │ │ │ │ ├── simple-async-result.c │ │ │ │ ├── sleepy-stream.c │ │ │ │ ├── socket-client.c │ │ │ │ ├── socket-server.c │ │ │ │ ├── srvtarget.c │ │ │ │ ├── unix-fd.c │ │ │ │ └── unix-streams.c │ │ │ ├── win32 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── gwin32directorymonitor.c │ │ │ │ ├── gwin32directorymonitor.h │ │ │ │ ├── gwinhttpfile.c │ │ │ │ ├── gwinhttpfile.h │ │ │ │ ├── gwinhttpfileinputstream.c │ │ │ │ ├── gwinhttpfileinputstream.h │ │ │ │ ├── gwinhttpfileoutputstream.c │ │ │ │ ├── gwinhttpfileoutputstream.h │ │ │ │ ├── gwinhttpvfs.c │ │ │ │ ├── gwinhttpvfs.h │ │ │ │ └── winhttp.h │ │ │ └── xdgmime │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── xdgmime.c │ │ │ │ ├── xdgmime.h │ │ │ │ ├── xdgmimealias.c │ │ │ │ ├── xdgmimealias.h │ │ │ │ ├── xdgmimecache.c │ │ │ │ ├── xdgmimecache.h │ │ │ │ ├── xdgmimeglob.c │ │ │ │ ├── xdgmimeglob.h │ │ │ │ ├── xdgmimeicon.c │ │ │ │ ├── xdgmimeicon.h │ │ │ │ ├── xdgmimeint.c │ │ │ │ ├── xdgmimeint.h │ │ │ │ ├── xdgmimemagic.c │ │ │ │ ├── xdgmimemagic.h │ │ │ │ ├── xdgmimeparent.c │ │ │ │ └── xdgmimeparent.h │ │ ├── glib-2.0-uninstalled.pc.in │ │ ├── glib-2.0.pc.in │ │ ├── glib-gettextize.in │ │ ├── glib-zip.in │ │ ├── glib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── abicheck.sh │ │ │ ├── galias.h │ │ │ ├── galiasdef.c │ │ │ ├── galloca.h │ │ │ ├── garray.c │ │ │ ├── garray.h │ │ │ ├── gasyncqueue.c │ │ │ ├── gasyncqueue.h │ │ │ ├── gatomic-gcc.c │ │ │ ├── gatomic.c │ │ │ ├── gatomic.h │ │ │ ├── gbacktrace.c │ │ │ ├── gbacktrace.h │ │ │ ├── gbase64.c │ │ │ ├── gbase64.h │ │ │ ├── gbitlock.c │ │ │ ├── gbitlock.h │ │ │ ├── gbookmarkfile.c │ │ │ ├── gbookmarkfile.h │ │ │ ├── gbsearcharray.h │ │ │ ├── gbuffer.c │ │ │ ├── gbuffer.h │ │ │ ├── gcache.c │ │ │ ├── gcache.h │ │ │ ├── gchecksum.c │ │ │ ├── gchecksum.h │ │ │ ├── gcompletion.c │ │ │ ├── gcompletion.h │ │ │ ├── gconvert.c │ │ │ ├── gconvert.h │ │ │ ├── gdataset.c │ │ │ ├── gdataset.h │ │ │ ├── gdatasetprivate.h │ │ │ ├── gdate.c │ │ │ ├── gdate.h │ │ │ ├── gdebug.h │ │ │ ├── gdir.c │ │ │ ├── gdir.h │ │ │ ├── gen-script-table.pl │ │ │ ├── gen-unicode-tables.pl │ │ │ ├── gerror.c │ │ │ ├── gerror.h │ │ │ ├── gfileutils.c │ │ │ ├── gfileutils.h │ │ │ ├── ghash.c │ │ │ ├── ghash.h │ │ │ ├── ghook.c │ │ │ ├── ghook.h │ │ │ ├── ghostutils.c │ │ │ ├── ghostutils.h │ │ │ ├── gi18n-lib.h │ │ │ ├── gi18n.h │ │ │ ├── giochannel.c │ │ │ ├── giochannel.h │ │ │ ├── giounix.c │ │ │ ├── giowin32.c │ │ │ ├── gkeyfile.c │ │ │ ├── gkeyfile.h │ │ │ ├── glib-mirroring-tab │ │ │ │ ├── Makefile │ │ │ │ ├── gen-mirroring-tab.c │ │ │ │ ├── packtab.c │ │ │ │ └── packtab.h │ │ │ ├── glib-object.h │ │ │ ├── glib.h │ │ │ ├── glib.py │ │ │ ├── glib.rc │ │ │ ├── glib.rc.in │ │ │ ├── glib.symbols │ │ │ ├── glibintl.h │ │ │ ├── glist.c │ │ │ ├── glist.h │ │ │ ├── gmacros.h │ │ │ ├── gmain.c │ │ │ ├── gmain.h │ │ │ ├── gmappedfile.c │ │ │ ├── gmappedfile.h │ │ │ ├── gmarkup.c │ │ │ ├── gmarkup.h │ │ │ ├── gmem.c │ │ │ ├── gmem.h │ │ │ ├── gmessages.c │ │ │ ├── gmessages.h │ │ │ ├── gmirroringtable.h │ │ │ ├── gnode.c │ │ │ ├── gnode.h │ │ │ ├── gnulib │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── asnprintf.c │ │ │ │ ├── g-gnulib.h │ │ │ │ ├── makefile.msc │ │ │ │ ├── printf-args.c │ │ │ │ ├── printf-args.h │ │ │ │ ├── printf-parse.c │ │ │ │ ├── printf-parse.h │ │ │ │ ├── printf.c │ │ │ │ ├── printf.h │ │ │ │ ├── vasnprintf.c │ │ │ │ └── vasnprintf.h │ │ │ ├── goption.c │ │ │ ├── goption.h │ │ │ ├── gpattern.c │ │ │ ├── gpattern.h │ │ │ ├── gpoll.c │ │ │ ├── gpoll.h │ │ │ ├── gprimes.c │ │ │ ├── gprimes.h │ │ │ ├── gprintf.c │ │ │ ├── gprintf.h │ │ │ ├── gprintfint.h │ │ │ ├── gqsort.c │ │ │ ├── gqsort.h │ │ │ ├── gquark.h │ │ │ ├── gqueue.c │ │ │ ├── gqueue.h │ │ │ ├── grand.c │ │ │ ├── grand.h │ │ │ ├── gregex.c │ │ │ ├── gregex.h │ │ │ ├── grel.c │ │ │ ├── grel.h │ │ │ ├── gscanner.c │ │ │ ├── gscanner.h │ │ │ ├── gscripttable.h │ │ │ ├── gsequence.c │ │ │ ├── gsequence.h │ │ │ ├── gshell.c │ │ │ ├── gshell.h │ │ │ ├── gslice.c │ │ │ ├── gslice.h │ │ │ ├── gslist.c │ │ │ ├── gslist.h │ │ │ ├── gspawn-win32-helper-console.c │ │ │ ├── gspawn-win32-helper.c │ │ │ ├── gspawn-win32.c │ │ │ ├── gspawn-win64-helper-console.c │ │ │ ├── gspawn-win64-helper.c │ │ │ ├── gspawn.c │ │ │ ├── gspawn.h │ │ │ ├── gstdio.c │ │ │ ├── gstdio.h │ │ │ ├── gstrfuncs.c │ │ │ ├── gstrfuncs.h │ │ │ ├── gstring.c │ │ │ ├── gstring.h │ │ │ ├── gtester-report │ │ │ ├── gtester.c │ │ │ ├── gtestutils.c │ │ │ ├── gtestutils.h │ │ │ ├── gthread.c │ │ │ ├── gthread.h │ │ │ ├── gthreadpool.c │ │ │ ├── gthreadpool.h │ │ │ ├── gthreadprivate.h │ │ │ ├── gtimer.c │ │ │ ├── gtimer.h │ │ │ ├── gtree.c │ │ │ ├── gtree.h │ │ │ ├── gtypes.h │ │ │ ├── gunibreak.c │ │ │ ├── gunibreak.h │ │ │ ├── gunichartables.h │ │ │ ├── gunicode.h │ │ │ ├── gunicodeprivate.h │ │ │ ├── gunicollate.c │ │ │ ├── gunicomp.h │ │ │ ├── gunidecomp.c │ │ │ ├── gunidecomp.h │ │ │ ├── guniprop.c │ │ │ ├── gurifuncs.c │ │ │ ├── gurifuncs.h │ │ │ ├── gutf8.c │ │ │ ├── gutils.c │ │ │ ├── gutils.h │ │ │ ├── gvariant-core.c │ │ │ ├── gvariant-core.h │ │ │ ├── gvariant-internal.h │ │ │ ├── gvariant-parser.c │ │ │ ├── gvariant-serialiser.c │ │ │ ├── gvariant-serialiser.h │ │ │ ├── gvariant.c │ │ │ ├── gvariant.h │ │ │ ├── gvarianttype.c │ │ │ ├── gvarianttype.h │ │ │ ├── gvarianttypeinfo.c │ │ │ ├── gvarianttypeinfo.h │ │ │ ├── gwin32.c │ │ │ ├── gwin32.h │ │ │ ├── libcharset │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── codeset.m4 │ │ │ │ ├── config.charset │ │ │ │ ├── glibc21.m4 │ │ │ │ ├── libcharset-glib.patch │ │ │ │ ├── libcharset.h │ │ │ │ ├── localcharset.c │ │ │ │ ├── localcharset.h │ │ │ │ ├── make-patch.sh │ │ │ │ ├── ref-add.sin │ │ │ │ ├── ref-del.sin │ │ │ │ └── update.sh │ │ │ ├── libglib-gdb.py.in │ │ │ ├── makefile.msc │ │ │ ├── makefile.msc.in │ │ │ ├── makegalias.pl │ │ │ ├── pcre │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── makefile.msc │ │ │ │ ├── pcre.h │ │ │ │ ├── pcre_chartables.c │ │ │ │ ├── pcre_compile.c │ │ │ │ ├── pcre_config.c │ │ │ │ ├── pcre_dfa_exec.c │ │ │ │ ├── pcre_exec.c │ │ │ │ ├── pcre_fullinfo.c │ │ │ │ ├── pcre_get.c │ │ │ │ ├── pcre_globals.c │ │ │ │ ├── pcre_info.c │ │ │ │ ├── pcre_internal.h │ │ │ │ ├── pcre_maketables.c │ │ │ │ ├── pcre_newline.c │ │ │ │ ├── pcre_ord2utf8.c │ │ │ │ ├── pcre_refcount.c │ │ │ │ ├── pcre_study.c │ │ │ │ ├── pcre_tables.c │ │ │ │ ├── pcre_try_flipped.c │ │ │ │ ├── pcre_ucp_searchfuncs.c │ │ │ │ ├── pcre_valid_utf8.c │ │ │ │ ├── pcre_version.c │ │ │ │ ├── pcre_xclass.c │ │ │ │ ├── ucp.h │ │ │ │ └── ucpinternal.h │ │ │ ├── pltcheck.sh │ │ │ ├── tests │ │ │ │ ├── 4096-random-bytes │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── array-test.c │ │ │ │ ├── fileutils.c │ │ │ │ ├── gvariant.c │ │ │ │ ├── hostutils.c │ │ │ │ ├── keyfile.c │ │ │ │ ├── markup-subparser.c │ │ │ │ ├── mem-overflow.c │ │ │ │ ├── option-context.c │ │ │ │ ├── printf.c │ │ │ │ ├── rand.c │ │ │ │ ├── strfuncs.c │ │ │ │ ├── string.c │ │ │ │ └── testing.c │ │ │ ├── update-pcre │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.am-1 │ │ │ │ ├── Makefile.am-2 │ │ │ │ ├── Makefile.in │ │ │ │ ├── digitab.patch │ │ │ │ ├── memory.patch │ │ │ │ ├── pcre_ucp_searchfuncs.c │ │ │ │ ├── pcre_valid_utf8.c │ │ │ │ └── update.sh │ │ │ └── win_iconv.c │ │ ├── glibconfig.h.win32 │ │ ├── glibconfig.h.win32.in │ │ ├── gmodule-2.0-uninstalled.pc.in │ │ ├── gmodule-2.0.pc.in │ │ ├── gmodule-export-2.0.pc.in │ │ ├── gmodule-no-export-2.0-uninstalled.pc.in │ │ ├── gmodule-no-export-2.0.pc.in │ │ ├── gmodule │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gmodule-ar.c │ │ │ ├── gmodule-beos.c │ │ │ ├── gmodule-dl.c │ │ │ ├── gmodule-dld.c │ │ │ ├── gmodule-dyld.c │ │ │ ├── gmodule-os2.c │ │ │ ├── gmodule-win32.c │ │ │ ├── gmodule.c │ │ │ ├── gmodule.h │ │ │ ├── gmodule.rc │ │ │ ├── gmodule.rc.in │ │ │ ├── gmodule.symbols │ │ │ ├── gmoduleconf.h.in │ │ │ ├── gmoduleconf.h.win32 │ │ │ ├── makefile.msc │ │ │ └── makefile.msc.in │ │ ├── gobject-2.0-uninstalled.pc.in │ │ ├── gobject-2.0.pc.in │ │ ├── gobject │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── abicheck.sh │ │ │ ├── gatomicarray.c │ │ │ ├── gatomicarray.h │ │ │ ├── gboxed.c │ │ │ ├── gboxed.h │ │ │ ├── gclosure.c │ │ │ ├── gclosure.h │ │ │ ├── genums.c │ │ │ ├── genums.h │ │ │ ├── glib-genmarshal.1 │ │ │ ├── glib-genmarshal.c │ │ │ ├── glib-mkenums.1 │ │ │ ├── glib-mkenums.in │ │ │ ├── gmarshal.c │ │ │ ├── gmarshal.h │ │ │ ├── gmarshal.list │ │ │ ├── gmarshal.strings │ │ │ ├── gobject-query.c │ │ │ ├── gobject.c │ │ │ ├── gobject.h │ │ │ ├── gobject.py │ │ │ ├── gobject.rc │ │ │ ├── gobject.rc.in │ │ │ ├── gobject.symbols │ │ │ ├── gobjectalias.h │ │ │ ├── gobjectaliasdef.c │ │ │ ├── gobjectnotifyqueue.c │ │ │ ├── gparam.c │ │ │ ├── gparam.h │ │ │ ├── gparamspecs.c │ │ │ ├── gparamspecs.h │ │ │ ├── gsignal.c │ │ │ ├── gsignal.h │ │ │ ├── gsourceclosure.c │ │ │ ├── gsourceclosure.h │ │ │ ├── gtype-private.h │ │ │ ├── gtype.c │ │ │ ├── gtype.h │ │ │ ├── gtypemodule.c │ │ │ ├── gtypemodule.h │ │ │ ├── gtypeplugin.c │ │ │ ├── gtypeplugin.h │ │ │ ├── gvalue.c │ │ │ ├── gvalue.h │ │ │ ├── gvaluearray.c │ │ │ ├── gvaluearray.h │ │ │ ├── gvaluecollector.h │ │ │ ├── gvaluetransform.c │ │ │ ├── gvaluetypes.c │ │ │ ├── gvaluetypes.h │ │ │ ├── libgobject-gdb.py.in │ │ │ ├── makefile.msc │ │ │ ├── makefile.msc.in │ │ │ ├── makegobjectalias.pl │ │ │ ├── marshal-genstrings.pl │ │ │ ├── pltcheck.sh │ │ │ ├── stamp-gmarshal.h │ │ │ ├── testgobject.c │ │ │ └── tests │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── dynamictests.c │ │ │ │ └── threadtests.c │ │ ├── gthread-2.0-uninstalled.pc.in │ │ ├── gthread-2.0.pc.in │ │ ├── gthread │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gthread-impl.c │ │ │ ├── gthread-none.c │ │ │ ├── gthread-posix.c │ │ │ ├── gthread-win32.c │ │ │ ├── gthread.def │ │ │ ├── gthread.rc │ │ │ ├── gthread.rc.in │ │ │ ├── makefile.msc │ │ │ ├── makefile.msc.in │ │ │ └── tests │ │ │ │ ├── 1bit-mutex.c │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ ├── gtk-doc.make │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4macros │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── glib-2.0.m4 │ │ │ └── glib-gettext.m4 │ │ ├── makefile.msc │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── msvc_recommended_pragmas.h │ │ ├── po │ │ │ ├── ChangeLog │ │ │ ├── LINGUAS │ │ │ ├── Makefile.in.in │ │ │ ├── POTFILES.in │ │ │ ├── af.gmo │ │ │ ├── af.po │ │ │ ├── am.gmo │ │ │ ├── am.po │ │ │ ├── ar.gmo │ │ │ ├── ar.po │ │ │ ├── as.gmo │ │ │ ├── as.po │ │ │ ├── ast.gmo │ │ │ ├── ast.po │ │ │ ├── az.gmo │ │ │ ├── az.po │ │ │ ├── be.gmo │ │ │ ├── be.po │ │ │ ├── be@latin.gmo │ │ │ ├── be@latin.po │ │ │ ├── bg.gmo │ │ │ ├── bg.po │ │ │ ├── bn.gmo │ │ │ ├── bn.po │ │ │ ├── bn_IN.gmo │ │ │ ├── bn_IN.po │ │ │ ├── bs.gmo │ │ │ ├── bs.po │ │ │ ├── ca.gmo │ │ │ ├── ca.po │ │ │ ├── ca@valencia.gmo │ │ │ ├── ca@valencia.po │ │ │ ├── cs.gmo │ │ │ ├── cs.po │ │ │ ├── cy.gmo │ │ │ ├── cy.po │ │ │ ├── da.gmo │ │ │ ├── da.po │ │ │ ├── de.gmo │ │ │ ├── de.po │ │ │ ├── dz.gmo │ │ │ ├── dz.po │ │ │ ├── el.gmo │ │ │ ├── el.po │ │ │ ├── en@shaw.gmo │ │ │ ├── en@shaw.po │ │ │ ├── en_CA.gmo │ │ │ ├── en_CA.po │ │ │ ├── en_GB.gmo │ │ │ ├── en_GB.po │ │ │ ├── eo.gmo │ │ │ ├── eo.po │ │ │ ├── es.gmo │ │ │ ├── es.po │ │ │ ├── et.gmo │ │ │ ├── et.po │ │ │ ├── eu.gmo │ │ │ ├── eu.po │ │ │ ├── fa.gmo │ │ │ ├── fa.po │ │ │ ├── fi.gmo │ │ │ ├── fi.po │ │ │ ├── fr.gmo │ │ │ ├── fr.po │ │ │ ├── ga.gmo │ │ │ ├── ga.po │ │ │ ├── gl.gmo │ │ │ ├── gl.po │ │ │ ├── glib20.pot │ │ │ ├── gu.gmo │ │ │ ├── gu.po │ │ │ ├── he.gmo │ │ │ ├── he.po │ │ │ ├── hi.gmo │ │ │ ├── hi.po │ │ │ ├── hr.gmo │ │ │ ├── hr.po │ │ │ ├── hu.gmo │ │ │ ├── hu.po │ │ │ ├── hy.gmo │ │ │ ├── hy.po │ │ │ ├── id.gmo │ │ │ ├── id.po │ │ │ ├── is.gmo │ │ │ ├── is.po │ │ │ ├── it.gmo │ │ │ ├── it.po │ │ │ ├── ja.gmo │ │ │ ├── ja.po │ │ │ ├── ka.gmo │ │ │ ├── ka.po │ │ │ ├── kn.gmo │ │ │ ├── kn.po │ │ │ ├── ko.gmo │ │ │ ├── ko.po │ │ │ ├── ku.gmo │ │ │ ├── ku.po │ │ │ ├── lt.gmo │ │ │ ├── lt.po │ │ │ ├── lv.gmo │ │ │ ├── lv.po │ │ │ ├── mai.gmo │ │ │ ├── mai.po │ │ │ ├── mg.gmo │ │ │ ├── mg.po │ │ │ ├── mk.gmo │ │ │ ├── mk.po │ │ │ ├── ml.gmo │ │ │ ├── ml.po │ │ │ ├── mn.gmo │ │ │ ├── mn.po │ │ │ ├── mr.gmo │ │ │ ├── mr.po │ │ │ ├── ms.gmo │ │ │ ├── ms.po │ │ │ ├── nb.gmo │ │ │ ├── nb.po │ │ │ ├── nds.gmo │ │ │ ├── nds.po │ │ │ ├── ne.gmo │ │ │ ├── ne.po │ │ │ ├── nl.gmo │ │ │ ├── nl.po │ │ │ ├── nn.gmo │ │ │ ├── nn.po │ │ │ ├── oc.gmo │ │ │ ├── oc.po │ │ │ ├── or.gmo │ │ │ ├── or.po │ │ │ ├── pa.gmo │ │ │ ├── pa.po │ │ │ ├── pl.gmo │ │ │ ├── pl.po │ │ │ ├── po2tbl.sed.in │ │ │ ├── ps.gmo │ │ │ ├── ps.po │ │ │ ├── pt.gmo │ │ │ ├── pt.po │ │ │ ├── pt_BR.gmo │ │ │ ├── pt_BR.po │ │ │ ├── ro.gmo │ │ │ ├── ro.po │ │ │ ├── ru.gmo │ │ │ ├── ru.po │ │ │ ├── rw.gmo │ │ │ ├── rw.po │ │ │ ├── si.gmo │ │ │ ├── si.po │ │ │ ├── sk.gmo │ │ │ ├── sk.po │ │ │ ├── sl.gmo │ │ │ ├── sl.po │ │ │ ├── sq.gmo │ │ │ ├── sq.po │ │ │ ├── sr.gmo │ │ │ ├── sr.po │ │ │ ├── sr@ije.gmo │ │ │ ├── sr@ije.po │ │ │ ├── sr@latin.gmo │ │ │ ├── sr@latin.po │ │ │ ├── sv.gmo │ │ │ ├── sv.po │ │ │ ├── ta.gmo │ │ │ ├── ta.po │ │ │ ├── te.gmo │ │ │ ├── te.po │ │ │ ├── th.gmo │ │ │ ├── th.po │ │ │ ├── tl.gmo │ │ │ ├── tl.po │ │ │ ├── tr.gmo │ │ │ ├── tr.po │ │ │ ├── tt.gmo │ │ │ ├── tt.po │ │ │ ├── uk.gmo │ │ │ ├── uk.po │ │ │ ├── vi.gmo │ │ │ ├── vi.po │ │ │ ├── wa.gmo │ │ │ ├── wa.po │ │ │ ├── xh.gmo │ │ │ ├── xh.po │ │ │ ├── yi.gmo │ │ │ ├── yi.po │ │ │ ├── zh_CN.gmo │ │ │ ├── zh_CN.po │ │ │ ├── zh_HK.gmo │ │ │ ├── zh_HK.po │ │ │ ├── zh_TW.gmo │ │ │ └── zh_TW.po │ │ ├── sanity_check │ │ └── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── assert-msg-test.c │ │ │ ├── asyncqueue-test.c │ │ │ ├── atomic-test.c │ │ │ ├── base64-test.c │ │ │ ├── bit-test.c │ │ │ ├── bookmarkfile-test.c │ │ │ ├── bookmarks │ │ │ ├── fail-01.xbel │ │ │ ├── fail-02.xbel │ │ │ ├── fail-03.xbel │ │ │ ├── fail-04.xbel │ │ │ ├── fail-05.xbel │ │ │ ├── fail-06.xbel │ │ │ ├── fail-07.xbel │ │ │ ├── fail-08.xbel │ │ │ ├── fail-09.xbel │ │ │ ├── fail-10.xbel │ │ │ ├── fail-11.xbel │ │ │ ├── fail-12.xbel │ │ │ ├── fail-13.xbel │ │ │ ├── fail-14.xbel │ │ │ ├── fail-15.xbel │ │ │ ├── fail-16.xbel │ │ │ ├── fail-17.xbel │ │ │ ├── valid-01.xbel │ │ │ ├── valid-02.xbel │ │ │ └── valid-03.xbel │ │ │ ├── casefold.txt │ │ │ ├── casemap.txt │ │ │ ├── checksum-test.c │ │ │ ├── child-test.c │ │ │ ├── collate │ │ │ ├── collate-1.file │ │ │ ├── collate-1.in │ │ │ ├── collate-1.unicode │ │ │ ├── collate-2.file │ │ │ ├── collate-2.in │ │ │ └── collate-2.unicode │ │ │ ├── completion-test.c │ │ │ ├── convert-test.c │ │ │ ├── cxx-test.C │ │ │ ├── date-test.c │ │ │ ├── dirname-test.c │ │ │ ├── env-test.c │ │ │ ├── errorcheck-mutex-test.c │ │ │ ├── file-test.c │ │ │ ├── gen-casefold-txt.pl │ │ │ ├── gen-casemap-txt.pl │ │ │ ├── gio-test.c │ │ │ ├── gobject │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── accumulator.c │ │ │ ├── defaultiface.c │ │ │ ├── deftype.c │ │ │ ├── dynamictype.c │ │ │ ├── gvalue-test.c │ │ │ ├── ifacecheck.c │ │ │ ├── ifaceinherit.c │ │ │ ├── ifaceinit.c │ │ │ ├── ifaceproperties.c │ │ │ ├── override.c │ │ │ ├── paramspec-test.c │ │ │ ├── performance-threaded.c │ │ │ ├── performance.c │ │ │ ├── references.c │ │ │ ├── singleton.c │ │ │ ├── testcommon.h │ │ │ ├── testmarshal.c │ │ │ ├── testmarshal.h │ │ │ ├── testmarshal.list │ │ │ ├── testmodule.c │ │ │ └── testmodule.h │ │ │ ├── hash-test.c │ │ │ ├── iochannel-test-infile │ │ │ ├── iochannel-test.c │ │ │ ├── libmoduletestplugin_a.c │ │ │ ├── libmoduletestplugin_b.c │ │ │ ├── list-test.c │ │ │ ├── mainloop-test.c │ │ │ ├── makefile.msc │ │ │ ├── makefile.msc.in │ │ │ ├── mapping-test.c │ │ │ ├── markup-collect.c │ │ │ ├── markup-escape-test.c │ │ │ ├── markup-test.c │ │ │ ├── markups │ │ │ ├── expected-1 │ │ │ ├── expected-10 │ │ │ ├── expected-11 │ │ │ ├── expected-2 │ │ │ ├── expected-3 │ │ │ ├── expected-4 │ │ │ ├── expected-5 │ │ │ ├── expected-6 │ │ │ ├── expected-7 │ │ │ ├── expected-8 │ │ │ ├── expected-9 │ │ │ ├── fail-1.gmarkup │ │ │ ├── fail-10.gmarkup │ │ │ ├── fail-11.gmarkup │ │ │ ├── fail-12.gmarkup │ │ │ ├── fail-13.gmarkup │ │ │ ├── fail-14.gmarkup │ │ │ ├── fail-15.gmarkup │ │ │ ├── fail-16.gmarkup │ │ │ ├── fail-17.gmarkup │ │ │ ├── fail-18.gmarkup │ │ │ ├── fail-19.gmarkup │ │ │ ├── fail-2.gmarkup │ │ │ ├── fail-20.gmarkup │ │ │ ├── fail-21.gmarkup │ │ │ ├── fail-22.gmarkup │ │ │ ├── fail-23.gmarkup │ │ │ ├── fail-24.gmarkup │ │ │ ├── fail-25.gmarkup │ │ │ ├── fail-26.gmarkup │ │ │ ├── fail-27.gmarkup │ │ │ ├── fail-28.gmarkup │ │ │ ├── fail-29.gmarkup │ │ │ ├── fail-3.gmarkup │ │ │ ├── fail-30.gmarkup │ │ │ ├── fail-31.gmarkup │ │ │ ├── fail-32.gmarkup │ │ │ ├── fail-33.gmarkup │ │ │ ├── fail-34.gmarkup │ │ │ ├── fail-35.gmarkup │ │ │ ├── fail-36.gmarkup │ │ │ ├── fail-37.gmarkup │ │ │ ├── fail-38.gmarkup │ │ │ ├── fail-39.gmarkup │ │ │ ├── fail-4.gmarkup │ │ │ ├── fail-40.gmarkup │ │ │ ├── fail-5.gmarkup │ │ │ ├── fail-6.gmarkup │ │ │ ├── fail-7.gmarkup │ │ │ ├── fail-8.gmarkup │ │ │ ├── fail-9.gmarkup │ │ │ ├── valid-1.gmarkup │ │ │ ├── valid-10.gmarkup │ │ │ ├── valid-11.gmarkup │ │ │ ├── valid-2.gmarkup │ │ │ ├── valid-3.gmarkup │ │ │ ├── valid-4.gmarkup │ │ │ ├── valid-5.gmarkup │ │ │ ├── valid-6.gmarkup │ │ │ ├── valid-7.gmarkup │ │ │ ├── valid-8.gmarkup │ │ │ └── valid-9.gmarkup │ │ │ ├── memchunks.c │ │ │ ├── module-test.c │ │ │ ├── node-test.c │ │ │ ├── onceinit.c │ │ │ ├── patterntest.c │ │ │ ├── qsort-test.c │ │ │ ├── queue-test.c │ │ │ ├── refcount │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── closures.c │ │ │ ├── objects.c │ │ │ ├── objects2.c │ │ │ ├── properties.c │ │ │ ├── properties2.c │ │ │ └── signals.c │ │ │ ├── regex-test.c │ │ │ ├── relation-test.c │ │ │ ├── run-assert-msg-test.sh │ │ │ ├── run-bookmark-test.sh │ │ │ ├── run-collate-tests.sh │ │ │ ├── run-markup-tests.sh │ │ │ ├── scannerapi.c │ │ │ ├── sequence-test.c │ │ │ ├── shell-test.c │ │ │ ├── slice-color.c │ │ │ ├── slice-concurrent.c │ │ │ ├── slice-test.c │ │ │ ├── slice-threadinit.c │ │ │ ├── slist-test.c │ │ │ ├── spawn-test-win32-gui.c │ │ │ ├── spawn-test.c │ │ │ ├── testgdate.c │ │ │ ├── testgdateparser.c │ │ │ ├── testglib.c │ │ │ ├── testingbase64.c │ │ │ ├── thread-test.c │ │ │ ├── threadpool-test.c │ │ │ ├── timeloop-basic.c │ │ │ ├── timeloop-closure.c │ │ │ ├── timeloop.c │ │ │ ├── tree-test.c │ │ │ ├── type-test.c │ │ │ ├── unicode-caseconv.c │ │ │ ├── unicode-collate.c │ │ │ ├── unicode-encoding.c │ │ │ ├── unicode-normalize.c │ │ │ ├── uri-test.c │ │ │ ├── utf8-pointer.c │ │ │ ├── utf8-validate.c │ │ │ └── utf8.txt │ └── version │ ├── gsl │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── SUPPORT │ │ ├── THANKS │ │ ├── TODO │ │ ├── acconfig.h │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── blas │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── blas.c │ │ │ ├── gsl_blas.h │ │ │ └── gsl_blas_types.h │ │ ├── block │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── block.c │ │ │ ├── block_source.c │ │ │ ├── file.c │ │ │ ├── fprintf_source.c │ │ │ ├── fwrite_source.c │ │ │ ├── gsl_block.h │ │ │ ├── gsl_block_char.h │ │ │ ├── gsl_block_complex_double.h │ │ │ ├── gsl_block_complex_float.h │ │ │ ├── gsl_block_complex_long_double.h │ │ │ ├── gsl_block_double.h │ │ │ ├── gsl_block_float.h │ │ │ ├── gsl_block_int.h │ │ │ ├── gsl_block_long.h │ │ │ ├── gsl_block_long_double.h │ │ │ ├── gsl_block_short.h │ │ │ ├── gsl_block_uchar.h │ │ │ ├── gsl_block_uint.h │ │ │ ├── gsl_block_ulong.h │ │ │ ├── gsl_block_ushort.h │ │ │ ├── gsl_check_range.h │ │ │ ├── init.c │ │ │ ├── init_source.c │ │ │ ├── test.c │ │ │ ├── test_complex_io.c │ │ │ ├── test_complex_source.c │ │ │ ├── test_io.c │ │ │ └── test_source.c │ │ ├── bspline │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── bspline.c │ │ │ ├── gsl_bspline.h │ │ │ └── test.c │ │ ├── cblas │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── caxpy.c │ │ │ ├── cblas.h │ │ │ ├── ccopy.c │ │ │ ├── cdotc_sub.c │ │ │ ├── cdotu_sub.c │ │ │ ├── cgbmv.c │ │ │ ├── cgemm.c │ │ │ ├── cgemv.c │ │ │ ├── cgerc.c │ │ │ ├── cgeru.c │ │ │ ├── chbmv.c │ │ │ ├── chemm.c │ │ │ ├── chemv.c │ │ │ ├── cher.c │ │ │ ├── cher2.c │ │ │ ├── cher2k.c │ │ │ ├── cherk.c │ │ │ ├── chpmv.c │ │ │ ├── chpr.c │ │ │ ├── chpr2.c │ │ │ ├── cscal.c │ │ │ ├── csscal.c │ │ │ ├── cswap.c │ │ │ ├── csymm.c │ │ │ ├── csyr2k.c │ │ │ ├── csyrk.c │ │ │ ├── ctbmv.c │ │ │ ├── ctbsv.c │ │ │ ├── ctpmv.c │ │ │ ├── ctpsv.c │ │ │ ├── ctrmm.c │ │ │ ├── ctrmv.c │ │ │ ├── ctrsm.c │ │ │ ├── ctrsv.c │ │ │ ├── dasum.c │ │ │ ├── daxpy.c │ │ │ ├── dcopy.c │ │ │ ├── ddot.c │ │ │ ├── dgbmv.c │ │ │ ├── dgemm.c │ │ │ ├── dgemv.c │ │ │ ├── dger.c │ │ │ ├── dnrm2.c │ │ │ ├── drot.c │ │ │ ├── drotg.c │ │ │ ├── drotm.c │ │ │ ├── drotmg.c │ │ │ ├── dsbmv.c │ │ │ ├── dscal.c │ │ │ ├── dsdot.c │ │ │ ├── dspmv.c │ │ │ ├── dspr.c │ │ │ ├── dspr2.c │ │ │ ├── dswap.c │ │ │ ├── dsymm.c │ │ │ ├── dsymv.c │ │ │ ├── dsyr.c │ │ │ ├── dsyr2.c │ │ │ ├── dsyr2k.c │ │ │ ├── dsyrk.c │ │ │ ├── dtbmv.c │ │ │ ├── dtbsv.c │ │ │ ├── dtpmv.c │ │ │ ├── dtpsv.c │ │ │ ├── dtrmm.c │ │ │ ├── dtrmv.c │ │ │ ├── dtrsm.c │ │ │ ├── dtrsv.c │ │ │ ├── dzasum.c │ │ │ ├── dznrm2.c │ │ │ ├── gsl_cblas.h │ │ │ ├── hypot.c │ │ │ ├── icamax.c │ │ │ ├── idamax.c │ │ │ ├── isamax.c │ │ │ ├── izamax.c │ │ │ ├── sasum.c │ │ │ ├── saxpy.c │ │ │ ├── scasum.c │ │ │ ├── scnrm2.c │ │ │ ├── scopy.c │ │ │ ├── sdot.c │ │ │ ├── sdsdot.c │ │ │ ├── sgbmv.c │ │ │ ├── sgemm.c │ │ │ ├── sgemv.c │ │ │ ├── sger.c │ │ │ ├── snrm2.c │ │ │ ├── source_asum_c.h │ │ │ ├── source_asum_r.h │ │ │ ├── source_axpy_c.h │ │ │ ├── source_axpy_r.h │ │ │ ├── source_copy_c.h │ │ │ ├── source_copy_r.h │ │ │ ├── source_dot_c.h │ │ │ ├── source_dot_r.h │ │ │ ├── source_gbmv_c.h │ │ │ ├── source_gbmv_r.h │ │ │ ├── source_gemm_c.h │ │ │ ├── source_gemm_r.h │ │ │ ├── source_gemv_c.h │ │ │ ├── source_gemv_r.h │ │ │ ├── source_ger.h │ │ │ ├── source_gerc.h │ │ │ ├── source_geru.h │ │ │ ├── source_hbmv.h │ │ │ ├── source_hemm.h │ │ │ ├── source_hemv.h │ │ │ ├── source_her.h │ │ │ ├── source_her2.h │ │ │ ├── source_her2k.h │ │ │ ├── source_herk.h │ │ │ ├── source_hpmv.h │ │ │ ├── source_hpr.h │ │ │ ├── source_hpr2.h │ │ │ ├── source_iamax_c.h │ │ │ ├── source_iamax_r.h │ │ │ ├── source_nrm2_c.h │ │ │ ├── source_nrm2_r.h │ │ │ ├── source_rot.h │ │ │ ├── source_rotg.h │ │ │ ├── source_rotm.h │ │ │ ├── source_rotmg.h │ │ │ ├── source_sbmv.h │ │ │ ├── source_scal_c.h │ │ │ ├── source_scal_c_s.h │ │ │ ├── source_scal_r.h │ │ │ ├── source_spmv.h │ │ │ ├── source_spr.h │ │ │ ├── source_spr2.h │ │ │ ├── source_swap_c.h │ │ │ ├── source_swap_r.h │ │ │ ├── source_symm_c.h │ │ │ ├── source_symm_r.h │ │ │ ├── source_symv.h │ │ │ ├── source_syr.h │ │ │ ├── source_syr2.h │ │ │ ├── source_syr2k_c.h │ │ │ ├── source_syr2k_r.h │ │ │ ├── source_syrk_c.h │ │ │ ├── source_syrk_r.h │ │ │ ├── source_tbmv_c.h │ │ │ ├── source_tbmv_r.h │ │ │ ├── source_tbsv_c.h │ │ │ ├── source_tbsv_r.h │ │ │ ├── source_tpmv_c.h │ │ │ ├── source_tpmv_r.h │ │ │ ├── source_tpsv_c.h │ │ │ ├── source_tpsv_r.h │ │ │ ├── source_trmm_c.h │ │ │ ├── source_trmm_r.h │ │ │ ├── source_trmv_c.h │ │ │ ├── source_trmv_r.h │ │ │ ├── source_trsm_c.h │ │ │ ├── source_trsm_r.h │ │ │ ├── source_trsv_c.h │ │ │ ├── source_trsv_r.h │ │ │ ├── srot.c │ │ │ ├── srotg.c │ │ │ ├── srotm.c │ │ │ ├── srotmg.c │ │ │ ├── ssbmv.c │ │ │ ├── sscal.c │ │ │ ├── sspmv.c │ │ │ ├── sspr.c │ │ │ ├── sspr2.c │ │ │ ├── sswap.c │ │ │ ├── ssymm.c │ │ │ ├── ssymv.c │ │ │ ├── ssyr.c │ │ │ ├── ssyr2.c │ │ │ ├── ssyr2k.c │ │ │ ├── ssyrk.c │ │ │ ├── stbmv.c │ │ │ ├── stbsv.c │ │ │ ├── stpmv.c │ │ │ ├── stpsv.c │ │ │ ├── strmm.c │ │ │ ├── strmv.c │ │ │ ├── strsm.c │ │ │ ├── strsv.c │ │ │ ├── test.c │ │ │ ├── test_amax.c │ │ │ ├── test_asum.c │ │ │ ├── test_axpy.c │ │ │ ├── test_copy.c │ │ │ ├── test_dot.c │ │ │ ├── test_gbmv.c │ │ │ ├── test_gemm.c │ │ │ ├── test_gemv.c │ │ │ ├── test_ger.c │ │ │ ├── test_hbmv.c │ │ │ ├── test_hemm.c │ │ │ ├── test_hemv.c │ │ │ ├── test_her.c │ │ │ ├── test_her2.c │ │ │ ├── test_her2k.c │ │ │ ├── test_herk.c │ │ │ ├── test_hpmv.c │ │ │ ├── test_hpr.c │ │ │ ├── test_hpr2.c │ │ │ ├── test_nrm2.c │ │ │ ├── test_rot.c │ │ │ ├── test_rotg.c │ │ │ ├── test_rotm.c │ │ │ ├── test_rotmg.c │ │ │ ├── test_sbmv.c │ │ │ ├── test_scal.c │ │ │ ├── test_spmv.c │ │ │ ├── test_spr.c │ │ │ ├── test_spr2.c │ │ │ ├── test_swap.c │ │ │ ├── test_symm.c │ │ │ ├── test_symv.c │ │ │ ├── test_syr.c │ │ │ ├── test_syr2.c │ │ │ ├── test_syr2k.c │ │ │ ├── test_syrk.c │ │ │ ├── test_tbmv.c │ │ │ ├── test_tbsv.c │ │ │ ├── test_tpmv.c │ │ │ ├── test_tpsv.c │ │ │ ├── test_trmm.c │ │ │ ├── test_trmv.c │ │ │ ├── test_trsm.c │ │ │ ├── test_trsv.c │ │ │ ├── tests.c │ │ │ ├── tests.h │ │ │ ├── xerbla.c │ │ │ ├── zaxpy.c │ │ │ ├── zcopy.c │ │ │ ├── zdotc_sub.c │ │ │ ├── zdotu_sub.c │ │ │ ├── zdscal.c │ │ │ ├── zgbmv.c │ │ │ ├── zgemm.c │ │ │ ├── zgemv.c │ │ │ ├── zgerc.c │ │ │ ├── zgeru.c │ │ │ ├── zhbmv.c │ │ │ ├── zhemm.c │ │ │ ├── zhemv.c │ │ │ ├── zher.c │ │ │ ├── zher2.c │ │ │ ├── zher2k.c │ │ │ ├── zherk.c │ │ │ ├── zhpmv.c │ │ │ ├── zhpr.c │ │ │ ├── zhpr2.c │ │ │ ├── zscal.c │ │ │ ├── zswap.c │ │ │ ├── zsymm.c │ │ │ ├── zsyr2k.c │ │ │ ├── zsyrk.c │ │ │ ├── ztbmv.c │ │ │ ├── ztbsv.c │ │ │ ├── ztpmv.c │ │ │ ├── ztpsv.c │ │ │ ├── ztrmm.c │ │ │ ├── ztrmv.c │ │ │ ├── ztrsm.c │ │ │ └── ztrsv.c │ │ ├── cdf │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── beta.c │ │ │ ├── beta_inc.c │ │ │ ├── betainv.c │ │ │ ├── binomial.c │ │ │ ├── cauchy.c │ │ │ ├── cauchyinv.c │ │ │ ├── chisq.c │ │ │ ├── chisqinv.c │ │ │ ├── error.h │ │ │ ├── exponential.c │ │ │ ├── exponentialinv.c │ │ │ ├── exppow.c │ │ │ ├── fdist.c │ │ │ ├── fdistinv.c │ │ │ ├── flat.c │ │ │ ├── flatinv.c │ │ │ ├── gamma.c │ │ │ ├── gammainv.c │ │ │ ├── gauss.c │ │ │ ├── gaussinv.c │ │ │ ├── geometric.c │ │ │ ├── gsl_cdf.h │ │ │ ├── gumbel1.c │ │ │ ├── gumbel1inv.c │ │ │ ├── gumbel2.c │ │ │ ├── gumbel2inv.c │ │ │ ├── hypergeometric.c │ │ │ ├── laplace.c │ │ │ ├── laplaceinv.c │ │ │ ├── logistic.c │ │ │ ├── logisticinv.c │ │ │ ├── lognormal.c │ │ │ ├── lognormalinv.c │ │ │ ├── nbinomial.c │ │ │ ├── pareto.c │ │ │ ├── paretoinv.c │ │ │ ├── pascal.c │ │ │ ├── poisson.c │ │ │ ├── rat_eval.h │ │ │ ├── rayleigh.c │ │ │ ├── rayleighinv.c │ │ │ ├── tdist.c │ │ │ ├── tdistinv.c │ │ │ ├── test.c │ │ │ ├── test_auto.c │ │ │ ├── weibull.c │ │ │ └── weibullinv.c │ │ ├── cheb │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── deriv.c │ │ │ ├── eval.c │ │ │ ├── gsl_chebyshev.h │ │ │ ├── init.c │ │ │ ├── integ.c │ │ │ └── test.c │ │ ├── combination │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── combination.c │ │ │ ├── file.c │ │ │ ├── gsl_combination.h │ │ │ ├── init.c │ │ │ └── test.c │ │ ├── complex │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── gsl_complex.h │ │ │ ├── gsl_complex_math.h │ │ │ ├── math.c │ │ │ ├── results.h │ │ │ ├── results1.h │ │ │ ├── results_real.h │ │ │ └── test.c │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── const │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── gsl_const.h │ │ │ ├── gsl_const_cgs.h │ │ │ ├── gsl_const_cgsm.h │ │ │ ├── gsl_const_mks.h │ │ │ ├── gsl_const_mksa.h │ │ │ ├── gsl_const_num.h │ │ │ └── test.c │ │ ├── deriv │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── deriv.c │ │ │ ├── gsl_deriv.h │ │ │ └── test.c │ │ ├── dht │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dht.c │ │ │ ├── gsl_dht.h │ │ │ └── test.c │ │ ├── diff │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── diff.c │ │ │ ├── gsl_diff.h │ │ │ └── test.c │ │ ├── doc │ │ │ ├── 12-cities.eps │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── algorithm.sty │ │ │ ├── algorithmic.sty │ │ │ ├── autoconf.texi │ │ │ ├── blas.texi │ │ │ ├── bspline.eps │ │ │ ├── bspline.texi │ │ │ ├── calc.sty │ │ │ ├── cblas.texi │ │ │ ├── cheb.eps │ │ │ ├── cheb.texi │ │ │ ├── combination.texi │ │ │ ├── complex.texi │ │ │ ├── const.texi │ │ │ ├── debug.texi │ │ │ ├── dht.texi │ │ │ ├── diff.texi │ │ │ ├── dwt-orig.eps │ │ │ ├── dwt-samp.eps │ │ │ ├── dwt.texi │ │ │ ├── eigen.texi │ │ │ ├── err.texi │ │ │ ├── examples │ │ │ │ ├── blas.c │ │ │ │ ├── blas.out │ │ │ │ ├── block.c │ │ │ │ ├── block.out │ │ │ │ ├── bspline.c │ │ │ │ ├── cblas.c │ │ │ │ ├── cblas.out │ │ │ │ ├── cdf.c │ │ │ │ ├── cdf.out │ │ │ │ ├── cheb.c │ │ │ │ ├── combination.c │ │ │ │ ├── combination.out │ │ │ │ ├── const.c │ │ │ │ ├── const.out │ │ │ │ ├── demo_fn.c │ │ │ │ ├── demo_fn.h │ │ │ │ ├── diff.c │ │ │ │ ├── diff.out │ │ │ │ ├── dwt.c │ │ │ │ ├── dwt.dat │ │ │ │ ├── ecg.dat │ │ │ │ ├── eigen.c │ │ │ │ ├── eigen_nonsymm.c │ │ │ │ ├── expfit.c │ │ │ │ ├── fft.c │ │ │ │ ├── fftmr.c │ │ │ │ ├── fftreal.c │ │ │ │ ├── fitting.c │ │ │ │ ├── fitting2.c │ │ │ │ ├── fitting3.c │ │ │ │ ├── histogram.c │ │ │ │ ├── histogram2d.c │ │ │ │ ├── ieee.c │ │ │ │ ├── ieeeround.c │ │ │ │ ├── integration.c │ │ │ │ ├── integration.out │ │ │ │ ├── interp.c │ │ │ │ ├── interpp.c │ │ │ │ ├── intro.c │ │ │ │ ├── intro.out │ │ │ │ ├── linalglu.c │ │ │ │ ├── linalglu.out │ │ │ │ ├── matrix.c │ │ │ │ ├── matrixw.c │ │ │ │ ├── min.c │ │ │ │ ├── min.out │ │ │ │ ├── monte.c │ │ │ │ ├── nlfit.c │ │ │ │ ├── ntupler.c │ │ │ │ ├── ntuplew.c │ │ │ │ ├── ode-initval.c │ │ │ │ ├── odefixed.c │ │ │ │ ├── permseq.c │ │ │ │ ├── permshuffle.c │ │ │ │ ├── polyroots.c │ │ │ │ ├── polyroots.out │ │ │ │ ├── qrng.c │ │ │ │ ├── randpoisson.2.out │ │ │ │ ├── randpoisson.c │ │ │ │ ├── randpoisson.out │ │ │ │ ├── randwalk.c │ │ │ │ ├── rng.c │ │ │ │ ├── rng.out │ │ │ │ ├── rngunif.2.out │ │ │ │ ├── rngunif.c │ │ │ │ ├── rngunif.out │ │ │ │ ├── rootnewt.c │ │ │ │ ├── roots.c │ │ │ │ ├── siman.c │ │ │ │ ├── sortsmall.c │ │ │ │ ├── sortsmall.out │ │ │ │ ├── specfun.c │ │ │ │ ├── specfun.out │ │ │ │ ├── specfun_e.c │ │ │ │ ├── specfun_e.out │ │ │ │ ├── stat.c │ │ │ │ ├── stat.out │ │ │ │ ├── statsort.c │ │ │ │ ├── statsort.out │ │ │ │ ├── sum.c │ │ │ │ ├── sum.out │ │ │ │ ├── vector.c │ │ │ │ ├── vectorr.c │ │ │ │ ├── vectorview.c │ │ │ │ ├── vectorview.out │ │ │ │ └── vectorw.c │ │ │ ├── fdl.texi │ │ │ ├── fft-complex-radix2-f.eps │ │ │ ├── fft-complex-radix2-t.eps │ │ │ ├── fft-complex-radix2.eps │ │ │ ├── fft-real-mixedradix.eps │ │ │ ├── fft.texi │ │ │ ├── fftalgorithms.bib │ │ │ ├── fftalgorithms.tex │ │ │ ├── final-route.eps │ │ │ ├── fit-exp.eps │ │ │ ├── fit-wlinear.eps │ │ │ ├── fit-wlinear2.eps │ │ │ ├── fitting.texi │ │ │ ├── freemanuals.texi │ │ │ ├── gpl.texi │ │ │ ├── gsl-config.1 │ │ │ ├── gsl-design.texi │ │ │ ├── gsl-histogram.1 │ │ │ ├── gsl-randist.1 │ │ │ ├── gsl-ref.info │ │ │ ├── gsl-ref.info-1 │ │ │ ├── gsl-ref.info-2 │ │ │ ├── gsl-ref.info-3 │ │ │ ├── gsl-ref.info-4 │ │ │ ├── gsl-ref.info-5 │ │ │ ├── gsl-ref.texi │ │ │ ├── gsl.3 │ │ │ ├── histogram.eps │ │ │ ├── histogram.texi │ │ │ ├── histogram2d.eps │ │ │ ├── ieee754.texi │ │ │ ├── initial-route.eps │ │ │ ├── integration.texi │ │ │ ├── interp.texi │ │ │ ├── interp2.eps │ │ │ ├── interpp2.eps │ │ │ ├── intro.texi │ │ │ ├── landau.dat │ │ │ ├── linalg.texi │ │ │ ├── math.texi │ │ │ ├── mdate-sh │ │ │ ├── min-interval.eps │ │ │ ├── min.texi │ │ │ ├── montecarlo.texi │ │ │ ├── multifit.texi │ │ │ ├── multimin.eps │ │ │ ├── multimin.texi │ │ │ ├── multiroots.texi │ │ │ ├── ntuple.eps │ │ │ ├── ntuple.texi │ │ │ ├── ode-initval.texi │ │ │ ├── permutation.texi │ │ │ ├── poly.texi │ │ │ ├── qrng.eps │ │ │ ├── qrng.texi │ │ │ ├── rand-bernoulli.tex │ │ │ ├── rand-beta.tex │ │ │ ├── rand-binomial.tex │ │ │ ├── rand-bivariate-gaussian.tex │ │ │ ├── rand-cauchy.tex │ │ │ ├── rand-chisq.tex │ │ │ ├── rand-erlang.tex │ │ │ ├── rand-exponential.tex │ │ │ ├── rand-exppow.tex │ │ │ ├── rand-fdist.tex │ │ │ ├── rand-flat.tex │ │ │ ├── rand-gamma.tex │ │ │ ├── rand-gaussian-tail.tex │ │ │ ├── rand-gaussian.tex │ │ │ ├── rand-geometric.tex │ │ │ ├── rand-gumbel.tex │ │ │ ├── rand-gumbel1.tex │ │ │ ├── rand-gumbel2.tex │ │ │ ├── rand-hypergeometric.tex │ │ │ ├── rand-landau.tex │ │ │ ├── rand-laplace.tex │ │ │ ├── rand-levy.tex │ │ │ ├── rand-levyskew.tex │ │ │ ├── rand-logarithmic.tex │ │ │ ├── rand-logistic.tex │ │ │ ├── rand-lognormal.tex │ │ │ ├── rand-nbinomial.tex │ │ │ ├── rand-pareto.tex │ │ │ ├── rand-pascal.tex │ │ │ ├── rand-poisson.tex │ │ │ ├── rand-rayleigh-tail.tex │ │ │ ├── rand-rayleigh.tex │ │ │ ├── rand-tdist.tex │ │ │ ├── rand-weibull.tex │ │ │ ├── randist.texi │ │ │ ├── random-walk.tex │ │ │ ├── randplots.gnp │ │ │ ├── rng.texi │ │ │ ├── roots-bisection.eps │ │ │ ├── roots-false-position.eps │ │ │ ├── roots-newtons-method.eps │ │ │ ├── roots-secant-method.eps │ │ │ ├── roots.texi │ │ │ ├── siman-energy.eps │ │ │ ├── siman-test.eps │ │ │ ├── siman.texi │ │ │ ├── sort.texi │ │ │ ├── specfunc-airy.texi │ │ │ ├── specfunc-bessel.texi │ │ │ ├── specfunc-clausen.texi │ │ │ ├── specfunc-coulomb.texi │ │ │ ├── specfunc-coupling.texi │ │ │ ├── specfunc-dawson.texi │ │ │ ├── specfunc-debye.texi │ │ │ ├── specfunc-dilog.texi │ │ │ ├── specfunc-elementary.texi │ │ │ ├── specfunc-ellint.texi │ │ │ ├── specfunc-elljac.texi │ │ │ ├── specfunc-erf.texi │ │ │ ├── specfunc-exp.texi │ │ │ ├── specfunc-expint.texi │ │ │ ├── specfunc-fermi-dirac.texi │ │ │ ├── specfunc-gamma.texi │ │ │ ├── specfunc-gegenbauer.texi │ │ │ ├── specfunc-hyperg.texi │ │ │ ├── specfunc-laguerre.texi │ │ │ ├── specfunc-lambert.texi │ │ │ ├── specfunc-legendre.texi │ │ │ ├── specfunc-log.texi │ │ │ ├── specfunc-mathieu.texi │ │ │ ├── specfunc-pow-int.texi │ │ │ ├── specfunc-psi.texi │ │ │ ├── specfunc-synchrotron.texi │ │ │ ├── specfunc-transport.texi │ │ │ ├── specfunc-trig.texi │ │ │ ├── specfunc-zeta.texi │ │ │ ├── specfunc.texi │ │ │ ├── stamp-vti │ │ │ ├── statistics.texi │ │ │ ├── sum.texi │ │ │ ├── texinfo.tex │ │ │ ├── usage.texi │ │ │ ├── vdp.eps │ │ │ ├── vectors.texi │ │ │ └── version-ref.texi │ │ ├── eigen │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── francis.c │ │ │ ├── gsl_eigen.h │ │ │ ├── herm.c │ │ │ ├── hermv.c │ │ │ ├── jacobi.c │ │ │ ├── nonsymm.c │ │ │ ├── nonsymmv.c │ │ │ ├── qrstep.c │ │ │ ├── schur.c │ │ │ ├── schur.h │ │ │ ├── sort.c │ │ │ ├── symm.c │ │ │ ├── symmv.c │ │ │ └── test.c │ │ ├── err │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── error.c │ │ │ ├── gsl_errno.h │ │ │ ├── gsl_message.h │ │ │ ├── message.c │ │ │ ├── stream.c │ │ │ ├── strerror.c │ │ │ └── test.c │ │ ├── fft │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── bitreverse.c │ │ │ ├── bitreverse.h │ │ │ ├── c_init.c │ │ │ ├── c_main.c │ │ │ ├── c_pass.h │ │ │ ├── c_pass_2.c │ │ │ ├── c_pass_3.c │ │ │ ├── c_pass_4.c │ │ │ ├── c_pass_5.c │ │ │ ├── c_pass_6.c │ │ │ ├── c_pass_7.c │ │ │ ├── c_pass_n.c │ │ │ ├── c_radix2.c │ │ │ ├── compare.h │ │ │ ├── compare_source.c │ │ │ ├── complex_internal.h │ │ │ ├── dft.c │ │ │ ├── dft_source.c │ │ │ ├── factorize.c │ │ │ ├── factorize.h │ │ │ ├── fft.c │ │ │ ├── gsl_dft_complex.h │ │ │ ├── gsl_dft_complex_float.h │ │ │ ├── gsl_fft.h │ │ │ ├── gsl_fft_complex.h │ │ │ ├── gsl_fft_complex_float.h │ │ │ ├── gsl_fft_halfcomplex.h │ │ │ ├── gsl_fft_halfcomplex_float.h │ │ │ ├── gsl_fft_real.h │ │ │ ├── gsl_fft_real_float.h │ │ │ ├── hc_init.c │ │ │ ├── hc_main.c │ │ │ ├── hc_pass.h │ │ │ ├── hc_pass_2.c │ │ │ ├── hc_pass_3.c │ │ │ ├── hc_pass_4.c │ │ │ ├── hc_pass_5.c │ │ │ ├── hc_pass_n.c │ │ │ ├── hc_radix2.c │ │ │ ├── hc_unpack.c │ │ │ ├── real_init.c │ │ │ ├── real_main.c │ │ │ ├── real_pass.h │ │ │ ├── real_pass_2.c │ │ │ ├── real_pass_3.c │ │ │ ├── real_pass_4.c │ │ │ ├── real_pass_5.c │ │ │ ├── real_pass_n.c │ │ │ ├── real_radix2.c │ │ │ ├── real_unpack.c │ │ │ ├── signals.c │ │ │ ├── signals.h │ │ │ ├── signals_source.c │ │ │ ├── test.c │ │ │ ├── test_complex_source.c │ │ │ ├── test_real_source.c │ │ │ ├── test_trap_source.c │ │ │ └── urand.c │ │ ├── fit │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gsl_fit.h │ │ │ ├── linear.c │ │ │ └── test.c │ │ ├── gsl-config.in │ │ ├── gsl-histogram.c │ │ ├── gsl-randist.c │ │ ├── gsl.m4 │ │ ├── gsl.pc.in │ │ ├── gsl.spec.in │ │ ├── gsl │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ ├── gsl_machine.h │ │ ├── gsl_math.h │ │ ├── gsl_mode.h │ │ ├── gsl_nan.h │ │ ├── gsl_pow_int.h │ │ ├── gsl_precision.h │ │ ├── gsl_types.h │ │ ├── gsl_version.h │ │ ├── gsl_version.h.in │ │ ├── histogram │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── add.c │ │ │ ├── add2d.c │ │ │ ├── calloc_range.c │ │ │ ├── calloc_range2d.c │ │ │ ├── copy.c │ │ │ ├── copy2d.c │ │ │ ├── file.c │ │ │ ├── file2d.c │ │ │ ├── find.c │ │ │ ├── find2d.c │ │ │ ├── get.c │ │ │ ├── get2d.c │ │ │ ├── gsl_histogram.h │ │ │ ├── gsl_histogram2d.h │ │ │ ├── init.c │ │ │ ├── init2d.c │ │ │ ├── maxval.c │ │ │ ├── maxval2d.c │ │ │ ├── oper.c │ │ │ ├── oper2d.c │ │ │ ├── params.c │ │ │ ├── params2d.c │ │ │ ├── pdf.c │ │ │ ├── pdf2d.c │ │ │ ├── reset.c │ │ │ ├── reset2d.c │ │ │ ├── stat.c │ │ │ ├── stat2d.c │ │ │ ├── test.c │ │ │ ├── test1d.c │ │ │ ├── test1d_resample.c │ │ │ ├── test1d_trap.c │ │ │ ├── test2d.c │ │ │ ├── test2d_resample.c │ │ │ ├── test2d_trap.c │ │ │ └── urand.c │ │ ├── ieee-utils │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── endian.c │ │ │ ├── env.c │ │ │ ├── fp-aix.c │ │ │ ├── fp-darwin.c │ │ │ ├── fp-darwin86.c │ │ │ ├── fp-freebsd.c │ │ │ ├── fp-gnuc99.c │ │ │ ├── fp-gnum68k.c │ │ │ ├── fp-gnuppc.c │ │ │ ├── fp-gnusparc.c │ │ │ ├── fp-gnux86.c │ │ │ ├── fp-hpux.c │ │ │ ├── fp-hpux11.c │ │ │ ├── fp-irix.c │ │ │ ├── fp-netbsd.c │ │ │ ├── fp-openbsd.c │ │ │ ├── fp-os2emx.c │ │ │ ├── fp-solaris.c │ │ │ ├── fp-sunos4.c │ │ │ ├── fp-tru64.c │ │ │ ├── fp-unknown.c │ │ │ ├── fp.c │ │ │ ├── gsl_ieee_utils.h │ │ │ ├── make_rep.c │ │ │ ├── print.c │ │ │ ├── read.c │ │ │ ├── standardize.c │ │ │ └── test.c │ │ ├── install-sh │ │ ├── integration │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── append.c │ │ │ ├── err.c │ │ │ ├── gsl_integration.h │ │ │ ├── initialise.c │ │ │ ├── positivity.c │ │ │ ├── ptsort.c │ │ │ ├── qag.c │ │ │ ├── qagp.c │ │ │ ├── qags.c │ │ │ ├── qawc.c │ │ │ ├── qawf.c │ │ │ ├── qawo.c │ │ │ ├── qaws.c │ │ │ ├── qc25c.c │ │ │ ├── qc25f.c │ │ │ ├── qc25s.c │ │ │ ├── qcheb.c │ │ │ ├── qelg.c │ │ │ ├── qk.c │ │ │ ├── qk15.c │ │ │ ├── qk21.c │ │ │ ├── qk31.c │ │ │ ├── qk41.c │ │ │ ├── qk51.c │ │ │ ├── qk61.c │ │ │ ├── qmomo.c │ │ │ ├── qmomof.c │ │ │ ├── qng.c │ │ │ ├── qng.h │ │ │ ├── qpsrt.c │ │ │ ├── qpsrt2.c │ │ │ ├── reset.c │ │ │ ├── set_initial.c │ │ │ ├── test.c │ │ │ ├── tests.c │ │ │ ├── tests.h │ │ │ ├── util.c │ │ │ └── workspace.c │ │ ├── interpolation │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── accel.c │ │ │ ├── akima.c │ │ │ ├── bsearch.c │ │ │ ├── bsearch.h │ │ │ ├── cspline.c │ │ │ ├── gsl_interp.h │ │ │ ├── gsl_spline.h │ │ │ ├── integ_eval.h │ │ │ ├── interp.c │ │ │ ├── linear.c │ │ │ ├── poly.c │ │ │ ├── spline.c │ │ │ └── test.c │ │ ├── linalg │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── apply_givens.c │ │ │ ├── balance.c │ │ │ ├── balancemat.c │ │ │ ├── bidiag.c │ │ │ ├── cholesky.c │ │ │ ├── exponential.c │ │ │ ├── givens.c │ │ │ ├── gsl_linalg.h │ │ │ ├── hermtd.c │ │ │ ├── hessenberg.c │ │ │ ├── hh.c │ │ │ ├── householder.c │ │ │ ├── householdercomplex.c │ │ │ ├── lq.c │ │ │ ├── lu.c │ │ │ ├── luc.c │ │ │ ├── multiply.c │ │ │ ├── ptlq.c │ │ │ ├── qr.c │ │ │ ├── qrpt.c │ │ │ ├── svd.c │ │ │ ├── svdstep.c │ │ │ ├── symmtd.c │ │ │ ├── test.c │ │ │ ├── tridiag.c │ │ │ └── tridiag.h │ │ ├── ltmain.sh │ │ ├── matrix │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── copy.c │ │ │ ├── copy_source.c │ │ │ ├── file.c │ │ │ ├── file_source.c │ │ │ ├── getset.c │ │ │ ├── getset_source.c │ │ │ ├── gsl_matrix.h │ │ │ ├── gsl_matrix_char.h │ │ │ ├── gsl_matrix_complex_double.h │ │ │ ├── gsl_matrix_complex_float.h │ │ │ ├── gsl_matrix_complex_long_double.h │ │ │ ├── gsl_matrix_double.h │ │ │ ├── gsl_matrix_float.h │ │ │ ├── gsl_matrix_int.h │ │ │ ├── gsl_matrix_long.h │ │ │ ├── gsl_matrix_long_double.h │ │ │ ├── gsl_matrix_short.h │ │ │ ├── gsl_matrix_uchar.h │ │ │ ├── gsl_matrix_uint.h │ │ │ ├── gsl_matrix_ulong.h │ │ │ ├── gsl_matrix_ushort.h │ │ │ ├── init.c │ │ │ ├── init_source.c │ │ │ ├── matrix.c │ │ │ ├── matrix_source.c │ │ │ ├── minmax.c │ │ │ ├── minmax_source.c │ │ │ ├── oper.c │ │ │ ├── oper_complex_source.c │ │ │ ├── oper_source.c │ │ │ ├── prop.c │ │ │ ├── prop_source.c │ │ │ ├── rowcol.c │ │ │ ├── rowcol_source.c │ │ │ ├── submatrix.c │ │ │ ├── submatrix_source.c │ │ │ ├── swap.c │ │ │ ├── swap_source.c │ │ │ ├── test.c │ │ │ ├── test_complex_source.c │ │ │ ├── test_source.c │ │ │ ├── test_static.c │ │ │ ├── view.c │ │ │ ├── view.h │ │ │ └── view_source.c │ │ ├── mdate-sh │ │ ├── min │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bracketing.c │ │ │ ├── brent.c │ │ │ ├── convergence.c │ │ │ ├── fsolver.c │ │ │ ├── golden.c │ │ │ ├── gsl_min.h │ │ │ ├── min.h │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── test_funcs.c │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── monte │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── gsl_monte.h │ │ │ ├── gsl_monte_miser.h │ │ │ ├── gsl_monte_plain.h │ │ │ ├── gsl_monte_vegas.h │ │ │ ├── miser.c │ │ │ ├── plain.c │ │ │ ├── test.c │ │ │ ├── test_main.c │ │ │ └── vegas.c │ │ ├── multifit │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── convergence.c │ │ │ ├── covar.c │ │ │ ├── fdfsolver.c │ │ │ ├── fsolver.c │ │ │ ├── gradient.c │ │ │ ├── gsl_multifit.h │ │ │ ├── gsl_multifit_nlin.h │ │ │ ├── lmder.c │ │ │ ├── lmiterate.c │ │ │ ├── lmpar.c │ │ │ ├── lmset.c │ │ │ ├── lmutil.c │ │ │ ├── multilinear.c │ │ │ ├── qrsolv.c │ │ │ ├── test.c │ │ │ ├── test_brown.c │ │ │ ├── test_enso.c │ │ │ ├── test_estimator.c │ │ │ ├── test_filip.c │ │ │ ├── test_fn.c │ │ │ ├── test_hahn1.c │ │ │ ├── test_kirby2.c │ │ │ ├── test_longley.c │ │ │ ├── test_nelson.c │ │ │ ├── test_pontius.c │ │ │ └── work.c │ │ ├── multimin │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── conjugate_fr.c │ │ │ ├── conjugate_pr.c │ │ │ ├── convergence.c │ │ │ ├── diff.c │ │ │ ├── directional_minimize.c │ │ │ ├── fdfminimizer.c │ │ │ ├── fminimizer.c │ │ │ ├── gsl_multimin.h │ │ │ ├── linear_minimize.c │ │ │ ├── linear_wrapper.c │ │ │ ├── simplex.c │ │ │ ├── steepest_descent.c │ │ │ ├── test.c │ │ │ ├── test_funcs.c │ │ │ ├── test_funcs.h │ │ │ ├── vector_bfgs.c │ │ │ └── vector_bfgs2.c │ │ ├── multiroots │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── broyden.c │ │ │ ├── convergence.c │ │ │ ├── dnewton.c │ │ │ ├── dogleg.c │ │ │ ├── enorm.c │ │ │ ├── fdfsolver.c │ │ │ ├── fdjac.c │ │ │ ├── fsolver.c │ │ │ ├── gnewton.c │ │ │ ├── gsl_multiroots.h │ │ │ ├── hybrid.c │ │ │ ├── hybridj.c │ │ │ ├── newton.c │ │ │ ├── test.c │ │ │ ├── test_funcs.c │ │ │ └── test_funcs.h │ │ ├── ntuple │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gsl_ntuple.h │ │ │ ├── ntuple.c │ │ │ └── test.c │ │ ├── ode-initval │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── bsimp.c │ │ │ ├── control.c │ │ │ ├── cscal.c │ │ │ ├── cstd.c │ │ │ ├── evolve.c │ │ │ ├── gear1.c │ │ │ ├── gear2.c │ │ │ ├── gsl_odeiv.h │ │ │ ├── odeiv_util.h │ │ │ ├── rk2.c │ │ │ ├── rk2imp.c │ │ │ ├── rk2simp.c │ │ │ ├── rk4.c │ │ │ ├── rk4imp.c │ │ │ ├── rk8pd.c │ │ │ ├── rkck.c │ │ │ ├── rkf45.c │ │ │ ├── step.c │ │ │ └── test.c │ │ ├── permutation │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── canonical.c │ │ │ ├── file.c │ │ │ ├── gsl_permutation.h │ │ │ ├── gsl_permute.h │ │ │ ├── gsl_permute_char.h │ │ │ ├── gsl_permute_complex_double.h │ │ │ ├── gsl_permute_complex_float.h │ │ │ ├── gsl_permute_complex_long_double.h │ │ │ ├── gsl_permute_double.h │ │ │ ├── gsl_permute_float.h │ │ │ ├── gsl_permute_int.h │ │ │ ├── gsl_permute_long.h │ │ │ ├── gsl_permute_long_double.h │ │ │ ├── gsl_permute_short.h │ │ │ ├── gsl_permute_uchar.h │ │ │ ├── gsl_permute_uint.h │ │ │ ├── gsl_permute_ulong.h │ │ │ ├── gsl_permute_ushort.h │ │ │ ├── gsl_permute_vector.h │ │ │ ├── gsl_permute_vector_char.h │ │ │ ├── gsl_permute_vector_complex_double.h │ │ │ ├── gsl_permute_vector_complex_float.h │ │ │ ├── gsl_permute_vector_complex_long_double.h │ │ │ ├── gsl_permute_vector_double.h │ │ │ ├── gsl_permute_vector_float.h │ │ │ ├── gsl_permute_vector_int.h │ │ │ ├── gsl_permute_vector_long.h │ │ │ ├── gsl_permute_vector_long_double.h │ │ │ ├── gsl_permute_vector_short.h │ │ │ ├── gsl_permute_vector_uchar.h │ │ │ ├── gsl_permute_vector_uint.h │ │ │ ├── gsl_permute_vector_ulong.h │ │ │ ├── gsl_permute_vector_ushort.h │ │ │ ├── init.c │ │ │ ├── permutation.c │ │ │ ├── permute.c │ │ │ ├── permute_source.c │ │ │ └── test.c │ │ ├── poly │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── balance.c │ │ │ ├── companion.c │ │ │ ├── dd.c │ │ │ ├── eval.c │ │ │ ├── gsl_poly.h │ │ │ ├── qr.c │ │ │ ├── solve_cubic.c │ │ │ ├── solve_quadratic.c │ │ │ ├── test.c │ │ │ ├── zsolve.c │ │ │ ├── zsolve_cubic.c │ │ │ ├── zsolve_init.c │ │ │ └── zsolve_quadratic.c │ │ ├── qrng │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── gsl_qrng.h │ │ │ ├── niederreiter-2.c │ │ │ ├── qrng.c │ │ │ ├── sobol.c │ │ │ └── test.c │ │ ├── randist │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── bernoulli.c │ │ │ ├── beta.c │ │ │ ├── bigauss.c │ │ │ ├── binomial.c │ │ │ ├── binomial_tpe.c │ │ │ ├── cauchy.c │ │ │ ├── chisq.c │ │ │ ├── dirichlet.c │ │ │ ├── discrete.c │ │ │ ├── erlang.c │ │ │ ├── exponential.c │ │ │ ├── exppow.c │ │ │ ├── fdist.c │ │ │ ├── flat.c │ │ │ ├── gamma.c │ │ │ ├── gauss.c │ │ │ ├── gausstail.c │ │ │ ├── gausszig.c │ │ │ ├── geometric.c │ │ │ ├── gsl_randist.h │ │ │ ├── gumbel.c │ │ │ ├── hyperg.c │ │ │ ├── landau.c │ │ │ ├── laplace.c │ │ │ ├── levy.c │ │ │ ├── logarithmic.c │ │ │ ├── logistic.c │ │ │ ├── lognormal.c │ │ │ ├── multinomial.c │ │ │ ├── nbinomial.c │ │ │ ├── pareto.c │ │ │ ├── pascal.c │ │ │ ├── poisson.c │ │ │ ├── rayleigh.c │ │ │ ├── shuffle.c │ │ │ ├── sphere.c │ │ │ ├── tdist.c │ │ │ ├── test.c │ │ │ └── weibull.c │ │ ├── rng │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── borosh13.c │ │ │ ├── cmrg.c │ │ │ ├── coveyou.c │ │ │ ├── default.c │ │ │ ├── file.c │ │ │ ├── fishman18.c │ │ │ ├── fishman20.c │ │ │ ├── fishman2x.c │ │ │ ├── gfsr4.c │ │ │ ├── gsl_rng.h │ │ │ ├── knuthran.c │ │ │ ├── knuthran2.c │ │ │ ├── knuthran2002.c │ │ │ ├── lecuyer21.c │ │ │ ├── minstd.c │ │ │ ├── mrg.c │ │ │ ├── mt.c │ │ │ ├── r250.c │ │ │ ├── ran0.c │ │ │ ├── ran1.c │ │ │ ├── ran2.c │ │ │ ├── ran3.c │ │ │ ├── rand.c │ │ │ ├── rand48.c │ │ │ ├── random.c │ │ │ ├── randu.c │ │ │ ├── ranf.c │ │ │ ├── ranlux.c │ │ │ ├── ranlxd.c │ │ │ ├── ranlxs.c │ │ │ ├── ranmar.c │ │ │ ├── rng.c │ │ │ ├── schrage.c │ │ │ ├── slatec.c │ │ │ ├── taus.c │ │ │ ├── taus113.c │ │ │ ├── test.c │ │ │ ├── transputer.c │ │ │ ├── tt.c │ │ │ ├── types.c │ │ │ ├── uni.c │ │ │ ├── uni32.c │ │ │ ├── vax.c │ │ │ ├── waterman14.c │ │ │ └── zuf.c │ │ ├── roots │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── bisection.c │ │ │ ├── brent.c │ │ │ ├── convergence.c │ │ │ ├── falsepos.c │ │ │ ├── fdfsolver.c │ │ │ ├── fsolver.c │ │ │ ├── gsl_roots.h │ │ │ ├── newton.c │ │ │ ├── roots.h │ │ │ ├── secant.c │ │ │ ├── steffenson.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── test_funcs.c │ │ ├── siman │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── gsl_siman.h │ │ │ ├── siman.c │ │ │ ├── siman_test_driver.sh │ │ │ ├── siman_tsp.c │ │ │ └── test.c │ │ ├── sort │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── gsl_heapsort.h │ │ │ ├── gsl_sort.h │ │ │ ├── gsl_sort_char.h │ │ │ ├── gsl_sort_double.h │ │ │ ├── gsl_sort_float.h │ │ │ ├── gsl_sort_int.h │ │ │ ├── gsl_sort_long.h │ │ │ ├── gsl_sort_long_double.h │ │ │ ├── gsl_sort_short.h │ │ │ ├── gsl_sort_uchar.h │ │ │ ├── gsl_sort_uint.h │ │ │ ├── gsl_sort_ulong.h │ │ │ ├── gsl_sort_ushort.h │ │ │ ├── gsl_sort_vector.h │ │ │ ├── gsl_sort_vector_char.h │ │ │ ├── gsl_sort_vector_double.h │ │ │ ├── gsl_sort_vector_float.h │ │ │ ├── gsl_sort_vector_int.h │ │ │ ├── gsl_sort_vector_long.h │ │ │ ├── gsl_sort_vector_long_double.h │ │ │ ├── gsl_sort_vector_short.h │ │ │ ├── gsl_sort_vector_uchar.h │ │ │ ├── gsl_sort_vector_uint.h │ │ │ ├── gsl_sort_vector_ulong.h │ │ │ ├── gsl_sort_vector_ushort.h │ │ │ ├── sort.c │ │ │ ├── sortind.c │ │ │ ├── sortvec.c │ │ │ ├── sortvec_source.c │ │ │ ├── sortvecind.c │ │ │ ├── sortvecind_source.c │ │ │ ├── subset.c │ │ │ ├── subset_source.c │ │ │ ├── subsetind.c │ │ │ ├── subsetind_source.c │ │ │ ├── test.c │ │ │ ├── test_heapsort.c │ │ │ └── test_source.c │ │ ├── specfunc │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── airy.c │ │ │ ├── airy_der.c │ │ │ ├── airy_zero.c │ │ │ ├── atanint.c │ │ │ ├── bessel.c │ │ │ ├── bessel.h │ │ │ ├── bessel_I0.c │ │ │ ├── bessel_I1.c │ │ │ ├── bessel_In.c │ │ │ ├── bessel_Inu.c │ │ │ ├── bessel_J0.c │ │ │ ├── bessel_J1.c │ │ │ ├── bessel_Jn.c │ │ │ ├── bessel_Jnu.c │ │ │ ├── bessel_K0.c │ │ │ ├── bessel_K1.c │ │ │ ├── bessel_Kn.c │ │ │ ├── bessel_Knu.c │ │ │ ├── bessel_Y0.c │ │ │ ├── bessel_Y1.c │ │ │ ├── bessel_Yn.c │ │ │ ├── bessel_Ynu.c │ │ │ ├── bessel_amp_phase.c │ │ │ ├── bessel_amp_phase.h │ │ │ ├── bessel_i.c │ │ │ ├── bessel_j.c │ │ │ ├── bessel_k.c │ │ │ ├── bessel_olver.c │ │ │ ├── bessel_olver.h │ │ │ ├── bessel_sequence.c │ │ │ ├── bessel_temme.c │ │ │ ├── bessel_temme.h │ │ │ ├── bessel_y.c │ │ │ ├── bessel_zero.c │ │ │ ├── beta.c │ │ │ ├── beta_inc.c │ │ │ ├── cheb_eval.c │ │ │ ├── cheb_eval_mode.c │ │ │ ├── chebyshev.h │ │ │ ├── check.h │ │ │ ├── clausen.c │ │ │ ├── coulomb.c │ │ │ ├── coulomb_bound.c │ │ │ ├── coupling.c │ │ │ ├── dawson.c │ │ │ ├── debye.c │ │ │ ├── dilog.c │ │ │ ├── elementary.c │ │ │ ├── ellint.c │ │ │ ├── elljac.c │ │ │ ├── erfc.c │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── exp.c │ │ │ ├── expint.c │ │ │ ├── expint3.c │ │ │ ├── fermi_dirac.c │ │ │ ├── gamma.c │ │ │ ├── gamma_inc.c │ │ │ ├── gegenbauer.c │ │ │ ├── gsl_sf.h │ │ │ ├── gsl_sf_airy.h │ │ │ ├── gsl_sf_bessel.h │ │ │ ├── gsl_sf_clausen.h │ │ │ ├── gsl_sf_coulomb.h │ │ │ ├── gsl_sf_coupling.h │ │ │ ├── gsl_sf_dawson.h │ │ │ ├── gsl_sf_debye.h │ │ │ ├── gsl_sf_dilog.h │ │ │ ├── gsl_sf_elementary.h │ │ │ ├── gsl_sf_ellint.h │ │ │ ├── gsl_sf_elljac.h │ │ │ ├── gsl_sf_erf.h │ │ │ ├── gsl_sf_exp.h │ │ │ ├── gsl_sf_expint.h │ │ │ ├── gsl_sf_fermi_dirac.h │ │ │ ├── gsl_sf_gamma.h │ │ │ ├── gsl_sf_gegenbauer.h │ │ │ ├── gsl_sf_hyperg.h │ │ │ ├── gsl_sf_laguerre.h │ │ │ ├── gsl_sf_lambert.h │ │ │ ├── gsl_sf_legendre.h │ │ │ ├── gsl_sf_log.h │ │ │ ├── gsl_sf_mathieu.h │ │ │ ├── gsl_sf_pow_int.h │ │ │ ├── gsl_sf_psi.h │ │ │ ├── gsl_sf_result.h │ │ │ ├── gsl_sf_synchrotron.h │ │ │ ├── gsl_sf_transport.h │ │ │ ├── gsl_sf_trig.h │ │ │ ├── gsl_sf_zeta.h │ │ │ ├── gsl_specfunc.h │ │ │ ├── hyperg.c │ │ │ ├── hyperg.h │ │ │ ├── hyperg_0F1.c │ │ │ ├── hyperg_1F1.c │ │ │ ├── hyperg_2F0.c │ │ │ ├── hyperg_2F1.c │ │ │ ├── hyperg_U.c │ │ │ ├── laguerre.c │ │ │ ├── lambert.c │ │ │ ├── legendre.h │ │ │ ├── legendre_H3d.c │ │ │ ├── legendre_Qn.c │ │ │ ├── legendre_con.c │ │ │ ├── legendre_poly.c │ │ │ ├── log.c │ │ │ ├── mathieu_angfunc.c │ │ │ ├── mathieu_charv.c │ │ │ ├── mathieu_coeff.c │ │ │ ├── mathieu_radfunc.c │ │ │ ├── mathieu_workspace.c │ │ │ ├── poch.c │ │ │ ├── pow_int.c │ │ │ ├── psi.c │ │ │ ├── recurse.h │ │ │ ├── result.c │ │ │ ├── shint.c │ │ │ ├── sinint.c │ │ │ ├── synchrotron.c │ │ │ ├── test_airy.c │ │ │ ├── test_bessel.c │ │ │ ├── test_coulomb.c │ │ │ ├── test_dilog.c │ │ │ ├── test_gamma.c │ │ │ ├── test_hyperg.c │ │ │ ├── test_legendre.c │ │ │ ├── test_mathieu.c │ │ │ ├── test_sf.c │ │ │ ├── test_sf.h │ │ │ ├── transport.c │ │ │ ├── trig.c │ │ │ └── zeta.c │ │ ├── statistics │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── absdev.c │ │ │ ├── absdev_source.c │ │ │ ├── covariance.c │ │ │ ├── covariance_source.c │ │ │ ├── gsl_statistics.h │ │ │ ├── gsl_statistics_char.h │ │ │ ├── gsl_statistics_double.h │ │ │ ├── gsl_statistics_float.h │ │ │ ├── gsl_statistics_int.h │ │ │ ├── gsl_statistics_long.h │ │ │ ├── gsl_statistics_long_double.h │ │ │ ├── gsl_statistics_short.h │ │ │ ├── gsl_statistics_uchar.h │ │ │ ├── gsl_statistics_uint.h │ │ │ ├── gsl_statistics_ulong.h │ │ │ ├── gsl_statistics_ushort.h │ │ │ ├── kurtosis.c │ │ │ ├── kurtosis_source.c │ │ │ ├── lag1.c │ │ │ ├── lag1_source.c │ │ │ ├── mean.c │ │ │ ├── mean_source.c │ │ │ ├── median.c │ │ │ ├── median_source.c │ │ │ ├── minmax.c │ │ │ ├── minmax_source.c │ │ │ ├── p_variance.c │ │ │ ├── p_variance_source.c │ │ │ ├── quantiles.c │ │ │ ├── quantiles_source.c │ │ │ ├── skew.c │ │ │ ├── skew_source.c │ │ │ ├── test.c │ │ │ ├── test_float_source.c │ │ │ ├── test_int_source.c │ │ │ ├── test_nist.c │ │ │ ├── ttest.c │ │ │ ├── ttest_source.c │ │ │ ├── variance.c │ │ │ ├── variance_source.c │ │ │ ├── wabsdev.c │ │ │ ├── wabsdev_source.c │ │ │ ├── wkurtosis.c │ │ │ ├── wkurtosis_source.c │ │ │ ├── wmean.c │ │ │ ├── wmean_source.c │ │ │ ├── wskew.c │ │ │ ├── wskew_source.c │ │ │ ├── wvariance.c │ │ │ └── wvariance_source.c │ │ ├── sum │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gsl_sum.h │ │ │ ├── levin_u.c │ │ │ ├── levin_utrunc.c │ │ │ ├── test.c │ │ │ ├── work_u.c │ │ │ └── work_utrunc.c │ │ ├── sys │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── coerce.c │ │ │ ├── expm1.c │ │ │ ├── fcmp.c │ │ │ ├── fdiv.c │ │ │ ├── gsl_sys.h │ │ │ ├── hypot.c │ │ │ ├── infnan.c │ │ │ ├── invhyp.c │ │ │ ├── ldfrexp.c │ │ │ ├── log1p.c │ │ │ ├── minmax.c │ │ │ ├── pow_int.c │ │ │ ├── prec.c │ │ │ └── test.c │ │ ├── templates_off.h │ │ ├── templates_on.h │ │ ├── test │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gsl_test.h │ │ │ └── results.c │ │ ├── test_gsl_histogram.sh │ │ ├── utils │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── memcpy.c │ │ │ ├── memmove.c │ │ │ ├── placeholder.c │ │ │ ├── strdup.c │ │ │ ├── strtol.c │ │ │ ├── strtoul.c │ │ │ └── system.h │ │ ├── vector │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── copy.c │ │ │ ├── copy_source.c │ │ │ ├── file.c │ │ │ ├── file_source.c │ │ │ ├── gsl_vector.h │ │ │ ├── gsl_vector_char.h │ │ │ ├── gsl_vector_complex.h │ │ │ ├── gsl_vector_complex_double.h │ │ │ ├── gsl_vector_complex_float.h │ │ │ ├── gsl_vector_complex_long_double.h │ │ │ ├── gsl_vector_double.h │ │ │ ├── gsl_vector_float.h │ │ │ ├── gsl_vector_int.h │ │ │ ├── gsl_vector_long.h │ │ │ ├── gsl_vector_long_double.h │ │ │ ├── gsl_vector_short.h │ │ │ ├── gsl_vector_uchar.h │ │ │ ├── gsl_vector_uint.h │ │ │ ├── gsl_vector_ulong.h │ │ │ ├── gsl_vector_ushort.h │ │ │ ├── init.c │ │ │ ├── init_source.c │ │ │ ├── minmax.c │ │ │ ├── minmax_source.c │ │ │ ├── oper.c │ │ │ ├── oper_source.c │ │ │ ├── prop.c │ │ │ ├── prop_source.c │ │ │ ├── reim.c │ │ │ ├── reim_source.c │ │ │ ├── subvector.c │ │ │ ├── subvector_source.c │ │ │ ├── swap.c │ │ │ ├── swap_source.c │ │ │ ├── test.c │ │ │ ├── test_complex_source.c │ │ │ ├── test_source.c │ │ │ ├── test_static.c │ │ │ ├── vector.c │ │ │ ├── vector_source.c │ │ │ ├── view.c │ │ │ ├── view.h │ │ │ └── view_source.c │ │ ├── version.c │ │ └── wavelet │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TODO │ │ │ ├── bspline.c │ │ │ ├── daubechies.c │ │ │ ├── dwt.c │ │ │ ├── gsl_wavelet.h │ │ │ ├── gsl_wavelet2d.h │ │ │ ├── haar.c │ │ │ ├── test.c │ │ │ └── wavelet.c │ └── version │ ├── hooks │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── COPYRIGHT │ │ ├── Doxyfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.shared │ │ ├── Makefile.static │ │ ├── README │ │ ├── config.h │ │ ├── hooks.c │ │ └── include │ │ │ └── hooks.h │ └── version │ ├── libjpeg │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── ansi2knr.1 │ │ ├── ansi2knr.c │ │ ├── cderror.h │ │ ├── cdjpeg.c │ │ ├── cdjpeg.h │ │ ├── change.log │ │ ├── cjpeg.1 │ │ ├── cjpeg.c │ │ ├── ckconfig.c │ │ ├── coderules.txt │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── djpeg.1 │ │ ├── djpeg.c │ │ ├── example.c │ │ ├── filelist.txt │ │ ├── install-sh │ │ ├── install.txt │ │ ├── jaricom.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jcarith.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.bcc │ │ ├── jconfig.cfg │ │ ├── jconfig.dj │ │ ├── jconfig.mac │ │ ├── jconfig.manx │ │ ├── jconfig.mc6 │ │ ├── jconfig.sas │ │ ├── jconfig.st │ │ ├── jconfig.txt │ │ ├── jconfig.vc │ │ ├── jconfig.vms │ │ ├── jconfig.wat │ │ ├── jcparam.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdarith.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jinclude.h │ │ ├── jmemansi.c │ │ ├── jmemdos.c │ │ ├── jmemdosa.asm │ │ ├── jmemmac.c │ │ ├── jmemmgr.c │ │ ├── jmemname.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jpegtran.1 │ │ ├── jpegtran.c │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── libjpeg.map │ │ ├── libjpeg.txt │ │ ├── ltmain.sh │ │ ├── makcjpeg.st │ │ ├── makdjpeg.st │ │ ├── makeadsw.vc6 │ │ ├── makeasln.vc9 │ │ ├── makecdep.vc6 │ │ ├── makecdsp.vc6 │ │ ├── makecmak.vc6 │ │ ├── makecvcp.vc9 │ │ ├── makeddep.vc6 │ │ ├── makeddsp.vc6 │ │ ├── makedmak.vc6 │ │ ├── makedvcp.vc9 │ │ ├── makefile.ansi │ │ ├── makefile.bcc │ │ ├── makefile.dj │ │ ├── makefile.manx │ │ ├── makefile.mc6 │ │ ├── makefile.mms │ │ ├── makefile.sas │ │ ├── makefile.unix │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── makefile.wat │ │ ├── makejdep.vc6 │ │ ├── makejdsp.vc6 │ │ ├── makejdsw.vc6 │ │ ├── makejmak.vc6 │ │ ├── makejsln.vc9 │ │ ├── makejvcp.vc9 │ │ ├── makeproj.mac │ │ ├── makerdep.vc6 │ │ ├── makerdsp.vc6 │ │ ├── makermak.vc6 │ │ ├── makervcp.vc9 │ │ ├── maketdep.vc6 │ │ ├── maketdsp.vc6 │ │ ├── maketmak.vc6 │ │ ├── maketvcp.vc9 │ │ ├── makewdep.vc6 │ │ ├── makewdsp.vc6 │ │ ├── makewmak.vc6 │ │ ├── makewvcp.vc9 │ │ ├── makljpeg.st │ │ ├── maktjpeg.st │ │ ├── makvms.opt │ │ ├── missing │ │ ├── rdbmp.c │ │ ├── rdcolmap.c │ │ ├── rdgif.c │ │ ├── rdjpgcom.1 │ │ ├── rdjpgcom.c │ │ ├── rdppm.c │ │ ├── rdrle.c │ │ ├── rdswitch.c │ │ ├── rdtarga.c │ │ ├── structure.txt │ │ ├── testimg.bmp │ │ ├── testimg.jpg │ │ ├── testimg.ppm │ │ ├── testimgp.jpg │ │ ├── testorig.jpg │ │ ├── testprog.jpg │ │ ├── transupp.c │ │ ├── transupp.h │ │ ├── usage.txt │ │ ├── wizard.txt │ │ ├── wrbmp.c │ │ ├── wrgif.c │ │ ├── wrjpgcom.1 │ │ ├── wrjpgcom.c │ │ ├── wrppm.c │ │ ├── wrrle.c │ │ └── wrtarga.c │ └── version │ ├── libxml2 │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Copyright │ │ ├── DOCBparser.c │ │ ├── HTMLparser.c │ │ ├── HTMLtree.c │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.tests │ │ ├── NEWS │ │ ├── README │ │ ├── README.tests │ │ ├── SAX.c │ │ ├── SAX2.c │ │ ├── TODO │ │ ├── TODO_SCHEMAS │ │ ├── acconfig.h │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── autom4te.cache │ │ │ ├── output.0 │ │ │ ├── output.1 │ │ │ ├── requests │ │ │ ├── traces.0 │ │ │ └── traces.1 │ │ ├── bakefile │ │ │ ├── Bakefiles.bkgen │ │ │ ├── Readme.txt │ │ │ └── libxml2.bkl │ │ ├── c14n.c │ │ ├── catalog.c │ │ ├── check-relaxng-test-suite.py │ │ ├── check-relaxng-test-suite2.py │ │ ├── check-xinclude-test-suite.py │ │ ├── check-xml-test-suite.py │ │ ├── check-xsddata-test-suite.py │ │ ├── chvalid.c │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── dbgen.pl │ │ ├── dbgenattr.pl │ │ ├── debugXML.c │ │ ├── depcomp │ │ ├── dict.c │ │ ├── doc │ │ │ ├── APIchunk0.html │ │ │ ├── APIchunk1.html │ │ │ ├── APIchunk10.html │ │ │ ├── APIchunk11.html │ │ │ ├── APIchunk12.html │ │ │ ├── APIchunk13.html │ │ │ ├── APIchunk14.html │ │ │ ├── APIchunk15.html │ │ │ ├── APIchunk16.html │ │ │ ├── APIchunk17.html │ │ │ ├── APIchunk18.html │ │ │ ├── APIchunk19.html │ │ │ ├── APIchunk2.html │ │ │ ├── APIchunk20.html │ │ │ ├── APIchunk21.html │ │ │ ├── APIchunk22.html │ │ │ ├── APIchunk23.html │ │ │ ├── APIchunk24.html │ │ │ ├── APIchunk25.html │ │ │ ├── APIchunk26.html │ │ │ ├── APIchunk27.html │ │ │ ├── APIchunk28.html │ │ │ ├── APIchunk29.html │ │ │ ├── APIchunk3.html │ │ │ ├── APIchunk4.html │ │ │ ├── APIchunk5.html │ │ │ ├── APIchunk6.html │ │ │ ├── APIchunk7.html │ │ │ ├── APIchunk8.html │ │ │ ├── APIchunk9.html │ │ │ ├── APIconstructors.html │ │ │ ├── APIfiles.html │ │ │ ├── APIfunctions.html │ │ │ ├── APIsymbols.html │ │ │ ├── ChangeLog.xsl │ │ │ ├── DOM.gif │ │ │ ├── DOM.html │ │ │ ├── FAQ.html │ │ │ ├── Libxml2-Logo-180x168.gif │ │ │ ├── Libxml2-Logo-90x34.gif │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.docs │ │ │ ├── XMLinfo.html │ │ │ ├── XSLT.html │ │ │ ├── api.xsl │ │ │ ├── apibuild.py │ │ │ ├── architecture.html │ │ │ ├── bugs.html │ │ │ ├── catalog.gif │ │ │ ├── catalog.html │ │ │ ├── contribs.html │ │ │ ├── devhelp │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── devhelp.xsl │ │ │ │ ├── general.html │ │ │ │ ├── home.png │ │ │ │ ├── html.xsl │ │ │ │ ├── index.html │ │ │ │ ├── left.png │ │ │ │ ├── libxml2-DOCBparser.html │ │ │ │ ├── libxml2-HTMLparser.html │ │ │ │ ├── libxml2-HTMLtree.html │ │ │ │ ├── libxml2-SAX.html │ │ │ │ ├── libxml2-SAX2.html │ │ │ │ ├── libxml2-c14n.html │ │ │ │ ├── libxml2-catalog.html │ │ │ │ ├── libxml2-chvalid.html │ │ │ │ ├── libxml2-debugXML.html │ │ │ │ ├── libxml2-dict.html │ │ │ │ ├── libxml2-encoding.html │ │ │ │ ├── libxml2-entities.html │ │ │ │ ├── libxml2-globals.html │ │ │ │ ├── libxml2-hash.html │ │ │ │ ├── libxml2-list.html │ │ │ │ ├── libxml2-nanoftp.html │ │ │ │ ├── libxml2-nanohttp.html │ │ │ │ ├── libxml2-parser.html │ │ │ │ ├── libxml2-parserInternals.html │ │ │ │ ├── libxml2-pattern.html │ │ │ │ ├── libxml2-relaxng.html │ │ │ │ ├── libxml2-schemasInternals.html │ │ │ │ ├── libxml2-schematron.html │ │ │ │ ├── libxml2-threads.html │ │ │ │ ├── libxml2-tree.html │ │ │ │ ├── libxml2-uri.html │ │ │ │ ├── libxml2-valid.html │ │ │ │ ├── libxml2-xinclude.html │ │ │ │ ├── libxml2-xlink.html │ │ │ │ ├── libxml2-xmlIO.html │ │ │ │ ├── libxml2-xmlautomata.html │ │ │ │ ├── libxml2-xmlerror.html │ │ │ │ ├── libxml2-xmlexports.html │ │ │ │ ├── libxml2-xmlmemory.html │ │ │ │ ├── libxml2-xmlmodule.html │ │ │ │ ├── libxml2-xmlreader.html │ │ │ │ ├── libxml2-xmlregexp.html │ │ │ │ ├── libxml2-xmlsave.html │ │ │ │ ├── libxml2-xmlschemas.html │ │ │ │ ├── libxml2-xmlschemastypes.html │ │ │ │ ├── libxml2-xmlstring.html │ │ │ │ ├── libxml2-xmlunicode.html │ │ │ │ ├── libxml2-xmlversion.html │ │ │ │ ├── libxml2-xmlwriter.html │ │ │ │ ├── libxml2-xpath.html │ │ │ │ ├── libxml2-xpathInternals.html │ │ │ │ ├── libxml2-xpointer.html │ │ │ │ ├── libxml2.devhelp │ │ │ │ ├── right.png │ │ │ │ ├── style.css │ │ │ │ └── up.png │ │ │ ├── docs.html │ │ │ ├── downloads.html │ │ │ ├── elfgcchack.xsl │ │ │ ├── encoding.html │ │ │ ├── entities.html │ │ │ ├── example.html │ │ │ ├── examples │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── examples.xml │ │ │ │ ├── examples.xsl │ │ │ │ ├── index.py │ │ │ │ ├── io1.c │ │ │ │ ├── io1.res │ │ │ │ ├── io2.c │ │ │ │ ├── io2.res │ │ │ │ ├── parse1.c │ │ │ │ ├── parse2.c │ │ │ │ ├── parse3.c │ │ │ │ ├── parse4.c │ │ │ │ ├── reader1.c │ │ │ │ ├── reader1.res │ │ │ │ ├── reader2.c │ │ │ │ ├── reader3.c │ │ │ │ ├── reader3.res │ │ │ │ ├── reader4.c │ │ │ │ ├── reader4.res │ │ │ │ ├── test1.xml │ │ │ │ ├── test2.xml │ │ │ │ ├── test3.xml │ │ │ │ ├── testWriter.c │ │ │ │ ├── tree1.c │ │ │ │ ├── tree1.res │ │ │ │ ├── tree2.c │ │ │ │ ├── tree2.res │ │ │ │ ├── tst.xml │ │ │ │ ├── writer.xml │ │ │ │ ├── xpath1.c │ │ │ │ ├── xpath1.res │ │ │ │ ├── xpath2.c │ │ │ │ └── xpath2.res │ │ │ ├── guidelines.html │ │ │ ├── help.html │ │ │ ├── html │ │ │ │ ├── book1.html │ │ │ │ ├── home.png │ │ │ │ ├── index.html │ │ │ │ ├── left.png │ │ │ │ ├── libxml-DOCBparser.html │ │ │ │ ├── libxml-HTMLparser.html │ │ │ │ ├── libxml-HTMLtree.html │ │ │ │ ├── libxml-SAX.html │ │ │ │ ├── libxml-SAX2.html │ │ │ │ ├── libxml-c14n.html │ │ │ │ ├── libxml-catalog.html │ │ │ │ ├── libxml-chvalid.html │ │ │ │ ├── libxml-debugXML.html │ │ │ │ ├── libxml-dict.html │ │ │ │ ├── libxml-encoding.html │ │ │ │ ├── libxml-entities.html │ │ │ │ ├── libxml-globals.html │ │ │ │ ├── libxml-hash.html │ │ │ │ ├── libxml-lib.html │ │ │ │ ├── libxml-list.html │ │ │ │ ├── libxml-nanoftp.html │ │ │ │ ├── libxml-nanohttp.html │ │ │ │ ├── libxml-parser.html │ │ │ │ ├── libxml-parserInternals.html │ │ │ │ ├── libxml-pattern.html │ │ │ │ ├── libxml-relaxng.html │ │ │ │ ├── libxml-schemasInternals.html │ │ │ │ ├── libxml-schematron.html │ │ │ │ ├── libxml-threads.html │ │ │ │ ├── libxml-tree.html │ │ │ │ ├── libxml-uri.html │ │ │ │ ├── libxml-valid.html │ │ │ │ ├── libxml-xinclude.html │ │ │ │ ├── libxml-xlink.html │ │ │ │ ├── libxml-xmlIO.html │ │ │ │ ├── libxml-xmlautomata.html │ │ │ │ ├── libxml-xmlerror.html │ │ │ │ ├── libxml-xmlexports.html │ │ │ │ ├── libxml-xmlmemory.html │ │ │ │ ├── libxml-xmlmodule.html │ │ │ │ ├── libxml-xmlreader.html │ │ │ │ ├── libxml-xmlregexp.html │ │ │ │ ├── libxml-xmlsave.html │ │ │ │ ├── libxml-xmlschemas.html │ │ │ │ ├── libxml-xmlschemastypes.html │ │ │ │ ├── libxml-xmlstring.html │ │ │ │ ├── libxml-xmlunicode.html │ │ │ │ ├── libxml-xmlversion.html │ │ │ │ ├── libxml-xmlwriter.html │ │ │ │ ├── libxml-xpath.html │ │ │ │ ├── libxml-xpathInternals.html │ │ │ │ ├── libxml-xpointer.html │ │ │ │ ├── right.png │ │ │ │ └── up.png │ │ │ ├── index.html │ │ │ ├── index.py │ │ │ ├── interface.html │ │ │ ├── intro.html │ │ │ ├── library.html │ │ │ ├── libxml.gif │ │ │ ├── libxml2-api.xml │ │ │ ├── libxml2.xsa │ │ │ ├── namespaces.html │ │ │ ├── newapi.xsl │ │ │ ├── news.html │ │ │ ├── news.xsl │ │ │ ├── python.html │ │ │ ├── redhat.gif │ │ │ ├── search.php │ │ │ ├── searches.html │ │ │ ├── searches.xsl │ │ │ ├── site.xsl │ │ │ ├── smallfootonly.gif │ │ │ ├── structure.gif │ │ │ ├── threads.html │ │ │ ├── tree.html │ │ │ ├── tutorial │ │ │ │ ├── apa.html │ │ │ │ ├── apb.html │ │ │ │ ├── apc.html │ │ │ │ ├── apd.html │ │ │ │ ├── ape.html │ │ │ │ ├── apf.html │ │ │ │ ├── apg.html │ │ │ │ ├── aph.html │ │ │ │ ├── api.html │ │ │ │ ├── ar01s02.html │ │ │ │ ├── ar01s03.html │ │ │ │ ├── ar01s04.html │ │ │ │ ├── ar01s05.html │ │ │ │ ├── ar01s06.html │ │ │ │ ├── ar01s07.html │ │ │ │ ├── ar01s08.html │ │ │ │ ├── ar01s09.html │ │ │ │ ├── images │ │ │ │ │ ├── blank.png │ │ │ │ │ ├── callouts │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ │ ├── caution.png │ │ │ │ │ ├── draft.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── important.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── note.png │ │ │ │ │ ├── prev.png │ │ │ │ │ ├── tip.png │ │ │ │ │ ├── toc-blank.png │ │ │ │ │ ├── toc-minus.png │ │ │ │ │ ├── toc-plus.png │ │ │ │ │ ├── up.png │ │ │ │ │ └── warning.png │ │ │ │ ├── includeaddattribute.c │ │ │ │ ├── includeaddkeyword.c │ │ │ │ ├── includeconvert.c │ │ │ │ ├── includegetattribute.c │ │ │ │ ├── includekeyword.c │ │ │ │ ├── includexpath.c │ │ │ │ ├── index.html │ │ │ │ ├── ix01.html │ │ │ │ └── xmltutorial.pdf │ │ │ ├── upgrade.html │ │ │ ├── w3c.png │ │ │ ├── wiki.xsl │ │ │ ├── xml.html │ │ │ ├── xmlcatalog.1 │ │ │ ├── xmlcatalog_man.html │ │ │ ├── xmlcatalog_man.xml │ │ │ ├── xmldtd.html │ │ │ ├── xmlio.html │ │ │ ├── xmllint.1 │ │ │ ├── xmllint.html │ │ │ ├── xmllint.xml │ │ │ ├── xmlmem.html │ │ │ ├── xmlreader.html │ │ │ └── xsa.xsl │ │ ├── elfgcchack.h │ │ ├── encoding.c │ │ ├── entities.c │ │ ├── error.c │ │ ├── example │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── gjobread.c │ │ │ └── gjobs.xml │ │ ├── genUnicode.py │ │ ├── gentest.py │ │ ├── globals.c │ │ ├── hash.c │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── libxml │ │ │ │ ├── DOCBparser.h │ │ │ │ ├── HTMLparser.h │ │ │ │ ├── HTMLtree.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── SAX.h │ │ │ │ ├── SAX2.h │ │ │ │ ├── c14n.h │ │ │ │ ├── catalog.h │ │ │ │ ├── chvalid.h │ │ │ │ ├── debugXML.h │ │ │ │ ├── dict.h │ │ │ │ ├── encoding.h │ │ │ │ ├── entities.h │ │ │ │ ├── globals.h │ │ │ │ ├── hash.h │ │ │ │ ├── list.h │ │ │ │ ├── nanoftp.h │ │ │ │ ├── nanohttp.h │ │ │ │ ├── parser.h │ │ │ │ ├── parserInternals.h │ │ │ │ ├── pattern.h │ │ │ │ ├── relaxng.h │ │ │ │ ├── schemasInternals.h │ │ │ │ ├── schematron.h │ │ │ │ ├── threads.h │ │ │ │ ├── tree.h │ │ │ │ ├── uri.h │ │ │ │ ├── valid.h │ │ │ │ ├── xinclude.h │ │ │ │ ├── xlink.h │ │ │ │ ├── xmlIO.h │ │ │ │ ├── xmlautomata.h │ │ │ │ ├── xmlerror.h │ │ │ │ ├── xmlexports.h │ │ │ │ ├── xmlmemory.h │ │ │ │ ├── xmlmodule.h │ │ │ │ ├── xmlreader.h │ │ │ │ ├── xmlregexp.h │ │ │ │ ├── xmlsave.h │ │ │ │ ├── xmlschemas.h │ │ │ │ ├── xmlschemastypes.h │ │ │ │ ├── xmlstring.h │ │ │ │ ├── xmlunicode.h │ │ │ │ ├── xmlversion.h │ │ │ │ ├── xmlversion.h.in │ │ │ │ ├── xmlwriter.h │ │ │ │ ├── xpath.h │ │ │ │ ├── xpathInternals.h │ │ │ │ └── xpointer.h │ │ │ ├── win32config.h │ │ │ └── wsockcompat.h │ │ ├── install-sh │ │ ├── legacy.c │ │ ├── libxml-2.0-uninstalled.pc.in │ │ ├── libxml-2.0.pc.in │ │ ├── libxml.3 │ │ ├── libxml.h │ │ ├── libxml.m4 │ │ ├── libxml.spec.in │ │ ├── libxml2.spec │ │ ├── list.c │ │ ├── ltmain.sh │ │ ├── macos │ │ │ ├── README │ │ │ ├── libxml2.mcp.xml.sit.hqx │ │ │ └── src │ │ │ │ ├── XMLTestPrefix.h │ │ │ │ ├── XMLTestPrefix2.h │ │ │ │ ├── config-mac.h │ │ │ │ ├── libxml2_GUSIConfig.cp │ │ │ │ └── macos_main.c │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── nanoftp.c │ │ ├── nanohttp.c │ │ ├── parser.c │ │ ├── parserInternals.c │ │ ├── pattern.c │ │ ├── python │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── drv_libxml2.py │ │ │ ├── generator.py │ │ │ ├── libxml.c │ │ │ ├── libxml.py │ │ │ ├── libxml2-py.c │ │ │ ├── libxml2-python-api.xml │ │ │ ├── libxml_wrap.h │ │ │ ├── setup.py │ │ │ ├── setup.py.in │ │ │ ├── tests │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── attribs.py │ │ │ │ ├── build.py │ │ │ │ ├── compareNodes.py │ │ │ │ ├── ctxterror.py │ │ │ │ ├── cutnpaste.py │ │ │ │ ├── dtdvalid.py │ │ │ │ ├── error.py │ │ │ │ ├── inbuf.py │ │ │ │ ├── indexes.py │ │ │ │ ├── invalid.xml │ │ │ │ ├── nsdel.py │ │ │ │ ├── outbuf.py │ │ │ │ ├── push.py │ │ │ │ ├── pushSAX.py │ │ │ │ ├── pushSAXhtml.py │ │ │ │ ├── reader.py │ │ │ │ ├── reader2.py │ │ │ │ ├── reader3.py │ │ │ │ ├── reader4.py │ │ │ │ ├── reader5.py │ │ │ │ ├── reader6.py │ │ │ │ ├── reader7.py │ │ │ │ ├── reader8.py │ │ │ │ ├── readererr.py │ │ │ │ ├── readernext.py │ │ │ │ ├── regexp.py │ │ │ │ ├── relaxng.py │ │ │ │ ├── resolver.py │ │ │ │ ├── schema.py │ │ │ │ ├── serialize.py │ │ │ │ ├── sync.py │ │ │ │ ├── test.dtd │ │ │ │ ├── thread2.py │ │ │ │ ├── tst.py │ │ │ │ ├── tst.xml │ │ │ │ ├── tstLastError.py │ │ │ │ ├── tstURI.py │ │ │ │ ├── tstmem.py │ │ │ │ ├── tstxpath.py │ │ │ │ ├── valid.xml │ │ │ │ ├── validDTD.py │ │ │ │ ├── validRNG.py │ │ │ │ ├── validSchemas.py │ │ │ │ ├── validate.py │ │ │ │ ├── walker.py │ │ │ │ ├── xpath.py │ │ │ │ ├── xpathext.py │ │ │ │ └── xpathret.py │ │ │ └── types.c │ │ ├── regressions.py │ │ ├── regressions.xml │ │ ├── relaxng.c │ │ ├── result │ │ │ ├── HTML │ │ │ │ ├── 53867.html │ │ │ │ ├── 53867.html.err │ │ │ │ ├── 53867.html.sax │ │ │ │ ├── Down.html │ │ │ │ ├── Down.html.err │ │ │ │ ├── Down.html.sax │ │ │ │ ├── attrents.html │ │ │ │ ├── attrents.html.err │ │ │ │ ├── attrents.html.sax │ │ │ │ ├── autoclose.html │ │ │ │ ├── autoclose.html.err │ │ │ │ ├── autoclose.html.sax │ │ │ │ ├── autoclose2.html │ │ │ │ ├── autoclose2.html.err │ │ │ │ ├── autoclose2.html.sax │ │ │ │ ├── autoclose3.html │ │ │ │ ├── autoclose3.html.err │ │ │ │ ├── autoclose3.html.sax │ │ │ │ ├── cf_128.html │ │ │ │ ├── cf_128.html.err │ │ │ │ ├── cf_128.html.sax │ │ │ │ ├── doc2.htm │ │ │ │ ├── doc2.htm.err │ │ │ │ ├── doc2.htm.sax │ │ │ │ ├── doc3.htm │ │ │ │ ├── doc3.htm.err │ │ │ │ ├── doc3.htm.sax │ │ │ │ ├── entities.html │ │ │ │ ├── entities.html.err │ │ │ │ ├── entities.html.sax │ │ │ │ ├── entities2.html │ │ │ │ ├── entities2.html.err │ │ │ │ ├── entities2.html.sax │ │ │ │ ├── fp40.htm │ │ │ │ ├── fp40.htm.err │ │ │ │ ├── fp40.htm.sax │ │ │ │ ├── liclose.html │ │ │ │ ├── liclose.html.err │ │ │ │ ├── liclose.html.sax │ │ │ │ ├── lt.html │ │ │ │ ├── lt.html.err │ │ │ │ ├── lt.html.sax │ │ │ │ ├── pre.html │ │ │ │ ├── pre.html.err │ │ │ │ ├── pre.html.sax │ │ │ │ ├── python.html │ │ │ │ ├── python.html.err │ │ │ │ ├── python.html.sax │ │ │ │ ├── reg1.html │ │ │ │ ├── reg1.html.err │ │ │ │ ├── reg1.html.sax │ │ │ │ ├── reg2.html │ │ │ │ ├── reg2.html.err │ │ │ │ ├── reg2.html.sax │ │ │ │ ├── reg3.html │ │ │ │ ├── reg3.html.err │ │ │ │ ├── reg3.html.sax │ │ │ │ ├── reg4.html │ │ │ │ ├── reg4.html.err │ │ │ │ ├── reg4.html.sax │ │ │ │ ├── repeat.html │ │ │ │ ├── repeat.html.err │ │ │ │ ├── repeat.html.sax │ │ │ │ ├── script.html │ │ │ │ ├── script.html.err │ │ │ │ ├── script.html.sax │ │ │ │ ├── script2.html │ │ │ │ ├── script2.html.err │ │ │ │ ├── script2.html.sax │ │ │ │ ├── test2.html │ │ │ │ ├── test2.html.err │ │ │ │ ├── test2.html.sax │ │ │ │ ├── test3.html │ │ │ │ ├── test3.html.err │ │ │ │ ├── test3.html.sax │ │ │ │ ├── wired.html │ │ │ │ ├── wired.html.err │ │ │ │ └── wired.html.sax │ │ │ ├── SVG │ │ │ │ ├── 4rects.xml │ │ │ │ ├── a-valid.xml │ │ │ │ ├── a-wf.xml │ │ │ │ ├── bike-errors.xml │ │ │ │ ├── bike.xml │ │ │ │ ├── circle.xml │ │ │ │ ├── defs.xml │ │ │ │ ├── desc.xml │ │ │ │ ├── ellipse.xml │ │ │ │ ├── flower2.xml │ │ │ │ ├── gradient.xml │ │ │ │ ├── group01.xml │ │ │ │ ├── group02.xml │ │ │ │ ├── group03.xml │ │ │ │ ├── image-valid.xml │ │ │ │ ├── image-wf.xml │ │ │ │ ├── lin-gradient.xml │ │ │ │ ├── marker.xml │ │ │ │ ├── mask.xml │ │ │ │ ├── mathswitch.xml │ │ │ │ ├── parentns.xml │ │ │ │ ├── path01.xml │ │ │ │ ├── path02.xml │ │ │ │ ├── patternfill.xml │ │ │ │ ├── polyline.xml │ │ │ │ ├── private.xml │ │ │ │ ├── rad-gradient.xml │ │ │ │ ├── rectangle.xml │ │ │ │ ├── richdesc.xml │ │ │ │ ├── script.xml │ │ │ │ ├── structure01.xml │ │ │ │ ├── style.xml │ │ │ │ ├── switch.xml │ │ │ │ ├── symbol-use.xml │ │ │ │ ├── template.xml │ │ │ │ ├── text01.xml │ │ │ │ ├── text02.xml │ │ │ │ ├── text03.xml │ │ │ │ ├── toap01.xml │ │ │ │ ├── toap02.xml │ │ │ │ ├── transform.xml │ │ │ │ ├── trivial.xml │ │ │ │ ├── twin-gradients.xml │ │ │ │ ├── v-template.xml │ │ │ │ ├── viewport-nest.xml │ │ │ │ ├── viewport-transform.xml │ │ │ │ ├── viewport.xml │ │ │ │ └── wf-template.xml │ │ │ ├── URI │ │ │ │ ├── smith.uri │ │ │ │ └── uri.data │ │ │ ├── VC │ │ │ │ ├── AttributeDefaultLegal │ │ │ │ ├── AttributeNmtokens │ │ │ │ ├── DuplicateType │ │ │ │ ├── ElementValid │ │ │ │ ├── ElementValid2 │ │ │ │ ├── ElementValid3 │ │ │ │ ├── ElementValid4 │ │ │ │ ├── ElementValid5 │ │ │ │ ├── ElementValid6 │ │ │ │ ├── ElementValid7 │ │ │ │ ├── ElementValid8 │ │ │ │ ├── Enumeration │ │ │ │ ├── NS1 │ │ │ │ ├── NS2 │ │ │ │ ├── NS3 │ │ │ │ ├── OneID │ │ │ │ ├── OneID2 │ │ │ │ ├── OneID3 │ │ │ │ ├── PENesting │ │ │ │ ├── PENesting2 │ │ │ │ ├── UniqueElementTypeDeclaration │ │ │ │ └── UniqueElementTypeDeclaration2 │ │ │ ├── XInclude │ │ │ │ ├── docids.xml │ │ │ │ ├── docids.xml.err │ │ │ │ ├── docids.xml.rdr │ │ │ │ ├── fallback.xml │ │ │ │ ├── fallback.xml.err │ │ │ │ ├── fallback.xml.rdr │ │ │ │ ├── fallback2.xml │ │ │ │ ├── fallback2.xml.err │ │ │ │ ├── fallback2.xml.rdr │ │ │ │ ├── include.xml │ │ │ │ ├── include.xml.err │ │ │ │ ├── include.xml.rdr │ │ │ │ ├── nodes.xml │ │ │ │ ├── nodes.xml.err │ │ │ │ ├── nodes.xml.rdr │ │ │ │ ├── nodes2.xml │ │ │ │ ├── nodes2.xml.err │ │ │ │ ├── nodes2.xml.rdr │ │ │ │ ├── nodes3.xml │ │ │ │ ├── nodes3.xml.err │ │ │ │ ├── nodes3.xml.rdr │ │ │ │ ├── recursive.xml │ │ │ │ ├── recursive.xml.err │ │ │ │ ├── recursive.xml.rdr │ │ │ │ ├── tstencoding.xml │ │ │ │ ├── tstencoding.xml.err │ │ │ │ ├── tstencoding.xml.rdr │ │ │ │ ├── txtinclude.xml │ │ │ │ ├── txtinclude.xml.err │ │ │ │ └── txtinclude.xml.rdr │ │ │ ├── XPath │ │ │ │ ├── expr │ │ │ │ │ ├── base │ │ │ │ │ ├── compare │ │ │ │ │ ├── equality │ │ │ │ │ ├── floats │ │ │ │ │ ├── functions │ │ │ │ │ └── strings │ │ │ │ ├── tests │ │ │ │ │ ├── chaptersbase │ │ │ │ │ ├── chaptersprefol │ │ │ │ │ ├── idsimple │ │ │ │ │ ├── langsimple │ │ │ │ │ ├── mixedpat │ │ │ │ │ ├── nodespat │ │ │ │ │ ├── simpleabbr │ │ │ │ │ ├── simplebase │ │ │ │ │ ├── usr1check │ │ │ │ │ └── vidbase │ │ │ │ └── xptr │ │ │ │ │ ├── chapterschildseq │ │ │ │ │ ├── chaptersparts │ │ │ │ │ ├── chaptersrange │ │ │ │ │ ├── strpoint │ │ │ │ │ ├── strrange │ │ │ │ │ ├── strrange2 │ │ │ │ │ ├── strrange3 │ │ │ │ │ ├── vidbase │ │ │ │ │ ├── vidchildseq │ │ │ │ │ └── vidparts │ │ │ ├── att1 │ │ │ ├── att1.rde │ │ │ ├── att1.rdr │ │ │ ├── att1.sax │ │ │ ├── att1.sax2 │ │ │ ├── att2 │ │ │ ├── att2.rde │ │ │ ├── att2.rdr │ │ │ ├── att2.sax │ │ │ ├── att2.sax2 │ │ │ ├── att3 │ │ │ ├── att3.rde │ │ │ ├── att3.rdr │ │ │ ├── att3.sax │ │ │ ├── att3.sax2 │ │ │ ├── att4 │ │ │ ├── att4.rde │ │ │ ├── att4.rdr │ │ │ ├── att4.sax │ │ │ ├── att4.sax2 │ │ │ ├── att5 │ │ │ ├── att5.rde │ │ │ ├── att5.rdr │ │ │ ├── att5.sax │ │ │ ├── att5.sax2 │ │ │ ├── att6 │ │ │ ├── att6.rde │ │ │ ├── att6.rdr │ │ │ ├── att6.sax │ │ │ ├── att6.sax2 │ │ │ ├── att7 │ │ │ ├── att7.rde │ │ │ ├── att7.rdr │ │ │ ├── att7.sax │ │ │ ├── att7.sax2 │ │ │ ├── att8 │ │ │ ├── att8.rde │ │ │ ├── att8.rdr │ │ │ ├── att8.sax │ │ │ ├── att8.sax2 │ │ │ ├── attrib.xml │ │ │ ├── attrib.xml.rde │ │ │ ├── attrib.xml.rdr │ │ │ ├── attrib.xml.sax │ │ │ ├── attrib.xml.sax2 │ │ │ ├── automata │ │ │ │ ├── a │ │ │ │ ├── aba │ │ │ │ ├── abaa │ │ │ │ ├── abba │ │ │ │ └── po │ │ │ ├── badcomment.xml │ │ │ ├── badcomment.xml.rde │ │ │ ├── badcomment.xml.rdr │ │ │ ├── badcomment.xml.sax │ │ │ ├── badcomment.xml.sax2 │ │ │ ├── bigentname.xml │ │ │ ├── bigentname.xml.rde │ │ │ ├── bigentname.xml.rdr │ │ │ ├── bigentname.xml.sax │ │ │ ├── bigentname.xml.sax2 │ │ │ ├── bigname.xml │ │ │ ├── bigname.xml.rde │ │ │ ├── bigname.xml.rdr │ │ │ ├── bigname.xml.sax │ │ │ ├── bigname.xml.sax2 │ │ │ ├── bigname2.xml │ │ │ ├── bigname2.xml.rde │ │ │ ├── bigname2.xml.rdr │ │ │ ├── bigname2.xml.sax │ │ │ ├── bigname2.xml.sax2 │ │ │ ├── c14n │ │ │ │ ├── exc-without-comments │ │ │ │ │ ├── merlin-c14n-two-09 │ │ │ │ │ ├── merlin-c14n-two-10 │ │ │ │ │ ├── merlin-c14n-two-11 │ │ │ │ │ ├── merlin-c14n-two-12 │ │ │ │ │ ├── merlin-c14n-two-13 │ │ │ │ │ ├── merlin-c14n-two-14 │ │ │ │ │ ├── merlin-c14n-two-15 │ │ │ │ │ ├── merlin-c14n-two-16 │ │ │ │ │ ├── merlin-c14n-two-17 │ │ │ │ │ ├── merlin-c14n-two-18 │ │ │ │ │ ├── merlin-c14n-two-19 │ │ │ │ │ ├── merlin-c14n-two-20 │ │ │ │ │ ├── merlin-c14n-two-21 │ │ │ │ │ ├── merlin-c14n-two-22 │ │ │ │ │ ├── merlin-c14n-two-23 │ │ │ │ │ ├── merlin-c14n-two-24 │ │ │ │ │ ├── merlin-c14n-two-25 │ │ │ │ │ ├── merlin-c14n-two-26 │ │ │ │ │ ├── test-0 │ │ │ │ │ ├── test-1 │ │ │ │ │ └── test-2 │ │ │ │ ├── with-comments │ │ │ │ │ ├── example-1 │ │ │ │ │ ├── example-2 │ │ │ │ │ ├── example-3 │ │ │ │ │ ├── example-4 │ │ │ │ │ ├── example-5 │ │ │ │ │ ├── example-6 │ │ │ │ │ └── example-7 │ │ │ │ └── without-comments │ │ │ │ │ ├── example-1 │ │ │ │ │ ├── example-2 │ │ │ │ │ ├── example-3 │ │ │ │ │ ├── example-4 │ │ │ │ │ ├── example-5 │ │ │ │ │ ├── example-6 │ │ │ │ │ ├── example-7 │ │ │ │ │ ├── merlin-c14n-two-00 │ │ │ │ │ ├── merlin-c14n-two-01 │ │ │ │ │ ├── merlin-c14n-two-02 │ │ │ │ │ ├── merlin-c14n-two-03 │ │ │ │ │ ├── merlin-c14n-two-04 │ │ │ │ │ ├── merlin-c14n-two-05 │ │ │ │ │ ├── merlin-c14n-two-06 │ │ │ │ │ ├── merlin-c14n-two-07 │ │ │ │ │ ├── merlin-c14n-two-08 │ │ │ │ │ ├── test-0 │ │ │ │ │ ├── test-1 │ │ │ │ │ ├── test-2 │ │ │ │ │ └── test-3 │ │ │ ├── catalogs │ │ │ │ ├── catal │ │ │ │ ├── docbook │ │ │ │ ├── mycatalog.empty │ │ │ │ ├── mycatalog.full │ │ │ │ ├── registry │ │ │ │ ├── whites │ │ │ │ └── whitex │ │ │ ├── cdata │ │ │ ├── cdata.rde │ │ │ ├── cdata.rdr │ │ │ ├── cdata.sax │ │ │ ├── cdata.sax2 │ │ │ ├── cdata2 │ │ │ ├── cdata2.rde │ │ │ ├── cdata2.rdr │ │ │ ├── cdata2.sax │ │ │ ├── cdata2.sax2 │ │ │ ├── comment.xml │ │ │ ├── comment.xml.rde │ │ │ ├── comment.xml.rdr │ │ │ ├── comment.xml.sax │ │ │ ├── comment.xml.sax2 │ │ │ ├── comment2.xml │ │ │ ├── comment2.xml.rde │ │ │ ├── comment2.xml.rdr │ │ │ ├── comment2.xml.sax │ │ │ ├── comment2.xml.sax2 │ │ │ ├── comment3.xml │ │ │ ├── comment3.xml.rde │ │ │ ├── comment3.xml.rdr │ │ │ ├── comment3.xml.sax │ │ │ ├── comment3.xml.sax2 │ │ │ ├── comment4.xml │ │ │ ├── comment4.xml.rde │ │ │ ├── comment4.xml.rdr │ │ │ ├── comment4.xml.sax │ │ │ ├── comment4.xml.sax2 │ │ │ ├── comment5.xml │ │ │ ├── comment5.xml.rde │ │ │ ├── comment5.xml.rdr │ │ │ ├── comment5.xml.sax │ │ │ ├── comment5.xml.sax2 │ │ │ ├── dav1 │ │ │ ├── dav1.rde │ │ │ ├── dav1.rdr │ │ │ ├── dav1.sax │ │ │ ├── dav1.sax2 │ │ │ ├── dav10 │ │ │ ├── dav10.rde │ │ │ ├── dav10.rdr │ │ │ ├── dav10.sax │ │ │ ├── dav10.sax2 │ │ │ ├── dav11 │ │ │ ├── dav11.rde │ │ │ ├── dav11.rdr │ │ │ ├── dav11.sax │ │ │ ├── dav11.sax2 │ │ │ ├── dav12 │ │ │ ├── dav12.rde │ │ │ ├── dav12.rdr │ │ │ ├── dav12.sax │ │ │ ├── dav12.sax2 │ │ │ ├── dav13 │ │ │ ├── dav13.rde │ │ │ ├── dav13.rdr │ │ │ ├── dav13.sax │ │ │ ├── dav13.sax2 │ │ │ ├── dav15 │ │ │ ├── dav15.rde │ │ │ ├── dav15.rdr │ │ │ ├── dav15.sax │ │ │ ├── dav15.sax2 │ │ │ ├── dav16 │ │ │ ├── dav16.rde │ │ │ ├── dav16.rdr │ │ │ ├── dav16.sax │ │ │ ├── dav16.sax2 │ │ │ ├── dav17 │ │ │ ├── dav17.rde │ │ │ ├── dav17.rdr │ │ │ ├── dav17.sax │ │ │ ├── dav17.sax2 │ │ │ ├── dav18 │ │ │ ├── dav18.rde │ │ │ ├── dav18.rdr │ │ │ ├── dav18.sax │ │ │ ├── dav18.sax2 │ │ │ ├── dav19 │ │ │ ├── dav19.rde │ │ │ ├── dav19.rdr │ │ │ ├── dav19.sax │ │ │ ├── dav19.sax2 │ │ │ ├── dav2 │ │ │ ├── dav2.rde │ │ │ ├── dav2.rdr │ │ │ ├── dav2.sax │ │ │ ├── dav2.sax2 │ │ │ ├── dav3 │ │ │ ├── dav3.rde │ │ │ ├── dav3.rdr │ │ │ ├── dav3.sax │ │ │ ├── dav3.sax2 │ │ │ ├── dav4 │ │ │ ├── dav4.rde │ │ │ ├── dav4.rdr │ │ │ ├── dav4.sax │ │ │ ├── dav4.sax2 │ │ │ ├── dav5 │ │ │ ├── dav5.rde │ │ │ ├── dav5.rdr │ │ │ ├── dav5.sax │ │ │ ├── dav5.sax2 │ │ │ ├── dav6 │ │ │ ├── dav6.rde │ │ │ ├── dav6.rdr │ │ │ ├── dav6.sax │ │ │ ├── dav6.sax2 │ │ │ ├── dav7 │ │ │ ├── dav7.rde │ │ │ ├── dav7.rdr │ │ │ ├── dav7.sax │ │ │ ├── dav7.sax2 │ │ │ ├── dav8 │ │ │ ├── dav8.rde │ │ │ ├── dav8.rdr │ │ │ ├── dav8.sax │ │ │ ├── dav8.sax2 │ │ │ ├── dav9 │ │ │ ├── dav9.rde │ │ │ ├── dav9.rdr │ │ │ ├── dav9.sax │ │ │ ├── dav9.sax2 │ │ │ ├── defattr.xml │ │ │ ├── defattr.xml.rde │ │ │ ├── defattr.xml.rdr │ │ │ ├── defattr.xml.sax │ │ │ ├── defattr.xml.sax2 │ │ │ ├── defattr2.xml │ │ │ ├── defattr2.xml.rde │ │ │ ├── defattr2.xml.rdr │ │ │ ├── defattr2.xml.sax │ │ │ ├── defattr2.xml.sax2 │ │ │ ├── dia1 │ │ │ ├── dia1.rde │ │ │ ├── dia1.rdr │ │ │ ├── dia1.sax │ │ │ ├── dia1.sax2 │ │ │ ├── dia2 │ │ │ ├── dia2.rde │ │ │ ├── dia2.rdr │ │ │ ├── dia2.sax │ │ │ ├── dia2.sax2 │ │ │ ├── dtd1 │ │ │ ├── dtd1.rde │ │ │ ├── dtd1.rdr │ │ │ ├── dtd1.sax │ │ │ ├── dtd1.sax2 │ │ │ ├── dtd10 │ │ │ ├── dtd10.rde │ │ │ ├── dtd10.rdr │ │ │ ├── dtd10.sax │ │ │ ├── dtd10.sax2 │ │ │ ├── dtd11 │ │ │ ├── dtd11.rde │ │ │ ├── dtd11.rdr │ │ │ ├── dtd11.sax │ │ │ ├── dtd11.sax2 │ │ │ ├── dtd12 │ │ │ ├── dtd12.rde │ │ │ ├── dtd12.rdr │ │ │ ├── dtd12.sax │ │ │ ├── dtd12.sax2 │ │ │ ├── dtd13 │ │ │ ├── dtd13.rde │ │ │ ├── dtd13.rdr │ │ │ ├── dtd13.sax │ │ │ ├── dtd13.sax2 │ │ │ ├── dtd2 │ │ │ ├── dtd2.rde │ │ │ ├── dtd2.rdr │ │ │ ├── dtd2.sax │ │ │ ├── dtd2.sax2 │ │ │ ├── dtd3 │ │ │ ├── dtd3.rde │ │ │ ├── dtd3.rdr │ │ │ ├── dtd3.sax │ │ │ ├── dtd3.sax2 │ │ │ ├── dtd4 │ │ │ ├── dtd4.rde │ │ │ ├── dtd4.rdr │ │ │ ├── dtd4.sax │ │ │ ├── dtd4.sax2 │ │ │ ├── dtd5 │ │ │ ├── dtd5.rde │ │ │ ├── dtd5.rdr │ │ │ ├── dtd5.sax │ │ │ ├── dtd5.sax2 │ │ │ ├── dtd6 │ │ │ ├── dtd6.rde │ │ │ ├── dtd6.rdr │ │ │ ├── dtd6.sax │ │ │ ├── dtd6.sax2 │ │ │ ├── dtd7 │ │ │ ├── dtd7.rde │ │ │ ├── dtd7.rdr │ │ │ ├── dtd7.sax │ │ │ ├── dtd7.sax2 │ │ │ ├── dtd8 │ │ │ ├── dtd8.rde │ │ │ ├── dtd8.rdr │ │ │ ├── dtd8.sax │ │ │ ├── dtd8.sax2 │ │ │ ├── dtd9 │ │ │ ├── dtd9.rde │ │ │ ├── dtd9.rdr │ │ │ ├── dtd9.sax │ │ │ ├── dtd9.sax2 │ │ │ ├── ent1 │ │ │ ├── ent1.rde │ │ │ ├── ent1.rdr │ │ │ ├── ent1.sax │ │ │ ├── ent1.sax2 │ │ │ ├── ent10 │ │ │ ├── ent10.rde │ │ │ ├── ent10.rdr │ │ │ ├── ent10.sax │ │ │ ├── ent10.sax2 │ │ │ ├── ent11 │ │ │ ├── ent11.rde │ │ │ ├── ent11.rdr │ │ │ ├── ent11.sax │ │ │ ├── ent11.sax2 │ │ │ ├── ent12 │ │ │ ├── ent12.rde │ │ │ ├── ent12.rdr │ │ │ ├── ent12.sax │ │ │ ├── ent12.sax2 │ │ │ ├── ent2 │ │ │ ├── ent2.rde │ │ │ ├── ent2.rdr │ │ │ ├── ent2.sax │ │ │ ├── ent2.sax2 │ │ │ ├── ent3 │ │ │ ├── ent3.rde │ │ │ ├── ent3.rdr │ │ │ ├── ent3.sax │ │ │ ├── ent3.sax2 │ │ │ ├── ent4 │ │ │ ├── ent4.rde │ │ │ ├── ent4.rdr │ │ │ ├── ent4.sax │ │ │ ├── ent4.sax2 │ │ │ ├── ent5 │ │ │ ├── ent5.rde │ │ │ ├── ent5.rdr │ │ │ ├── ent5.sax │ │ │ ├── ent5.sax2 │ │ │ ├── ent6 │ │ │ ├── ent6.rde │ │ │ ├── ent6.rdr │ │ │ ├── ent6.sax │ │ │ ├── ent6.sax2 │ │ │ ├── ent7 │ │ │ ├── ent7.rde │ │ │ ├── ent7.rdr │ │ │ ├── ent7.sax │ │ │ ├── ent7.sax2 │ │ │ ├── ent8 │ │ │ ├── ent8.rde │ │ │ ├── ent8.rdr │ │ │ ├── ent8.sax │ │ │ ├── ent8.sax2 │ │ │ ├── ent9 │ │ │ ├── ent9.rde │ │ │ ├── ent9.rdr │ │ │ ├── ent9.sax │ │ │ ├── ent9.sax2 │ │ │ ├── errors │ │ │ │ ├── attr1.xml │ │ │ │ ├── attr1.xml.err │ │ │ │ ├── attr1.xml.str │ │ │ │ ├── attr2.xml │ │ │ │ ├── attr2.xml.err │ │ │ │ ├── attr2.xml.str │ │ │ │ ├── attr3.xml │ │ │ │ ├── attr3.xml.err │ │ │ │ ├── attr3.xml.str │ │ │ │ ├── cdata.xml │ │ │ │ ├── cdata.xml.err │ │ │ │ ├── cdata.xml.str │ │ │ │ ├── charref1.xml │ │ │ │ ├── charref1.xml.err │ │ │ │ ├── charref1.xml.str │ │ │ │ ├── name.xml │ │ │ │ ├── name.xml.err │ │ │ │ ├── name.xml.str │ │ │ │ ├── name2.xml │ │ │ │ ├── name2.xml.err │ │ │ │ ├── name2.xml.str │ │ │ │ ├── webdav.xml │ │ │ │ ├── webdav.xml.err │ │ │ │ └── webdav.xml.str │ │ │ ├── eve.xml │ │ │ ├── eve.xml.rde │ │ │ ├── eve.xml.rdr │ │ │ ├── eve.xml.sax │ │ │ ├── eve.xml.sax2 │ │ │ ├── example.dtd │ │ │ ├── expr │ │ │ │ └── base │ │ │ ├── intsubset.xml │ │ │ ├── intsubset.xml.rde │ │ │ ├── intsubset.xml.rdr │ │ │ ├── intsubset.xml.sax │ │ │ ├── intsubset.xml.sax2 │ │ │ ├── intsubset2.xml │ │ │ ├── intsubset2.xml.rde │ │ │ ├── intsubset2.xml.rdr │ │ │ ├── intsubset2.xml.sax │ │ │ ├── intsubset2.xml.sax2 │ │ │ ├── isolat1 │ │ │ ├── isolat1.rde │ │ │ ├── isolat1.rdr │ │ │ ├── isolat1.sax │ │ │ ├── isolat1.sax2 │ │ │ ├── isolat2 │ │ │ ├── isolat2.rde │ │ │ ├── isolat2.rdr │ │ │ ├── isolat2.sax │ │ │ ├── isolat2.sax2 │ │ │ ├── isolat3 │ │ │ ├── isolat3.rde │ │ │ ├── isolat3.rdr │ │ │ ├── isolat3.sax │ │ │ ├── isolat3.sax2 │ │ │ ├── namespaces │ │ │ │ ├── err_0.xml │ │ │ │ ├── err_0.xml.err │ │ │ │ ├── err_1.xml │ │ │ │ ├── err_1.xml.err │ │ │ │ ├── err_10.xml │ │ │ │ ├── err_10.xml.err │ │ │ │ ├── err_11.xml │ │ │ │ ├── err_11.xml.err │ │ │ │ ├── err_2.xml │ │ │ │ ├── err_2.xml.err │ │ │ │ ├── err_3.xml │ │ │ │ ├── err_3.xml.err │ │ │ │ ├── err_4.xml │ │ │ │ ├── err_4.xml.err │ │ │ │ ├── err_5.xml │ │ │ │ ├── err_5.xml.err │ │ │ │ ├── err_6.xml │ │ │ │ ├── err_6.xml.err │ │ │ │ ├── err_7.xml │ │ │ │ ├── err_7.xml.err │ │ │ │ ├── err_8.xml │ │ │ │ ├── err_8.xml.err │ │ │ │ ├── err_9.xml │ │ │ │ └── err_9.xml.err │ │ │ ├── noent │ │ │ │ ├── att1 │ │ │ │ ├── att2 │ │ │ │ ├── att3 │ │ │ │ ├── att4 │ │ │ │ ├── att5 │ │ │ │ ├── att6 │ │ │ │ ├── att7 │ │ │ │ ├── att8 │ │ │ │ ├── attrib.xml │ │ │ │ ├── badcomment.xml │ │ │ │ ├── bigentname.xml │ │ │ │ ├── bigname.xml │ │ │ │ ├── bigname2.xml │ │ │ │ ├── cdata │ │ │ │ ├── cdata2 │ │ │ │ ├── comment.xml │ │ │ │ ├── comment2.xml │ │ │ │ ├── comment3.xml │ │ │ │ ├── comment4.xml │ │ │ │ ├── comment5.xml │ │ │ │ ├── dav1 │ │ │ │ ├── dav10 │ │ │ │ ├── dav11 │ │ │ │ ├── dav12 │ │ │ │ ├── dav13 │ │ │ │ ├── dav15 │ │ │ │ ├── dav16 │ │ │ │ ├── dav17 │ │ │ │ ├── dav18 │ │ │ │ ├── dav19 │ │ │ │ ├── dav2 │ │ │ │ ├── dav3 │ │ │ │ ├── dav4 │ │ │ │ ├── dav5 │ │ │ │ ├── dav6 │ │ │ │ ├── dav7 │ │ │ │ ├── dav8 │ │ │ │ ├── dav9 │ │ │ │ ├── defattr.xml │ │ │ │ ├── defattr2.xml │ │ │ │ ├── dia1 │ │ │ │ ├── dia2 │ │ │ │ ├── dtd1 │ │ │ │ ├── dtd10 │ │ │ │ ├── dtd11 │ │ │ │ ├── dtd12 │ │ │ │ ├── dtd13 │ │ │ │ ├── dtd2 │ │ │ │ ├── dtd3 │ │ │ │ ├── dtd4 │ │ │ │ ├── dtd5 │ │ │ │ ├── dtd6 │ │ │ │ ├── dtd7 │ │ │ │ ├── dtd8 │ │ │ │ ├── dtd9 │ │ │ │ ├── ent1 │ │ │ │ ├── ent10 │ │ │ │ ├── ent11 │ │ │ │ ├── ent12 │ │ │ │ ├── ent2 │ │ │ │ ├── ent3 │ │ │ │ ├── ent4 │ │ │ │ ├── ent5 │ │ │ │ ├── ent6 │ │ │ │ ├── ent7 │ │ │ │ ├── ent8 │ │ │ │ ├── ent9 │ │ │ │ ├── eve.xml │ │ │ │ ├── intsubset.xml │ │ │ │ ├── intsubset2.xml │ │ │ │ ├── isolat1 │ │ │ │ ├── isolat2 │ │ │ │ ├── isolat3 │ │ │ │ ├── ns │ │ │ │ ├── ns2 │ │ │ │ ├── ns3 │ │ │ │ ├── ns4 │ │ │ │ ├── ns5 │ │ │ │ ├── ns6 │ │ │ │ ├── ns7 │ │ │ │ ├── nsclean.xml │ │ │ │ ├── p3p │ │ │ │ ├── pi.xml │ │ │ │ ├── pi2.xml │ │ │ │ ├── rdf1 │ │ │ │ ├── rdf2 │ │ │ │ ├── slashdot.rdf │ │ │ │ ├── slashdot.xml │ │ │ │ ├── slashdot16.xml │ │ │ │ ├── svg1 │ │ │ │ ├── svg2 │ │ │ │ ├── svg3 │ │ │ │ ├── title.xml │ │ │ │ ├── tstblanks.xml │ │ │ │ ├── utf16bebom.xml │ │ │ │ ├── utf16bom.xml │ │ │ │ ├── utf16lebom.xml │ │ │ │ ├── utf8bom.xml │ │ │ │ ├── wap.xml │ │ │ │ ├── winblanks.xml │ │ │ │ ├── wml.xml │ │ │ │ ├── xhtml1 │ │ │ │ ├── xhtmlcomp │ │ │ │ ├── xml1 │ │ │ │ └── xml2 │ │ │ ├── ns │ │ │ ├── ns.rde │ │ │ ├── ns.rdr │ │ │ ├── ns.sax │ │ │ ├── ns.sax2 │ │ │ ├── ns2 │ │ │ ├── ns2.rde │ │ │ ├── ns2.rdr │ │ │ ├── ns2.sax │ │ │ ├── ns2.sax2 │ │ │ ├── ns3 │ │ │ ├── ns3.rde │ │ │ ├── ns3.rdr │ │ │ ├── ns3.sax │ │ │ ├── ns3.sax2 │ │ │ ├── ns4 │ │ │ ├── ns4.rde │ │ │ ├── ns4.rdr │ │ │ ├── ns4.sax │ │ │ ├── ns4.sax2 │ │ │ ├── ns5 │ │ │ ├── ns5.rde │ │ │ ├── ns5.rdr │ │ │ ├── ns5.sax │ │ │ ├── ns5.sax2 │ │ │ ├── ns6 │ │ │ ├── ns6.rde │ │ │ ├── ns6.rdr │ │ │ ├── ns6.sax │ │ │ ├── ns6.sax2 │ │ │ ├── ns7 │ │ │ ├── ns7.rde │ │ │ ├── ns7.rdr │ │ │ ├── ns7.sax │ │ │ ├── ns7.sax2 │ │ │ ├── nsclean.xml │ │ │ ├── nsclean.xml.rde │ │ │ ├── nsclean.xml.rdr │ │ │ ├── nsclean.xml.sax │ │ │ ├── nsclean.xml.sax2 │ │ │ ├── p3p │ │ │ ├── p3p.rde │ │ │ ├── p3p.rdr │ │ │ ├── p3p.sax │ │ │ ├── p3p.sax2 │ │ │ ├── pattern │ │ │ │ ├── conj │ │ │ │ ├── multiple │ │ │ │ ├── namespaces │ │ │ │ └── simple │ │ │ ├── pi.xml │ │ │ ├── pi.xml.rde │ │ │ ├── pi.xml.rdr │ │ │ ├── pi.xml.sax │ │ │ ├── pi.xml.sax2 │ │ │ ├── pi2.xml │ │ │ ├── pi2.xml.rde │ │ │ ├── pi2.xml.rdr │ │ │ ├── pi2.xml.sax │ │ │ ├── pi2.xml.sax2 │ │ │ ├── rdf1 │ │ │ ├── rdf1.rde │ │ │ ├── rdf1.rdr │ │ │ ├── rdf1.sax │ │ │ ├── rdf1.sax2 │ │ │ ├── rdf2 │ │ │ ├── rdf2.rde │ │ │ ├── rdf2.rdr │ │ │ ├── rdf2.sax │ │ │ ├── rdf2.sax2 │ │ │ ├── regexp │ │ │ │ ├── branch │ │ │ │ ├── bug316338 │ │ │ │ ├── bug420596 │ │ │ │ ├── content │ │ │ │ ├── hard │ │ │ │ ├── ncname │ │ │ │ ├── ranges │ │ │ │ └── xpath │ │ │ ├── relaxng │ │ │ │ ├── 302836_0 │ │ │ │ ├── 302836_0.err │ │ │ │ ├── 302836_err │ │ │ │ ├── 302836_valid │ │ │ │ ├── 307377_0 │ │ │ │ ├── 307377_0.err │ │ │ │ ├── 307377_1 │ │ │ │ ├── 307377_1.err │ │ │ │ ├── 307377_2 │ │ │ │ ├── 307377_2.err │ │ │ │ ├── 307377_err │ │ │ │ ├── 307377_valid │ │ │ │ ├── OpenDocumentSub_0 │ │ │ │ ├── OpenDocumentSub_0.err │ │ │ │ ├── OpenDocumentSub_err │ │ │ │ ├── OpenDocumentSub_valid │ │ │ │ ├── addressBook_err │ │ │ │ ├── addressBook_valid │ │ │ │ ├── choice0_0 │ │ │ │ ├── choice0_0.err │ │ │ │ ├── choice0_1 │ │ │ │ ├── choice0_1.err │ │ │ │ ├── choice0_2 │ │ │ │ ├── choice0_2.err │ │ │ │ ├── choice0_3 │ │ │ │ ├── choice0_3.err │ │ │ │ ├── choice0_4 │ │ │ │ ├── choice0_4.err │ │ │ │ ├── choice0_5 │ │ │ │ ├── choice0_5.err │ │ │ │ ├── choice0_6 │ │ │ │ ├── choice0_6.err │ │ │ │ ├── choice0_7 │ │ │ │ ├── choice0_7.err │ │ │ │ ├── choice0_8 │ │ │ │ ├── choice0_8.err │ │ │ │ ├── choice0_err │ │ │ │ ├── choice0_valid │ │ │ │ ├── compare0_0 │ │ │ │ ├── compare0_0.err │ │ │ │ ├── compare0_err │ │ │ │ ├── compare0_valid │ │ │ │ ├── comps_0 │ │ │ │ ├── comps_0.err │ │ │ │ ├── comps_err │ │ │ │ ├── comps_valid │ │ │ │ ├── demo2_err │ │ │ │ ├── demo2_valid │ │ │ │ ├── demo3_err │ │ │ │ ├── demo3_valid │ │ │ │ ├── demo_err │ │ │ │ ├── demo_valid │ │ │ │ ├── docbook_0 │ │ │ │ ├── docbook_0.err │ │ │ │ ├── docbook_err │ │ │ │ ├── docbook_valid │ │ │ │ ├── empty0_0 │ │ │ │ ├── empty0_0.err │ │ │ │ ├── empty0_err │ │ │ │ ├── empty0_valid │ │ │ │ ├── empty1_0 │ │ │ │ ├── empty1_0.err │ │ │ │ ├── empty1_1 │ │ │ │ ├── empty1_1.err │ │ │ │ ├── empty1_err │ │ │ │ ├── empty1_valid │ │ │ │ ├── inline2_err │ │ │ │ ├── inline2_valid │ │ │ │ ├── inline3_err │ │ │ │ ├── inline3_valid │ │ │ │ ├── inline_err │ │ │ │ ├── inline_valid │ │ │ │ ├── interleave0_0_err │ │ │ │ ├── interleave0_0_valid │ │ │ │ ├── interleave1_0_err │ │ │ │ ├── interleave1_0_valid │ │ │ │ ├── list_0 │ │ │ │ ├── list_0.err │ │ │ │ ├── list_1 │ │ │ │ ├── list_1.err │ │ │ │ ├── list_err │ │ │ │ ├── list_valid │ │ │ │ ├── pattern1_err │ │ │ │ ├── pattern1_valid │ │ │ │ ├── pattern2_err │ │ │ │ ├── pattern2_valid │ │ │ │ ├── proofsystem_err │ │ │ │ ├── proofsystem_valid │ │ │ │ ├── rngbug-001_err │ │ │ │ ├── rngbug-001_valid │ │ │ │ ├── spec1_1 │ │ │ │ ├── spec1_1.err │ │ │ │ ├── spec1_err │ │ │ │ ├── spec1_valid │ │ │ │ ├── spec_0 │ │ │ │ ├── spec_0.err │ │ │ │ ├── spec_err │ │ │ │ ├── spec_valid │ │ │ │ ├── table_err │ │ │ │ ├── table_valid │ │ │ │ ├── tutor10_10_1 │ │ │ │ ├── tutor10_10_1.err │ │ │ │ ├── tutor10_10_err │ │ │ │ ├── tutor10_10_valid │ │ │ │ ├── tutor10_1_1 │ │ │ │ ├── tutor10_1_1.err │ │ │ │ ├── tutor10_1_2 │ │ │ │ ├── tutor10_1_2.err │ │ │ │ ├── tutor10_1_3 │ │ │ │ ├── tutor10_1_3.err │ │ │ │ ├── tutor10_1_4 │ │ │ │ ├── tutor10_1_4.err │ │ │ │ ├── tutor10_1_5 │ │ │ │ ├── tutor10_1_5.err │ │ │ │ ├── tutor10_1_6 │ │ │ │ ├── tutor10_1_6.err │ │ │ │ ├── tutor10_1_err │ │ │ │ ├── tutor10_1_valid │ │ │ │ ├── tutor10_2_1 │ │ │ │ ├── tutor10_2_1.err │ │ │ │ ├── tutor10_2_2 │ │ │ │ ├── tutor10_2_2.err │ │ │ │ ├── tutor10_2_3 │ │ │ │ ├── tutor10_2_3.err │ │ │ │ ├── tutor10_2_4 │ │ │ │ ├── tutor10_2_4.err │ │ │ │ ├── tutor10_2_err │ │ │ │ ├── tutor10_2_valid │ │ │ │ ├── tutor10_3_1 │ │ │ │ ├── tutor10_3_1.err │ │ │ │ ├── tutor10_3_err │ │ │ │ ├── tutor10_3_valid │ │ │ │ ├── tutor10_4_1 │ │ │ │ ├── tutor10_4_1.err │ │ │ │ ├── tutor10_4_err │ │ │ │ ├── tutor10_4_valid │ │ │ │ ├── tutor10_5_1 │ │ │ │ ├── tutor10_5_1.err │ │ │ │ ├── tutor10_5_err │ │ │ │ ├── tutor10_5_valid │ │ │ │ ├── tutor10_6_1 │ │ │ │ ├── tutor10_6_1.err │ │ │ │ ├── tutor10_6_err │ │ │ │ ├── tutor10_6_valid │ │ │ │ ├── tutor10_7_1 │ │ │ │ ├── tutor10_7_1.err │ │ │ │ ├── tutor10_7_2 │ │ │ │ ├── tutor10_7_2.err │ │ │ │ ├── tutor10_7_3 │ │ │ │ ├── tutor10_7_3.err │ │ │ │ ├── tutor10_7_err │ │ │ │ ├── tutor10_7_valid │ │ │ │ ├── tutor10_8_1 │ │ │ │ ├── tutor10_8_1.err │ │ │ │ ├── tutor10_8_2 │ │ │ │ ├── tutor10_8_2.err │ │ │ │ ├── tutor10_8_3 │ │ │ │ ├── tutor10_8_3.err │ │ │ │ ├── tutor10_8_err │ │ │ │ ├── tutor10_8_valid │ │ │ │ ├── tutor10_9_1 │ │ │ │ ├── tutor10_9_1.err │ │ │ │ ├── tutor10_9_err │ │ │ │ ├── tutor10_9_valid │ │ │ │ ├── tutor11_1_1 │ │ │ │ ├── tutor11_1_1.err │ │ │ │ ├── tutor11_1_2 │ │ │ │ ├── tutor11_1_2.err │ │ │ │ ├── tutor11_1_3 │ │ │ │ ├── tutor11_1_3.err │ │ │ │ ├── tutor11_1_err │ │ │ │ ├── tutor11_1_valid │ │ │ │ ├── tutor11_2_1 │ │ │ │ ├── tutor11_2_1.err │ │ │ │ ├── tutor11_2_2 │ │ │ │ ├── tutor11_2_2.err │ │ │ │ ├── tutor11_2_3 │ │ │ │ ├── tutor11_2_3.err │ │ │ │ ├── tutor11_2_err │ │ │ │ ├── tutor11_2_valid │ │ │ │ ├── tutor11_3_1 │ │ │ │ ├── tutor11_3_1.err │ │ │ │ ├── tutor11_3_err │ │ │ │ ├── tutor11_3_valid │ │ │ │ ├── tutor11_4_1 │ │ │ │ ├── tutor11_4_1.err │ │ │ │ ├── tutor11_4_err │ │ │ │ ├── tutor11_4_valid │ │ │ │ ├── tutor12_1_1 │ │ │ │ ├── tutor12_1_1.err │ │ │ │ ├── tutor12_1_err │ │ │ │ ├── tutor12_1_valid │ │ │ │ ├── tutor13_1_1 │ │ │ │ ├── tutor13_1_1.err │ │ │ │ ├── tutor13_1_err │ │ │ │ ├── tutor13_1_valid │ │ │ │ ├── tutor14_1_err │ │ │ │ ├── tutor14_1_valid │ │ │ │ ├── tutor1_1_1 │ │ │ │ ├── tutor1_1_1.err │ │ │ │ ├── tutor1_1_err │ │ │ │ ├── tutor1_1_valid │ │ │ │ ├── tutor1_2_1 │ │ │ │ ├── tutor1_2_1.err │ │ │ │ ├── tutor1_2_err │ │ │ │ ├── tutor1_2_valid │ │ │ │ ├── tutor1_3_1 │ │ │ │ ├── tutor1_3_1.err │ │ │ │ ├── tutor1_3_err │ │ │ │ ├── tutor1_3_valid │ │ │ │ ├── tutor1_4_1 │ │ │ │ ├── tutor1_4_1.err │ │ │ │ ├── tutor1_4_err │ │ │ │ ├── tutor1_4_valid │ │ │ │ ├── tutor2_1_1 │ │ │ │ ├── tutor2_1_1.err │ │ │ │ ├── tutor2_1_err │ │ │ │ ├── tutor2_1_valid │ │ │ │ ├── tutor3_1_1 │ │ │ │ ├── tutor3_1_1.err │ │ │ │ ├── tutor3_1_2 │ │ │ │ ├── tutor3_1_2.err │ │ │ │ ├── tutor3_1_err │ │ │ │ ├── tutor3_1_valid │ │ │ │ ├── tutor3_2_1 │ │ │ │ ├── tutor3_2_1.err │ │ │ │ ├── tutor3_2_err │ │ │ │ ├── tutor3_2_valid │ │ │ │ ├── tutor3_3_1 │ │ │ │ ├── tutor3_3_1.err │ │ │ │ ├── tutor3_3_err │ │ │ │ ├── tutor3_3_valid │ │ │ │ ├── tutor3_4_1 │ │ │ │ ├── tutor3_4_1.err │ │ │ │ ├── tutor3_4_err │ │ │ │ ├── tutor3_4_valid │ │ │ │ ├── tutor3_5_1 │ │ │ │ ├── tutor3_5_1.err │ │ │ │ ├── tutor3_5_2 │ │ │ │ ├── tutor3_5_2.err │ │ │ │ ├── tutor3_5_err │ │ │ │ ├── tutor3_5_valid │ │ │ │ ├── tutor3_6_1 │ │ │ │ ├── tutor3_6_1.err │ │ │ │ ├── tutor3_6_err │ │ │ │ ├── tutor3_6_valid │ │ │ │ ├── tutor3_7_1 │ │ │ │ ├── tutor3_7_1.err │ │ │ │ ├── tutor3_7_err │ │ │ │ ├── tutor3_7_valid │ │ │ │ ├── tutor3_8_1 │ │ │ │ ├── tutor3_8_1.err │ │ │ │ ├── tutor3_8_err │ │ │ │ ├── tutor3_8_valid │ │ │ │ ├── tutor3_9_1 │ │ │ │ ├── tutor3_9_1.err │ │ │ │ ├── tutor3_9_err │ │ │ │ ├── tutor3_9_valid │ │ │ │ ├── tutor4_1_1 │ │ │ │ ├── tutor4_1_1.err │ │ │ │ ├── tutor4_1_err │ │ │ │ ├── tutor4_1_valid │ │ │ │ ├── tutor4_2_1 │ │ │ │ ├── tutor4_2_1.err │ │ │ │ ├── tutor4_2_err │ │ │ │ ├── tutor4_2_valid │ │ │ │ ├── tutor4_3_1 │ │ │ │ ├── tutor4_3_1.err │ │ │ │ ├── tutor4_3_2 │ │ │ │ ├── tutor4_3_2.err │ │ │ │ ├── tutor4_3_3 │ │ │ │ ├── tutor4_3_3.err │ │ │ │ ├── tutor4_3_4 │ │ │ │ ├── tutor4_3_4.err │ │ │ │ ├── tutor4_3_5 │ │ │ │ ├── tutor4_3_5.err │ │ │ │ ├── tutor4_3_6 │ │ │ │ ├── tutor4_3_6.err │ │ │ │ ├── tutor4_3_err │ │ │ │ ├── tutor4_3_valid │ │ │ │ ├── tutor4_4_1 │ │ │ │ ├── tutor4_4_1.err │ │ │ │ ├── tutor4_4_err │ │ │ │ ├── tutor4_4_valid │ │ │ │ ├── tutor5_1_1 │ │ │ │ ├── tutor5_1_1.err │ │ │ │ ├── tutor5_1_err │ │ │ │ ├── tutor5_1_valid │ │ │ │ ├── tutor5_2_1 │ │ │ │ ├── tutor5_2_1.err │ │ │ │ ├── tutor5_2_err │ │ │ │ ├── tutor5_2_valid │ │ │ │ ├── tutor5_3_1 │ │ │ │ ├── tutor5_3_1.err │ │ │ │ ├── tutor5_3_err │ │ │ │ ├── tutor5_3_valid │ │ │ │ ├── tutor5_4_1 │ │ │ │ ├── tutor5_4_1.err │ │ │ │ ├── tutor5_4_err │ │ │ │ ├── tutor5_4_valid │ │ │ │ ├── tutor5_5_err │ │ │ │ ├── tutor5_5_valid │ │ │ │ ├── tutor6_1_1 │ │ │ │ ├── tutor6_1_1.err │ │ │ │ ├── tutor6_1_2 │ │ │ │ ├── tutor6_1_2.err │ │ │ │ ├── tutor6_1_3 │ │ │ │ ├── tutor6_1_3.err │ │ │ │ ├── tutor6_1_4 │ │ │ │ ├── tutor6_1_4.err │ │ │ │ ├── tutor6_1_5 │ │ │ │ ├── tutor6_1_5.err │ │ │ │ ├── tutor6_1_err │ │ │ │ ├── tutor6_1_valid │ │ │ │ ├── tutor6_2_1 │ │ │ │ ├── tutor6_2_1.err │ │ │ │ ├── tutor6_2_2 │ │ │ │ ├── tutor6_2_2.err │ │ │ │ ├── tutor6_2_3 │ │ │ │ ├── tutor6_2_3.err │ │ │ │ ├── tutor6_2_4 │ │ │ │ ├── tutor6_2_4.err │ │ │ │ ├── tutor6_2_err │ │ │ │ ├── tutor6_2_valid │ │ │ │ ├── tutor6_3_1 │ │ │ │ ├── tutor6_3_1.err │ │ │ │ ├── tutor6_3_err │ │ │ │ ├── tutor6_3_valid │ │ │ │ ├── tutor7_1_1 │ │ │ │ ├── tutor7_1_1.err │ │ │ │ ├── tutor7_1_2 │ │ │ │ ├── tutor7_1_2.err │ │ │ │ ├── tutor7_1_3 │ │ │ │ ├── tutor7_1_3.err │ │ │ │ ├── tutor7_1_4 │ │ │ │ ├── tutor7_1_4.err │ │ │ │ ├── tutor7_1_err │ │ │ │ ├── tutor7_1_valid │ │ │ │ ├── tutor7_2_1 │ │ │ │ ├── tutor7_2_1.err │ │ │ │ ├── tutor7_2_2 │ │ │ │ ├── tutor7_2_2.err │ │ │ │ ├── tutor7_2_3 │ │ │ │ ├── tutor7_2_3.err │ │ │ │ ├── tutor7_2_4 │ │ │ │ ├── tutor7_2_4.err │ │ │ │ ├── tutor7_2_err │ │ │ │ ├── tutor7_2_valid │ │ │ │ ├── tutor7_3_1 │ │ │ │ ├── tutor7_3_1.err │ │ │ │ ├── tutor7_3_2 │ │ │ │ ├── tutor7_3_2.err │ │ │ │ ├── tutor7_3_3 │ │ │ │ ├── tutor7_3_3.err │ │ │ │ ├── tutor7_3_4 │ │ │ │ ├── tutor7_3_4.err │ │ │ │ ├── tutor7_3_5 │ │ │ │ ├── tutor7_3_5.err │ │ │ │ ├── tutor7_3_err │ │ │ │ ├── tutor7_3_valid │ │ │ │ ├── tutor8_1_1 │ │ │ │ ├── tutor8_1_1.err │ │ │ │ ├── tutor8_1_2 │ │ │ │ ├── tutor8_1_2.err │ │ │ │ ├── tutor8_1_err │ │ │ │ ├── tutor8_1_valid │ │ │ │ ├── tutor8_2_1 │ │ │ │ ├── tutor8_2_1.err │ │ │ │ ├── tutor8_2_2 │ │ │ │ ├── tutor8_2_2.err │ │ │ │ ├── tutor8_2_3 │ │ │ │ ├── tutor8_2_3.err │ │ │ │ ├── tutor8_2_4 │ │ │ │ ├── tutor8_2_4.err │ │ │ │ ├── tutor8_2_5 │ │ │ │ ├── tutor8_2_5.err │ │ │ │ ├── tutor8_2_6 │ │ │ │ ├── tutor8_2_6.err │ │ │ │ ├── tutor8_2_err │ │ │ │ ├── tutor8_2_valid │ │ │ │ ├── tutor8_3_1 │ │ │ │ ├── tutor8_3_1.err │ │ │ │ ├── tutor8_3_err │ │ │ │ ├── tutor8_3_valid │ │ │ │ ├── tutor9_10_1 │ │ │ │ ├── tutor9_10_1.err │ │ │ │ ├── tutor9_10_err │ │ │ │ ├── tutor9_10_valid │ │ │ │ ├── tutor9_11_1 │ │ │ │ ├── tutor9_11_1.err │ │ │ │ ├── tutor9_11_err │ │ │ │ ├── tutor9_11_valid │ │ │ │ ├── tutor9_12_1 │ │ │ │ ├── tutor9_12_1.err │ │ │ │ ├── tutor9_12_err │ │ │ │ ├── tutor9_12_valid │ │ │ │ ├── tutor9_1_1 │ │ │ │ ├── tutor9_1_1.err │ │ │ │ ├── tutor9_1_err │ │ │ │ ├── tutor9_1_valid │ │ │ │ ├── tutor9_2_1 │ │ │ │ ├── tutor9_2_1.err │ │ │ │ ├── tutor9_2_2 │ │ │ │ ├── tutor9_2_2.err │ │ │ │ ├── tutor9_2_err │ │ │ │ ├── tutor9_2_valid │ │ │ │ ├── tutor9_3_1 │ │ │ │ ├── tutor9_3_1.err │ │ │ │ ├── tutor9_3_2 │ │ │ │ ├── tutor9_3_2.err │ │ │ │ ├── tutor9_3_err │ │ │ │ ├── tutor9_3_valid │ │ │ │ ├── tutor9_4_1 │ │ │ │ ├── tutor9_4_1.err │ │ │ │ ├── tutor9_4_2 │ │ │ │ ├── tutor9_4_2.err │ │ │ │ ├── tutor9_4_err │ │ │ │ ├── tutor9_4_valid │ │ │ │ ├── tutor9_5_1 │ │ │ │ ├── tutor9_5_1.err │ │ │ │ ├── tutor9_5_2 │ │ │ │ ├── tutor9_5_2.err │ │ │ │ ├── tutor9_5_3 │ │ │ │ ├── tutor9_5_3.err │ │ │ │ ├── tutor9_5_err │ │ │ │ ├── tutor9_5_valid │ │ │ │ ├── tutor9_6.rng │ │ │ │ ├── tutor9_6_1 │ │ │ │ ├── tutor9_6_1.err │ │ │ │ ├── tutor9_6_2 │ │ │ │ ├── tutor9_6_2.err │ │ │ │ ├── tutor9_6_3 │ │ │ │ ├── tutor9_6_3.err │ │ │ │ ├── tutor9_6_err │ │ │ │ ├── tutor9_6_valid │ │ │ │ ├── tutor9_7_1 │ │ │ │ ├── tutor9_7_1.err │ │ │ │ ├── tutor9_7_err │ │ │ │ ├── tutor9_7_valid │ │ │ │ ├── tutor9_8_1 │ │ │ │ ├── tutor9_8_1.err │ │ │ │ ├── tutor9_8_err │ │ │ │ ├── tutor9_8_valid │ │ │ │ ├── tutor9_9_1 │ │ │ │ ├── tutor9_9_1.err │ │ │ │ ├── tutor9_9_err │ │ │ │ ├── tutor9_9_valid │ │ │ │ ├── tutorA_err │ │ │ │ └── tutorA_valid │ │ │ ├── schemas │ │ │ │ ├── all1_0_0 │ │ │ │ ├── all1_0_0.err │ │ │ │ ├── all_0_0 │ │ │ │ ├── all_0_0.err │ │ │ │ ├── all_0_1 │ │ │ │ ├── all_0_1.err │ │ │ │ ├── all_0_2 │ │ │ │ ├── all_0_2.err │ │ │ │ ├── all_0_3 │ │ │ │ ├── all_0_3.err │ │ │ │ ├── all_0_4 │ │ │ │ ├── all_0_4.err │ │ │ │ ├── all_0_5 │ │ │ │ ├── all_0_5.err │ │ │ │ ├── all_0_6 │ │ │ │ ├── all_0_6.err │ │ │ │ ├── all_0_7 │ │ │ │ ├── all_0_7.err │ │ │ │ ├── all_1_0 │ │ │ │ ├── all_1_0.err │ │ │ │ ├── all_1_1 │ │ │ │ ├── all_1_1.err │ │ │ │ ├── all_1_2 │ │ │ │ ├── all_1_2.err │ │ │ │ ├── all_1_3 │ │ │ │ ├── all_1_3.err │ │ │ │ ├── all_1_4 │ │ │ │ ├── all_1_4.err │ │ │ │ ├── all_1_5 │ │ │ │ ├── all_1_5.err │ │ │ │ ├── all_1_6 │ │ │ │ ├── all_1_6.err │ │ │ │ ├── all_1_7 │ │ │ │ ├── all_1_7.err │ │ │ │ ├── all_2_0 │ │ │ │ ├── all_2_0.err │ │ │ │ ├── all_2_1 │ │ │ │ ├── all_2_1.err │ │ │ │ ├── all_2_2 │ │ │ │ ├── all_2_2.err │ │ │ │ ├── all_2_3 │ │ │ │ ├── all_2_3.err │ │ │ │ ├── all_2_4 │ │ │ │ ├── all_2_4.err │ │ │ │ ├── all_2_5 │ │ │ │ ├── all_2_5.err │ │ │ │ ├── all_2_6 │ │ │ │ ├── all_2_6.err │ │ │ │ ├── all_2_7 │ │ │ │ ├── all_2_7.err │ │ │ │ ├── allsg_0_0 │ │ │ │ ├── allsg_0_0.err │ │ │ │ ├── allsg_0_1 │ │ │ │ ├── allsg_0_1.err │ │ │ │ ├── allsg_0_2 │ │ │ │ ├── allsg_0_2.err │ │ │ │ ├── allsg_0_3 │ │ │ │ ├── allsg_0_3.err │ │ │ │ ├── allsg_0_4 │ │ │ │ ├── allsg_0_4.err │ │ │ │ ├── allsg_0_5 │ │ │ │ ├── allsg_0_5.err │ │ │ │ ├── annot-err_0_0 │ │ │ │ ├── annot-err_0_0.err │ │ │ │ ├── any1_0_0 │ │ │ │ ├── any1_0_0.err │ │ │ │ ├── any2_0_0 │ │ │ │ ├── any2_0_0.err │ │ │ │ ├── any3_0_0 │ │ │ │ ├── any3_0_0.err │ │ │ │ ├── any4_0_0 │ │ │ │ ├── any4_0_0.err │ │ │ │ ├── any5_0_0 │ │ │ │ ├── any5_0_0.err │ │ │ │ ├── any5_0_1 │ │ │ │ ├── any5_0_1.err │ │ │ │ ├── any5_0_2 │ │ │ │ ├── any5_0_2.err │ │ │ │ ├── any5_0_3 │ │ │ │ ├── any5_0_3.err │ │ │ │ ├── any5_0_4 │ │ │ │ ├── any5_0_4.err │ │ │ │ ├── any5_0_5 │ │ │ │ ├── any5_0_5.err │ │ │ │ ├── any5_0_6 │ │ │ │ ├── any5_0_6.err │ │ │ │ ├── any5_1_0 │ │ │ │ ├── any5_1_0.err │ │ │ │ ├── any5_1_1 │ │ │ │ ├── any5_1_1.err │ │ │ │ ├── any5_1_2 │ │ │ │ ├── any5_1_2.err │ │ │ │ ├── any5_1_3 │ │ │ │ ├── any5_1_3.err │ │ │ │ ├── any5_1_4 │ │ │ │ ├── any5_1_4.err │ │ │ │ ├── any5_1_5 │ │ │ │ ├── any5_1_5.err │ │ │ │ ├── any5_1_6 │ │ │ │ ├── any5_1_6.err │ │ │ │ ├── any6_1_0 │ │ │ │ ├── any6_1_0.err │ │ │ │ ├── any6_2_0 │ │ │ │ ├── any6_2_0.err │ │ │ │ ├── any7_1_0 │ │ │ │ ├── any7_1_0.err │ │ │ │ ├── any7_1_1 │ │ │ │ ├── any7_1_1.err │ │ │ │ ├── any7_1_2 │ │ │ │ ├── any7_1_2.err │ │ │ │ ├── any7_2_0 │ │ │ │ ├── any7_2_0.err │ │ │ │ ├── any7_2_1 │ │ │ │ ├── any7_2_1.err │ │ │ │ ├── any7_2_2 │ │ │ │ ├── any7_2_2.err │ │ │ │ ├── any8_1_0 │ │ │ │ ├── any8_1_0.err │ │ │ │ ├── anyAttr-derive-errors1_0_0 │ │ │ │ ├── anyAttr-derive-errors1_0_0.err │ │ │ │ ├── anyAttr-derive1_0_0 │ │ │ │ ├── anyAttr-derive1_0_0.err │ │ │ │ ├── anyAttr-derive2_0_0 │ │ │ │ ├── anyAttr-derive2_0_0.err │ │ │ │ ├── anyAttr-processContents-err1_0_0 │ │ │ │ ├── anyAttr-processContents-err1_0_0.err │ │ │ │ ├── anyAttr-processContents1_0_0 │ │ │ │ ├── anyAttr-processContents1_0_0.err │ │ │ │ ├── anyAttr1_0_0 │ │ │ │ ├── anyAttr1_0_0.err │ │ │ │ ├── attr0_0_0 │ │ │ │ ├── attr0_0_0.err │ │ │ │ ├── attruse_0_0 │ │ │ │ ├── attruse_0_0.err │ │ │ │ ├── attruse_0_1 │ │ │ │ ├── attruse_0_1.err │ │ │ │ ├── attruse_0_2 │ │ │ │ ├── attruse_0_2.err │ │ │ │ ├── bug141312_0_0 │ │ │ │ ├── bug141312_0_0.err │ │ │ │ ├── bug141333_0_0 │ │ │ │ ├── bug141333_0_0.err │ │ │ │ ├── bug143951_0_0 │ │ │ │ ├── bug143951_0_0.err │ │ │ │ ├── bug145246_0_0 │ │ │ │ ├── bug145246_0_0.err │ │ │ │ ├── bug152470_1_1 │ │ │ │ ├── bug152470_1_1.err │ │ │ │ ├── bug167754_0_0 │ │ │ │ ├── bug167754_0_0.err │ │ │ │ ├── bug303566_1_1 │ │ │ │ ├── bug303566_1_1.err │ │ │ │ ├── bug306806_1_0 │ │ │ │ ├── bug306806_1_0.err │ │ │ │ ├── bug309338_1_0 │ │ │ │ ├── bug309338_1_0.err │ │ │ │ ├── bug310264_0_0 │ │ │ │ ├── bug310264_0_0.err │ │ │ │ ├── bug312957_1_0 │ │ │ │ ├── bug312957_1_0.err │ │ │ │ ├── bug313982_0_0 │ │ │ │ ├── bug313982_0_0.err │ │ │ │ ├── bug321475_1_0 │ │ │ │ ├── bug321475_1_0.err │ │ │ │ ├── bug322411_1_0 │ │ │ │ ├── bug322411_1_0.err │ │ │ │ ├── bug323510_1_0 │ │ │ │ ├── bug323510_1_0.err │ │ │ │ ├── changelog093_1_0 │ │ │ │ ├── changelog093_1_0.err │ │ │ │ ├── choice_0_0 │ │ │ │ ├── choice_0_0.err │ │ │ │ ├── choice_0_1 │ │ │ │ ├── choice_0_1.err │ │ │ │ ├── choice_0_2 │ │ │ │ ├── choice_0_2.err │ │ │ │ ├── choice_0_3 │ │ │ │ ├── choice_0_3.err │ │ │ │ ├── choice_0_4 │ │ │ │ ├── choice_0_4.err │ │ │ │ ├── choice_0_5 │ │ │ │ ├── choice_0_5.err │ │ │ │ ├── choice_0_6 │ │ │ │ ├── choice_0_6.err │ │ │ │ ├── choice_1_0 │ │ │ │ ├── choice_1_0.err │ │ │ │ ├── choice_1_1 │ │ │ │ ├── choice_1_1.err │ │ │ │ ├── choice_1_2 │ │ │ │ ├── choice_1_2.err │ │ │ │ ├── choice_1_3 │ │ │ │ ├── choice_1_3.err │ │ │ │ ├── choice_1_4 │ │ │ │ ├── choice_1_4.err │ │ │ │ ├── choice_1_5 │ │ │ │ ├── choice_1_5.err │ │ │ │ ├── choice_1_6 │ │ │ │ ├── choice_1_6.err │ │ │ │ ├── choice_2_0 │ │ │ │ ├── choice_2_0.err │ │ │ │ ├── choice_2_1 │ │ │ │ ├── choice_2_1.err │ │ │ │ ├── choice_2_2 │ │ │ │ ├── choice_2_2.err │ │ │ │ ├── choice_2_3 │ │ │ │ ├── choice_2_3.err │ │ │ │ ├── choice_2_4 │ │ │ │ ├── choice_2_4.err │ │ │ │ ├── choice_2_5 │ │ │ │ ├── choice_2_5.err │ │ │ │ ├── choice_2_6 │ │ │ │ ├── choice_2_6.err │ │ │ │ ├── cos-ct-extends-1-3_0_0 │ │ │ │ ├── cos-ct-extends-1-3_0_0.err │ │ │ │ ├── cos-st-restricts-1-2-err_0_0 │ │ │ │ ├── cos-st-restricts-1-2-err_0_0.err │ │ │ │ ├── ct-sc-nobase_0_0 │ │ │ │ ├── ct-sc-nobase_0_0.err │ │ │ │ ├── date_0_0 │ │ │ │ ├── date_0_0.err │ │ │ │ ├── decimal-1_1_0 │ │ │ │ ├── decimal-1_1_0.err │ │ │ │ ├── decimal-2_1_0 │ │ │ │ ├── decimal-2_1_0.err │ │ │ │ ├── decimal-3_1_0 │ │ │ │ ├── decimal-3_1_0.err │ │ │ │ ├── derivation-ok-extension-err_0_0 │ │ │ │ ├── derivation-ok-extension-err_0_0.err │ │ │ │ ├── derivation-ok-extension_0_0 │ │ │ │ ├── derivation-ok-extension_0_0.err │ │ │ │ ├── derivation-ok-restriction-2-1-1_0_0 │ │ │ │ ├── derivation-ok-restriction-2-1-1_0_0.err │ │ │ │ ├── derivation-ok-restriction-4-1-err_0_0 │ │ │ │ ├── derivation-ok-restriction-4-1-err_0_0.err │ │ │ │ ├── derivation-restriction-anyAttr_0_0 │ │ │ │ ├── derivation-restriction-anyAttr_0_0.err │ │ │ │ ├── deter0_0_0 │ │ │ │ ├── deter0_0_0.err │ │ │ │ ├── dur_0_0 │ │ │ │ ├── dur_0_0.err │ │ │ │ ├── elem0_0_0 │ │ │ │ ├── elem0_0_0.err │ │ │ │ ├── element-err_0_0 │ │ │ │ ├── element-err_0_0.err │ │ │ │ ├── element-minmax-err_0_0 │ │ │ │ ├── element-minmax-err_0_0.err │ │ │ │ ├── empty-value_1_0 │ │ │ │ ├── empty-value_1_0.err │ │ │ │ ├── empty-value_1_1 │ │ │ │ ├── empty-value_1_1.err │ │ │ │ ├── empty_0_0 │ │ │ │ ├── empty_0_0.err │ │ │ │ ├── empty_1_0 │ │ │ │ ├── empty_1_0.err │ │ │ │ ├── extension0_0_0 │ │ │ │ ├── extension0_0_0.err │ │ │ │ ├── extension1_0_0 │ │ │ │ ├── extension1_0_0.err │ │ │ │ ├── extension1_0_1 │ │ │ │ ├── extension1_0_1.err │ │ │ │ ├── extension1_0_2 │ │ │ │ ├── extension1_0_2.err │ │ │ │ ├── extension2_1_0 │ │ │ │ ├── extension2_1_0.err │ │ │ │ ├── facet-unionST-err1_0_0 │ │ │ │ ├── facet-unionST-err1_0_0.err │ │ │ │ ├── facet-whiteSpace_0_0 │ │ │ │ ├── facet-whiteSpace_0_0.err │ │ │ │ ├── group0_0_0 │ │ │ │ ├── group0_0_0.err │ │ │ │ ├── hexbinary_0_0 │ │ │ │ ├── hexbinary_0_0.err │ │ │ │ ├── hexbinary_0_1 │ │ │ │ ├── hexbinary_0_1.err │ │ │ │ ├── idc-keyref-err1_1_0 │ │ │ │ ├── idc-keyref-err1_1_0.err │ │ │ │ ├── import0_0_0 │ │ │ │ ├── import0_0_0.err │ │ │ │ ├── import1_0_0 │ │ │ │ ├── import1_0_0.err │ │ │ │ ├── import2_0_0 │ │ │ │ ├── import2_0_0.err │ │ │ │ ├── include1_0_0 │ │ │ │ ├── include1_0_0.err │ │ │ │ ├── include2_0_0 │ │ │ │ ├── include2_0_0.err │ │ │ │ ├── include3_0_0 │ │ │ │ ├── include3_0_0.err │ │ │ │ ├── item_0_0 │ │ │ │ ├── item_0_0.err │ │ │ │ ├── item_1_0 │ │ │ │ ├── item_1_0.err │ │ │ │ ├── length1_0_0 │ │ │ │ ├── length1_0_0.err │ │ │ │ ├── length2_0_0 │ │ │ │ ├── length2_0_0.err │ │ │ │ ├── length3_0_0 │ │ │ │ ├── length3_0_0.err │ │ │ │ ├── list0_0_0 │ │ │ │ ├── list0_0_0.err │ │ │ │ ├── list0_0_1 │ │ │ │ ├── list0_0_1.err │ │ │ │ ├── list0_0_2 │ │ │ │ ├── list0_0_2.err │ │ │ │ ├── list0_1_0 │ │ │ │ ├── list0_1_0.err │ │ │ │ ├── list0_1_1 │ │ │ │ ├── list0_1_1.err │ │ │ │ ├── list0_1_2 │ │ │ │ ├── list0_1_2.err │ │ │ │ ├── mixed0_0_0 │ │ │ │ ├── mixed0_0_0.err │ │ │ │ ├── mixed1_0_0 │ │ │ │ ├── mixed1_0_0.err │ │ │ │ ├── ns0_0_0 │ │ │ │ ├── ns0_0_0.err │ │ │ │ ├── ns0_0_1 │ │ │ │ ├── ns0_0_1.err │ │ │ │ ├── ns0_0_2 │ │ │ │ ├── ns0_0_2.err │ │ │ │ ├── ns0_0_3 │ │ │ │ ├── ns0_0_3.err │ │ │ │ ├── ns0_0_4 │ │ │ │ ├── ns0_0_4.err │ │ │ │ ├── ns0_1_0 │ │ │ │ ├── ns0_1_0.err │ │ │ │ ├── ns0_1_1 │ │ │ │ ├── ns0_1_1.err │ │ │ │ ├── ns0_1_2 │ │ │ │ ├── ns0_1_2.err │ │ │ │ ├── ns0_1_3 │ │ │ │ ├── ns0_1_3.err │ │ │ │ ├── ns0_1_4 │ │ │ │ ├── ns0_1_4.err │ │ │ │ ├── ns1_0_0 │ │ │ │ ├── ns1_0_0.err │ │ │ │ ├── ns2_0_0 │ │ │ │ ├── ns2_0_0.err │ │ │ │ ├── po0_0_0 │ │ │ │ ├── po0_0_0.err │ │ │ │ ├── po1_0_0 │ │ │ │ ├── po1_0_0.err │ │ │ │ ├── restrict-CT-attr-ref_0_0 │ │ │ │ ├── restrict-CT-attr-ref_0_0.err │ │ │ │ ├── restriction-attr1_0_0 │ │ │ │ ├── restriction-attr1_0_0.err │ │ │ │ ├── restriction-enum-1_1_0 │ │ │ │ ├── restriction-enum-1_1_0.err │ │ │ │ ├── restriction0_0_0 │ │ │ │ ├── restriction0_0_0.err │ │ │ │ ├── scc-no-xmlns_0_0 │ │ │ │ ├── scc-no-xmlns_0_0.err │ │ │ │ ├── scc-no-xsi_0_0 │ │ │ │ ├── scc-no-xsi_0_0.err │ │ │ │ ├── seq-dubl-elem1_0_0 │ │ │ │ ├── seq-dubl-elem1_0_0.err │ │ │ │ ├── seq0_0_0 │ │ │ │ ├── seq0_0_0.err │ │ │ │ ├── src-attribute1_0_0 │ │ │ │ ├── src-attribute1_0_0.err │ │ │ │ ├── src-attribute2_0_0 │ │ │ │ ├── src-attribute2_0_0.err │ │ │ │ ├── src-attribute3-1_0_0 │ │ │ │ ├── src-attribute3-1_0_0.err │ │ │ │ ├── src-attribute3-2-form_0_0 │ │ │ │ ├── src-attribute3-2-form_0_0.err │ │ │ │ ├── src-attribute3-2-st_0_0 │ │ │ │ ├── src-attribute3-2-st_0_0.err │ │ │ │ ├── src-attribute3-2-type_0_0 │ │ │ │ ├── src-attribute3-2-type_0_0.err │ │ │ │ ├── src-attribute4_0_0 │ │ │ │ ├── src-attribute4_0_0.err │ │ │ │ ├── src-element1_0_0 │ │ │ │ ├── src-element1_0_0.err │ │ │ │ ├── src-element2-1_0_0 │ │ │ │ ├── src-element2-1_0_0.err │ │ │ │ ├── src-element2-2_0_0 │ │ │ │ ├── src-element2-2_0_0.err │ │ │ │ ├── src-element3_0_0 │ │ │ │ ├── src-element3_0_0.err │ │ │ │ ├── subst-group-1_0_1 │ │ │ │ ├── subst-group-1_0_1.err │ │ │ │ ├── union2_1_1 │ │ │ │ ├── union2_1_1.err │ │ │ │ ├── union_0_0 │ │ │ │ ├── union_0_0.err │ │ │ │ ├── vdv-first0_0_0 │ │ │ │ ├── vdv-first0_0_0.err │ │ │ │ ├── vdv-first1_0_0 │ │ │ │ ├── vdv-first1_0_0.err │ │ │ │ ├── vdv-first2_0_0 │ │ │ │ ├── vdv-first2_0_0.err │ │ │ │ ├── vdv-first3_0_0 │ │ │ │ ├── vdv-first3_0_0.err │ │ │ │ ├── vdv-first4_0_0 │ │ │ │ ├── vdv-first4_0_0.err │ │ │ │ ├── vdv-first4_0_1 │ │ │ │ ├── vdv-first4_0_1.err │ │ │ │ ├── vdv-first4_0_2 │ │ │ │ ├── vdv-first4_0_2.err │ │ │ │ ├── vdv-first5_0_0 │ │ │ │ ├── vdv-first5_0_0.err │ │ │ │ ├── xsd-list-itemType_0_0 │ │ │ │ ├── xsd-list-itemType_0_0.err │ │ │ │ ├── xsd-simpleType-varieties_0_0 │ │ │ │ └── xsd-simpleType-varieties_0_0.err │ │ │ ├── schematron │ │ │ │ ├── zvon10_0 │ │ │ │ ├── zvon10_0.err │ │ │ │ ├── zvon10_1 │ │ │ │ ├── zvon10_1.err │ │ │ │ ├── zvon11_0 │ │ │ │ ├── zvon11_0.err │ │ │ │ ├── zvon11_1 │ │ │ │ ├── zvon11_1.err │ │ │ │ ├── zvon11_2 │ │ │ │ ├── zvon11_2.err │ │ │ │ ├── zvon11_3 │ │ │ │ ├── zvon11_3.err │ │ │ │ ├── zvon12_0 │ │ │ │ ├── zvon12_0.err │ │ │ │ ├── zvon12_1 │ │ │ │ ├── zvon12_1.err │ │ │ │ ├── zvon12_2 │ │ │ │ ├── zvon12_2.err │ │ │ │ ├── zvon13_0 │ │ │ │ ├── zvon13_0.err │ │ │ │ ├── zvon13_1 │ │ │ │ ├── zvon13_1.err │ │ │ │ ├── zvon13_2 │ │ │ │ ├── zvon13_2.err │ │ │ │ ├── zvon14_0 │ │ │ │ ├── zvon14_0.err │ │ │ │ ├── zvon15_0 │ │ │ │ ├── zvon15_0.err │ │ │ │ ├── zvon1_0 │ │ │ │ ├── zvon1_0.err │ │ │ │ ├── zvon1_1 │ │ │ │ ├── zvon1_1.err │ │ │ │ ├── zvon2_0 │ │ │ │ ├── zvon2_0.err │ │ │ │ ├── zvon2_1 │ │ │ │ ├── zvon2_1.err │ │ │ │ ├── zvon2_2 │ │ │ │ ├── zvon2_2.err │ │ │ │ ├── zvon3_0 │ │ │ │ ├── zvon3_0.err │ │ │ │ ├── zvon4_0 │ │ │ │ ├── zvon4_0.err │ │ │ │ ├── zvon4_1 │ │ │ │ ├── zvon4_1.err │ │ │ │ ├── zvon5_0 │ │ │ │ ├── zvon5_0.err │ │ │ │ ├── zvon5_1 │ │ │ │ ├── zvon5_1.err │ │ │ │ ├── zvon5_2 │ │ │ │ ├── zvon5_2.err │ │ │ │ ├── zvon6_0 │ │ │ │ ├── zvon6_0.err │ │ │ │ ├── zvon6_1 │ │ │ │ ├── zvon6_1.err │ │ │ │ ├── zvon6_2 │ │ │ │ ├── zvon6_2.err │ │ │ │ ├── zvon7_0 │ │ │ │ ├── zvon7_0.err │ │ │ │ ├── zvon7_1 │ │ │ │ ├── zvon7_1.err │ │ │ │ ├── zvon7_2 │ │ │ │ ├── zvon7_2.err │ │ │ │ ├── zvon7_3 │ │ │ │ ├── zvon7_3.err │ │ │ │ ├── zvon7_4 │ │ │ │ ├── zvon7_4.err │ │ │ │ ├── zvon8_0 │ │ │ │ ├── zvon8_0.err │ │ │ │ ├── zvon8_1 │ │ │ │ ├── zvon8_1.err │ │ │ │ ├── zvon8_2 │ │ │ │ ├── zvon8_2.err │ │ │ │ ├── zvon9_0 │ │ │ │ ├── zvon9_0.err │ │ │ │ ├── zvon9_1 │ │ │ │ ├── zvon9_1.err │ │ │ │ ├── zvon9_2 │ │ │ │ └── zvon9_2.err │ │ │ ├── scripts │ │ │ │ ├── base │ │ │ │ ├── base.err │ │ │ │ ├── base2 │ │ │ │ ├── base2.err │ │ │ │ ├── set1 │ │ │ │ ├── set1.err │ │ │ │ ├── set3 │ │ │ │ ├── set3.err │ │ │ │ ├── set4 │ │ │ │ └── set4.err │ │ │ ├── slashdot.rdf │ │ │ ├── slashdot.rdf.rde │ │ │ ├── slashdot.rdf.rdr │ │ │ ├── slashdot.rdf.sax │ │ │ ├── slashdot.rdf.sax2 │ │ │ ├── slashdot.xml │ │ │ ├── slashdot.xml.rde │ │ │ ├── slashdot.xml.rdr │ │ │ ├── slashdot.xml.sax │ │ │ ├── slashdot.xml.sax2 │ │ │ ├── slashdot16.xml │ │ │ ├── slashdot16.xml.rde │ │ │ ├── slashdot16.xml.rdr │ │ │ ├── slashdot16.xml.sax │ │ │ ├── slashdot16.xml.sax2 │ │ │ ├── svg1 │ │ │ ├── svg1.rde │ │ │ ├── svg1.rdr │ │ │ ├── svg1.sax │ │ │ ├── svg1.sax2 │ │ │ ├── svg2 │ │ │ ├── svg2.rde │ │ │ ├── svg2.rdr │ │ │ ├── svg2.sax │ │ │ ├── svg2.sax2 │ │ │ ├── svg3 │ │ │ ├── svg3.rde │ │ │ ├── svg3.rdr │ │ │ ├── svg3.sax │ │ │ ├── svg3.sax2 │ │ │ ├── title.xml │ │ │ ├── title.xml.rde │ │ │ ├── title.xml.rdr │ │ │ ├── title.xml.sax │ │ │ ├── title.xml.sax2 │ │ │ ├── tstblanks.xml │ │ │ ├── tstblanks.xml.rde │ │ │ ├── tstblanks.xml.rdr │ │ │ ├── tstblanks.xml.sax │ │ │ ├── tstblanks.xml.sax2 │ │ │ ├── utf16bebom.xml │ │ │ ├── utf16bebom.xml.rde │ │ │ ├── utf16bebom.xml.rdr │ │ │ ├── utf16bebom.xml.sax │ │ │ ├── utf16bebom.xml.sax2 │ │ │ ├── utf16bom.xml │ │ │ ├── utf16bom.xml.rde │ │ │ ├── utf16bom.xml.rdr │ │ │ ├── utf16bom.xml.sax │ │ │ ├── utf16bom.xml.sax2 │ │ │ ├── utf16lebom.xml │ │ │ ├── utf16lebom.xml.rde │ │ │ ├── utf16lebom.xml.rdr │ │ │ ├── utf16lebom.xml.sax │ │ │ ├── utf16lebom.xml.sax2 │ │ │ ├── utf8bom.xml │ │ │ ├── utf8bom.xml.rde │ │ │ ├── utf8bom.xml.rdr │ │ │ ├── utf8bom.xml.sax │ │ │ ├── utf8bom.xml.sax2 │ │ │ ├── valid │ │ │ │ ├── 127772.xml │ │ │ │ ├── 127772.xml.err │ │ │ │ ├── REC-xml-19980210.xml │ │ │ │ ├── REC-xml-19980210.xml.err │ │ │ │ ├── dia.xml │ │ │ │ ├── dia.xml.err │ │ │ │ ├── id1.xml │ │ │ │ ├── id1.xml.err │ │ │ │ ├── id2.xml │ │ │ │ ├── id2.xml.err │ │ │ │ ├── id3.xml │ │ │ │ ├── id3.xml.err │ │ │ │ ├── index.xml │ │ │ │ ├── index.xml.err │ │ │ │ ├── mixed_ns.xml │ │ │ │ ├── mixed_ns.xml.err │ │ │ │ ├── ns.xml │ │ │ │ ├── ns.xml.err │ │ │ │ ├── ns2.xml │ │ │ │ ├── ns2.xml.err │ │ │ │ ├── objednavka.xml │ │ │ │ ├── objednavka.xml.err │ │ │ │ ├── rss.xml │ │ │ │ ├── rss.xml.err │ │ │ │ ├── t10.xml │ │ │ │ ├── t10.xml.err │ │ │ │ ├── t4.dtd │ │ │ │ ├── t4.dtd.err │ │ │ │ ├── t4.xml │ │ │ │ ├── t4.xml.err │ │ │ │ ├── t4a.dtd │ │ │ │ ├── t4a.dtd.err │ │ │ │ ├── t4a.xml │ │ │ │ ├── t4a.xml.err │ │ │ │ ├── t6.dtd │ │ │ │ ├── t6.dtd.err │ │ │ │ ├── t6.xml │ │ │ │ ├── t6.xml.err │ │ │ │ ├── t8.xml │ │ │ │ ├── t8.xml.err │ │ │ │ ├── t8a.xml │ │ │ │ ├── t8a.xml.err │ │ │ │ ├── t9.xml │ │ │ │ ├── t9.xml.err │ │ │ │ ├── t9a.xml │ │ │ │ ├── t9a.xml.err │ │ │ │ ├── xhtml1.xhtml │ │ │ │ ├── xhtml1.xhtml.err │ │ │ │ ├── xlink.xml │ │ │ │ └── xlink.xml.err │ │ │ ├── wap.xml │ │ │ ├── wap.xml.rde │ │ │ ├── wap.xml.rdr │ │ │ ├── wap.xml.sax │ │ │ ├── wap.xml.sax2 │ │ │ ├── winblanks.xml │ │ │ ├── winblanks.xml.rde │ │ │ ├── winblanks.xml.rdr │ │ │ ├── winblanks.xml.sax │ │ │ ├── winblanks.xml.sax2 │ │ │ ├── wml.xml │ │ │ ├── wml.xml.rde │ │ │ ├── wml.xml.rdr │ │ │ ├── wml.xml.sax │ │ │ ├── wml.xml.sax2 │ │ │ ├── xhtml1 │ │ │ ├── xhtml1.rde │ │ │ ├── xhtml1.rdr │ │ │ ├── xhtml1.sax │ │ │ ├── xhtml1.sax2 │ │ │ ├── xhtmlcomp │ │ │ ├── xhtmlcomp.rde │ │ │ ├── xhtmlcomp.rdr │ │ │ ├── xhtmlcomp.sax │ │ │ ├── xhtmlcomp.sax2 │ │ │ ├── xml1 │ │ │ ├── xml1.rde │ │ │ ├── xml1.rdr │ │ │ ├── xml1.sax │ │ │ ├── xml1.sax2 │ │ │ ├── xml2 │ │ │ ├── xml2.rde │ │ │ ├── xml2.rdr │ │ │ ├── xml2.sax │ │ │ ├── xml2.sax2 │ │ │ └── xmlid │ │ │ │ ├── id_err1.xml │ │ │ │ ├── id_err1.xml.err │ │ │ │ ├── id_err2.xml │ │ │ │ ├── id_err2.xml.err │ │ │ │ ├── id_tst1.xml │ │ │ │ ├── id_tst1.xml.err │ │ │ │ ├── id_tst2.xml │ │ │ │ ├── id_tst2.xml.err │ │ │ │ ├── id_tst3.xml │ │ │ │ ├── id_tst3.xml.err │ │ │ │ ├── id_tst4.xml │ │ │ │ └── id_tst4.xml.err │ │ ├── runsuite.c │ │ ├── runtest.c │ │ ├── schematron.c │ │ ├── test │ │ │ ├── HTML │ │ │ │ ├── 53867.html │ │ │ │ ├── Down.html │ │ │ │ ├── attrents.html │ │ │ │ ├── autoclose.html │ │ │ │ ├── autoclose2.html │ │ │ │ ├── autoclose3.html │ │ │ │ ├── cf_128.html │ │ │ │ ├── doc2.htm │ │ │ │ ├── doc3.htm │ │ │ │ ├── entities.html │ │ │ │ ├── entities2.html │ │ │ │ ├── fp40.htm │ │ │ │ ├── liclose.html │ │ │ │ ├── lt.html │ │ │ │ ├── pre.html │ │ │ │ ├── python.html │ │ │ │ ├── reg1.html │ │ │ │ ├── reg2.html │ │ │ │ ├── reg3.html │ │ │ │ ├── reg4.html │ │ │ │ ├── repeat.html │ │ │ │ ├── script.html │ │ │ │ ├── script2.html │ │ │ │ ├── test2.html │ │ │ │ ├── test3.html │ │ │ │ └── wired.html │ │ │ ├── SVG │ │ │ │ ├── 4rects.xml │ │ │ │ ├── a-valid.xml │ │ │ │ ├── a-wf.xml │ │ │ │ ├── bike.xml │ │ │ │ ├── circle.xml │ │ │ │ ├── defs.xml │ │ │ │ ├── desc.xml │ │ │ │ ├── ellipse.xml │ │ │ │ ├── flower2.xml │ │ │ │ ├── gradient.xml │ │ │ │ ├── group01.xml │ │ │ │ ├── group02.xml │ │ │ │ ├── group03.xml │ │ │ │ ├── image-valid.xml │ │ │ │ ├── image-wf.xml │ │ │ │ ├── lin-gradient.xml │ │ │ │ ├── marker.xml │ │ │ │ ├── mask.xml │ │ │ │ ├── mathswitch.xml │ │ │ │ ├── parentns.xml │ │ │ │ ├── path01.xml │ │ │ │ ├── path02.xml │ │ │ │ ├── patternfill.xml │ │ │ │ ├── polyline.xml │ │ │ │ ├── private.xml │ │ │ │ ├── rad-gradient.xml │ │ │ │ ├── rectangle.xml │ │ │ │ ├── richdesc.xml │ │ │ │ ├── script.xml │ │ │ │ ├── structure01.xml │ │ │ │ ├── style.xml │ │ │ │ ├── switch.xml │ │ │ │ ├── symbol-use.xml │ │ │ │ ├── template.xml │ │ │ │ ├── text01.xml │ │ │ │ ├── text02.xml │ │ │ │ ├── text03.xml │ │ │ │ ├── toap01.xml │ │ │ │ ├── toap02.xml │ │ │ │ ├── transform.xml │ │ │ │ ├── trivial.xml │ │ │ │ ├── twin-gradients.xml │ │ │ │ ├── v-template.xml │ │ │ │ ├── viewport-nest.xml │ │ │ │ ├── viewport-transform.xml │ │ │ │ ├── viewport.xml │ │ │ │ └── wf-template.xml │ │ │ ├── URI │ │ │ │ ├── smith.uri │ │ │ │ └── uri.data │ │ │ ├── VC │ │ │ │ ├── AttributeDefaultLegal │ │ │ │ ├── AttributeNmtokens │ │ │ │ ├── DuplicateType │ │ │ │ ├── ElementValid │ │ │ │ ├── ElementValid2 │ │ │ │ ├── ElementValid3 │ │ │ │ ├── ElementValid4 │ │ │ │ ├── ElementValid5 │ │ │ │ ├── ElementValid6 │ │ │ │ ├── ElementValid7 │ │ │ │ ├── ElementValid8 │ │ │ │ ├── Enumeration │ │ │ │ ├── NS1 │ │ │ │ ├── NS2 │ │ │ │ ├── NS3 │ │ │ │ ├── OneID │ │ │ │ ├── OneID2 │ │ │ │ ├── OneID3 │ │ │ │ ├── PENesting │ │ │ │ ├── PENesting2 │ │ │ │ ├── UniqueElementTypeDeclaration │ │ │ │ ├── UniqueElementTypeDeclaration2 │ │ │ │ └── dtds │ │ │ │ │ ├── a.dtd │ │ │ │ │ └── doc.dtd │ │ │ ├── VCM │ │ │ │ ├── 21.xml │ │ │ │ ├── AttributeNmtokens.xml │ │ │ │ ├── v1.xml │ │ │ │ ├── v10.xml │ │ │ │ ├── v11.xml │ │ │ │ ├── v12.xml │ │ │ │ ├── v13.xml │ │ │ │ ├── v14.xml │ │ │ │ ├── v15.xml │ │ │ │ ├── v16.xml │ │ │ │ ├── v17.xml │ │ │ │ ├── v18.xml │ │ │ │ ├── v19.xml │ │ │ │ ├── v2.xml │ │ │ │ ├── v20.xml │ │ │ │ ├── v21.xml │ │ │ │ ├── v22.xml │ │ │ │ ├── v23.xml │ │ │ │ ├── v24.xml │ │ │ │ ├── v3.xml │ │ │ │ ├── v4.xml │ │ │ │ ├── v5.xml │ │ │ │ ├── v6.xml │ │ │ │ ├── v7.xml │ │ │ │ ├── v8.xml │ │ │ │ └── v9.xml │ │ │ ├── WFC │ │ │ │ ├── ElemTypeMatch │ │ │ │ ├── EntityDeclared │ │ │ │ ├── EntityDeclared2 │ │ │ │ ├── EntityDeclared3 │ │ │ │ ├── EntityDeclared4 │ │ │ │ ├── EntityDeclared5 │ │ │ │ ├── LegalCharacter │ │ │ │ ├── NoExternalEntityRef │ │ │ │ ├── NoLtInAttValue │ │ │ │ ├── NoRecursion │ │ │ │ ├── PEintsubset │ │ │ │ ├── UniqueAttSpec │ │ │ │ └── UniqueAttSpec2 │ │ │ ├── XInclude │ │ │ │ ├── docs │ │ │ │ │ ├── docids.xml │ │ │ │ │ ├── fallback.xml │ │ │ │ │ ├── fallback2.xml │ │ │ │ │ ├── include.xml │ │ │ │ │ ├── nodes.xml │ │ │ │ │ ├── nodes2.xml │ │ │ │ │ ├── nodes3.xml │ │ │ │ │ ├── recursive.xml │ │ │ │ │ ├── tstencoding.xml │ │ │ │ │ └── txtinclude.xml │ │ │ │ └── ents │ │ │ │ │ ├── ids.xml │ │ │ │ │ ├── inc.txt │ │ │ │ │ ├── isolatin.txt │ │ │ │ │ ├── something.txt │ │ │ │ │ ├── something.xml │ │ │ │ │ └── sub-inc.ent │ │ │ ├── XPath │ │ │ │ ├── docs │ │ │ │ │ ├── chapters │ │ │ │ │ ├── id │ │ │ │ │ ├── lang │ │ │ │ │ ├── mixed │ │ │ │ │ ├── nodes │ │ │ │ │ ├── simple │ │ │ │ │ ├── str │ │ │ │ │ ├── usr1 │ │ │ │ │ └── vid │ │ │ │ ├── expr │ │ │ │ │ ├── base │ │ │ │ │ ├── compare │ │ │ │ │ ├── equality │ │ │ │ │ ├── floats │ │ │ │ │ ├── functions │ │ │ │ │ └── strings │ │ │ │ ├── tests │ │ │ │ │ ├── chaptersbase │ │ │ │ │ ├── chaptersprefol │ │ │ │ │ ├── idsimple │ │ │ │ │ ├── langsimple │ │ │ │ │ ├── mixedpat │ │ │ │ │ ├── nodespat │ │ │ │ │ ├── simpleabbr │ │ │ │ │ ├── simplebase │ │ │ │ │ ├── usr1check │ │ │ │ │ └── vidbase │ │ │ │ └── xptr │ │ │ │ │ ├── chapterschildseq │ │ │ │ │ ├── chaptersparts │ │ │ │ │ ├── chaptersrange │ │ │ │ │ ├── strpoint │ │ │ │ │ ├── strrange │ │ │ │ │ ├── strrange2 │ │ │ │ │ ├── strrange3 │ │ │ │ │ ├── vidbase │ │ │ │ │ ├── vidchildseq │ │ │ │ │ └── vidparts │ │ │ ├── att1 │ │ │ ├── att2 │ │ │ ├── att3 │ │ │ ├── att4 │ │ │ ├── att5 │ │ │ ├── att6 │ │ │ ├── att7 │ │ │ ├── att8 │ │ │ ├── attrib.xml │ │ │ ├── automata │ │ │ │ ├── a │ │ │ │ ├── aba │ │ │ │ ├── abaa │ │ │ │ ├── abba │ │ │ │ └── po │ │ │ ├── badcomment.xml │ │ │ ├── bigentname.xml │ │ │ ├── bigname.xml │ │ │ ├── bigname2.xml │ │ │ ├── c14n │ │ │ │ ├── exc-without-comments │ │ │ │ │ ├── merlin-c14n-two-09.xml │ │ │ │ │ ├── merlin-c14n-two-09.xpath │ │ │ │ │ ├── merlin-c14n-two-10.xml │ │ │ │ │ ├── merlin-c14n-two-10.xpath │ │ │ │ │ ├── merlin-c14n-two-11.xml │ │ │ │ │ ├── merlin-c14n-two-11.xpath │ │ │ │ │ ├── merlin-c14n-two-12.xml │ │ │ │ │ ├── merlin-c14n-two-12.xpath │ │ │ │ │ ├── merlin-c14n-two-13.xml │ │ │ │ │ ├── merlin-c14n-two-13.xpath │ │ │ │ │ ├── merlin-c14n-two-14.xml │ │ │ │ │ ├── merlin-c14n-two-14.xpath │ │ │ │ │ ├── merlin-c14n-two-15.xml │ │ │ │ │ ├── merlin-c14n-two-15.xpath │ │ │ │ │ ├── merlin-c14n-two-16.xml │ │ │ │ │ ├── merlin-c14n-two-16.xpath │ │ │ │ │ ├── merlin-c14n-two-17.xml │ │ │ │ │ ├── merlin-c14n-two-17.xpath │ │ │ │ │ ├── merlin-c14n-two-18.ns │ │ │ │ │ ├── merlin-c14n-two-18.xml │ │ │ │ │ ├── merlin-c14n-two-18.xpath │ │ │ │ │ ├── merlin-c14n-two-19.ns │ │ │ │ │ ├── merlin-c14n-two-19.xml │ │ │ │ │ ├── merlin-c14n-two-19.xpath │ │ │ │ │ ├── merlin-c14n-two-20.ns │ │ │ │ │ ├── merlin-c14n-two-20.xml │ │ │ │ │ ├── merlin-c14n-two-20.xpath │ │ │ │ │ ├── merlin-c14n-two-21.ns │ │ │ │ │ ├── merlin-c14n-two-21.xml │ │ │ │ │ ├── merlin-c14n-two-21.xpath │ │ │ │ │ ├── merlin-c14n-two-22.ns │ │ │ │ │ ├── merlin-c14n-two-22.xml │ │ │ │ │ ├── merlin-c14n-two-22.xpath │ │ │ │ │ ├── merlin-c14n-two-23.ns │ │ │ │ │ ├── merlin-c14n-two-23.xml │ │ │ │ │ ├── merlin-c14n-two-23.xpath │ │ │ │ │ ├── merlin-c14n-two-24.ns │ │ │ │ │ ├── merlin-c14n-two-24.xml │ │ │ │ │ ├── merlin-c14n-two-24.xpath │ │ │ │ │ ├── merlin-c14n-two-25.ns │ │ │ │ │ ├── merlin-c14n-two-25.xml │ │ │ │ │ ├── merlin-c14n-two-25.xpath │ │ │ │ │ ├── merlin-c14n-two-26.ns │ │ │ │ │ ├── merlin-c14n-two-26.xml │ │ │ │ │ ├── merlin-c14n-two-26.xpath │ │ │ │ │ ├── test-0.xml │ │ │ │ │ ├── test-0.xpath │ │ │ │ │ ├── test-1.ns │ │ │ │ │ ├── test-1.xml │ │ │ │ │ ├── test-1.xpath │ │ │ │ │ ├── test-2.xml │ │ │ │ │ └── test-2.xpath │ │ │ │ ├── with-comments │ │ │ │ │ ├── doc.dtd │ │ │ │ │ ├── example-1.xml │ │ │ │ │ ├── example-2.xml │ │ │ │ │ ├── example-3.xml │ │ │ │ │ ├── example-4.xml │ │ │ │ │ ├── example-5.xml │ │ │ │ │ ├── example-6.xml │ │ │ │ │ ├── example-7.xml │ │ │ │ │ ├── example-7.xpath │ │ │ │ │ └── world.txt │ │ │ │ └── without-comments │ │ │ │ │ ├── doc.dtd │ │ │ │ │ ├── example-1.xml │ │ │ │ │ ├── example-2.xml │ │ │ │ │ ├── example-3.xml │ │ │ │ │ ├── example-4.xml │ │ │ │ │ ├── example-5.xml │ │ │ │ │ ├── example-6.xml │ │ │ │ │ ├── example-7.xml │ │ │ │ │ ├── example-7.xpath │ │ │ │ │ ├── merlin-c14n-two-00.xml │ │ │ │ │ ├── merlin-c14n-two-00.xpath │ │ │ │ │ ├── merlin-c14n-two-01.xml │ │ │ │ │ ├── merlin-c14n-two-01.xpath │ │ │ │ │ ├── merlin-c14n-two-02.xml │ │ │ │ │ ├── merlin-c14n-two-02.xpath │ │ │ │ │ ├── merlin-c14n-two-03.xml │ │ │ │ │ ├── merlin-c14n-two-03.xpath │ │ │ │ │ ├── merlin-c14n-two-04.xml │ │ │ │ │ ├── merlin-c14n-two-04.xpath │ │ │ │ │ ├── merlin-c14n-two-05.xml │ │ │ │ │ ├── merlin-c14n-two-05.xpath │ │ │ │ │ ├── merlin-c14n-two-06.xml │ │ │ │ │ ├── merlin-c14n-two-06.xpath │ │ │ │ │ ├── merlin-c14n-two-07.xml │ │ │ │ │ ├── merlin-c14n-two-07.xpath │ │ │ │ │ ├── merlin-c14n-two-08.xml │ │ │ │ │ ├── merlin-c14n-two-08.xpath │ │ │ │ │ ├── test-0.xml │ │ │ │ │ ├── test-0.xpath │ │ │ │ │ ├── test-1.xml │ │ │ │ │ ├── test-1.xpath │ │ │ │ │ ├── test-2.xml │ │ │ │ │ ├── test-2.xpath │ │ │ │ │ ├── test-3.xml │ │ │ │ │ ├── test-3.xpath │ │ │ │ │ └── world.txt │ │ │ ├── catalogs │ │ │ │ ├── catal.script │ │ │ │ ├── catal.sgml │ │ │ │ ├── catal1.sgml │ │ │ │ ├── catal2.sgml │ │ │ │ ├── catal3.sgml │ │ │ │ ├── docbook.script │ │ │ │ ├── docbook.xml │ │ │ │ ├── registry.script │ │ │ │ ├── registry.xml │ │ │ │ ├── stylesheet.xml │ │ │ │ ├── whites.script │ │ │ │ ├── whites.sgml │ │ │ │ ├── whitex.script │ │ │ │ └── whitex.xml │ │ │ ├── cdata │ │ │ ├── cdata2 │ │ │ ├── comment.xml │ │ │ ├── comment2.xml │ │ │ ├── comment3.xml │ │ │ ├── comment4.xml │ │ │ ├── comment5.xml │ │ │ ├── dav1 │ │ │ ├── dav10 │ │ │ ├── dav11 │ │ │ ├── dav12 │ │ │ ├── dav13 │ │ │ ├── dav15 │ │ │ ├── dav16 │ │ │ ├── dav17 │ │ │ ├── dav18 │ │ │ ├── dav19 │ │ │ ├── dav2 │ │ │ ├── dav3 │ │ │ ├── dav4 │ │ │ ├── dav5 │ │ │ ├── dav6 │ │ │ ├── dav7 │ │ │ ├── dav8 │ │ │ ├── dav9 │ │ │ ├── defattr.xml │ │ │ ├── defattr2.xml │ │ │ ├── dia1 │ │ │ ├── dia2 │ │ │ ├── dtd1 │ │ │ ├── dtd10 │ │ │ ├── dtd11 │ │ │ ├── dtd12 │ │ │ ├── dtd13 │ │ │ ├── dtd2 │ │ │ ├── dtd3 │ │ │ ├── dtd4 │ │ │ ├── dtd5 │ │ │ ├── dtd6 │ │ │ ├── dtd7 │ │ │ ├── dtd8 │ │ │ ├── dtd9 │ │ │ ├── dtds │ │ │ │ └── eve.dtd │ │ │ ├── ent1 │ │ │ ├── ent10 │ │ │ ├── ent11 │ │ │ ├── ent12 │ │ │ ├── ent2 │ │ │ ├── ent3 │ │ │ ├── ent4 │ │ │ ├── ent5 │ │ │ ├── ent6 │ │ │ ├── ent7 │ │ │ ├── ent8 │ │ │ ├── ent9 │ │ │ ├── errors │ │ │ │ ├── attr1.xml │ │ │ │ ├── attr2.xml │ │ │ │ ├── attr3.xml │ │ │ │ ├── cdata.xml │ │ │ │ ├── charref1.xml │ │ │ │ ├── dtd13 │ │ │ │ ├── name.xml │ │ │ │ ├── name2.xml │ │ │ │ └── webdav.xml │ │ │ ├── eve.xml │ │ │ ├── expr │ │ │ │ └── base │ │ │ ├── intsubset.xml │ │ │ ├── intsubset2.xml │ │ │ ├── isolat1 │ │ │ ├── isolat2 │ │ │ ├── isolat3 │ │ │ ├── namespaces │ │ │ │ ├── err_0.xml │ │ │ │ ├── err_1.xml │ │ │ │ ├── err_10.xml │ │ │ │ ├── err_11.xml │ │ │ │ ├── err_2.xml │ │ │ │ ├── err_3.xml │ │ │ │ ├── err_4.xml │ │ │ │ ├── err_5.xml │ │ │ │ ├── err_6.xml │ │ │ │ ├── err_7.xml │ │ │ │ ├── err_8.xml │ │ │ │ ├── err_9.xml │ │ │ │ └── reconcile │ │ │ │ │ ├── tests-to-c.xsl │ │ │ │ │ └── tests.xml │ │ │ ├── ns │ │ │ ├── ns2 │ │ │ ├── ns3 │ │ │ ├── ns4 │ │ │ ├── ns5 │ │ │ ├── ns6 │ │ │ ├── ns7 │ │ │ ├── nsclean.xml │ │ │ ├── p3p │ │ │ ├── pattern │ │ │ │ ├── conj.pat │ │ │ │ ├── conj.xml │ │ │ │ ├── multiple.pat │ │ │ │ ├── multiple.xml │ │ │ │ ├── namespaces.pat │ │ │ │ ├── namespaces.xml │ │ │ │ ├── simple.pat │ │ │ │ └── simple.xml │ │ │ ├── pi.xml │ │ │ ├── pi2.xml │ │ │ ├── rdf1 │ │ │ ├── rdf2 │ │ │ ├── regexp │ │ │ │ ├── branch │ │ │ │ ├── bug316338 │ │ │ │ ├── bug420596 │ │ │ │ ├── content │ │ │ │ ├── hard │ │ │ │ ├── ncname │ │ │ │ ├── ranges │ │ │ │ └── xpath │ │ │ ├── relaxng │ │ │ │ ├── 302836.rng │ │ │ │ ├── 302836_0.xml │ │ │ │ ├── 307377.rng │ │ │ │ ├── 307377_0.xml │ │ │ │ ├── 307377_1.xml │ │ │ │ ├── 307377_2.xml │ │ │ │ ├── OASIS │ │ │ │ │ └── spectest.xml │ │ │ │ ├── OpenDocumentSub.rng │ │ │ │ ├── OpenDocumentSub_0.xml │ │ │ │ ├── addressBook.rng │ │ │ │ ├── choice0.rng │ │ │ │ ├── choice0_0.xml │ │ │ │ ├── choice0_1.xml │ │ │ │ ├── choice0_2.xml │ │ │ │ ├── choice0_3.xml │ │ │ │ ├── choice0_4.xml │ │ │ │ ├── choice0_5.xml │ │ │ │ ├── choice0_6.xml │ │ │ │ ├── choice0_7.xml │ │ │ │ ├── choice0_8.xml │ │ │ │ ├── compare0.rng │ │ │ │ ├── compare0_0.xml │ │ │ │ ├── comps.rng │ │ │ │ ├── comps_0.xml │ │ │ │ ├── demo.rng │ │ │ │ ├── demo.xml │ │ │ │ ├── demo2.rng │ │ │ │ ├── demo3.rng │ │ │ │ ├── docbook.rng │ │ │ │ ├── docbook_0.xml │ │ │ │ ├── empty0.rng │ │ │ │ ├── empty0_0.xml │ │ │ │ ├── empty1.rng │ │ │ │ ├── empty1_0.xml │ │ │ │ ├── empty1_1.xml │ │ │ │ ├── inline.rng │ │ │ │ ├── inline2.rng │ │ │ │ ├── inline3.rng │ │ │ │ ├── interleave0_0.rng │ │ │ │ ├── interleave1_0.rng │ │ │ │ ├── list.rng │ │ │ │ ├── list_0.xml │ │ │ │ ├── list_1.xml │ │ │ │ ├── pattern1.rng │ │ │ │ ├── pattern2.rng │ │ │ │ ├── proofsystem.rng │ │ │ │ ├── rngbug-001.ext │ │ │ │ ├── rngbug-001.rng │ │ │ │ ├── rngbug-001.xml │ │ │ │ ├── spec.rng │ │ │ │ ├── spec1.rng │ │ │ │ ├── spec1_1.xml │ │ │ │ ├── spec_0.xml │ │ │ │ ├── table.rng │ │ │ │ ├── testsuite.xml │ │ │ │ ├── tutor10_1.rng │ │ │ │ ├── tutor10_10.rng │ │ │ │ ├── tutor10_10_1.xml │ │ │ │ ├── tutor10_1_1.xml │ │ │ │ ├── tutor10_1_2.xml │ │ │ │ ├── tutor10_1_3.xml │ │ │ │ ├── tutor10_1_4.xml │ │ │ │ ├── tutor10_1_5.xml │ │ │ │ ├── tutor10_1_6.xml │ │ │ │ ├── tutor10_2.rng │ │ │ │ ├── tutor10_2_1.xml │ │ │ │ ├── tutor10_2_2.xml │ │ │ │ ├── tutor10_2_3.xml │ │ │ │ ├── tutor10_2_4.xml │ │ │ │ ├── tutor10_3.rng │ │ │ │ ├── tutor10_3_1.xml │ │ │ │ ├── tutor10_4.rng │ │ │ │ ├── tutor10_4_1.xml │ │ │ │ ├── tutor10_5.rng │ │ │ │ ├── tutor10_5_1.xml │ │ │ │ ├── tutor10_6.rng │ │ │ │ ├── tutor10_6_1.xml │ │ │ │ ├── tutor10_7.rng │ │ │ │ ├── tutor10_7_1.xml │ │ │ │ ├── tutor10_7_2.xml │ │ │ │ ├── tutor10_7_3.xml │ │ │ │ ├── tutor10_8.rng │ │ │ │ ├── tutor10_8_1.xml │ │ │ │ ├── tutor10_8_2.xml │ │ │ │ ├── tutor10_8_3.xml │ │ │ │ ├── tutor10_9.rng │ │ │ │ ├── tutor10_9_1.xml │ │ │ │ ├── tutor11_1.rng │ │ │ │ ├── tutor11_1_1.xml │ │ │ │ ├── tutor11_1_2.xml │ │ │ │ ├── tutor11_1_3.xml │ │ │ │ ├── tutor11_2.rng │ │ │ │ ├── tutor11_2_1.xml │ │ │ │ ├── tutor11_2_2.xml │ │ │ │ ├── tutor11_2_3.xml │ │ │ │ ├── tutor11_3.rng │ │ │ │ ├── tutor11_3_1.xml │ │ │ │ ├── tutor11_4.rng │ │ │ │ ├── tutor11_4_1.xml │ │ │ │ ├── tutor12_1.rng │ │ │ │ ├── tutor12_1_1.xml │ │ │ │ ├── tutor13_1.rng │ │ │ │ ├── tutor13_1_1.xml │ │ │ │ ├── tutor14_1.rng │ │ │ │ ├── tutor1_1.rng │ │ │ │ ├── tutor1_1_1.xml │ │ │ │ ├── tutor1_2.rng │ │ │ │ ├── tutor1_2_1.xml │ │ │ │ ├── tutor1_3.rng │ │ │ │ ├── tutor1_3_1.xml │ │ │ │ ├── tutor1_4.rng │ │ │ │ ├── tutor1_4_1.xml │ │ │ │ ├── tutor2_1.rng │ │ │ │ ├── tutor2_1_1.xml │ │ │ │ ├── tutor3_1.rng │ │ │ │ ├── tutor3_1_1.xml │ │ │ │ ├── tutor3_1_2.xml │ │ │ │ ├── tutor3_2.rng │ │ │ │ ├── tutor3_2_1.xml │ │ │ │ ├── tutor3_3.rng │ │ │ │ ├── tutor3_3_1.xml │ │ │ │ ├── tutor3_4.rng │ │ │ │ ├── tutor3_4_1.xml │ │ │ │ ├── tutor3_5.rng │ │ │ │ ├── tutor3_5_1.xml │ │ │ │ ├── tutor3_5_2.xml │ │ │ │ ├── tutor3_6.rng │ │ │ │ ├── tutor3_6_1.xml │ │ │ │ ├── tutor3_7.rng │ │ │ │ ├── tutor3_7_1.xml │ │ │ │ ├── tutor3_8.rng │ │ │ │ ├── tutor3_8_1.xml │ │ │ │ ├── tutor3_9.rng │ │ │ │ ├── tutor3_9_1.xml │ │ │ │ ├── tutor4_1.rng │ │ │ │ ├── tutor4_1_1.xml │ │ │ │ ├── tutor4_2.rng │ │ │ │ ├── tutor4_2_1.xml │ │ │ │ ├── tutor4_3.rng │ │ │ │ ├── tutor4_3_1.xml │ │ │ │ ├── tutor4_3_2.xml │ │ │ │ ├── tutor4_3_3.xml │ │ │ │ ├── tutor4_3_4.xml │ │ │ │ ├── tutor4_3_5.xml │ │ │ │ ├── tutor4_3_6.xml │ │ │ │ ├── tutor4_4.rng │ │ │ │ ├── tutor4_4_1.xml │ │ │ │ ├── tutor5_1.rng │ │ │ │ ├── tutor5_1_1.xml │ │ │ │ ├── tutor5_2.rng │ │ │ │ ├── tutor5_2_1.xml │ │ │ │ ├── tutor5_3.rng │ │ │ │ ├── tutor5_3_1.xml │ │ │ │ ├── tutor5_4.rng │ │ │ │ ├── tutor5_4_1.xml │ │ │ │ ├── tutor5_5.rng │ │ │ │ ├── tutor6_1.rng │ │ │ │ ├── tutor6_1_1.xml │ │ │ │ ├── tutor6_1_2.xml │ │ │ │ ├── tutor6_1_3.xml │ │ │ │ ├── tutor6_1_4.xml │ │ │ │ ├── tutor6_1_5.xml │ │ │ │ ├── tutor6_2.rng │ │ │ │ ├── tutor6_2_1.xml │ │ │ │ ├── tutor6_2_2.xml │ │ │ │ ├── tutor6_2_3.xml │ │ │ │ ├── tutor6_2_4.xml │ │ │ │ ├── tutor6_3.rng │ │ │ │ ├── tutor6_3_1.xml │ │ │ │ ├── tutor7_1.rng │ │ │ │ ├── tutor7_1_1.xml │ │ │ │ ├── tutor7_1_2.xml │ │ │ │ ├── tutor7_1_3.xml │ │ │ │ ├── tutor7_1_4.xml │ │ │ │ ├── tutor7_2.rng │ │ │ │ ├── tutor7_2_1.xml │ │ │ │ ├── tutor7_2_2.xml │ │ │ │ ├── tutor7_2_3.xml │ │ │ │ ├── tutor7_2_4.xml │ │ │ │ ├── tutor7_3.rng │ │ │ │ ├── tutor7_3_1.xml │ │ │ │ ├── tutor7_3_2.xml │ │ │ │ ├── tutor7_3_3.xml │ │ │ │ ├── tutor7_3_4.xml │ │ │ │ ├── tutor7_3_5.xml │ │ │ │ ├── tutor8_1.rng │ │ │ │ ├── tutor8_1_1.xml │ │ │ │ ├── tutor8_1_2.xml │ │ │ │ ├── tutor8_2.rng │ │ │ │ ├── tutor8_2_1.xml │ │ │ │ ├── tutor8_2_2.xml │ │ │ │ ├── tutor8_2_3.xml │ │ │ │ ├── tutor8_2_4.xml │ │ │ │ ├── tutor8_2_5.xml │ │ │ │ ├── tutor8_2_6.xml │ │ │ │ ├── tutor8_3.rng │ │ │ │ ├── tutor8_3_1.xml │ │ │ │ ├── tutor9_1.rng │ │ │ │ ├── tutor9_10.rng │ │ │ │ ├── tutor9_10_1.xml │ │ │ │ ├── tutor9_11.rng │ │ │ │ ├── tutor9_11_1.xml │ │ │ │ ├── tutor9_12.rng │ │ │ │ ├── tutor9_12_1.xml │ │ │ │ ├── tutor9_1_1.xml │ │ │ │ ├── tutor9_2.rng │ │ │ │ ├── tutor9_2_1.xml │ │ │ │ ├── tutor9_2_2.xml │ │ │ │ ├── tutor9_3.rng │ │ │ │ ├── tutor9_3_1.xml │ │ │ │ ├── tutor9_3_2.xml │ │ │ │ ├── tutor9_4.rng │ │ │ │ ├── tutor9_4_1.xml │ │ │ │ ├── tutor9_4_2.xml │ │ │ │ ├── tutor9_5.rng │ │ │ │ ├── tutor9_5_1.xml │ │ │ │ ├── tutor9_5_2.xml │ │ │ │ ├── tutor9_5_3.xml │ │ │ │ ├── tutor9_6.rng │ │ │ │ ├── tutor9_6_1.xml │ │ │ │ ├── tutor9_6_2.xml │ │ │ │ ├── tutor9_6_3.xml │ │ │ │ ├── tutor9_7.rng │ │ │ │ ├── tutor9_7_1.xml │ │ │ │ ├── tutor9_8.rng │ │ │ │ ├── tutor9_8_1.xml │ │ │ │ ├── tutor9_9.rng │ │ │ │ ├── tutor9_9_1.xml │ │ │ │ └── tutorA.rng │ │ │ ├── schemas │ │ │ │ ├── all.xsd │ │ │ │ ├── all1_0.xml │ │ │ │ ├── all1_0.xsd │ │ │ │ ├── all_0.xml │ │ │ │ ├── all_0.xsd │ │ │ │ ├── all_1.xml │ │ │ │ ├── all_1.xsd │ │ │ │ ├── all_2.xml │ │ │ │ ├── all_2.xsd │ │ │ │ ├── all_3.xml │ │ │ │ ├── all_4.xml │ │ │ │ ├── all_5.xml │ │ │ │ ├── all_6.xml │ │ │ │ ├── all_7.xml │ │ │ │ ├── allsg_0.xml │ │ │ │ ├── allsg_0.xsd │ │ │ │ ├── allsg_1.xml │ │ │ │ ├── allsg_2.xml │ │ │ │ ├── allsg_3.xml │ │ │ │ ├── allsg_4.xml │ │ │ │ ├── allsg_5.xml │ │ │ │ ├── annot-err_0.xml │ │ │ │ ├── annot-err_0.xsd │ │ │ │ ├── any1_0.xml │ │ │ │ ├── any1_0.xsd │ │ │ │ ├── any2_0.xml │ │ │ │ ├── any2_0.xsd │ │ │ │ ├── any3_0.xml │ │ │ │ ├── any3_0.xsd │ │ │ │ ├── any4_0.xml │ │ │ │ ├── any4_0.xsd │ │ │ │ ├── any5_0.xml │ │ │ │ ├── any5_0.xsd │ │ │ │ ├── any5_1.xml │ │ │ │ ├── any5_1.xsd │ │ │ │ ├── any5_2.xml │ │ │ │ ├── any5_3.xml │ │ │ │ ├── any5_4.xml │ │ │ │ ├── any5_5.xml │ │ │ │ ├── any5_6.xml │ │ │ │ ├── any6_0.xml │ │ │ │ ├── any6_1.xsd │ │ │ │ ├── any6_2.xsd │ │ │ │ ├── any7_0.xml │ │ │ │ ├── any7_1.xml │ │ │ │ ├── any7_1.xsd │ │ │ │ ├── any7_2.xml │ │ │ │ ├── any7_2.xsd │ │ │ │ ├── any8_0.xml │ │ │ │ ├── any8_1.xsd │ │ │ │ ├── anyAttr-derive-errors1_0.xml │ │ │ │ ├── anyAttr-derive-errors1_0.xsd │ │ │ │ ├── anyAttr-derive1_0.xml │ │ │ │ ├── anyAttr-derive1_0.xsd │ │ │ │ ├── anyAttr-derive2_0.xml │ │ │ │ ├── anyAttr-derive2_0.xsd │ │ │ │ ├── anyAttr-errors1_0.xml │ │ │ │ ├── anyAttr-processContents-err1_0.xml │ │ │ │ ├── anyAttr-processContents-err1_0.xsd │ │ │ │ ├── anyAttr-processContents1_0.xml │ │ │ │ ├── anyAttr-processContents1_0.xsd │ │ │ │ ├── anyAttr.importA.1_0.xsd │ │ │ │ ├── anyAttr.importB.1_0.xsd │ │ │ │ ├── anyAttr1_0.xml │ │ │ │ ├── anyAttr1_0.xsd │ │ │ │ ├── attr0_0.xml │ │ │ │ ├── attr0_0.xsd │ │ │ │ ├── attruse_0_0.xml │ │ │ │ ├── attruse_0_0.xsd │ │ │ │ ├── attruse_0_1.xml │ │ │ │ ├── attruse_0_2.xml │ │ │ │ ├── bug141312_0.xml │ │ │ │ ├── bug141312_0.xsd │ │ │ │ ├── bug141333.xml │ │ │ │ ├── bug141333.xsd │ │ │ │ ├── bug141333_0.xml │ │ │ │ ├── bug141333_0.xsd │ │ │ │ ├── bug143951.imp │ │ │ │ ├── bug143951_0.xml │ │ │ │ ├── bug143951_0.xsd │ │ │ │ ├── bug145246.xsd.imp │ │ │ │ ├── bug145246_0.xml │ │ │ │ ├── bug145246_0.xsd │ │ │ │ ├── bug152470_1.xml │ │ │ │ ├── bug152470_1.xsd │ │ │ │ ├── bug167754_0.xml │ │ │ │ ├── bug167754_0.xsd │ │ │ │ ├── bug303566_1.xml │ │ │ │ ├── bug303566_1.xsd │ │ │ │ ├── bug306806_0.xml │ │ │ │ ├── bug306806_1.xsd │ │ │ │ ├── bug309338_0.xml │ │ │ │ ├── bug309338_1.xsd │ │ │ │ ├── bug310264_0.xml │ │ │ │ ├── bug310264_0.xsd │ │ │ │ ├── bug312957_0.xml │ │ │ │ ├── bug312957_1.xsd │ │ │ │ ├── bug313982_0.xml │ │ │ │ ├── bug313982_0.xsd │ │ │ │ ├── bug321475_0.xml │ │ │ │ ├── bug321475_1.xsd │ │ │ │ ├── bug322411_0.xml │ │ │ │ ├── bug322411_1.xsd │ │ │ │ ├── bug323510_0.xml │ │ │ │ ├── bug323510_1.xsd │ │ │ │ ├── changelog093_0.xml │ │ │ │ ├── changelog093_1.xsd │ │ │ │ ├── choice_0.xml │ │ │ │ ├── choice_0.xsd │ │ │ │ ├── choice_1.xml │ │ │ │ ├── choice_1.xsd │ │ │ │ ├── choice_2.xml │ │ │ │ ├── choice_2.xsd │ │ │ │ ├── choice_3.xml │ │ │ │ ├── choice_4.xml │ │ │ │ ├── choice_5.xml │ │ │ │ ├── choice_6.xml │ │ │ │ ├── cos-ct-extends-1-3_0.xml │ │ │ │ ├── cos-ct-extends-1-3_0.xsd │ │ │ │ ├── cos-st-restricts-1-2-err_0.xml │ │ │ │ ├── cos-st-restricts-1-2-err_0.xsd │ │ │ │ ├── ct-sc-nobase_0.xml │ │ │ │ ├── ct-sc-nobase_0.xsd │ │ │ │ ├── date_0.xml │ │ │ │ ├── date_0.xsd │ │ │ │ ├── decimal-1.xml │ │ │ │ ├── decimal-1.xsd │ │ │ │ ├── decimal-1_0.xml │ │ │ │ ├── decimal-1_1.xsd │ │ │ │ ├── decimal-2_0.xml │ │ │ │ ├── decimal-2_1.xsd │ │ │ │ ├── decimal-3_0.xml │ │ │ │ ├── decimal-3_1.xsd │ │ │ │ ├── derivation-ok-extension-err_0.xml │ │ │ │ ├── derivation-ok-extension-err_0.xsd │ │ │ │ ├── derivation-ok-extension_0.xml │ │ │ │ ├── derivation-ok-extension_0.xsd │ │ │ │ ├── derivation-ok-restriction-2-1-1_0.xml │ │ │ │ ├── derivation-ok-restriction-2-1-1_0.xsd │ │ │ │ ├── derivation-ok-restriction-4-1-err_0.xml │ │ │ │ ├── derivation-ok-restriction-4-1-err_0.xsd │ │ │ │ ├── derivation-restriction-anyAttr_0.xml │ │ │ │ ├── derivation-restriction-anyAttr_0.xsd │ │ │ │ ├── derivation-restriction-anyType.xml │ │ │ │ ├── derivation-restriction-anyType.xsd │ │ │ │ ├── deter0_0.xml │ │ │ │ ├── deter0_0.xsd │ │ │ │ ├── dur_0.xml │ │ │ │ ├── dur_0.xsd │ │ │ │ ├── elem0_0.xml │ │ │ │ ├── elem0_0.xsd │ │ │ │ ├── element-err_0.xml │ │ │ │ ├── element-err_0.xsd │ │ │ │ ├── element-minmax-err_0.xml │ │ │ │ ├── element-minmax-err_0.xsd │ │ │ │ ├── empty-value_0.xml │ │ │ │ ├── empty-value_1.xml │ │ │ │ ├── empty-value_1.xsd │ │ │ │ ├── empty_0.xml │ │ │ │ ├── empty_0.xsd │ │ │ │ ├── empty_1.xsd │ │ │ │ ├── extension0_0.xml │ │ │ │ ├── extension0_0.xsd │ │ │ │ ├── extension1_0.xml │ │ │ │ ├── extension1_0.xsd │ │ │ │ ├── extension1_1.xml │ │ │ │ ├── extension1_2.xml │ │ │ │ ├── extension2_0.xml │ │ │ │ ├── extension2_1.xsd │ │ │ │ ├── facet-unionST-err1_0.xml │ │ │ │ ├── facet-unionST-err1_0.xsd │ │ │ │ ├── facet-whiteSpace_0.xml │ │ │ │ ├── facet-whiteSpace_0.xsd │ │ │ │ ├── group0_0.xml │ │ │ │ ├── group0_0.xsd │ │ │ │ ├── hexbinary_0.xml │ │ │ │ ├── hexbinary_0.xsd │ │ │ │ ├── hexbinary_1.xml │ │ │ │ ├── idc-keyref-err1_0.xml │ │ │ │ ├── idc-keyref-err1_1.xsd │ │ │ │ ├── import-bad-1_0.imp │ │ │ │ ├── import0_0.imp │ │ │ │ ├── import0_0.xml │ │ │ │ ├── import0_0.xsd │ │ │ │ ├── import1_0.imp │ │ │ │ ├── import1_0.xml │ │ │ │ ├── import1_0.xsd │ │ │ │ ├── import1_0b.imp │ │ │ │ ├── import2_0.imp │ │ │ │ ├── import2_0.xml │ │ │ │ ├── import2_0.xsd │ │ │ │ ├── include1_0.inc │ │ │ │ ├── include1_0.xml │ │ │ │ ├── include1_0.xsd │ │ │ │ ├── include2_0.inc │ │ │ │ ├── include2_0.xml │ │ │ │ ├── include2_0.xsd │ │ │ │ ├── include3_0.inc │ │ │ │ ├── include3_0.xml │ │ │ │ ├── include3_0.xsd │ │ │ │ ├── item_0.xml │ │ │ │ ├── item_0.xsd │ │ │ │ ├── item_1.xsd │ │ │ │ ├── length1_0.xml │ │ │ │ ├── length1_0.xsd │ │ │ │ ├── length2_0.xml │ │ │ │ ├── length2_0.xsd │ │ │ │ ├── length3_0.xml │ │ │ │ ├── length3_0.xsd │ │ │ │ ├── list0_0.xml │ │ │ │ ├── list0_0.xsd │ │ │ │ ├── list0_1.xml │ │ │ │ ├── list0_1.xsd │ │ │ │ ├── list0_2.xml │ │ │ │ ├── mixed0_0.xml │ │ │ │ ├── mixed0_0.xsd │ │ │ │ ├── mixed1_0.xml │ │ │ │ ├── mixed1_0.xsd │ │ │ │ ├── ns0_0.xml │ │ │ │ ├── ns0_0.xsd │ │ │ │ ├── ns0_1.xml │ │ │ │ ├── ns0_1.xsd │ │ │ │ ├── ns0_2.xml │ │ │ │ ├── ns0_3.xml │ │ │ │ ├── ns0_4.xml │ │ │ │ ├── ns1_0.xml │ │ │ │ ├── ns1_0.xsd │ │ │ │ ├── ns2_0.xml │ │ │ │ ├── ns2_0.xsd │ │ │ │ ├── po0_0.xml │ │ │ │ ├── po0_0.xsd │ │ │ │ ├── po1_0.xml │ │ │ │ ├── po1_0.xsd │ │ │ │ ├── restrict-CT-attr-ref_0.xml │ │ │ │ ├── restrict-CT-attr-ref_0.xsd │ │ │ │ ├── restriction-attr1_0.xml │ │ │ │ ├── restriction-attr1_0.xsd │ │ │ │ ├── restriction-enum-1_0.xml │ │ │ │ ├── restriction-enum-1_1.xsd │ │ │ │ ├── restriction0_0.xml │ │ │ │ ├── restriction0_0.xsd │ │ │ │ ├── scc-no-xmlns_0.xml │ │ │ │ ├── scc-no-xmlns_0.xsd │ │ │ │ ├── scc-no-xsi_0.xml │ │ │ │ ├── scc-no-xsi_0.xsd │ │ │ │ ├── seq-dubl-elem1_0.xml │ │ │ │ ├── seq-dubl-elem1_0.xsd │ │ │ │ ├── seq0_0.xml │ │ │ │ ├── seq0_0.xsd │ │ │ │ ├── src-attribute1_0.xml │ │ │ │ ├── src-attribute1_0.xsd │ │ │ │ ├── src-attribute2_0.xml │ │ │ │ ├── src-attribute2_0.xsd │ │ │ │ ├── src-attribute3-1_0.xml │ │ │ │ ├── src-attribute3-1_0.xsd │ │ │ │ ├── src-attribute3-2-form_0.xml │ │ │ │ ├── src-attribute3-2-form_0.xsd │ │ │ │ ├── src-attribute3-2-st_0.xml │ │ │ │ ├── src-attribute3-2-st_0.xsd │ │ │ │ ├── src-attribute3-2-type_0.xml │ │ │ │ ├── src-attribute3-2-type_0.xsd │ │ │ │ ├── src-attribute4_0.xml │ │ │ │ ├── src-attribute4_0.xsd │ │ │ │ ├── src-element1_0.xml │ │ │ │ ├── src-element1_0.xsd │ │ │ │ ├── src-element2-1_0.xml │ │ │ │ ├── src-element2-1_0.xsd │ │ │ │ ├── src-element2-2_0.xml │ │ │ │ ├── src-element2-2_0.xsd │ │ │ │ ├── src-element3_0.xml │ │ │ │ ├── src-element3_0.xsd │ │ │ │ ├── subst-group-1_0.xsd │ │ │ │ ├── subst-group-1_1.xml │ │ │ │ ├── union2_1.xml │ │ │ │ ├── union2_1.xsd │ │ │ │ ├── union_0_0.xml │ │ │ │ ├── union_0_0.xsd │ │ │ │ ├── vdv-complexTypes.xsd │ │ │ │ ├── vdv-first0_0.xml │ │ │ │ ├── vdv-first0_0.xsd │ │ │ │ ├── vdv-first1_0.xml │ │ │ │ ├── vdv-first1_0.xsd │ │ │ │ ├── vdv-first2_0.xml │ │ │ │ ├── vdv-first2_0.xsd │ │ │ │ ├── vdv-first3_0.xml │ │ │ │ ├── vdv-first3_0.xsd │ │ │ │ ├── vdv-first4_0.xml │ │ │ │ ├── vdv-first4_0.xsd │ │ │ │ ├── vdv-first4_1.xml │ │ │ │ ├── vdv-first4_2.xml │ │ │ │ ├── vdv-first5_0.xml │ │ │ │ ├── vdv-first5_0.xsd │ │ │ │ ├── vdv-simpleTypes.xsd │ │ │ │ ├── xml.xsd │ │ │ │ ├── xsd-list-itemType_0.xml │ │ │ │ ├── xsd-list-itemType_0.xsd │ │ │ │ ├── xsd-simpleType-varieties_0.xml │ │ │ │ └── xsd-simpleType-varieties_0.xsd │ │ │ ├── schematron │ │ │ │ ├── zvon1.sct │ │ │ │ ├── zvon10.sct │ │ │ │ ├── zvon10_0.xml │ │ │ │ ├── zvon10_1.xml │ │ │ │ ├── zvon11.sct │ │ │ │ ├── zvon11_0.xml │ │ │ │ ├── zvon11_1.xml │ │ │ │ ├── zvon11_2.xml │ │ │ │ ├── zvon11_3.xml │ │ │ │ ├── zvon12.sct │ │ │ │ ├── zvon12_0.xml │ │ │ │ ├── zvon12_1.xml │ │ │ │ ├── zvon12_2.xml │ │ │ │ ├── zvon13.sct │ │ │ │ ├── zvon13_0.xml │ │ │ │ ├── zvon13_1.xml │ │ │ │ ├── zvon13_2.xml │ │ │ │ ├── zvon14.sct │ │ │ │ ├── zvon14_0.xml │ │ │ │ ├── zvon15.sct │ │ │ │ ├── zvon15_0.xml │ │ │ │ ├── zvon1_0.xml │ │ │ │ ├── zvon1_1.xml │ │ │ │ ├── zvon2.sct │ │ │ │ ├── zvon2_0.xml │ │ │ │ ├── zvon2_1.xml │ │ │ │ ├── zvon2_2.xml │ │ │ │ ├── zvon3.sct │ │ │ │ ├── zvon3_0.xml │ │ │ │ ├── zvon4.sct │ │ │ │ ├── zvon4_0.xml │ │ │ │ ├── zvon4_1.xml │ │ │ │ ├── zvon5.sct │ │ │ │ ├── zvon5_0.xml │ │ │ │ ├── zvon5_1.xml │ │ │ │ ├── zvon5_2.xml │ │ │ │ ├── zvon6.sct │ │ │ │ ├── zvon6_0.xml │ │ │ │ ├── zvon6_1.xml │ │ │ │ ├── zvon6_2.xml │ │ │ │ ├── zvon7.sct │ │ │ │ ├── zvon7_0.xml │ │ │ │ ├── zvon7_1.xml │ │ │ │ ├── zvon7_2.xml │ │ │ │ ├── zvon7_3.xml │ │ │ │ ├── zvon7_4.xml │ │ │ │ ├── zvon8.sct │ │ │ │ ├── zvon8_0.xml │ │ │ │ ├── zvon8_1.xml │ │ │ │ ├── zvon8_2.xml │ │ │ │ ├── zvon9.sct │ │ │ │ ├── zvon9_0.xml │ │ │ │ ├── zvon9_1.xml │ │ │ │ └── zvon9_2.xml │ │ │ ├── scripts │ │ │ │ ├── base.script │ │ │ │ ├── base.xml │ │ │ │ ├── base2.script │ │ │ │ ├── base2.xml │ │ │ │ ├── set1.script │ │ │ │ ├── set1.xml │ │ │ │ ├── set3.script │ │ │ │ ├── set3.xml │ │ │ │ ├── set4.script │ │ │ │ └── set4.xml │ │ │ ├── slashdot.rdf │ │ │ ├── slashdot.xml │ │ │ ├── slashdot16.xml │ │ │ ├── svg1 │ │ │ ├── svg2 │ │ │ ├── svg3 │ │ │ ├── threads │ │ │ │ ├── a.example.org.xml │ │ │ │ ├── a │ │ │ │ │ └── a.dtd │ │ │ │ ├── abc.dtd │ │ │ │ ├── abc.xml │ │ │ │ ├── acb.dtd │ │ │ │ ├── acb.xml │ │ │ │ ├── b.example.org.xml │ │ │ │ ├── b │ │ │ │ │ └── b.dtd │ │ │ │ ├── bac.dtd │ │ │ │ ├── bac.xml │ │ │ │ ├── bca.dtd │ │ │ │ ├── bca.xml │ │ │ │ ├── c.example.org.xml │ │ │ │ ├── c │ │ │ │ │ └── c.dtd │ │ │ │ ├── cab.dtd │ │ │ │ ├── cab.xml │ │ │ │ ├── cba.dtd │ │ │ │ ├── cba.xml │ │ │ │ ├── complex.xml │ │ │ │ ├── example.org.xml │ │ │ │ └── invalid.xml │ │ │ ├── title.xml │ │ │ ├── tstblanks.xml │ │ │ ├── utf16bebom.xml │ │ │ ├── utf16bom.xml │ │ │ ├── utf16lebom.xml │ │ │ ├── utf8bom.xml │ │ │ ├── valid │ │ │ │ ├── 127772.xml │ │ │ │ ├── REC-xml-19980210.xml │ │ │ │ ├── dia.xml │ │ │ │ ├── dtds │ │ │ │ │ ├── 127772.dtd │ │ │ │ │ ├── NewsMLv1.0.dtd │ │ │ │ │ ├── destfoo.ent │ │ │ │ │ ├── nitf-2-5.dtd │ │ │ │ │ ├── objednavka.dtd │ │ │ │ │ ├── spec.dtd │ │ │ │ │ ├── xhtml-lat1.ent │ │ │ │ │ ├── xhtml-special.ent │ │ │ │ │ ├── xhtml-symbol.ent │ │ │ │ │ ├── xhtml.cat │ │ │ │ │ ├── xhtml1-frameset.dtd │ │ │ │ │ ├── xhtml1-strict.dtd │ │ │ │ │ ├── xhtml1-transitional.dtd │ │ │ │ │ ├── xhtml1.dcl │ │ │ │ │ └── xmlspec.dtd │ │ │ │ ├── id1.xml │ │ │ │ ├── id2.xml │ │ │ │ ├── id3.xml │ │ │ │ ├── index.xml │ │ │ │ ├── mixed_ns.xml │ │ │ │ ├── ns.xml │ │ │ │ ├── ns2.xml │ │ │ │ ├── objednavka.xml │ │ │ │ ├── rss.xml │ │ │ │ ├── t10.xml │ │ │ │ ├── t4.dtd │ │ │ │ ├── t4.xml │ │ │ │ ├── t4a.dtd │ │ │ │ ├── t4a.xml │ │ │ │ ├── t6.dtd │ │ │ │ ├── t6.xml │ │ │ │ ├── t8.xml │ │ │ │ ├── t8a.xml │ │ │ │ ├── t9.xml │ │ │ │ ├── t9a.xml │ │ │ │ ├── xhtml1.xhtml │ │ │ │ └── xlink.xml │ │ │ ├── wap.xml │ │ │ ├── warning │ │ │ │ ├── ent8 │ │ │ │ └── ent9 │ │ │ ├── winblanks.xml │ │ │ ├── wml.xml │ │ │ ├── xhtml1 │ │ │ ├── xhtmlcomp │ │ │ ├── xml1 │ │ │ ├── xml2 │ │ │ ├── xmlid │ │ │ │ ├── id_err1.xml │ │ │ │ ├── id_err2.xml │ │ │ │ ├── id_tst1.xml │ │ │ │ ├── id_tst2.xml │ │ │ │ ├── id_tst3.xml │ │ │ │ └── id_tst4.xml │ │ │ └── xsdtest │ │ │ │ ├── xsdtest.xml │ │ │ │ ├── xsdtest.xsl │ │ │ │ └── xsdtestsuite.xml │ │ ├── testAutomata.c │ │ ├── testC14N.c │ │ ├── testHTML.c │ │ ├── testModule.c │ │ ├── testReader.c │ │ ├── testRegexp.c │ │ ├── testRelax.c │ │ ├── testSAX.c │ │ ├── testSchemas.c │ │ ├── testThreads.c │ │ ├── testThreadsWin32.c │ │ ├── testURI.c │ │ ├── testXPath.c │ │ ├── testapi.c │ │ ├── testdso.c │ │ ├── threads.c │ │ ├── tree.c │ │ ├── trio.c │ │ ├── trio.h │ │ ├── triodef.h │ │ ├── trionan.c │ │ ├── trionan.h │ │ ├── triop.h │ │ ├── triostr.c │ │ ├── triostr.h │ │ ├── uri.c │ │ ├── valid.c │ │ ├── vms │ │ │ ├── build_libxml.com │ │ │ ├── config.vms │ │ │ ├── diffs.vms │ │ │ └── readme.vms │ │ ├── win32 │ │ │ ├── Makefile.bcb │ │ │ ├── Makefile.mingw │ │ │ ├── Makefile.msvc │ │ │ ├── Readme.txt │ │ │ ├── configure.js │ │ │ ├── defgen.xsl │ │ │ ├── libxml2.def.src │ │ │ └── wince │ │ │ │ ├── libxml2.vcb │ │ │ │ ├── libxml2.vcl │ │ │ │ ├── libxml2.vco │ │ │ │ ├── libxml2.vcp │ │ │ │ ├── libxml2.vcw │ │ │ │ ├── wincecompat.c │ │ │ │ └── wincecompat.h │ │ ├── xinclude.c │ │ ├── xlink.c │ │ ├── xml2-config.1 │ │ ├── xml2-config.in │ │ ├── xml2Conf.sh.in │ │ ├── xmlIO.c │ │ ├── xmlcatalog.c │ │ ├── xmllint.c │ │ ├── xmlmemory.c │ │ ├── xmlmodule.c │ │ ├── xmlreader.c │ │ ├── xmlregexp.c │ │ ├── xmlsave.c │ │ ├── xmlschemas.c │ │ ├── xmlschemastypes.c │ │ ├── xmlstring.c │ │ ├── xmlunicode.c │ │ ├── xmlwriter.c │ │ ├── xpath.c │ │ ├── xpointer.c │ │ └── xstc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── xstc-to-python.xsl │ │ │ └── xstc.py │ └── version │ ├── mesa │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── Makefile │ │ ├── Makefile.DJ │ │ ├── Makefile.mgw │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── bin │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── install-sh │ │ │ ├── minstall │ │ │ ├── mklib │ │ │ └── version.mk │ │ ├── configs │ │ │ ├── aix │ │ │ ├── aix-64 │ │ │ ├── aix-64-static │ │ │ ├── aix-gcc │ │ │ ├── aix-static │ │ │ ├── autoconf.in │ │ │ ├── beos │ │ │ ├── bluegene-osmesa │ │ │ ├── bluegene-xlc-osmesa │ │ │ ├── catamount-osmesa-pgi │ │ │ ├── config.mgw │ │ │ ├── darwin │ │ │ ├── darwin-fat-32bit │ │ │ ├── darwin-fat-all │ │ │ ├── default │ │ │ ├── freebsd │ │ │ ├── freebsd-dri │ │ │ ├── freebsd-dri-amd64 │ │ │ ├── freebsd-dri-x86 │ │ │ ├── hpux10 │ │ │ ├── hpux10-gcc │ │ │ ├── hpux10-static │ │ │ ├── hpux11-32 │ │ │ ├── hpux11-32-static │ │ │ ├── hpux11-32-static-nothreads │ │ │ ├── hpux11-64 │ │ │ ├── hpux11-64-static │ │ │ ├── hpux11-ia64 │ │ │ ├── hpux11-ia64-static │ │ │ ├── hpux9 │ │ │ ├── hpux9-gcc │ │ │ ├── irix6-64 │ │ │ ├── irix6-64-static │ │ │ ├── irix6-n32 │ │ │ ├── irix6-n32-static │ │ │ ├── irix6-o32 │ │ │ ├── irix6-o32-static │ │ │ ├── linux │ │ │ ├── linux-alpha │ │ │ ├── linux-alpha-static │ │ │ ├── linux-debug │ │ │ ├── linux-directfb │ │ │ ├── linux-dri │ │ │ ├── linux-dri-debug │ │ │ ├── linux-dri-ppc │ │ │ ├── linux-dri-x86 │ │ │ ├── linux-dri-x86-64 │ │ │ ├── linux-dri-xcb │ │ │ ├── linux-fbdev │ │ │ ├── linux-glide │ │ │ ├── linux-ia64-icc │ │ │ ├── linux-ia64-icc-static │ │ │ ├── linux-icc │ │ │ ├── linux-icc-static │ │ │ ├── linux-indirect │ │ │ ├── linux-osmesa │ │ │ ├── linux-osmesa16 │ │ │ ├── linux-osmesa16-static │ │ │ ├── linux-osmesa32 │ │ │ ├── linux-ppc │ │ │ ├── linux-ppc-static │ │ │ ├── linux-profile │ │ │ ├── linux-solo │ │ │ ├── linux-solo-ia64 │ │ │ ├── linux-solo-x86 │ │ │ ├── linux-sparc │ │ │ ├── linux-sparc5 │ │ │ ├── linux-static │ │ │ ├── linux-ultrasparc │ │ │ ├── linux-x86 │ │ │ ├── linux-x86-32 │ │ │ ├── linux-x86-64 │ │ │ ├── linux-x86-64-debug │ │ │ ├── linux-x86-64-static │ │ │ ├── linux-x86-debug │ │ │ ├── linux-x86-glide │ │ │ ├── linux-x86-static │ │ │ ├── netbsd │ │ │ ├── openbsd │ │ │ ├── osf1 │ │ │ ├── osf1-static │ │ │ ├── solaris-x86 │ │ │ ├── solaris-x86-gcc │ │ │ ├── solaris-x86-gcc-static │ │ │ ├── sunos4 │ │ │ ├── sunos4-gcc │ │ │ ├── sunos4-static │ │ │ ├── sunos5 │ │ │ ├── sunos5-64-gcc │ │ │ ├── sunos5-gcc │ │ │ ├── sunos5-smp │ │ │ ├── sunos5-v8 │ │ │ ├── sunos5-v8-static │ │ │ ├── sunos5-v9 │ │ │ ├── sunos5-v9-cc-g++ │ │ │ ├── sunos5-v9-static │ │ │ └── ultrix-gcc │ │ ├── configure │ │ ├── configure.ac │ │ ├── descrip.mms │ │ ├── docs │ │ │ ├── COPYING │ │ │ ├── MESA_agp_offset.spec │ │ │ ├── MESA_copy_sub_buffer.spec │ │ │ ├── MESA_pack_invert.spec │ │ │ ├── MESA_pixmap_colormap.spec │ │ │ ├── MESA_release_buffers.spec │ │ │ ├── MESA_resize_buffers.spec │ │ │ ├── MESA_set_3dfx_mode.spec │ │ │ ├── MESA_shader_debug.spec │ │ │ ├── MESA_swap_control.spec │ │ │ ├── MESA_swap_frame_usage.spec │ │ │ ├── MESA_texture_array.spec │ │ │ ├── MESA_window_pos.spec │ │ │ ├── MESA_ycbcr_texture.spec │ │ │ ├── MiniGLX.html │ │ │ ├── README.3DFX │ │ │ ├── README.AMIWIN │ │ │ ├── README.BEOS │ │ │ ├── README.CYGWIN │ │ │ ├── README.D3D │ │ │ ├── README.DJ │ │ │ ├── README.GGI │ │ │ ├── README.LYNXOS │ │ │ ├── README.MINGW32 │ │ │ ├── README.MITS │ │ │ ├── README.NeXT │ │ │ ├── README.OS2 │ │ │ ├── README.OpenStep │ │ │ ├── README.QUAKE │ │ │ ├── README.THREADS │ │ │ ├── README.VMS │ │ │ ├── README.WIN32 │ │ │ ├── README.WINDML │ │ │ ├── README.directfb │ │ │ ├── RELNOTES-3.1 │ │ │ ├── RELNOTES-3.2 │ │ │ ├── RELNOTES-3.2.1 │ │ │ ├── RELNOTES-3.3 │ │ │ ├── RELNOTES-3.4 │ │ │ ├── RELNOTES-3.4.1 │ │ │ ├── RELNOTES-3.4.2 │ │ │ ├── RELNOTES-3.5 │ │ │ ├── RELNOTES-4.0 │ │ │ ├── RELNOTES-4.0.1 │ │ │ ├── RELNOTES-4.0.2 │ │ │ ├── RELNOTES-4.0.3 │ │ │ ├── RELNOTES-4.1 │ │ │ ├── RELNOTES-5.0 │ │ │ ├── RELNOTES-5.0.1 │ │ │ ├── RELNOTES-5.0.2 │ │ │ ├── RELNOTES-5.1 │ │ │ ├── RELNOTES-6.0 │ │ │ ├── RELNOTES-6.0.1 │ │ │ ├── RELNOTES-6.1 │ │ │ ├── RELNOTES-6.2 │ │ │ ├── RELNOTES-6.2.1 │ │ │ ├── RELNOTES-6.3 │ │ │ ├── RELNOTES-6.3.1 │ │ │ ├── RELNOTES-6.3.2 │ │ │ ├── RELNOTES-6.4 │ │ │ ├── autoconf.html │ │ │ ├── banner.html │ │ │ ├── bugs.html │ │ │ ├── cell.html │ │ │ ├── conform.html │ │ │ ├── contents.html │ │ │ ├── debugging.html │ │ │ ├── demos.html │ │ │ ├── developers.html │ │ │ ├── devinfo.html │ │ │ ├── dispatch.html │ │ │ ├── download.html │ │ │ ├── envvars.html │ │ │ ├── extensions.html │ │ │ ├── faq.html │ │ │ ├── fbdev-dri.html │ │ │ ├── games.html │ │ │ ├── glfbdev-driver.html │ │ │ ├── glu.html │ │ │ ├── helpwanted.html │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── intro.html │ │ │ ├── libraries.html │ │ │ ├── license.html │ │ │ ├── lists.html │ │ │ ├── mangling.html │ │ │ ├── modelers.html │ │ │ ├── news.html │ │ │ ├── osmesa.html │ │ │ ├── pbuffers.html │ │ │ ├── perf.html │ │ │ ├── precompiled.html │ │ │ ├── relnotes-6.4.1.html │ │ │ ├── relnotes-6.4.2.html │ │ │ ├── relnotes-6.4.html │ │ │ ├── relnotes-6.5.1.html │ │ │ ├── relnotes-6.5.2.html │ │ │ ├── relnotes-6.5.3.html │ │ │ ├── relnotes-6.5.html │ │ │ ├── relnotes-7.0.1.html │ │ │ ├── relnotes-7.0.2.html │ │ │ ├── relnotes-7.0.3.html │ │ │ ├── relnotes-7.0.4.html │ │ │ ├── relnotes-7.0.html │ │ │ ├── relnotes-7.1.html │ │ │ ├── relnotes-7.2.html │ │ │ ├── relnotes.html │ │ │ ├── repository.html │ │ │ ├── science.html │ │ │ ├── shading.html │ │ │ ├── sourcedocs.html │ │ │ ├── subset-A.html │ │ │ ├── subset.html │ │ │ ├── systems.html │ │ │ ├── thanks.html │ │ │ ├── utilities.html │ │ │ ├── utility.html │ │ │ ├── versions.html │ │ │ ├── webmaster.html │ │ │ └── xlibdriver.html │ │ ├── include │ │ │ ├── GL │ │ │ │ ├── amesa.h │ │ │ │ ├── dmesa.h │ │ │ │ ├── fxmesa.h │ │ │ │ ├── ggimesa.h │ │ │ │ ├── gl.h │ │ │ │ ├── gl_mangle.h │ │ │ │ ├── glext.h │ │ │ │ ├── glfbdev.h │ │ │ │ ├── glu.h │ │ │ │ ├── glu_mangle.h │ │ │ │ ├── glut.h │ │ │ │ ├── glutf90.h │ │ │ │ ├── glx.h │ │ │ │ ├── glx_mangle.h │ │ │ │ ├── glxext.h │ │ │ │ ├── internal │ │ │ │ │ ├── dri_interface.h │ │ │ │ │ ├── dri_sarea.h │ │ │ │ │ ├── glcore.h │ │ │ │ │ └── sarea.h │ │ │ │ ├── mesa_wgl.h │ │ │ │ ├── mglmesa.h │ │ │ │ ├── osmesa.h │ │ │ │ ├── svgamesa.h │ │ │ │ ├── uglglutshapes.h │ │ │ │ ├── uglmesa.h │ │ │ │ ├── vms_x_fix.h │ │ │ │ ├── wmesa.h │ │ │ │ ├── xmesa.h │ │ │ │ ├── xmesa_x.h │ │ │ │ └── xmesa_xf86.h │ │ │ └── GLView.h │ │ ├── mms-config. │ │ ├── progs │ │ │ ├── Makefile │ │ │ └── util │ │ │ │ ├── README │ │ │ │ ├── dumpstate.c │ │ │ │ ├── errcheck.c │ │ │ │ ├── extfuncs.h │ │ │ │ ├── glstate.c │ │ │ │ ├── glstate.h │ │ │ │ ├── glutskel.c │ │ │ │ ├── idproj.c │ │ │ │ ├── imagesgi.h │ │ │ │ ├── matrix.c │ │ │ │ ├── mwmborder.c │ │ │ │ ├── readtex.c │ │ │ │ ├── readtex.h │ │ │ │ ├── sampleMakefile │ │ │ │ ├── shaderutil.c │ │ │ │ ├── shaderutil.h │ │ │ │ ├── showbuffer.c │ │ │ │ ├── showbuffer.h │ │ │ │ ├── trackball.c │ │ │ │ ├── trackball.h │ │ │ │ └── winpos.c │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── descrip.mms │ │ │ ├── glu │ │ │ │ ├── Makefile │ │ │ │ ├── descrip.mms │ │ │ │ ├── glu.pc.in │ │ │ │ └── sgi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.DJ │ │ │ │ │ ├── Makefile.mgw │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── dummy.cc │ │ │ │ │ ├── glu.def │ │ │ │ │ ├── glu.exports │ │ │ │ │ ├── glu.exports.darwin │ │ │ │ │ ├── include │ │ │ │ │ └── gluos.h │ │ │ │ │ ├── libnurbs │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── bezierEval.cc │ │ │ │ │ │ ├── bezierEval.h │ │ │ │ │ │ ├── bezierPatch.cc │ │ │ │ │ │ ├── bezierPatch.h │ │ │ │ │ │ ├── bezierPatchMesh.cc │ │ │ │ │ │ ├── bezierPatchMesh.h │ │ │ │ │ │ ├── glcurveval.cc │ │ │ │ │ │ ├── glcurveval.h │ │ │ │ │ │ ├── glimports.h │ │ │ │ │ │ ├── glinterface.cc │ │ │ │ │ │ ├── glrenderer.cc │ │ │ │ │ │ ├── glrenderer.h │ │ │ │ │ │ ├── glsurfeval.cc │ │ │ │ │ │ ├── glsurfeval.h │ │ │ │ │ │ ├── incurveeval.cc │ │ │ │ │ │ ├── insurfeval.cc │ │ │ │ │ │ ├── mystdio.h │ │ │ │ │ │ └── mystdlib.h │ │ │ │ │ ├── internals │ │ │ │ │ │ ├── arc.cc │ │ │ │ │ │ ├── arc.h │ │ │ │ │ │ ├── arcsorter.cc │ │ │ │ │ │ ├── arcsorter.h │ │ │ │ │ │ ├── arctess.cc │ │ │ │ │ │ ├── arctess.h │ │ │ │ │ │ ├── backend.cc │ │ │ │ │ │ ├── backend.h │ │ │ │ │ │ ├── basiccrveval.cc │ │ │ │ │ │ ├── basiccrveval.h │ │ │ │ │ │ ├── basicsurfeval.cc │ │ │ │ │ │ ├── basicsurfeval.h │ │ │ │ │ │ ├── bezierarc.h │ │ │ │ │ │ ├── bin.cc │ │ │ │ │ │ ├── bin.h │ │ │ │ │ │ ├── bufpool.cc │ │ │ │ │ │ ├── bufpool.h │ │ │ │ │ │ ├── cachingeval.cc │ │ │ │ │ │ ├── cachingeval.h │ │ │ │ │ │ ├── ccw.cc │ │ │ │ │ │ ├── coveandtiler.cc │ │ │ │ │ │ ├── coveandtiler.h │ │ │ │ │ │ ├── curve.cc │ │ │ │ │ │ ├── curve.h │ │ │ │ │ │ ├── curvelist.cc │ │ │ │ │ │ ├── curvelist.h │ │ │ │ │ │ ├── curvesub.cc │ │ │ │ │ │ ├── dataTransform.cc │ │ │ │ │ │ ├── dataTransform.h │ │ │ │ │ │ ├── defines.h │ │ │ │ │ │ ├── displaylist.cc │ │ │ │ │ │ ├── displaylist.h │ │ │ │ │ │ ├── displaymode.h │ │ │ │ │ │ ├── flist.cc │ │ │ │ │ │ ├── flist.h │ │ │ │ │ │ ├── flistsorter.cc │ │ │ │ │ │ ├── flistsorter.h │ │ │ │ │ │ ├── gridline.h │ │ │ │ │ │ ├── gridtrimvertex.h │ │ │ │ │ │ ├── gridvertex.h │ │ │ │ │ │ ├── hull.cc │ │ │ │ │ │ ├── hull.h │ │ │ │ │ │ ├── intersect.cc │ │ │ │ │ │ ├── jarcloc.h │ │ │ │ │ │ ├── knotvector.cc │ │ │ │ │ │ ├── knotvector.h │ │ │ │ │ │ ├── mapdesc.cc │ │ │ │ │ │ ├── mapdesc.h │ │ │ │ │ │ ├── mapdescv.cc │ │ │ │ │ │ ├── maplist.cc │ │ │ │ │ │ ├── maplist.h │ │ │ │ │ │ ├── mesher.cc │ │ │ │ │ │ ├── mesher.h │ │ │ │ │ │ ├── monoTriangulationBackend.cc │ │ │ │ │ │ ├── monotonizer.cc │ │ │ │ │ │ ├── monotonizer.h │ │ │ │ │ │ ├── myassert.h │ │ │ │ │ │ ├── mycode.cc │ │ │ │ │ │ ├── mymath.h │ │ │ │ │ │ ├── mysetjmp.h │ │ │ │ │ │ ├── mystring.h │ │ │ │ │ │ ├── nurbsconsts.h │ │ │ │ │ │ ├── nurbsinterfac.cc │ │ │ │ │ │ ├── nurbstess.cc │ │ │ │ │ │ ├── nurbstess.h │ │ │ │ │ │ ├── patch.cc │ │ │ │ │ │ ├── patch.h │ │ │ │ │ │ ├── patchlist.cc │ │ │ │ │ │ ├── patchlist.h │ │ │ │ │ │ ├── pwlarc.h │ │ │ │ │ │ ├── quilt.cc │ │ │ │ │ │ ├── quilt.h │ │ │ │ │ │ ├── reader.cc │ │ │ │ │ │ ├── reader.h │ │ │ │ │ │ ├── renderhints.cc │ │ │ │ │ │ ├── renderhints.h │ │ │ │ │ │ ├── simplemath.h │ │ │ │ │ │ ├── slicer.cc │ │ │ │ │ │ ├── slicer.h │ │ │ │ │ │ ├── sorter.cc │ │ │ │ │ │ ├── sorter.h │ │ │ │ │ │ ├── splitarcs.cc │ │ │ │ │ │ ├── subdivider.cc │ │ │ │ │ │ ├── subdivider.h │ │ │ │ │ │ ├── tobezier.cc │ │ │ │ │ │ ├── trimline.cc │ │ │ │ │ │ ├── trimline.h │ │ │ │ │ │ ├── trimregion.cc │ │ │ │ │ │ ├── trimregion.h │ │ │ │ │ │ ├── trimvertex.h │ │ │ │ │ │ ├── trimvertpool.cc │ │ │ │ │ │ ├── trimvertpool.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── uarray.cc │ │ │ │ │ │ ├── uarray.h │ │ │ │ │ │ ├── varray.cc │ │ │ │ │ │ └── varray.h │ │ │ │ │ └── nurbtess │ │ │ │ │ │ ├── definitions.h │ │ │ │ │ │ ├── directedLine.cc │ │ │ │ │ │ ├── directedLine.h │ │ │ │ │ │ ├── glimports.h │ │ │ │ │ │ ├── gridWrap.cc │ │ │ │ │ │ ├── gridWrap.h │ │ │ │ │ │ ├── monoChain.cc │ │ │ │ │ │ ├── monoChain.h │ │ │ │ │ │ ├── monoPolyPart.cc │ │ │ │ │ │ ├── monoPolyPart.h │ │ │ │ │ │ ├── monoTriangulation.cc │ │ │ │ │ │ ├── monoTriangulation.h │ │ │ │ │ │ ├── mystdio.h │ │ │ │ │ │ ├── mystdlib.h │ │ │ │ │ │ ├── partitionX.cc │ │ │ │ │ │ ├── partitionX.h │ │ │ │ │ │ ├── partitionY.cc │ │ │ │ │ │ ├── partitionY.h │ │ │ │ │ │ ├── polyDBG.cc │ │ │ │ │ │ ├── polyDBG.h │ │ │ │ │ │ ├── polyUtil.cc │ │ │ │ │ │ ├── polyUtil.h │ │ │ │ │ │ ├── primitiveStream.cc │ │ │ │ │ │ ├── primitiveStream.h │ │ │ │ │ │ ├── quicksort.cc │ │ │ │ │ │ ├── quicksort.h │ │ │ │ │ │ ├── rectBlock.cc │ │ │ │ │ │ ├── rectBlock.h │ │ │ │ │ │ ├── sampleComp.cc │ │ │ │ │ │ ├── sampleComp.h │ │ │ │ │ │ ├── sampleCompBot.cc │ │ │ │ │ │ ├── sampleCompBot.h │ │ │ │ │ │ ├── sampleCompRight.cc │ │ │ │ │ │ ├── sampleCompRight.h │ │ │ │ │ │ ├── sampleCompTop.cc │ │ │ │ │ │ ├── sampleCompTop.h │ │ │ │ │ │ ├── sampleMonoPoly.cc │ │ │ │ │ │ ├── sampleMonoPoly.h │ │ │ │ │ │ ├── sampledLine.cc │ │ │ │ │ │ ├── sampledLine.h │ │ │ │ │ │ ├── searchTree.cc │ │ │ │ │ │ ├── searchTree.h │ │ │ │ │ │ └── zlassert.h │ │ │ │ │ ├── libtess │ │ │ │ │ ├── README │ │ │ │ │ ├── alg-outline │ │ │ │ │ ├── dict-list.h │ │ │ │ │ ├── dict.c │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── geom.c │ │ │ │ │ ├── geom.h │ │ │ │ │ ├── memalloc.c │ │ │ │ │ ├── memalloc.h │ │ │ │ │ ├── mesh.c │ │ │ │ │ ├── mesh.h │ │ │ │ │ ├── normal.c │ │ │ │ │ ├── normal.h │ │ │ │ │ ├── priorityq-heap.c │ │ │ │ │ ├── priorityq-heap.h │ │ │ │ │ ├── priorityq-sort.h │ │ │ │ │ ├── priorityq.c │ │ │ │ │ ├── priorityq.h │ │ │ │ │ ├── render.c │ │ │ │ │ ├── render.h │ │ │ │ │ ├── sweep.c │ │ │ │ │ ├── sweep.h │ │ │ │ │ ├── tess.c │ │ │ │ │ ├── tess.h │ │ │ │ │ ├── tessmono.c │ │ │ │ │ └── tessmono.h │ │ │ │ │ ├── libutil │ │ │ │ │ ├── error.c │ │ │ │ │ ├── glue.c │ │ │ │ │ ├── gluint.h │ │ │ │ │ ├── mipmap.c │ │ │ │ │ ├── project.c │ │ │ │ │ ├── quad.c │ │ │ │ │ └── registry.c │ │ │ │ │ └── mesaglu.opt │ │ │ ├── glut │ │ │ │ ├── beos │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── beos_x11.cpp │ │ │ │ │ ├── beos_x11.h │ │ │ │ │ ├── glutBlocker.cpp │ │ │ │ │ ├── glutBlocker.h │ │ │ │ │ ├── glutCallback.cpp │ │ │ │ │ ├── glutColor.cpp │ │ │ │ │ ├── glutCursor.cpp │ │ │ │ │ ├── glutCursors.h │ │ │ │ │ ├── glutDstr.cpp │ │ │ │ │ ├── glutEvent.cpp │ │ │ │ │ ├── glutGet.cpp │ │ │ │ │ ├── glutInit.cpp │ │ │ │ │ ├── glutMenu.cpp │ │ │ │ │ ├── glutMenu.h │ │ │ │ │ ├── glutOverlay.cpp │ │ │ │ │ ├── glutState.h │ │ │ │ │ ├── glutWindow.cpp │ │ │ │ │ ├── glutWindow.h │ │ │ │ │ ├── glut_8x13.c │ │ │ │ │ ├── glut_9x15.c │ │ │ │ │ ├── glut_bitmap.c │ │ │ │ │ ├── glut_bwidth.c │ │ │ │ │ ├── glut_ext.c │ │ │ │ │ ├── glut_hel10.c │ │ │ │ │ ├── glut_hel12.c │ │ │ │ │ ├── glut_hel18.c │ │ │ │ │ ├── glut_mroman.c │ │ │ │ │ ├── glut_roman.c │ │ │ │ │ ├── glut_shapes.c │ │ │ │ │ ├── glut_stroke.c │ │ │ │ │ ├── glut_swidth.c │ │ │ │ │ ├── glut_teapot.c │ │ │ │ │ ├── glut_tr10.c │ │ │ │ │ ├── glut_tr24.c │ │ │ │ │ ├── glut_util.c │ │ │ │ │ ├── glut_vidresize.c │ │ │ │ │ ├── glutbitmap.h │ │ │ │ │ ├── glutint.h │ │ │ │ │ └── glutstroke.h │ │ │ │ ├── directfb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── NOTES │ │ │ │ │ ├── callback.c │ │ │ │ │ ├── color.c │ │ │ │ │ ├── cursor.c │ │ │ │ │ ├── cursors.h │ │ │ │ │ ├── events.c │ │ │ │ │ ├── ext.c │ │ │ │ │ ├── font.c │ │ │ │ │ ├── font.h │ │ │ │ │ ├── game.c │ │ │ │ │ ├── globals.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── menu.c │ │ │ │ │ ├── models.c │ │ │ │ │ ├── overlay.c │ │ │ │ │ ├── state.c │ │ │ │ │ ├── teapot.c │ │ │ │ │ └── window.c │ │ │ │ ├── dos │ │ │ │ │ ├── Makefile.DJ │ │ │ │ │ ├── PC_HW │ │ │ │ │ │ ├── pc_hw.c │ │ │ │ │ │ ├── pc_hw.h │ │ │ │ │ │ ├── pc_irq.S │ │ │ │ │ │ ├── pc_keyb.c │ │ │ │ │ │ ├── pc_mouse.c │ │ │ │ │ │ └── pc_timer.c │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── callback.c │ │ │ │ │ ├── color.c │ │ │ │ │ ├── extens.c │ │ │ │ │ ├── f8x13.c │ │ │ │ │ ├── f9x15.c │ │ │ │ │ ├── hel10.c │ │ │ │ │ ├── hel12.c │ │ │ │ │ ├── hel18.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── loop.c │ │ │ │ │ ├── menu.c │ │ │ │ │ ├── mouse.c │ │ │ │ │ ├── mroman.c │ │ │ │ │ ├── overlay.c │ │ │ │ │ ├── roman.c │ │ │ │ │ ├── shapes.c │ │ │ │ │ ├── state.c │ │ │ │ │ ├── stroke.c │ │ │ │ │ ├── teapot.c │ │ │ │ │ ├── tr10.c │ │ │ │ │ ├── tr24.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── window.c │ │ │ │ ├── fbdev │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── callback.c │ │ │ │ │ ├── colormap.c │ │ │ │ │ ├── cursor.c │ │ │ │ │ ├── cursors.h │ │ │ │ │ ├── ext.c │ │ │ │ │ ├── fbdev.c │ │ │ │ │ ├── gamemode.c │ │ │ │ │ ├── input.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── menu.c │ │ │ │ │ ├── overlay.c │ │ │ │ │ ├── state.c │ │ │ │ │ ├── stroke.c │ │ │ │ │ └── vidresize.c │ │ │ │ ├── ggi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── debug.h │ │ │ │ │ └── ggiglut.c │ │ │ │ ├── glx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.cygnus │ │ │ │ │ ├── Makefile.mgw │ │ │ │ │ ├── Makefile.sgi │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── capturexfont.c │ │ │ │ │ ├── depend │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── fxglut.def │ │ │ │ │ ├── glut.def │ │ │ │ │ ├── glut.pc.in │ │ │ │ │ ├── glut_8x13.c │ │ │ │ │ ├── glut_9x15.c │ │ │ │ │ ├── glut_bitmap.c │ │ │ │ │ ├── glut_bwidth.c │ │ │ │ │ ├── glut_cindex.c │ │ │ │ │ ├── glut_cmap.c │ │ │ │ │ ├── glut_cursor.c │ │ │ │ │ ├── glut_dials.c │ │ │ │ │ ├── glut_dstr.c │ │ │ │ │ ├── glut_event.c │ │ │ │ │ ├── glut_ext.c │ │ │ │ │ ├── glut_fcb.c │ │ │ │ │ ├── glut_fullscrn.c │ │ │ │ │ ├── glut_gamemode.c │ │ │ │ │ ├── glut_get.c │ │ │ │ │ ├── glut_glxext.c │ │ │ │ │ ├── glut_hel10.c │ │ │ │ │ ├── glut_hel12.c │ │ │ │ │ ├── glut_hel18.c │ │ │ │ │ ├── glut_init.c │ │ │ │ │ ├── glut_input.c │ │ │ │ │ ├── glut_joy.c │ │ │ │ │ ├── glut_key.c │ │ │ │ │ ├── glut_keyctrl.c │ │ │ │ │ ├── glut_keyup.c │ │ │ │ │ ├── glut_menu.c │ │ │ │ │ ├── glut_menu2.c │ │ │ │ │ ├── glut_mesa.c │ │ │ │ │ ├── glut_modifier.c │ │ │ │ │ ├── glut_mroman.c │ │ │ │ │ ├── glut_overlay.c │ │ │ │ │ ├── glut_roman.c │ │ │ │ │ ├── glut_shapes.c │ │ │ │ │ ├── glut_space.c │ │ │ │ │ ├── glut_stroke.c │ │ │ │ │ ├── glut_swap.c │ │ │ │ │ ├── glut_swidth.c │ │ │ │ │ ├── glut_tablet.c │ │ │ │ │ ├── glut_teapot.c │ │ │ │ │ ├── glut_tr10.c │ │ │ │ │ ├── glut_tr24.c │ │ │ │ │ ├── glut_util.c │ │ │ │ │ ├── glut_vidresize.c │ │ │ │ │ ├── glut_warp.c │ │ │ │ │ ├── glut_win.c │ │ │ │ │ ├── glut_winmisc.c │ │ │ │ │ ├── glutbitmap.h │ │ │ │ │ ├── glutint.h │ │ │ │ │ ├── glutstroke.h │ │ │ │ │ ├── glutwin32.h │ │ │ │ │ ├── layerutil.c │ │ │ │ │ ├── layerutil.h │ │ │ │ │ ├── mms_depend │ │ │ │ │ ├── stroke.h │ │ │ │ │ ├── win32_glx.c │ │ │ │ │ ├── win32_glx.h │ │ │ │ │ ├── win32_menu.c │ │ │ │ │ ├── win32_util.c │ │ │ │ │ ├── win32_winproc.c │ │ │ │ │ ├── win32_x11.c │ │ │ │ │ └── win32_x11.h │ │ │ │ └── mini │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── callback.c │ │ │ │ │ ├── color.c │ │ │ │ │ ├── globals.c │ │ │ │ │ ├── glut.pc.in │ │ │ │ │ ├── init.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── menu.c │ │ │ │ │ ├── models.c │ │ │ │ │ ├── overlay.c │ │ │ │ │ ├── state.c │ │ │ │ │ ├── teapot.c │ │ │ │ │ └── window.c │ │ │ ├── glw │ │ │ │ ├── GLwDrawA.c │ │ │ │ ├── GLwDrawA.h │ │ │ │ ├── GLwDrawAP.h │ │ │ │ ├── GLwMDrawA.c │ │ │ │ ├── GLwMDrawA.h │ │ │ │ ├── GLwMDrawAP.h │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── depend │ │ │ │ └── glw.pc.in │ │ │ ├── glx │ │ │ │ ├── Makefile │ │ │ │ └── x11 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── XF86dri.c │ │ │ │ │ ├── clientattrib.c │ │ │ │ │ ├── compsize.c │ │ │ │ │ ├── dri_common.c │ │ │ │ │ ├── dri_common.h │ │ │ │ │ ├── dri_glx.c │ │ │ │ │ ├── drisw_glx.c │ │ │ │ │ ├── eval.c │ │ │ │ │ ├── glcontextmodes.c │ │ │ │ │ ├── glcontextmodes.h │ │ │ │ │ ├── glx_pbuffer.c │ │ │ │ │ ├── glx_query.c │ │ │ │ │ ├── glxclient.h │ │ │ │ │ ├── glxcmds.c │ │ │ │ │ ├── glxcurrent.c │ │ │ │ │ ├── glxext.c │ │ │ │ │ ├── glxextensions.c │ │ │ │ │ ├── glxextensions.h │ │ │ │ │ ├── glxhash.c │ │ │ │ │ ├── glxhash.h │ │ │ │ │ ├── indirect.c │ │ │ │ │ ├── indirect.h │ │ │ │ │ ├── indirect_init.c │ │ │ │ │ ├── indirect_init.h │ │ │ │ │ ├── indirect_size.c │ │ │ │ │ ├── indirect_size.h │ │ │ │ │ ├── indirect_texture_compression.c │ │ │ │ │ ├── indirect_transpose_matrix.c │ │ │ │ │ ├── indirect_vertex_array.c │ │ │ │ │ ├── indirect_vertex_array.h │ │ │ │ │ ├── indirect_vertex_array_priv.h │ │ │ │ │ ├── indirect_vertex_program.c │ │ │ │ │ ├── indirect_window_pos.c │ │ │ │ │ ├── packrender.h │ │ │ │ │ ├── packsingle.h │ │ │ │ │ ├── pixel.c │ │ │ │ │ ├── pixelstore.c │ │ │ │ │ ├── render2.c │ │ │ │ │ ├── renderpix.c │ │ │ │ │ ├── single2.c │ │ │ │ │ ├── singlepix.c │ │ │ │ │ ├── vertarr.c │ │ │ │ │ ├── xf86dri.h │ │ │ │ │ ├── xf86dristr.h │ │ │ │ │ └── xfont.c │ │ │ └── mesa │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.DJ │ │ │ │ ├── Makefile.mgw │ │ │ │ ├── depend │ │ │ │ ├── descrip.mms │ │ │ │ ├── drivers │ │ │ │ ├── Makefile │ │ │ │ ├── beos │ │ │ │ │ ├── GLView.cpp │ │ │ │ │ └── Makefile │ │ │ │ ├── common │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── driverfuncs.c │ │ │ │ │ └── driverfuncs.h │ │ │ │ ├── directfb │ │ │ │ │ ├── Makefile │ │ │ │ │ └── idirectfbgl_mesa.c │ │ │ │ ├── dos │ │ │ │ │ ├── blit.S │ │ │ │ │ ├── dmesa.c │ │ │ │ │ ├── dpmi.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── null.c │ │ │ │ │ ├── null.h │ │ │ │ │ ├── vesa.c │ │ │ │ │ ├── vesa.h │ │ │ │ │ ├── vga.c │ │ │ │ │ ├── vga.h │ │ │ │ │ ├── video.c │ │ │ │ │ └── video.h │ │ │ │ ├── dri │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.template │ │ │ │ │ ├── common │ │ │ │ │ │ ├── depthtmp.h │ │ │ │ │ │ ├── dri_bufmgr.c │ │ │ │ │ │ ├── dri_bufmgr.h │ │ │ │ │ │ ├── dri_bufmgr_fake.c │ │ │ │ │ │ ├── dri_util.c │ │ │ │ │ │ ├── dri_util.h │ │ │ │ │ │ ├── drirenderbuffer.c │ │ │ │ │ │ ├── drirenderbuffer.h │ │ │ │ │ │ ├── extension_helper.h │ │ │ │ │ │ ├── memops.h │ │ │ │ │ │ ├── mmio.h │ │ │ │ │ │ ├── mmx.h │ │ │ │ │ │ ├── spantmp.h │ │ │ │ │ │ ├── spantmp2.h │ │ │ │ │ │ ├── spantmp_common.h │ │ │ │ │ │ ├── stenciltmp.h │ │ │ │ │ │ ├── texmem.c │ │ │ │ │ │ ├── texmem.h │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ ├── vblank.c │ │ │ │ │ │ ├── vblank.h │ │ │ │ │ │ ├── xmlconfig.c │ │ │ │ │ │ ├── xmlconfig.h │ │ │ │ │ │ ├── xmlpool.h │ │ │ │ │ │ └── xmlpool │ │ │ │ │ │ │ ├── de.po │ │ │ │ │ │ │ ├── es.po │ │ │ │ │ │ │ ├── fr.po │ │ │ │ │ │ │ ├── nl.po │ │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ │ ├── sv.po │ │ │ │ │ │ │ └── t_options.h │ │ │ │ │ ├── dri.pc.in │ │ │ │ │ ├── fb │ │ │ │ │ │ ├── Doxyfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── fb_dri.c │ │ │ │ │ │ └── fb_egl.c │ │ │ │ │ ├── ffb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ffb_bitmap.c │ │ │ │ │ │ ├── ffb_bitmap.h │ │ │ │ │ │ ├── ffb_clear.c │ │ │ │ │ │ ├── ffb_clear.h │ │ │ │ │ │ ├── ffb_context.h │ │ │ │ │ │ ├── ffb_dd.c │ │ │ │ │ │ ├── ffb_dd.h │ │ │ │ │ │ ├── ffb_depth.c │ │ │ │ │ │ ├── ffb_depth.h │ │ │ │ │ │ ├── ffb_fifo.h │ │ │ │ │ │ ├── ffb_fog.c │ │ │ │ │ │ ├── ffb_lines.c │ │ │ │ │ │ ├── ffb_lines.h │ │ │ │ │ │ ├── ffb_linetmp.h │ │ │ │ │ │ ├── ffb_lock.h │ │ │ │ │ │ ├── ffb_points.c │ │ │ │ │ │ ├── ffb_points.h │ │ │ │ │ │ ├── ffb_pointtmp.h │ │ │ │ │ │ ├── ffb_rendertmp.h │ │ │ │ │ │ ├── ffb_span.c │ │ │ │ │ │ ├── ffb_span.h │ │ │ │ │ │ ├── ffb_state.c │ │ │ │ │ │ ├── ffb_state.h │ │ │ │ │ │ ├── ffb_stencil.c │ │ │ │ │ │ ├── ffb_stencil.h │ │ │ │ │ │ ├── ffb_tex.c │ │ │ │ │ │ ├── ffb_tex.h │ │ │ │ │ │ ├── ffb_tris.c │ │ │ │ │ │ ├── ffb_tris.h │ │ │ │ │ │ ├── ffb_tritmp.h │ │ │ │ │ │ ├── ffb_vb.c │ │ │ │ │ │ ├── ffb_vb.h │ │ │ │ │ │ ├── ffb_vbtmp.h │ │ │ │ │ │ ├── ffb_vtxfmt.c │ │ │ │ │ │ ├── ffb_vtxfmt.h │ │ │ │ │ │ ├── ffb_xmesa.c │ │ │ │ │ │ ├── ffb_xmesa.h │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── ffb_dac.h │ │ │ │ │ │ │ ├── ffb_drishare.h │ │ │ │ │ │ │ └── ffb_regs.h │ │ │ │ │ ├── gamma │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── gamma_client.h │ │ │ │ │ │ ├── gamma_context.c │ │ │ │ │ │ ├── gamma_context.h │ │ │ │ │ │ ├── gamma_dd.c │ │ │ │ │ │ ├── gamma_inithw.c │ │ │ │ │ │ ├── gamma_lock.c │ │ │ │ │ │ ├── gamma_lock.h │ │ │ │ │ │ ├── gamma_macros.h │ │ │ │ │ │ ├── gamma_regs.h │ │ │ │ │ │ ├── gamma_render.c │ │ │ │ │ │ ├── gamma_screen.c │ │ │ │ │ │ ├── gamma_screen.h │ │ │ │ │ │ ├── gamma_span.c │ │ │ │ │ │ ├── gamma_state.c │ │ │ │ │ │ ├── gamma_tex.c │ │ │ │ │ │ ├── gamma_texmem.c │ │ │ │ │ │ ├── gamma_texstate.c │ │ │ │ │ │ ├── gamma_tris.c │ │ │ │ │ │ ├── gamma_tris.h │ │ │ │ │ │ ├── gamma_tritmp.h │ │ │ │ │ │ ├── gamma_vb.c │ │ │ │ │ │ ├── gamma_vb.h │ │ │ │ │ │ ├── gamma_xmesa.c │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── glint_common.h │ │ │ │ │ │ │ └── glint_dri.h │ │ │ │ │ ├── i810 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── i810_3d_reg.h │ │ │ │ │ │ ├── i810context.c │ │ │ │ │ │ ├── i810context.h │ │ │ │ │ │ ├── i810ioctl.c │ │ │ │ │ │ ├── i810ioctl.h │ │ │ │ │ │ ├── i810render.c │ │ │ │ │ │ ├── i810screen.c │ │ │ │ │ │ ├── i810screen.h │ │ │ │ │ │ ├── i810span.c │ │ │ │ │ │ ├── i810span.h │ │ │ │ │ │ ├── i810state.c │ │ │ │ │ │ ├── i810state.h │ │ │ │ │ │ ├── i810tex.c │ │ │ │ │ │ ├── i810tex.h │ │ │ │ │ │ ├── i810texmem.c │ │ │ │ │ │ ├── i810texstate.c │ │ │ │ │ │ ├── i810tris.c │ │ │ │ │ │ ├── i810tris.h │ │ │ │ │ │ ├── i810vb.c │ │ │ │ │ │ ├── i810vb.h │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── i810_common.h │ │ │ │ │ │ │ ├── i810_dri.c │ │ │ │ │ │ │ ├── i810_dri.h │ │ │ │ │ │ │ └── i810_reg.h │ │ │ │ │ ├── i915 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── i830_context.c │ │ │ │ │ │ ├── i830_context.h │ │ │ │ │ │ ├── i830_metaops.c │ │ │ │ │ │ ├── i830_reg.h │ │ │ │ │ │ ├── i830_state.c │ │ │ │ │ │ ├── i830_tex.c │ │ │ │ │ │ ├── i830_texblend.c │ │ │ │ │ │ ├── i830_texstate.c │ │ │ │ │ │ ├── i830_vtbl.c │ │ │ │ │ │ ├── i915_context.c │ │ │ │ │ │ ├── i915_context.h │ │ │ │ │ │ ├── i915_debug.c │ │ │ │ │ │ ├── i915_debug.h │ │ │ │ │ │ ├── i915_debug_fp.c │ │ │ │ │ │ ├── i915_fragprog.c │ │ │ │ │ │ ├── i915_metaops.c │ │ │ │ │ │ ├── i915_program.c │ │ │ │ │ │ ├── i915_program.h │ │ │ │ │ │ ├── i915_reg.h │ │ │ │ │ │ ├── i915_state.c │ │ │ │ │ │ ├── i915_tex.c │ │ │ │ │ │ ├── i915_tex_layout.c │ │ │ │ │ │ ├── i915_texstate.c │ │ │ │ │ │ ├── i915_vtbl.c │ │ │ │ │ │ ├── intel_pixel_read.c │ │ │ │ │ │ ├── intel_render.c │ │ │ │ │ │ ├── intel_state.c │ │ │ │ │ │ ├── intel_structs.h │ │ │ │ │ │ ├── intel_tris.c │ │ │ │ │ │ └── intel_tris.h │ │ │ │ │ ├── i965 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── brw_cc.c │ │ │ │ │ │ ├── brw_clip.c │ │ │ │ │ │ ├── brw_clip.h │ │ │ │ │ │ ├── brw_clip_line.c │ │ │ │ │ │ ├── brw_clip_point.c │ │ │ │ │ │ ├── brw_clip_state.c │ │ │ │ │ │ ├── brw_clip_tri.c │ │ │ │ │ │ ├── brw_clip_unfilled.c │ │ │ │ │ │ ├── brw_clip_util.c │ │ │ │ │ │ ├── brw_context.c │ │ │ │ │ │ ├── brw_context.h │ │ │ │ │ │ ├── brw_curbe.c │ │ │ │ │ │ ├── brw_defines.h │ │ │ │ │ │ ├── brw_draw.c │ │ │ │ │ │ ├── brw_draw.h │ │ │ │ │ │ ├── brw_draw_upload.c │ │ │ │ │ │ ├── brw_eu.c │ │ │ │ │ │ ├── brw_eu.h │ │ │ │ │ │ ├── brw_eu_debug.c │ │ │ │ │ │ ├── brw_eu_emit.c │ │ │ │ │ │ ├── brw_eu_util.c │ │ │ │ │ │ ├── brw_fallback.c │ │ │ │ │ │ ├── brw_fallback.h │ │ │ │ │ │ ├── brw_gs.c │ │ │ │ │ │ ├── brw_gs.h │ │ │ │ │ │ ├── brw_gs_emit.c │ │ │ │ │ │ ├── brw_gs_state.c │ │ │ │ │ │ ├── brw_metaops.c │ │ │ │ │ │ ├── brw_misc_state.c │ │ │ │ │ │ ├── brw_program.c │ │ │ │ │ │ ├── brw_sf.c │ │ │ │ │ │ ├── brw_sf.h │ │ │ │ │ │ ├── brw_sf_emit.c │ │ │ │ │ │ ├── brw_sf_state.c │ │ │ │ │ │ ├── brw_state.h │ │ │ │ │ │ ├── brw_state_batch.c │ │ │ │ │ │ ├── brw_state_cache.c │ │ │ │ │ │ ├── brw_state_dump.c │ │ │ │ │ │ ├── brw_state_upload.c │ │ │ │ │ │ ├── brw_structs.h │ │ │ │ │ │ ├── brw_tex.c │ │ │ │ │ │ ├── brw_tex_layout.c │ │ │ │ │ │ ├── brw_urb.c │ │ │ │ │ │ ├── brw_util.c │ │ │ │ │ │ ├── brw_util.h │ │ │ │ │ │ ├── brw_vs.c │ │ │ │ │ │ ├── brw_vs.h │ │ │ │ │ │ ├── brw_vs_constval.c │ │ │ │ │ │ ├── brw_vs_emit.c │ │ │ │ │ │ ├── brw_vs_state.c │ │ │ │ │ │ ├── brw_vs_tnl.c │ │ │ │ │ │ ├── brw_vtbl.c │ │ │ │ │ │ ├── brw_wm.c │ │ │ │ │ │ ├── brw_wm.h │ │ │ │ │ │ ├── brw_wm_debug.c │ │ │ │ │ │ ├── brw_wm_emit.c │ │ │ │ │ │ ├── brw_wm_fp.c │ │ │ │ │ │ ├── brw_wm_glsl.c │ │ │ │ │ │ ├── brw_wm_iz.c │ │ │ │ │ │ ├── brw_wm_pass0.c │ │ │ │ │ │ ├── brw_wm_pass1.c │ │ │ │ │ │ ├── brw_wm_pass2.c │ │ │ │ │ │ ├── brw_wm_sampler_state.c │ │ │ │ │ │ ├── brw_wm_state.c │ │ │ │ │ │ ├── brw_wm_surface_state.c │ │ │ │ │ │ ├── intel_state.c │ │ │ │ │ │ └── intel_structs.h │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── intel_batchbuffer.c │ │ │ │ │ │ ├── intel_batchbuffer.h │ │ │ │ │ │ ├── intel_blit.c │ │ │ │ │ │ ├── intel_blit.h │ │ │ │ │ │ ├── intel_buffer_objects.c │ │ │ │ │ │ ├── intel_buffer_objects.h │ │ │ │ │ │ ├── intel_buffers.c │ │ │ │ │ │ ├── intel_buffers.h │ │ │ │ │ │ ├── intel_bufmgr_ttm.c │ │ │ │ │ │ ├── intel_bufmgr_ttm.h │ │ │ │ │ │ ├── intel_chipset.h │ │ │ │ │ │ ├── intel_context.c │ │ │ │ │ │ ├── intel_context.h │ │ │ │ │ │ ├── intel_decode.c │ │ │ │ │ │ ├── intel_decode.h │ │ │ │ │ │ ├── intel_depthstencil.c │ │ │ │ │ │ ├── intel_depthstencil.h │ │ │ │ │ │ ├── intel_fbo.c │ │ │ │ │ │ ├── intel_fbo.h │ │ │ │ │ │ ├── intel_ioctl.c │ │ │ │ │ │ ├── intel_ioctl.h │ │ │ │ │ │ ├── intel_mipmap_tree.c │ │ │ │ │ │ ├── intel_mipmap_tree.h │ │ │ │ │ │ ├── intel_pixel.c │ │ │ │ │ │ ├── intel_pixel.h │ │ │ │ │ │ ├── intel_pixel_bitmap.c │ │ │ │ │ │ ├── intel_pixel_copy.c │ │ │ │ │ │ ├── intel_pixel_draw.c │ │ │ │ │ │ ├── intel_reg.h │ │ │ │ │ │ ├── intel_regions.c │ │ │ │ │ │ ├── intel_regions.h │ │ │ │ │ │ ├── intel_screen.c │ │ │ │ │ │ ├── intel_screen.h │ │ │ │ │ │ ├── intel_span.c │ │ │ │ │ │ ├── intel_span.h │ │ │ │ │ │ ├── intel_tex.c │ │ │ │ │ │ ├── intel_tex.h │ │ │ │ │ │ ├── intel_tex_copy.c │ │ │ │ │ │ ├── intel_tex_format.c │ │ │ │ │ │ ├── intel_tex_image.c │ │ │ │ │ │ ├── intel_tex_layout.c │ │ │ │ │ │ ├── intel_tex_layout.h │ │ │ │ │ │ ├── intel_tex_obj.h │ │ │ │ │ │ ├── intel_tex_subimage.c │ │ │ │ │ │ ├── intel_tex_validate.c │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── i830_dri.h │ │ │ │ │ │ │ ├── intel.h │ │ │ │ │ │ │ └── intel_dri.c │ │ │ │ │ ├── mach64 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mach64_context.c │ │ │ │ │ │ ├── mach64_context.h │ │ │ │ │ │ ├── mach64_dd.c │ │ │ │ │ │ ├── mach64_dd.h │ │ │ │ │ │ ├── mach64_ioctl.c │ │ │ │ │ │ ├── mach64_ioctl.h │ │ │ │ │ │ ├── mach64_lock.c │ │ │ │ │ │ ├── mach64_lock.h │ │ │ │ │ │ ├── mach64_native_vb.c │ │ │ │ │ │ ├── mach64_native_vbtmp.h │ │ │ │ │ │ ├── mach64_reg.h │ │ │ │ │ │ ├── mach64_screen.c │ │ │ │ │ │ ├── mach64_screen.h │ │ │ │ │ │ ├── mach64_span.c │ │ │ │ │ │ ├── mach64_span.h │ │ │ │ │ │ ├── mach64_state.c │ │ │ │ │ │ ├── mach64_state.h │ │ │ │ │ │ ├── mach64_tex.c │ │ │ │ │ │ ├── mach64_tex.h │ │ │ │ │ │ ├── mach64_texmem.c │ │ │ │ │ │ ├── mach64_texstate.c │ │ │ │ │ │ ├── mach64_tris.c │ │ │ │ │ │ ├── mach64_tris.h │ │ │ │ │ │ ├── mach64_vb.c │ │ │ │ │ │ ├── mach64_vb.h │ │ │ │ │ │ ├── mach64_vbtmp.h │ │ │ │ │ │ └── server │ │ │ │ │ │ │ └── mach64_dri.h │ │ │ │ │ ├── mga │ │ │ │ │ │ ├── Doxyfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mga_texcombine.c │ │ │ │ │ │ ├── mga_texstate.c │ │ │ │ │ │ ├── mga_xmesa.c │ │ │ │ │ │ ├── mga_xmesa.h │ │ │ │ │ │ ├── mgacontext.h │ │ │ │ │ │ ├── mgadd.c │ │ │ │ │ │ ├── mgadd.h │ │ │ │ │ │ ├── mgaioctl.c │ │ │ │ │ │ ├── mgaioctl.h │ │ │ │ │ │ ├── mgapixel.c │ │ │ │ │ │ ├── mgapixel.h │ │ │ │ │ │ ├── mgaregs.h │ │ │ │ │ │ ├── mgarender.c │ │ │ │ │ │ ├── mgaspan.c │ │ │ │ │ │ ├── mgaspan.h │ │ │ │ │ │ ├── mgastate.c │ │ │ │ │ │ ├── mgastate.h │ │ │ │ │ │ ├── mgatex.c │ │ │ │ │ │ ├── mgatex.h │ │ │ │ │ │ ├── mgatexmem.c │ │ │ │ │ │ ├── mgatris.c │ │ │ │ │ │ ├── mgatris.h │ │ │ │ │ │ ├── mgavb.c │ │ │ │ │ │ ├── mgavb.h │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── mga.h │ │ │ │ │ │ │ ├── mga_bios.h │ │ │ │ │ │ │ ├── mga_dri.c │ │ │ │ │ │ │ ├── mga_dri.h │ │ │ │ │ │ │ ├── mga_macros.h │ │ │ │ │ │ │ └── mga_reg.h │ │ │ │ │ ├── r128 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── r128_context.c │ │ │ │ │ │ ├── r128_context.h │ │ │ │ │ │ ├── r128_dd.c │ │ │ │ │ │ ├── r128_dd.h │ │ │ │ │ │ ├── r128_ioctl.c │ │ │ │ │ │ ├── r128_ioctl.h │ │ │ │ │ │ ├── r128_lock.c │ │ │ │ │ │ ├── r128_lock.h │ │ │ │ │ │ ├── r128_screen.c │ │ │ │ │ │ ├── r128_screen.h │ │ │ │ │ │ ├── r128_span.c │ │ │ │ │ │ ├── r128_span.h │ │ │ │ │ │ ├── r128_state.c │ │ │ │ │ │ ├── r128_state.h │ │ │ │ │ │ ├── r128_tex.c │ │ │ │ │ │ ├── r128_tex.h │ │ │ │ │ │ ├── r128_texmem.c │ │ │ │ │ │ ├── r128_texobj.h │ │ │ │ │ │ ├── r128_texstate.c │ │ │ │ │ │ ├── r128_tris.c │ │ │ │ │ │ ├── r128_tris.h │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── pci_ids.h │ │ │ │ │ │ │ ├── r128.h │ │ │ │ │ │ │ ├── r128_dri.c │ │ │ │ │ │ │ ├── r128_dri.h │ │ │ │ │ │ │ ├── r128_macros.h │ │ │ │ │ │ │ ├── r128_reg.h │ │ │ │ │ │ │ └── r128_version.h │ │ │ │ │ ├── r200 │ │ │ │ │ │ ├── Doxyfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── r200_cmdbuf.c │ │ │ │ │ │ ├── r200_context.c │ │ │ │ │ │ ├── r200_context.h │ │ │ │ │ │ ├── r200_fragshader.c │ │ │ │ │ │ ├── r200_ioctl.c │ │ │ │ │ │ ├── r200_ioctl.h │ │ │ │ │ │ ├── r200_lock.c │ │ │ │ │ │ ├── r200_lock.h │ │ │ │ │ │ ├── r200_maos.c │ │ │ │ │ │ ├── r200_maos.h │ │ │ │ │ │ ├── r200_maos_arrays.c │ │ │ │ │ │ ├── r200_pixel.c │ │ │ │ │ │ ├── r200_pixel.h │ │ │ │ │ │ ├── r200_reg.h │ │ │ │ │ │ ├── r200_sanity.c │ │ │ │ │ │ ├── r200_sanity.h │ │ │ │ │ │ ├── r200_span.c │ │ │ │ │ │ ├── r200_span.h │ │ │ │ │ │ ├── r200_state.c │ │ │ │ │ │ ├── r200_state.h │ │ │ │ │ │ ├── r200_state_init.c │ │ │ │ │ │ ├── r200_swtcl.c │ │ │ │ │ │ ├── r200_swtcl.h │ │ │ │ │ │ ├── r200_tcl.c │ │ │ │ │ │ ├── r200_tcl.h │ │ │ │ │ │ ├── r200_tex.c │ │ │ │ │ │ ├── r200_tex.h │ │ │ │ │ │ ├── r200_texmem.c │ │ │ │ │ │ ├── r200_texstate.c │ │ │ │ │ │ ├── r200_vertprog.c │ │ │ │ │ │ └── r200_vertprog.h │ │ │ │ │ ├── r300 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── r300_cmdbuf.c │ │ │ │ │ │ ├── r300_cmdbuf.h │ │ │ │ │ │ ├── r300_context.c │ │ │ │ │ │ ├── r300_context.h │ │ │ │ │ │ ├── r300_emit.c │ │ │ │ │ │ ├── r300_emit.h │ │ │ │ │ │ ├── r300_fragprog.c │ │ │ │ │ │ ├── r300_fragprog.h │ │ │ │ │ │ ├── r300_fragprog_emit.c │ │ │ │ │ │ ├── r300_fragprog_swizzle.c │ │ │ │ │ │ ├── r300_fragprog_swizzle.h │ │ │ │ │ │ ├── r300_ioctl.c │ │ │ │ │ │ ├── r300_ioctl.h │ │ │ │ │ │ ├── r300_mem.c │ │ │ │ │ │ ├── r300_mem.h │ │ │ │ │ │ ├── r300_reg.h │ │ │ │ │ │ ├── r300_render.c │ │ │ │ │ │ ├── r300_shader.c │ │ │ │ │ │ ├── r300_state.c │ │ │ │ │ │ ├── r300_state.h │ │ │ │ │ │ ├── r300_swtcl.c │ │ │ │ │ │ ├── r300_swtcl.h │ │ │ │ │ │ ├── r300_tex.c │ │ │ │ │ │ ├── r300_tex.h │ │ │ │ │ │ ├── r300_texmem.c │ │ │ │ │ │ ├── r300_texstate.c │ │ │ │ │ │ ├── r300_vertprog.c │ │ │ │ │ │ ├── r300_vertprog.h │ │ │ │ │ │ ├── r500_fragprog.c │ │ │ │ │ │ ├── r500_fragprog.h │ │ │ │ │ │ ├── r500_fragprog_emit.c │ │ │ │ │ │ ├── radeon_context.c │ │ │ │ │ │ ├── radeon_context.h │ │ │ │ │ │ ├── radeon_ioctl.c │ │ │ │ │ │ ├── radeon_ioctl.h │ │ │ │ │ │ ├── radeon_lock.c │ │ │ │ │ │ ├── radeon_lock.h │ │ │ │ │ │ ├── radeon_nqssadce.c │ │ │ │ │ │ ├── radeon_nqssadce.h │ │ │ │ │ │ ├── radeon_program.c │ │ │ │ │ │ ├── radeon_program.h │ │ │ │ │ │ ├── radeon_program_alu.c │ │ │ │ │ │ ├── radeon_program_alu.h │ │ │ │ │ │ ├── radeon_program_pair.c │ │ │ │ │ │ ├── radeon_program_pair.h │ │ │ │ │ │ ├── radeon_span.c │ │ │ │ │ │ ├── radeon_state.c │ │ │ │ │ │ └── radeon_state.h │ │ │ │ │ ├── radeon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── radeon_chipset.h │ │ │ │ │ │ ├── radeon_compat.c │ │ │ │ │ │ ├── radeon_context.c │ │ │ │ │ │ ├── radeon_context.h │ │ │ │ │ │ ├── radeon_ioctl.c │ │ │ │ │ │ ├── radeon_ioctl.h │ │ │ │ │ │ ├── radeon_lighting.c │ │ │ │ │ │ ├── radeon_lock.c │ │ │ │ │ │ ├── radeon_lock.h │ │ │ │ │ │ ├── radeon_maos.c │ │ │ │ │ │ ├── radeon_maos.h │ │ │ │ │ │ ├── radeon_maos_arrays.c │ │ │ │ │ │ ├── radeon_maos_vbtmp.h │ │ │ │ │ │ ├── radeon_maos_verts.c │ │ │ │ │ │ ├── radeon_sanity.c │ │ │ │ │ │ ├── radeon_sanity.h │ │ │ │ │ │ ├── radeon_screen.c │ │ │ │ │ │ ├── radeon_screen.h │ │ │ │ │ │ ├── radeon_span.c │ │ │ │ │ │ ├── radeon_span.h │ │ │ │ │ │ ├── radeon_state.c │ │ │ │ │ │ ├── radeon_state.h │ │ │ │ │ │ ├── radeon_state_init.c │ │ │ │ │ │ ├── radeon_swtcl.c │ │ │ │ │ │ ├── radeon_swtcl.h │ │ │ │ │ │ ├── radeon_tcl.c │ │ │ │ │ │ ├── radeon_tcl.h │ │ │ │ │ │ ├── radeon_tex.c │ │ │ │ │ │ ├── radeon_tex.h │ │ │ │ │ │ ├── radeon_texmem.c │ │ │ │ │ │ ├── radeon_texstate.c │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── radeon.h │ │ │ │ │ │ │ ├── radeon_dri.c │ │ │ │ │ │ │ ├── radeon_dri.h │ │ │ │ │ │ │ ├── radeon_egl.c │ │ │ │ │ │ │ ├── radeon_macros.h │ │ │ │ │ │ │ └── radeon_reg.h │ │ │ │ │ ├── s3v │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── s3v_common.h │ │ │ │ │ │ ├── s3v_context.c │ │ │ │ │ │ ├── s3v_context.h │ │ │ │ │ │ ├── s3v_dd.c │ │ │ │ │ │ ├── s3v_dri.h │ │ │ │ │ │ ├── s3v_inithw.c │ │ │ │ │ │ ├── s3v_lock.c │ │ │ │ │ │ ├── s3v_lock.h │ │ │ │ │ │ ├── s3v_macros.h │ │ │ │ │ │ ├── s3v_regs.h │ │ │ │ │ │ ├── s3v_render.c │ │ │ │ │ │ ├── s3v_screen.c │ │ │ │ │ │ ├── s3v_screen.h │ │ │ │ │ │ ├── s3v_span.c │ │ │ │ │ │ ├── s3v_state.c │ │ │ │ │ │ ├── s3v_tex.c │ │ │ │ │ │ ├── s3v_tex.h │ │ │ │ │ │ ├── s3v_texmem.c │ │ │ │ │ │ ├── s3v_texstate.c │ │ │ │ │ │ ├── s3v_tris.c │ │ │ │ │ │ ├── s3v_tris.h │ │ │ │ │ │ ├── s3v_tritmp.h │ │ │ │ │ │ ├── s3v_vb.c │ │ │ │ │ │ ├── s3v_vb.h │ │ │ │ │ │ ├── s3v_xmesa.c │ │ │ │ │ │ └── s3virgetri.h │ │ │ │ │ ├── savage │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── savage_3d_reg.h │ │ │ │ │ │ ├── savage_bci.h │ │ │ │ │ │ ├── savage_init.h │ │ │ │ │ │ ├── savage_xmesa.c │ │ │ │ │ │ ├── savagecontext.h │ │ │ │ │ │ ├── savagedd.c │ │ │ │ │ │ ├── savagedd.h │ │ │ │ │ │ ├── savageioctl.c │ │ │ │ │ │ ├── savageioctl.h │ │ │ │ │ │ ├── savagerender.c │ │ │ │ │ │ ├── savagespan.c │ │ │ │ │ │ ├── savagespan.h │ │ │ │ │ │ ├── savagestate.c │ │ │ │ │ │ ├── savagestate.h │ │ │ │ │ │ ├── savagetex.c │ │ │ │ │ │ ├── savagetex.h │ │ │ │ │ │ ├── savagetris.c │ │ │ │ │ │ ├── savagetris.h │ │ │ │ │ │ └── server │ │ │ │ │ │ │ └── savage_dri.h │ │ │ │ │ ├── sis │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ ├── sis_common.h │ │ │ │ │ │ │ └── sis_dri.h │ │ │ │ │ │ ├── sis6326_clear.c │ │ │ │ │ │ ├── sis6326_reg.h │ │ │ │ │ │ ├── sis6326_state.c │ │ │ │ │ │ ├── sis_alloc.c │ │ │ │ │ │ ├── sis_alloc.h │ │ │ │ │ │ ├── sis_clear.c │ │ │ │ │ │ ├── sis_context.c │ │ │ │ │ │ ├── sis_context.h │ │ │ │ │ │ ├── sis_dd.c │ │ │ │ │ │ ├── sis_dd.h │ │ │ │ │ │ ├── sis_fog.c │ │ │ │ │ │ ├── sis_lock.c │ │ │ │ │ │ ├── sis_lock.h │ │ │ │ │ │ ├── sis_reg.h │ │ │ │ │ │ ├── sis_screen.c │ │ │ │ │ │ ├── sis_screen.h │ │ │ │ │ │ ├── sis_span.c │ │ │ │ │ │ ├── sis_span.h │ │ │ │ │ │ ├── sis_state.c │ │ │ │ │ │ ├── sis_state.h │ │ │ │ │ │ ├── sis_stencil.c │ │ │ │ │ │ ├── sis_stencil.h │ │ │ │ │ │ ├── sis_tex.c │ │ │ │ │ │ ├── sis_tex.h │ │ │ │ │ │ ├── sis_texstate.c │ │ │ │ │ │ ├── sis_tris.c │ │ │ │ │ │ ├── sis_tris.h │ │ │ │ │ │ └── sis_tritmp.h │ │ │ │ │ ├── swrast │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── swrast.c │ │ │ │ │ │ ├── swrast_priv.h │ │ │ │ │ │ ├── swrast_span.c │ │ │ │ │ │ └── swrast_spantemp.h │ │ │ │ │ ├── tdfx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dri_glide.h │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ ├── tdfx_dri.c │ │ │ │ │ │ │ └── tdfx_dri.h │ │ │ │ │ │ ├── tdfx_context.c │ │ │ │ │ │ ├── tdfx_context.h │ │ │ │ │ │ ├── tdfx_dd.c │ │ │ │ │ │ ├── tdfx_dd.h │ │ │ │ │ │ ├── tdfx_glide.h │ │ │ │ │ │ ├── tdfx_lock.c │ │ │ │ │ │ ├── tdfx_lock.h │ │ │ │ │ │ ├── tdfx_pixels.c │ │ │ │ │ │ ├── tdfx_pixels.h │ │ │ │ │ │ ├── tdfx_render.c │ │ │ │ │ │ ├── tdfx_render.h │ │ │ │ │ │ ├── tdfx_screen.c │ │ │ │ │ │ ├── tdfx_screen.h │ │ │ │ │ │ ├── tdfx_span.c │ │ │ │ │ │ ├── tdfx_span.h │ │ │ │ │ │ ├── tdfx_state.c │ │ │ │ │ │ ├── tdfx_state.h │ │ │ │ │ │ ├── tdfx_tex.c │ │ │ │ │ │ ├── tdfx_tex.h │ │ │ │ │ │ ├── tdfx_texman.c │ │ │ │ │ │ ├── tdfx_texman.h │ │ │ │ │ │ ├── tdfx_texstate.c │ │ │ │ │ │ ├── tdfx_texstate.h │ │ │ │ │ │ ├── tdfx_tris.c │ │ │ │ │ │ ├── tdfx_tris.h │ │ │ │ │ │ ├── tdfx_vb.c │ │ │ │ │ │ ├── tdfx_vb.h │ │ │ │ │ │ └── tdfx_vbtmp.h │ │ │ │ │ ├── trident │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trident_context.c │ │ │ │ │ │ ├── trident_context.h │ │ │ │ │ │ ├── trident_dd.c │ │ │ │ │ │ ├── trident_dri.h │ │ │ │ │ │ ├── trident_lock.h │ │ │ │ │ │ ├── trident_state.c │ │ │ │ │ │ ├── trident_tris.c │ │ │ │ │ │ └── trident_vb.c │ │ │ │ │ └── unichrome │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── server │ │ │ │ │ │ ├── via.h │ │ │ │ │ │ ├── via_dri.c │ │ │ │ │ │ ├── via_dri.h │ │ │ │ │ │ ├── via_driver.h │ │ │ │ │ │ ├── via_priv.h │ │ │ │ │ │ └── via_regs.h │ │ │ │ │ │ ├── via_3d_reg.h │ │ │ │ │ │ ├── via_context.c │ │ │ │ │ │ ├── via_context.h │ │ │ │ │ │ ├── via_drmclient.h │ │ │ │ │ │ ├── via_fb.c │ │ │ │ │ │ ├── via_fb.h │ │ │ │ │ │ ├── via_ioctl.c │ │ │ │ │ │ ├── via_ioctl.h │ │ │ │ │ │ ├── via_memcpy.c │ │ │ │ │ │ ├── via_render.c │ │ │ │ │ │ ├── via_screen.c │ │ │ │ │ │ ├── via_screen.h │ │ │ │ │ │ ├── via_span.c │ │ │ │ │ │ ├── via_span.h │ │ │ │ │ │ ├── via_state.c │ │ │ │ │ │ ├── via_state.h │ │ │ │ │ │ ├── via_tex.c │ │ │ │ │ │ ├── via_tex.h │ │ │ │ │ │ ├── via_texcombine.c │ │ │ │ │ │ ├── via_tris.c │ │ │ │ │ │ └── via_tris.h │ │ │ │ ├── fbdev │ │ │ │ │ ├── Makefile │ │ │ │ │ └── glfbdev.c │ │ │ │ ├── ggi │ │ │ │ │ ├── default │ │ │ │ │ │ ├── genkgi.conf.in │ │ │ │ │ │ ├── genkgi_mode.c │ │ │ │ │ │ ├── genkgi_visual.c │ │ │ │ │ │ ├── linear.c │ │ │ │ │ │ ├── linear_15.c │ │ │ │ │ │ ├── linear_16.c │ │ │ │ │ │ ├── linear_24.c │ │ │ │ │ │ ├── linear_32.c │ │ │ │ │ │ ├── linear_8.c │ │ │ │ │ │ └── stubs.c │ │ │ │ │ ├── display │ │ │ │ │ │ ├── fbdev.conf.in │ │ │ │ │ │ ├── fbdev_mode.c │ │ │ │ │ │ └── fbdev_visual.c │ │ │ │ │ ├── ggimesa.c │ │ │ │ │ ├── ggimesa.conf.in │ │ │ │ │ └── include │ │ │ │ │ │ └── ggi │ │ │ │ │ │ └── mesa │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── display_fbdev.h │ │ │ │ │ │ ├── ggimesa.h │ │ │ │ │ │ └── ggimesa_int.h │ │ │ │ ├── glide │ │ │ │ │ ├── fxapi.c │ │ │ │ │ ├── fxdd.c │ │ │ │ │ ├── fxddspan.c │ │ │ │ │ ├── fxddtex.c │ │ │ │ │ ├── fxdrv.h │ │ │ │ │ ├── fxg.c │ │ │ │ │ ├── fxg.h │ │ │ │ │ ├── fxglidew.c │ │ │ │ │ ├── fxglidew.h │ │ │ │ │ ├── fxsetup.c │ │ │ │ │ ├── fxsetup.h │ │ │ │ │ ├── fxtexman.c │ │ │ │ │ ├── fxtris.c │ │ │ │ │ ├── fxvb.c │ │ │ │ │ └── fxvbtmp.h │ │ │ │ ├── osmesa │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── osmesa.c │ │ │ │ │ └── osmesa.def │ │ │ │ ├── svga │ │ │ │ │ ├── svgamesa.c │ │ │ │ │ ├── svgamesa15.c │ │ │ │ │ ├── svgamesa15.h │ │ │ │ │ ├── svgamesa16.c │ │ │ │ │ ├── svgamesa16.h │ │ │ │ │ ├── svgamesa24.c │ │ │ │ │ ├── svgamesa24.h │ │ │ │ │ ├── svgamesa32.c │ │ │ │ │ ├── svgamesa32.h │ │ │ │ │ ├── svgamesa8.c │ │ │ │ │ ├── svgamesa8.h │ │ │ │ │ └── svgapix.h │ │ │ │ ├── windows │ │ │ │ │ ├── fx │ │ │ │ │ │ ├── fxopengl.def │ │ │ │ │ │ └── fxwgl.c │ │ │ │ │ ├── gdi │ │ │ │ │ │ ├── colors.h │ │ │ │ │ │ ├── mesa.def │ │ │ │ │ │ ├── wgl.c │ │ │ │ │ │ ├── wmesa.c │ │ │ │ │ │ └── wmesadef.h │ │ │ │ │ ├── gldirect │ │ │ │ │ │ ├── ddlog.c │ │ │ │ │ │ ├── ddlog.h │ │ │ │ │ │ ├── dglcontext.c │ │ │ │ │ │ ├── dglcontext.h │ │ │ │ │ │ ├── dglglobals.c │ │ │ │ │ │ ├── dglglobals.h │ │ │ │ │ │ ├── dglmacros.h │ │ │ │ │ │ ├── dglpf.c │ │ │ │ │ │ ├── dglpf.h │ │ │ │ │ │ ├── dglwgl.c │ │ │ │ │ │ ├── dglwgl.h │ │ │ │ │ │ ├── dll_main.c │ │ │ │ │ │ ├── dllmain.h │ │ │ │ │ │ ├── gld_debug_clip.c │ │ │ │ │ │ ├── gld_debug_norm.c │ │ │ │ │ │ ├── gld_debug_xform.c │ │ │ │ │ │ ├── gld_dispatch.c │ │ │ │ │ │ ├── gld_driver.c │ │ │ │ │ │ ├── gld_driver.h │ │ │ │ │ │ ├── gldlame8.c │ │ │ │ │ │ ├── opengl32.def │ │ │ │ │ │ └── pixpack.h │ │ │ │ │ └── icd │ │ │ │ │ │ ├── icd.c │ │ │ │ │ │ ├── icdlist.h │ │ │ │ │ │ └── mesa.def │ │ │ │ └── x11 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── fakeglx.c │ │ │ │ │ ├── glxapi.c │ │ │ │ │ ├── glxapi.h │ │ │ │ │ ├── glxheader.h │ │ │ │ │ ├── realglx.c │ │ │ │ │ ├── realglx.h │ │ │ │ │ ├── xfonts.c │ │ │ │ │ ├── xfonts.h │ │ │ │ │ ├── xm_api.c │ │ │ │ │ ├── xm_buffer.c │ │ │ │ │ ├── xm_dd.c │ │ │ │ │ ├── xm_glide.c │ │ │ │ │ ├── xm_glide.h │ │ │ │ │ ├── xm_image.c │ │ │ │ │ ├── xm_image.h │ │ │ │ │ ├── xm_line.c │ │ │ │ │ ├── xm_span.c │ │ │ │ │ ├── xm_tri.c │ │ │ │ │ └── xmesaP.h │ │ │ │ ├── gl.pc.in │ │ │ │ ├── glapi │ │ │ │ ├── descrip.mms │ │ │ │ ├── dispatch.h │ │ │ │ ├── glapi.c │ │ │ │ ├── glapi.h │ │ │ │ ├── glapioffsets.h │ │ │ │ ├── glapitable.h │ │ │ │ ├── glapitemp.h │ │ │ │ ├── glprocs.h │ │ │ │ ├── glthread.c │ │ │ │ └── glthread.h │ │ │ │ ├── main │ │ │ │ ├── accum.c │ │ │ │ ├── accum.h │ │ │ │ ├── api_arrayelt.c │ │ │ │ ├── api_arrayelt.h │ │ │ │ ├── api_eval.h │ │ │ │ ├── api_loopback.c │ │ │ │ ├── api_loopback.h │ │ │ │ ├── api_noop.c │ │ │ │ ├── api_noop.h │ │ │ │ ├── api_validate.c │ │ │ │ ├── api_validate.h │ │ │ │ ├── arrayobj.c │ │ │ │ ├── arrayobj.h │ │ │ │ ├── attrib.c │ │ │ │ ├── attrib.h │ │ │ │ ├── bitset.h │ │ │ │ ├── blend.c │ │ │ │ ├── blend.h │ │ │ │ ├── bufferobj.c │ │ │ │ ├── bufferobj.h │ │ │ │ ├── buffers.c │ │ │ │ ├── buffers.h │ │ │ │ ├── clip.c │ │ │ │ ├── clip.h │ │ │ │ ├── colormac.h │ │ │ │ ├── colortab.c │ │ │ │ ├── colortab.h │ │ │ │ ├── config.h │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── convolve.c │ │ │ │ ├── convolve.h │ │ │ │ ├── dd.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── depth.c │ │ │ │ ├── depth.h │ │ │ │ ├── depthstencil.c │ │ │ │ ├── depthstencil.h │ │ │ │ ├── descrip.mms │ │ │ │ ├── dispatch.c │ │ │ │ ├── dlist.c │ │ │ │ ├── dlist.h │ │ │ │ ├── drawpix.c │ │ │ │ ├── drawpix.h │ │ │ │ ├── enable.c │ │ │ │ ├── enable.h │ │ │ │ ├── enums.c │ │ │ │ ├── enums.h │ │ │ │ ├── eval.c │ │ │ │ ├── eval.h │ │ │ │ ├── execmem.c │ │ │ │ ├── extensions.c │ │ │ │ ├── extensions.h │ │ │ │ ├── fbobject.c │ │ │ │ ├── fbobject.h │ │ │ │ ├── feedback.c │ │ │ │ ├── feedback.h │ │ │ │ ├── fog.c │ │ │ │ ├── fog.h │ │ │ │ ├── framebuffer.c │ │ │ │ ├── framebuffer.h │ │ │ │ ├── get.c │ │ │ │ ├── get.h │ │ │ │ ├── getstring.c │ │ │ │ ├── glheader.h │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── hint.c │ │ │ │ ├── hint.h │ │ │ │ ├── histogram.c │ │ │ │ ├── histogram.h │ │ │ │ ├── image.c │ │ │ │ ├── image.h │ │ │ │ ├── imports.c │ │ │ │ ├── imports.h │ │ │ │ ├── light.c │ │ │ │ ├── light.h │ │ │ │ ├── lines.c │ │ │ │ ├── lines.h │ │ │ │ ├── macros.h │ │ │ │ ├── matrix.c │ │ │ │ ├── matrix.h │ │ │ │ ├── mipmap.c │ │ │ │ ├── mipmap.h │ │ │ │ ├── mm.c │ │ │ │ ├── mm.h │ │ │ │ ├── mtypes.h │ │ │ │ ├── pixel.c │ │ │ │ ├── pixel.h │ │ │ │ ├── points.c │ │ │ │ ├── points.h │ │ │ │ ├── polygon.c │ │ │ │ ├── polygon.h │ │ │ │ ├── queryobj.c │ │ │ │ ├── queryobj.h │ │ │ │ ├── rastpos.c │ │ │ │ ├── rastpos.h │ │ │ │ ├── rbadaptors.c │ │ │ │ ├── rbadaptors.h │ │ │ │ ├── renderbuffer.c │ │ │ │ ├── renderbuffer.h │ │ │ │ ├── shaders.c │ │ │ │ ├── shaders.h │ │ │ │ ├── simple_list.h │ │ │ │ ├── state.c │ │ │ │ ├── state.h │ │ │ │ ├── stencil.c │ │ │ │ ├── stencil.h │ │ │ │ ├── texcompress.c │ │ │ │ ├── texcompress.h │ │ │ │ ├── texcompress_fxt1.c │ │ │ │ ├── texcompress_s3tc.c │ │ │ │ ├── texenvprogram.c │ │ │ │ ├── texenvprogram.h │ │ │ │ ├── texformat.c │ │ │ │ ├── texformat.h │ │ │ │ ├── texformat_tmp.h │ │ │ │ ├── teximage.c │ │ │ │ ├── teximage.h │ │ │ │ ├── texobj.c │ │ │ │ ├── texobj.h │ │ │ │ ├── texrender.c │ │ │ │ ├── texrender.h │ │ │ │ ├── texstate.c │ │ │ │ ├── texstate.h │ │ │ │ ├── texstore.c │ │ │ │ ├── texstore.h │ │ │ │ ├── varray.c │ │ │ │ ├── varray.h │ │ │ │ ├── version.h │ │ │ │ ├── vsnprintf.c │ │ │ │ ├── vtxfmt.c │ │ │ │ ├── vtxfmt.h │ │ │ │ └── vtxfmt_tmp.h │ │ │ │ ├── math │ │ │ │ ├── descrip.mms │ │ │ │ ├── m_clip_tmp.h │ │ │ │ ├── m_copy_tmp.h │ │ │ │ ├── m_debug.h │ │ │ │ ├── m_debug_clip.c │ │ │ │ ├── m_debug_norm.c │ │ │ │ ├── m_debug_util.h │ │ │ │ ├── m_debug_xform.c │ │ │ │ ├── m_dotprod_tmp.h │ │ │ │ ├── m_eval.c │ │ │ │ ├── m_eval.h │ │ │ │ ├── m_matrix.c │ │ │ │ ├── m_matrix.h │ │ │ │ ├── m_norm_tmp.h │ │ │ │ ├── m_trans_tmp.h │ │ │ │ ├── m_translate.c │ │ │ │ ├── m_translate.h │ │ │ │ ├── m_vector.c │ │ │ │ ├── m_vector.h │ │ │ │ ├── m_xform.c │ │ │ │ ├── m_xform.h │ │ │ │ ├── m_xform_tmp.h │ │ │ │ └── mathmod.h │ │ │ │ ├── ppc │ │ │ │ ├── common_ppc.c │ │ │ │ └── common_ppc_features.h │ │ │ │ ├── shader │ │ │ │ ├── arbprogparse.c │ │ │ │ ├── arbprogparse.h │ │ │ │ ├── arbprogram.c │ │ │ │ ├── arbprogram.h │ │ │ │ ├── arbprogram_syn.h │ │ │ │ ├── atifragshader.c │ │ │ │ ├── atifragshader.h │ │ │ │ ├── descrip.mms │ │ │ │ ├── grammar │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── grammar.c │ │ │ │ │ ├── grammar.h │ │ │ │ │ ├── grammar_crt.c │ │ │ │ │ ├── grammar_crt.h │ │ │ │ │ ├── grammar_mesa.c │ │ │ │ │ ├── grammar_mesa.h │ │ │ │ │ └── grammar_syn.h │ │ │ │ ├── nvfragparse.c │ │ │ │ ├── nvfragparse.h │ │ │ │ ├── nvprogram.c │ │ │ │ ├── nvprogram.h │ │ │ │ ├── nvvertparse.c │ │ │ │ ├── nvvertparse.h │ │ │ │ ├── prog_debug.c │ │ │ │ ├── prog_debug.h │ │ │ │ ├── prog_execute.c │ │ │ │ ├── prog_execute.h │ │ │ │ ├── prog_instruction.c │ │ │ │ ├── prog_instruction.h │ │ │ │ ├── prog_parameter.c │ │ │ │ ├── prog_parameter.h │ │ │ │ ├── prog_print.c │ │ │ │ ├── prog_print.h │ │ │ │ ├── prog_statevars.c │ │ │ │ ├── prog_statevars.h │ │ │ │ ├── prog_uniform.c │ │ │ │ ├── prog_uniform.h │ │ │ │ ├── program.c │ │ │ │ ├── program.h │ │ │ │ ├── programopt.c │ │ │ │ ├── programopt.h │ │ │ │ ├── shader_api.c │ │ │ │ ├── shader_api.h │ │ │ │ └── slang │ │ │ │ │ ├── descrip.mms │ │ │ │ │ ├── library │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── gc_to_bin.c │ │ │ │ │ ├── slang_120_core.gc │ │ │ │ │ ├── slang_120_core_gc.h │ │ │ │ │ ├── slang_builtin_120_common.gc │ │ │ │ │ ├── slang_builtin_120_common_gc.h │ │ │ │ │ ├── slang_builtin_120_fragment.gc │ │ │ │ │ ├── slang_builtin_120_fragment_gc.h │ │ │ │ │ ├── slang_common_builtin.gc │ │ │ │ │ ├── slang_common_builtin_gc.h │ │ │ │ │ ├── slang_core.gc │ │ │ │ │ ├── slang_core_gc.h │ │ │ │ │ ├── slang_fragment_builtin.gc │ │ │ │ │ ├── slang_fragment_builtin_gc.h │ │ │ │ │ ├── slang_pp_directives.syn │ │ │ │ │ ├── slang_pp_directives_syn.h │ │ │ │ │ ├── slang_pp_expression.syn │ │ │ │ │ ├── slang_pp_expression_syn.h │ │ │ │ │ ├── slang_pp_version.syn │ │ │ │ │ ├── slang_pp_version_syn.h │ │ │ │ │ ├── slang_shader.syn │ │ │ │ │ ├── slang_shader_syn.h │ │ │ │ │ ├── slang_version.syn │ │ │ │ │ ├── slang_version_syn.h │ │ │ │ │ ├── slang_vertex_builtin.gc │ │ │ │ │ ├── slang_vertex_builtin_gc.h │ │ │ │ │ └── syn_to_c.c │ │ │ │ │ ├── slang_builtin.c │ │ │ │ │ ├── slang_builtin.h │ │ │ │ │ ├── slang_codegen.c │ │ │ │ │ ├── slang_codegen.h │ │ │ │ │ ├── slang_compile.c │ │ │ │ │ ├── slang_compile.h │ │ │ │ │ ├── slang_compile_function.c │ │ │ │ │ ├── slang_compile_function.h │ │ │ │ │ ├── slang_compile_operation.c │ │ │ │ │ ├── slang_compile_operation.h │ │ │ │ │ ├── slang_compile_struct.c │ │ │ │ │ ├── slang_compile_struct.h │ │ │ │ │ ├── slang_compile_variable.c │ │ │ │ │ ├── slang_compile_variable.h │ │ │ │ │ ├── slang_emit.c │ │ │ │ │ ├── slang_emit.h │ │ │ │ │ ├── slang_ir.c │ │ │ │ │ ├── slang_ir.h │ │ │ │ │ ├── slang_label.c │ │ │ │ │ ├── slang_label.h │ │ │ │ │ ├── slang_library_noise.c │ │ │ │ │ ├── slang_library_noise.h │ │ │ │ │ ├── slang_link.c │ │ │ │ │ ├── slang_link.h │ │ │ │ │ ├── slang_log.c │ │ │ │ │ ├── slang_log.h │ │ │ │ │ ├── slang_mem.c │ │ │ │ │ ├── slang_mem.h │ │ │ │ │ ├── slang_preprocess.c │ │ │ │ │ ├── slang_preprocess.h │ │ │ │ │ ├── slang_print.c │ │ │ │ │ ├── slang_print.h │ │ │ │ │ ├── slang_simplify.c │ │ │ │ │ ├── slang_simplify.h │ │ │ │ │ ├── slang_storage.c │ │ │ │ │ ├── slang_storage.h │ │ │ │ │ ├── slang_typeinfo.c │ │ │ │ │ ├── slang_typeinfo.h │ │ │ │ │ ├── slang_utility.c │ │ │ │ │ ├── slang_utility.h │ │ │ │ │ ├── slang_vartable.c │ │ │ │ │ └── slang_vartable.h │ │ │ │ ├── sources │ │ │ │ ├── sparc │ │ │ │ ├── clip.S │ │ │ │ ├── glapi_sparc.S │ │ │ │ ├── norm.S │ │ │ │ ├── sparc.c │ │ │ │ ├── sparc.h │ │ │ │ ├── sparc_matrix.h │ │ │ │ └── xform.S │ │ │ │ ├── swrast │ │ │ │ ├── descrip.mms │ │ │ │ ├── s_aaline.c │ │ │ │ ├── s_aaline.h │ │ │ │ ├── s_aalinetemp.h │ │ │ │ ├── s_aatriangle.c │ │ │ │ ├── s_aatriangle.h │ │ │ │ ├── s_aatritemp.h │ │ │ │ ├── s_accum.c │ │ │ │ ├── s_accum.h │ │ │ │ ├── s_alpha.c │ │ │ │ ├── s_alpha.h │ │ │ │ ├── s_atifragshader.c │ │ │ │ ├── s_atifragshader.h │ │ │ │ ├── s_bitmap.c │ │ │ │ ├── s_blend.c │ │ │ │ ├── s_blend.h │ │ │ │ ├── s_blit.c │ │ │ │ ├── s_buffers.c │ │ │ │ ├── s_context.c │ │ │ │ ├── s_context.h │ │ │ │ ├── s_copypix.c │ │ │ │ ├── s_depth.c │ │ │ │ ├── s_depth.h │ │ │ │ ├── s_drawpix.c │ │ │ │ ├── s_drawpix.h │ │ │ │ ├── s_feedback.c │ │ │ │ ├── s_feedback.h │ │ │ │ ├── s_fog.c │ │ │ │ ├── s_fog.h │ │ │ │ ├── s_fragprog.c │ │ │ │ ├── s_fragprog.h │ │ │ │ ├── s_imaging.c │ │ │ │ ├── s_lines.c │ │ │ │ ├── s_lines.h │ │ │ │ ├── s_linetemp.h │ │ │ │ ├── s_logic.c │ │ │ │ ├── s_logic.h │ │ │ │ ├── s_masking.c │ │ │ │ ├── s_masking.h │ │ │ │ ├── s_points.c │ │ │ │ ├── s_points.h │ │ │ │ ├── s_readpix.c │ │ │ │ ├── s_span.c │ │ │ │ ├── s_span.h │ │ │ │ ├── s_spantemp.h │ │ │ │ ├── s_stencil.c │ │ │ │ ├── s_stencil.h │ │ │ │ ├── s_texcombine.c │ │ │ │ ├── s_texcombine.h │ │ │ │ ├── s_texfilter.c │ │ │ │ ├── s_texfilter.h │ │ │ │ ├── s_texstore.c │ │ │ │ ├── s_triangle.c │ │ │ │ ├── s_triangle.h │ │ │ │ ├── s_trispan.h │ │ │ │ ├── s_tritemp.h │ │ │ │ ├── s_zoom.c │ │ │ │ ├── s_zoom.h │ │ │ │ └── swrast.h │ │ │ │ ├── swrast_setup │ │ │ │ ├── descrip.mms │ │ │ │ ├── ss_context.c │ │ │ │ ├── ss_context.h │ │ │ │ ├── ss_triangle.c │ │ │ │ ├── ss_triangle.h │ │ │ │ ├── ss_tritmp.h │ │ │ │ ├── ss_vb.h │ │ │ │ └── swrast_setup.h │ │ │ │ ├── tnl │ │ │ │ ├── descrip.mms │ │ │ │ ├── t_context.c │ │ │ │ ├── t_context.h │ │ │ │ ├── t_draw.c │ │ │ │ ├── t_pipeline.c │ │ │ │ ├── t_pipeline.h │ │ │ │ ├── t_vb_cliptmp.h │ │ │ │ ├── t_vb_cull.c │ │ │ │ ├── t_vb_fog.c │ │ │ │ ├── t_vb_light.c │ │ │ │ ├── t_vb_lighttmp.h │ │ │ │ ├── t_vb_normals.c │ │ │ │ ├── t_vb_points.c │ │ │ │ ├── t_vb_program.c │ │ │ │ ├── t_vb_render.c │ │ │ │ ├── t_vb_rendertmp.h │ │ │ │ ├── t_vb_texgen.c │ │ │ │ ├── t_vb_texmat.c │ │ │ │ ├── t_vb_vertex.c │ │ │ │ ├── t_vertex.c │ │ │ │ ├── t_vertex.h │ │ │ │ ├── t_vertex_generic.c │ │ │ │ ├── t_vertex_sse.c │ │ │ │ ├── t_vp_build.c │ │ │ │ ├── t_vp_build.h │ │ │ │ └── tnl.h │ │ │ │ ├── tnl_dd │ │ │ │ ├── imm │ │ │ │ │ ├── NOTES.imm │ │ │ │ │ ├── t_dd_imm_capi.h │ │ │ │ │ ├── t_dd_imm_napi.h │ │ │ │ │ ├── t_dd_imm_primtmp.h │ │ │ │ │ ├── t_dd_imm_tapi.h │ │ │ │ │ ├── t_dd_imm_vapi.h │ │ │ │ │ ├── t_dd_imm_vb.c │ │ │ │ │ └── t_dd_imm_vbtmp.h │ │ │ │ ├── t_dd.c │ │ │ │ ├── t_dd_dmatmp.h │ │ │ │ ├── t_dd_dmatmp2.h │ │ │ │ ├── t_dd_rendertmp.h │ │ │ │ ├── t_dd_triemit.h │ │ │ │ ├── t_dd_tritmp.h │ │ │ │ ├── t_dd_unfilled.h │ │ │ │ ├── t_dd_vb.c │ │ │ │ ├── t_dd_vbtmp.h │ │ │ │ └── t_dd_vertex.h │ │ │ │ ├── vbo │ │ │ │ ├── descrip.mms │ │ │ │ ├── vbo.h │ │ │ │ ├── vbo_attrib.h │ │ │ │ ├── vbo_attrib_tmp.h │ │ │ │ ├── vbo_context.c │ │ │ │ ├── vbo_context.h │ │ │ │ ├── vbo_exec.c │ │ │ │ ├── vbo_exec.h │ │ │ │ ├── vbo_exec_api.c │ │ │ │ ├── vbo_exec_array.c │ │ │ │ ├── vbo_exec_draw.c │ │ │ │ ├── vbo_exec_eval.c │ │ │ │ ├── vbo_rebase.c │ │ │ │ ├── vbo_save.c │ │ │ │ ├── vbo_save.h │ │ │ │ ├── vbo_save_api.c │ │ │ │ ├── vbo_save_draw.c │ │ │ │ ├── vbo_save_loopback.c │ │ │ │ ├── vbo_split.c │ │ │ │ ├── vbo_split.h │ │ │ │ ├── vbo_split_copy.c │ │ │ │ └── vbo_split_inplace.c │ │ │ │ ├── x86-64 │ │ │ │ ├── Makefile │ │ │ │ ├── glapi_x86-64.S │ │ │ │ ├── x86-64.c │ │ │ │ ├── x86-64.h │ │ │ │ └── xform4.S │ │ │ │ └── x86 │ │ │ │ ├── 3dnow.c │ │ │ │ ├── 3dnow.h │ │ │ │ ├── 3dnow_normal.S │ │ │ │ ├── 3dnow_xform1.S │ │ │ │ ├── 3dnow_xform2.S │ │ │ │ ├── 3dnow_xform3.S │ │ │ │ ├── 3dnow_xform4.S │ │ │ │ ├── Makefile │ │ │ │ ├── assyntax.h │ │ │ │ ├── clip_args.h │ │ │ │ ├── common_x86.c │ │ │ │ ├── common_x86_asm.S │ │ │ │ ├── common_x86_asm.h │ │ │ │ ├── common_x86_features.h │ │ │ │ ├── common_x86_macros.h │ │ │ │ ├── gen_matypes.c │ │ │ │ ├── glapi_x86.S │ │ │ │ ├── mmx.h │ │ │ │ ├── mmx_blend.S │ │ │ │ ├── mmx_blendtmp.h │ │ │ │ ├── norm_args.h │ │ │ │ ├── read_rgba_span_x86.S │ │ │ │ ├── read_rgba_span_x86.h │ │ │ │ ├── rtasm │ │ │ │ ├── x86sse.c │ │ │ │ └── x86sse.h │ │ │ │ ├── sse.c │ │ │ │ ├── sse.h │ │ │ │ ├── sse_normal.S │ │ │ │ ├── sse_xform1.S │ │ │ │ ├── sse_xform2.S │ │ │ │ ├── sse_xform3.S │ │ │ │ ├── sse_xform4.S │ │ │ │ ├── x86.c │ │ │ │ ├── x86.h │ │ │ │ ├── x86_cliptest.S │ │ │ │ ├── x86_xform2.S │ │ │ │ ├── x86_xform3.S │ │ │ │ ├── x86_xform4.S │ │ │ │ └── xform_args.h │ │ ├── vms │ │ │ ├── analyze_map.com │ │ │ ├── xlib.opt │ │ │ └── xlib_share.opt │ │ └── windows │ │ │ ├── VC6 │ │ │ └── progs │ │ │ │ └── glut │ │ │ │ └── glut.dsp │ │ │ ├── VC7 │ │ │ └── progs │ │ │ │ └── glut │ │ │ │ └── glut.vcproj │ │ │ └── VC8 │ │ │ ├── mesa │ │ │ ├── gdi │ │ │ │ └── gdi.vcproj │ │ │ ├── glu │ │ │ │ └── glu.vcproj │ │ │ ├── mesa.sln │ │ │ ├── mesa │ │ │ │ └── mesa.vcproj │ │ │ └── osmesa │ │ │ │ └── osmesa.vcproj │ │ │ └── progs │ │ │ ├── demos │ │ │ └── gears.vcproj │ │ │ ├── glut │ │ │ └── glut.vcproj │ │ │ └── progs.sln │ └── version │ ├── parmacs │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── Makefile │ │ └── m4 │ │ │ ├── c.m4.null.CARBON │ │ │ ├── c.m4.null.POSIX_BARRIER │ │ │ ├── parmacs.pthreads.c.m4 │ │ │ └── parmacs.serial.c.m4 │ └── version │ ├── ssl │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── CHANGES │ │ ├── CHANGES.SSLeay │ │ ├── Configure.pl │ │ ├── FAQ │ │ ├── INSTALL │ │ ├── INSTALL.DJGPP │ │ ├── INSTALL.MacOS │ │ ├── INSTALL.NW │ │ ├── INSTALL.OS2 │ │ ├── INSTALL.VMS │ │ ├── INSTALL.W32 │ │ ├── INSTALL.W64 │ │ ├── INSTALL.WCE │ │ ├── LICENSE │ │ ├── MacOS │ │ │ ├── GUSI_Init.cpp │ │ │ ├── GetHTTPS.src │ │ │ │ ├── CPStringUtils.cpp │ │ │ │ ├── CPStringUtils.hpp │ │ │ │ ├── ErrorHandling.cpp │ │ │ │ ├── ErrorHandling.hpp │ │ │ │ ├── GetHTTPS.cpp │ │ │ │ ├── MacSocket.cpp │ │ │ │ └── MacSocket.h │ │ │ ├── OpenSSL.mcp.hqx │ │ │ ├── Randomizer.cpp │ │ │ ├── Randomizer.h │ │ │ ├── TODO │ │ │ ├── _MWERKS_GUSI_prefix.h │ │ │ ├── _MWERKS_prefix.h │ │ │ ├── buildinf.h │ │ │ ├── mklinks.as.hqx │ │ │ └── opensslconf.h │ │ ├── Makefile.org │ │ ├── Makefile.shared │ │ ├── NEWS │ │ ├── Netware │ │ │ ├── build.bat │ │ │ ├── cpy_tests.bat │ │ │ ├── do_tests.pl │ │ │ ├── globals.txt │ │ │ ├── readme.txt │ │ │ └── set_env.bat │ │ ├── PROBLEMS │ │ ├── README │ │ ├── README.ASN1 │ │ ├── README.ENGINE │ │ ├── VMS │ │ │ ├── TODO │ │ │ ├── VMSify-conf.pl │ │ │ ├── WISHLIST.TXT │ │ │ ├── install.com │ │ │ ├── mkshared.com │ │ │ ├── multinet_shr.opt │ │ │ ├── openssl_utils.com │ │ │ ├── socketshr_shr.opt │ │ │ ├── tcpip_shr_decc.opt │ │ │ ├── test-includes.com │ │ │ ├── ucx_shr_decc.opt │ │ │ ├── ucx_shr_decc_log.opt │ │ │ └── ucx_shr_vaxc.opt │ │ ├── apps │ │ │ ├── CA.com │ │ │ ├── CA.pl │ │ │ ├── CA.pl.in │ │ │ ├── CA.sh │ │ │ ├── Makefile │ │ │ ├── app_rand.c │ │ │ ├── apps.c │ │ │ ├── apps.h │ │ │ ├── asn1pars.c │ │ │ ├── ca-cert.srl │ │ │ ├── ca-key.pem │ │ │ ├── ca-req.pem │ │ │ ├── ca.c │ │ │ ├── cert.pem │ │ │ ├── ciphers.c │ │ │ ├── client.pem │ │ │ ├── cms.c │ │ │ ├── crl.c │ │ │ ├── crl2p7.c │ │ │ ├── demoCA │ │ │ │ ├── cacert.pem │ │ │ │ ├── index.txt │ │ │ │ ├── private │ │ │ │ │ └── cakey.pem │ │ │ │ └── serial │ │ │ ├── dgst.c │ │ │ ├── dh.c │ │ │ ├── dh1024.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dhparam.c │ │ │ ├── dsa-ca.pem │ │ │ ├── dsa-pca.pem │ │ │ ├── dsa.c │ │ │ ├── dsa1024.pem │ │ │ ├── dsa512.pem │ │ │ ├── dsap.pem │ │ │ ├── dsaparam.c │ │ │ ├── ec.c │ │ │ ├── ecparam.c │ │ │ ├── enc.c │ │ │ ├── engine.c │ │ │ ├── errstr.c │ │ │ ├── gendh.c │ │ │ ├── gendsa.c │ │ │ ├── genrsa.c │ │ │ ├── install.com │ │ │ ├── makeapps.com │ │ │ ├── nseq.c │ │ │ ├── ocsp.c │ │ │ ├── oid.cnf │ │ │ ├── openssl-vms.cnf │ │ │ ├── openssl.c │ │ │ ├── openssl.cnf │ │ │ ├── passwd.c │ │ │ ├── pca-cert.srl │ │ │ ├── pca-key.pem │ │ │ ├── pca-req.pem │ │ │ ├── pkcs12.c │ │ │ ├── pkcs7.c │ │ │ ├── pkcs8.c │ │ │ ├── prime.c │ │ │ ├── privkey.pem │ │ │ ├── progs.h │ │ │ ├── progs.pl │ │ │ ├── rand.c │ │ │ ├── req.c │ │ │ ├── req.pem │ │ │ ├── rsa.c │ │ │ ├── rsa8192.pem │ │ │ ├── rsautl.c │ │ │ ├── s1024key.pem │ │ │ ├── s1024req.pem │ │ │ ├── s512-key.pem │ │ │ ├── s512-req.pem │ │ │ ├── s_apps.h │ │ │ ├── s_cb.c │ │ │ ├── s_client.c │ │ │ ├── s_server.c │ │ │ ├── s_socket.c │ │ │ ├── s_time.c │ │ │ ├── server.pem │ │ │ ├── server.srl │ │ │ ├── server2.pem │ │ │ ├── sess_id.c │ │ │ ├── set │ │ │ │ ├── set-g-ca.pem │ │ │ │ ├── set-m-ca.pem │ │ │ │ ├── set_b_ca.pem │ │ │ │ ├── set_c_ca.pem │ │ │ │ ├── set_d_ct.pem │ │ │ │ └── set_root.pem │ │ │ ├── smime.c │ │ │ ├── speed.c │ │ │ ├── spkac.c │ │ │ ├── testCA.pem │ │ │ ├── testdsa.h │ │ │ ├── testrsa.h │ │ │ ├── timeouts.h │ │ │ ├── verify.c │ │ │ ├── version.c │ │ │ ├── winrand.c │ │ │ └── x509.c │ │ ├── bugs │ │ │ ├── MS │ │ │ ├── SSLv3 │ │ │ ├── alpha.c │ │ │ ├── dggccbug.c │ │ │ ├── sgiccbug.c │ │ │ ├── sslref.dif │ │ │ ├── stream.c │ │ │ └── ultrixcc.c │ │ ├── certs │ │ │ ├── README.RootCerts │ │ │ ├── demo │ │ │ │ ├── ca-cert.pem │ │ │ │ ├── dsa-ca.pem │ │ │ │ ├── dsa-pca.pem │ │ │ │ └── pca-cert.pem │ │ │ └── expired │ │ │ │ └── ICE.crl │ │ ├── configure │ │ ├── crypto │ │ │ ├── LPdir_nyi.c │ │ │ ├── LPdir_unix.c │ │ │ ├── LPdir_vms.c │ │ │ ├── LPdir_win.c │ │ │ ├── LPdir_win32.c │ │ │ ├── LPdir_wince.c │ │ │ ├── Makefile │ │ │ ├── aes │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── aes.h │ │ │ │ ├── aes_cbc.c │ │ │ │ ├── aes_cfb.c │ │ │ │ ├── aes_core.c │ │ │ │ ├── aes_ctr.c │ │ │ │ ├── aes_ecb.c │ │ │ │ ├── aes_ige.c │ │ │ │ ├── aes_locl.h │ │ │ │ ├── aes_misc.c │ │ │ │ ├── aes_ofb.c │ │ │ │ ├── aes_wrap.c │ │ │ │ └── asm │ │ │ │ │ ├── aes-586.pl │ │ │ │ │ ├── aes-ia64.S │ │ │ │ │ └── aes-x86_64.pl │ │ │ ├── asn1 │ │ │ │ ├── Makefile │ │ │ │ ├── a_bitstr.c │ │ │ │ ├── a_bool.c │ │ │ │ ├── a_bytes.c │ │ │ │ ├── a_d2i_fp.c │ │ │ │ ├── a_digest.c │ │ │ │ ├── a_dup.c │ │ │ │ ├── a_enum.c │ │ │ │ ├── a_gentm.c │ │ │ │ ├── a_hdr.c │ │ │ │ ├── a_i2d_fp.c │ │ │ │ ├── a_int.c │ │ │ │ ├── a_mbstr.c │ │ │ │ ├── a_meth.c │ │ │ │ ├── a_object.c │ │ │ │ ├── a_octet.c │ │ │ │ ├── a_print.c │ │ │ │ ├── a_set.c │ │ │ │ ├── a_sign.c │ │ │ │ ├── a_strex.c │ │ │ │ ├── a_strnid.c │ │ │ │ ├── a_time.c │ │ │ │ ├── a_type.c │ │ │ │ ├── a_utctm.c │ │ │ │ ├── a_utf8.c │ │ │ │ ├── a_verify.c │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_err.c │ │ │ │ ├── asn1_gen.c │ │ │ │ ├── asn1_lib.c │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1_par.c │ │ │ │ ├── asn1t.h │ │ │ │ ├── asn_mime.c │ │ │ │ ├── asn_moid.c │ │ │ │ ├── asn_pack.c │ │ │ │ ├── charmap.h │ │ │ │ ├── charmap.pl │ │ │ │ ├── d2i_pr.c │ │ │ │ ├── d2i_pu.c │ │ │ │ ├── evp_asn1.c │ │ │ │ ├── f_enum.c │ │ │ │ ├── f_int.c │ │ │ │ ├── f_string.c │ │ │ │ ├── i2d_pr.c │ │ │ │ ├── i2d_pu.c │ │ │ │ ├── n_pkey.c │ │ │ │ ├── nsseq.c │ │ │ │ ├── p5_pbe.c │ │ │ │ ├── p5_pbev2.c │ │ │ │ ├── p8_key.c │ │ │ │ ├── p8_pkey.c │ │ │ │ ├── t_bitst.c │ │ │ │ ├── t_crl.c │ │ │ │ ├── t_pkey.c │ │ │ │ ├── t_req.c │ │ │ │ ├── t_spki.c │ │ │ │ ├── t_x509.c │ │ │ │ ├── t_x509a.c │ │ │ │ ├── tasn_dec.c │ │ │ │ ├── tasn_enc.c │ │ │ │ ├── tasn_fre.c │ │ │ │ ├── tasn_new.c │ │ │ │ ├── tasn_prn.c │ │ │ │ ├── tasn_typ.c │ │ │ │ ├── tasn_utl.c │ │ │ │ ├── x_algor.c │ │ │ │ ├── x_attrib.c │ │ │ │ ├── x_bignum.c │ │ │ │ ├── x_crl.c │ │ │ │ ├── x_exten.c │ │ │ │ ├── x_info.c │ │ │ │ ├── x_long.c │ │ │ │ ├── x_name.c │ │ │ │ ├── x_pkey.c │ │ │ │ ├── x_pubkey.c │ │ │ │ ├── x_req.c │ │ │ │ ├── x_sig.c │ │ │ │ ├── x_spki.c │ │ │ │ ├── x_val.c │ │ │ │ ├── x_x509.c │ │ │ │ └── x_x509a.c │ │ │ ├── bf │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── VERSION │ │ │ │ ├── asm │ │ │ │ │ ├── bf-586.pl │ │ │ │ │ ├── bf-686.pl │ │ │ │ │ └── readme │ │ │ │ ├── bf_cbc.c │ │ │ │ ├── bf_cfb64.c │ │ │ │ ├── bf_ecb.c │ │ │ │ ├── bf_enc.c │ │ │ │ ├── bf_locl.h │ │ │ │ ├── bf_ofb64.c │ │ │ │ ├── bf_opts.c │ │ │ │ ├── bf_pi.h │ │ │ │ ├── bf_skey.c │ │ │ │ ├── bfs.cpp │ │ │ │ ├── bfspeed.c │ │ │ │ ├── bftest.c │ │ │ │ └── blowfish.h │ │ │ ├── bio │ │ │ │ ├── Makefile │ │ │ │ ├── b_dump.c │ │ │ │ ├── b_print.c │ │ │ │ ├── b_sock.c │ │ │ │ ├── bf_buff.c │ │ │ │ ├── bf_lbuf.c │ │ │ │ ├── bf_nbio.c │ │ │ │ ├── bf_null.c │ │ │ │ ├── bio.h │ │ │ │ ├── bio_cb.c │ │ │ │ ├── bio_err.c │ │ │ │ ├── bio_lcl.h │ │ │ │ ├── bio_lib.c │ │ │ │ ├── bss_acpt.c │ │ │ │ ├── bss_bio.c │ │ │ │ ├── bss_conn.c │ │ │ │ ├── bss_dgram.c │ │ │ │ ├── bss_fd.c │ │ │ │ ├── bss_file.c │ │ │ │ ├── bss_log.c │ │ │ │ ├── bss_mem.c │ │ │ │ ├── bss_null.c │ │ │ │ ├── bss_rtcp.c │ │ │ │ └── bss_sock.c │ │ │ ├── bn │ │ │ │ ├── Makefile │ │ │ │ ├── asm │ │ │ │ │ ├── README │ │ │ │ │ ├── bn-586.pl │ │ │ │ │ ├── co-586.pl │ │ │ │ │ ├── ia64.S │ │ │ │ │ ├── mips3.s │ │ │ │ │ ├── mo-586.pl │ │ │ │ │ ├── pa-risc2.s │ │ │ │ │ ├── pa-risc2W.s │ │ │ │ │ ├── ppc.pl │ │ │ │ │ ├── sparcv8.S │ │ │ │ │ ├── sparcv8plus.S │ │ │ │ │ ├── vms.mar │ │ │ │ │ ├── x86.pl │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── add.pl │ │ │ │ │ │ ├── comba.pl │ │ │ │ │ │ ├── div.pl │ │ │ │ │ │ ├── f │ │ │ │ │ │ ├── mul.pl │ │ │ │ │ │ ├── mul_add.pl │ │ │ │ │ │ ├── sqr.pl │ │ │ │ │ │ └── sub.pl │ │ │ │ │ ├── x86_64-gcc.c │ │ │ │ │ └── x86_64-mont.pl │ │ │ │ ├── bn.h │ │ │ │ ├── bn.mul │ │ │ │ ├── bn_add.c │ │ │ │ ├── bn_asm.c │ │ │ │ ├── bn_blind.c │ │ │ │ ├── bn_const.c │ │ │ │ ├── bn_ctx.c │ │ │ │ ├── bn_depr.c │ │ │ │ ├── bn_div.c │ │ │ │ ├── bn_err.c │ │ │ │ ├── bn_exp.c │ │ │ │ ├── bn_exp2.c │ │ │ │ ├── bn_gcd.c │ │ │ │ ├── bn_gf2m.c │ │ │ │ ├── bn_kron.c │ │ │ │ ├── bn_lcl.h │ │ │ │ ├── bn_lib.c │ │ │ │ ├── bn_mod.c │ │ │ │ ├── bn_mont.c │ │ │ │ ├── bn_mpi.c │ │ │ │ ├── bn_mul.c │ │ │ │ ├── bn_nist.c │ │ │ │ ├── bn_opt.c │ │ │ │ ├── bn_prime.c │ │ │ │ ├── bn_prime.h │ │ │ │ ├── bn_prime.pl │ │ │ │ ├── bn_print.c │ │ │ │ ├── bn_rand.c │ │ │ │ ├── bn_recp.c │ │ │ │ ├── bn_shift.c │ │ │ │ ├── bn_sqr.c │ │ │ │ ├── bn_sqrt.c │ │ │ │ ├── bn_word.c │ │ │ │ ├── bn_x931p.c │ │ │ │ ├── bnspeed.c │ │ │ │ ├── bntest.c │ │ │ │ ├── divtest.c │ │ │ │ ├── exp.c │ │ │ │ ├── expspeed.c │ │ │ │ ├── exptest.c │ │ │ │ ├── todo │ │ │ │ └── vms-helper.c │ │ │ ├── buffer │ │ │ │ ├── Makefile │ │ │ │ ├── buf_err.c │ │ │ │ ├── buf_str.c │ │ │ │ ├── buffer.c │ │ │ │ └── buffer.h │ │ │ ├── camellia │ │ │ │ ├── Makefile │ │ │ │ ├── camellia.c │ │ │ │ ├── camellia.h │ │ │ │ ├── cmll_cbc.c │ │ │ │ ├── cmll_cfb.c │ │ │ │ ├── cmll_ctr.c │ │ │ │ ├── cmll_ecb.c │ │ │ │ ├── cmll_locl.h │ │ │ │ ├── cmll_misc.c │ │ │ │ └── cmll_ofb.c │ │ │ ├── cast │ │ │ │ ├── Makefile │ │ │ │ ├── asm │ │ │ │ │ ├── cast-586.pl │ │ │ │ │ └── readme │ │ │ │ ├── c_cfb64.c │ │ │ │ ├── c_ecb.c │ │ │ │ ├── c_enc.c │ │ │ │ ├── c_ofb64.c │ │ │ │ ├── c_skey.c │ │ │ │ ├── cast.h │ │ │ │ ├── cast_lcl.h │ │ │ │ ├── cast_s.h │ │ │ │ ├── cast_spd.c │ │ │ │ ├── castopts.c │ │ │ │ ├── casts.cpp │ │ │ │ └── casttest.c │ │ │ ├── cms │ │ │ │ ├── Makefile │ │ │ │ ├── cms.h │ │ │ │ ├── cms_asn1.c │ │ │ │ ├── cms_att.c │ │ │ │ ├── cms_cd.c │ │ │ │ ├── cms_dd.c │ │ │ │ ├── cms_enc.c │ │ │ │ ├── cms_env.c │ │ │ │ ├── cms_err.c │ │ │ │ ├── cms_ess.c │ │ │ │ ├── cms_io.c │ │ │ │ ├── cms_lcl.h │ │ │ │ ├── cms_lib.c │ │ │ │ ├── cms_sd.c │ │ │ │ └── cms_smime.c │ │ │ ├── comp │ │ │ │ ├── Makefile │ │ │ │ ├── c_rle.c │ │ │ │ ├── c_zlib.c │ │ │ │ ├── comp.h │ │ │ │ ├── comp_err.c │ │ │ │ └── comp_lib.c │ │ │ ├── conf │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cnf_save.c │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.c │ │ │ │ ├── conf_api.h │ │ │ │ ├── conf_def.c │ │ │ │ ├── conf_def.h │ │ │ │ ├── conf_err.c │ │ │ │ ├── conf_lib.c │ │ │ │ ├── conf_mall.c │ │ │ │ ├── conf_mod.c │ │ │ │ ├── conf_sap.c │ │ │ │ ├── keysets.pl │ │ │ │ ├── ssleay.cnf │ │ │ │ └── test.c │ │ │ ├── cpt_err.c │ │ │ ├── cryptlib.c │ │ │ ├── cryptlib.h │ │ │ ├── crypto-lib.com │ │ │ ├── crypto.h │ │ │ ├── cversion.c │ │ │ ├── des │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── DES.pm │ │ │ │ ├── DES.xs │ │ │ │ ├── FILES0 │ │ │ │ ├── INSTALL │ │ │ │ ├── Imakefile │ │ │ │ ├── KERBEROS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── VERSION │ │ │ │ ├── asm │ │ │ │ │ ├── crypt586.pl │ │ │ │ │ ├── des-586.pl │ │ │ │ │ ├── des686.pl │ │ │ │ │ ├── des_enc.m4 │ │ │ │ │ ├── desboth.pl │ │ │ │ │ └── readme │ │ │ │ ├── cbc3_enc.c │ │ │ │ ├── cbc_cksm.c │ │ │ │ ├── cbc_enc.c │ │ │ │ ├── cfb64ede.c │ │ │ │ ├── cfb64enc.c │ │ │ │ ├── cfb_enc.c │ │ │ │ ├── des-lib.com │ │ │ │ ├── des.c │ │ │ │ ├── des.h │ │ │ │ ├── des.pod │ │ │ │ ├── des3s.cpp │ │ │ │ ├── des_enc.c │ │ │ │ ├── des_lib.c │ │ │ │ ├── des_locl.h │ │ │ │ ├── des_old.c │ │ │ │ ├── des_old.h │ │ │ │ ├── des_old2.c │ │ │ │ ├── des_opts.c │ │ │ │ ├── des_ver.h │ │ │ │ ├── dess.cpp │ │ │ │ ├── destest.c │ │ │ │ ├── ecb3_enc.c │ │ │ │ ├── ecb_enc.c │ │ │ │ ├── ede_cbcm_enc.c │ │ │ │ ├── enc_read.c │ │ │ │ ├── enc_writ.c │ │ │ │ ├── fcrypt.c │ │ │ │ ├── fcrypt_b.c │ │ │ │ ├── makefile.bc │ │ │ │ ├── ncbc_enc.c │ │ │ │ ├── ofb64ede.c │ │ │ │ ├── ofb64enc.c │ │ │ │ ├── ofb_enc.c │ │ │ │ ├── options.txt │ │ │ │ ├── pcbc_enc.c │ │ │ │ ├── qud_cksm.c │ │ │ │ ├── rand_key.c │ │ │ │ ├── read2pwd.c │ │ │ │ ├── read_pwd.c │ │ │ │ ├── rpc_des.h │ │ │ │ ├── rpc_enc.c │ │ │ │ ├── rpw.c │ │ │ │ ├── set_key.c │ │ │ │ ├── speed.c │ │ │ │ ├── spr.h │ │ │ │ ├── str2key.c │ │ │ │ ├── t │ │ │ │ │ └── test │ │ │ │ ├── times │ │ │ │ │ ├── 486-50.sol │ │ │ │ │ ├── 586-100.lnx │ │ │ │ │ ├── 686-200.fre │ │ │ │ │ ├── aix.cc │ │ │ │ │ ├── alpha.cc │ │ │ │ │ ├── hpux.cc │ │ │ │ │ ├── sparc.gcc │ │ │ │ │ └── usparc.cc │ │ │ │ ├── typemap │ │ │ │ └── xcbc_enc.c │ │ │ ├── dh │ │ │ │ ├── Makefile │ │ │ │ ├── dh.h │ │ │ │ ├── dh1024.pem │ │ │ │ ├── dh192.pem │ │ │ │ ├── dh2048.pem │ │ │ │ ├── dh4096.pem │ │ │ │ ├── dh512.pem │ │ │ │ ├── dh_asn1.c │ │ │ │ ├── dh_check.c │ │ │ │ ├── dh_depr.c │ │ │ │ ├── dh_err.c │ │ │ │ ├── dh_gen.c │ │ │ │ ├── dh_key.c │ │ │ │ ├── dh_lib.c │ │ │ │ ├── dhtest.c │ │ │ │ ├── example │ │ │ │ ├── generate │ │ │ │ ├── p1024.c │ │ │ │ ├── p192.c │ │ │ │ └── p512.c │ │ │ ├── dsa │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── dsa.h │ │ │ │ ├── dsa_asn1.c │ │ │ │ ├── dsa_depr.c │ │ │ │ ├── dsa_err.c │ │ │ │ ├── dsa_gen.c │ │ │ │ ├── dsa_key.c │ │ │ │ ├── dsa_lib.c │ │ │ │ ├── dsa_ossl.c │ │ │ │ ├── dsa_sign.c │ │ │ │ ├── dsa_utl.c │ │ │ │ ├── dsa_vrf.c │ │ │ │ ├── dsagen.c │ │ │ │ ├── dsatest.c │ │ │ │ └── fips186a.txt │ │ │ ├── dso │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── dso.h │ │ │ │ ├── dso_dl.c │ │ │ │ ├── dso_dlfcn.c │ │ │ │ ├── dso_err.c │ │ │ │ ├── dso_lib.c │ │ │ │ ├── dso_null.c │ │ │ │ ├── dso_openssl.c │ │ │ │ ├── dso_vms.c │ │ │ │ └── dso_win32.c │ │ │ ├── dyn_lck.c │ │ │ ├── ebcdic.c │ │ │ ├── ebcdic.h │ │ │ ├── ec │ │ │ │ ├── Makefile │ │ │ │ ├── ec.h │ │ │ │ ├── ec2_mult.c │ │ │ │ ├── ec2_smpl.c │ │ │ │ ├── ec2_smpt.c │ │ │ │ ├── ec_asn1.c │ │ │ │ ├── ec_check.c │ │ │ │ ├── ec_curve.c │ │ │ │ ├── ec_cvt.c │ │ │ │ ├── ec_err.c │ │ │ │ ├── ec_key.c │ │ │ │ ├── ec_lcl.h │ │ │ │ ├── ec_lib.c │ │ │ │ ├── ec_mult.c │ │ │ │ ├── ec_print.c │ │ │ │ ├── ecp_mont.c │ │ │ │ ├── ecp_nist.c │ │ │ │ ├── ecp_smpl.c │ │ │ │ └── ectest.c │ │ │ ├── ecdh │ │ │ │ ├── Makefile │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdhtest.c │ │ │ │ ├── ech_err.c │ │ │ │ ├── ech_key.c │ │ │ │ ├── ech_lib.c │ │ │ │ ├── ech_locl.h │ │ │ │ └── ech_ossl.c │ │ │ ├── ecdsa │ │ │ │ ├── Makefile │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecdsatest.c │ │ │ │ ├── ecs_asn1.c │ │ │ │ ├── ecs_err.c │ │ │ │ ├── ecs_lib.c │ │ │ │ ├── ecs_locl.h │ │ │ │ ├── ecs_ossl.c │ │ │ │ ├── ecs_sign.c │ │ │ │ └── ecs_vrf.c │ │ │ ├── engine │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── eng_all.c │ │ │ │ ├── eng_cnf.c │ │ │ │ ├── eng_cryptodev.c │ │ │ │ ├── eng_ctrl.c │ │ │ │ ├── eng_dyn.c │ │ │ │ ├── eng_err.c │ │ │ │ ├── eng_fat.c │ │ │ │ ├── eng_init.c │ │ │ │ ├── eng_int.h │ │ │ │ ├── eng_lib.c │ │ │ │ ├── eng_list.c │ │ │ │ ├── eng_openssl.c │ │ │ │ ├── eng_padlock.c │ │ │ │ ├── eng_pkey.c │ │ │ │ ├── eng_table.c │ │ │ │ ├── engine.h │ │ │ │ ├── enginetest.c │ │ │ │ ├── tb_cipher.c │ │ │ │ ├── tb_dh.c │ │ │ │ ├── tb_digest.c │ │ │ │ ├── tb_dsa.c │ │ │ │ ├── tb_ecdh.c │ │ │ │ ├── tb_ecdsa.c │ │ │ │ ├── tb_rand.c │ │ │ │ ├── tb_rsa.c │ │ │ │ └── tb_store.c │ │ │ ├── err │ │ │ │ ├── Makefile │ │ │ │ ├── err.c │ │ │ │ ├── err.h │ │ │ │ ├── err_all.c │ │ │ │ ├── err_bio.c │ │ │ │ ├── err_def.c │ │ │ │ ├── err_prn.c │ │ │ │ ├── err_str.c │ │ │ │ └── openssl.ec │ │ │ ├── evp │ │ │ │ ├── Makefile │ │ │ │ ├── bio_b64.c │ │ │ │ ├── bio_enc.c │ │ │ │ ├── bio_md.c │ │ │ │ ├── bio_ok.c │ │ │ │ ├── c_all.c │ │ │ │ ├── c_allc.c │ │ │ │ ├── c_alld.c │ │ │ │ ├── dig_eng.c │ │ │ │ ├── digest.c │ │ │ │ ├── e_aes.c │ │ │ │ ├── e_bf.c │ │ │ │ ├── e_camellia.c │ │ │ │ ├── e_cast.c │ │ │ │ ├── e_des.c │ │ │ │ ├── e_des3.c │ │ │ │ ├── e_dsa.c │ │ │ │ ├── e_idea.c │ │ │ │ ├── e_null.c │ │ │ │ ├── e_old.c │ │ │ │ ├── e_rc2.c │ │ │ │ ├── e_rc4.c │ │ │ │ ├── e_rc5.c │ │ │ │ ├── e_seed.c │ │ │ │ ├── e_xcbc_d.c │ │ │ │ ├── enc_min.c │ │ │ │ ├── encode.c │ │ │ │ ├── evp.h │ │ │ │ ├── evp_acnf.c │ │ │ │ ├── evp_cnf.c │ │ │ │ ├── evp_enc.c │ │ │ │ ├── evp_err.c │ │ │ │ ├── evp_key.c │ │ │ │ ├── evp_lib.c │ │ │ │ ├── evp_locl.h │ │ │ │ ├── evp_pbe.c │ │ │ │ ├── evp_pkey.c │ │ │ │ ├── evp_test.c │ │ │ │ ├── evptests.txt │ │ │ │ ├── m_dss.c │ │ │ │ ├── m_dss1.c │ │ │ │ ├── m_ecdsa.c │ │ │ │ ├── m_md2.c │ │ │ │ ├── m_md4.c │ │ │ │ ├── m_md5.c │ │ │ │ ├── m_mdc2.c │ │ │ │ ├── m_null.c │ │ │ │ ├── m_ripemd.c │ │ │ │ ├── m_sha.c │ │ │ │ ├── m_sha1.c │ │ │ │ ├── names.c │ │ │ │ ├── openbsd_hw.c │ │ │ │ ├── p5_crpt.c │ │ │ │ ├── p5_crpt2.c │ │ │ │ ├── p_dec.c │ │ │ │ ├── p_enc.c │ │ │ │ ├── p_lib.c │ │ │ │ ├── p_open.c │ │ │ │ ├── p_seal.c │ │ │ │ ├── p_sign.c │ │ │ │ └── p_verify.c │ │ │ ├── ex_data.c │ │ │ ├── fips_err.c │ │ │ ├── fips_err.h │ │ │ ├── hmac │ │ │ │ ├── Makefile │ │ │ │ ├── hmac.c │ │ │ │ ├── hmac.h │ │ │ │ └── hmactest.c │ │ │ ├── ia64cpuid.S │ │ │ ├── idea │ │ │ │ ├── Makefile │ │ │ │ ├── i_cbc.c │ │ │ │ ├── i_cfb64.c │ │ │ │ ├── i_ecb.c │ │ │ │ ├── i_ofb64.c │ │ │ │ ├── i_skey.c │ │ │ │ ├── idea.h │ │ │ │ ├── idea_lcl.h │ │ │ │ ├── idea_spd.c │ │ │ │ ├── ideatest.c │ │ │ │ └── version │ │ │ ├── install.com │ │ │ ├── jpake │ │ │ │ ├── Makefile │ │ │ │ ├── jpake.c │ │ │ │ ├── jpake.h │ │ │ │ ├── jpake_err.c │ │ │ │ └── jpaketest.c │ │ │ ├── krb5 │ │ │ │ ├── Makefile │ │ │ │ ├── krb5_asn.c │ │ │ │ └── krb5_asn.h │ │ │ ├── lhash │ │ │ │ ├── Makefile │ │ │ │ ├── lh_stats.c │ │ │ │ ├── lh_test.c │ │ │ │ ├── lhash.c │ │ │ │ ├── lhash.h │ │ │ │ └── num.pl │ │ │ ├── md2 │ │ │ │ ├── Makefile │ │ │ │ ├── md2.c │ │ │ │ ├── md2.h │ │ │ │ ├── md2_dgst.c │ │ │ │ ├── md2_one.c │ │ │ │ └── md2test.c │ │ │ ├── md32_common.h │ │ │ ├── md4 │ │ │ │ ├── Makefile │ │ │ │ ├── md4.c │ │ │ │ ├── md4.h │ │ │ │ ├── md4_dgst.c │ │ │ │ ├── md4_locl.h │ │ │ │ ├── md4_one.c │ │ │ │ ├── md4s.cpp │ │ │ │ └── md4test.c │ │ │ ├── md5 │ │ │ │ ├── Makefile │ │ │ │ ├── asm │ │ │ │ │ ├── md5-586.pl │ │ │ │ │ └── md5-x86_64.pl │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ ├── md5_dgst.c │ │ │ │ ├── md5_locl.h │ │ │ │ ├── md5_one.c │ │ │ │ ├── md5s.cpp │ │ │ │ └── md5test.c │ │ │ ├── mdc2 │ │ │ │ ├── Makefile │ │ │ │ ├── mdc2.h │ │ │ │ ├── mdc2_one.c │ │ │ │ ├── mdc2dgst.c │ │ │ │ └── mdc2test.c │ │ │ ├── mem.c │ │ │ ├── mem_clr.c │ │ │ ├── mem_dbg.c │ │ │ ├── o_dir.c │ │ │ ├── o_dir.h │ │ │ ├── o_dir_test.c │ │ │ ├── o_init.c │ │ │ ├── o_str.c │ │ │ ├── o_str.h │ │ │ ├── o_time.c │ │ │ ├── o_time.h │ │ │ ├── objects │ │ │ │ ├── Makefile │ │ │ │ ├── o_names.c │ │ │ │ ├── obj_dat.c │ │ │ │ ├── obj_dat.h │ │ │ │ ├── obj_dat.pl │ │ │ │ ├── obj_err.c │ │ │ │ ├── obj_lib.c │ │ │ │ ├── obj_mac.h │ │ │ │ ├── obj_mac.num │ │ │ │ ├── objects.README │ │ │ │ ├── objects.h │ │ │ │ ├── objects.pl │ │ │ │ └── objects.txt │ │ │ ├── ocsp │ │ │ │ ├── Makefile │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsp_asn.c │ │ │ │ ├── ocsp_cl.c │ │ │ │ ├── ocsp_err.c │ │ │ │ ├── ocsp_ext.c │ │ │ │ ├── ocsp_ht.c │ │ │ │ ├── ocsp_lib.c │ │ │ │ ├── ocsp_prn.c │ │ │ │ ├── ocsp_srv.c │ │ │ │ └── ocsp_vfy.c │ │ │ ├── opensslconf.h │ │ │ ├── opensslconf.h.in │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem │ │ │ │ ├── Makefile │ │ │ │ ├── message │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pem_all.c │ │ │ │ ├── pem_err.c │ │ │ │ ├── pem_info.c │ │ │ │ ├── pem_lib.c │ │ │ │ ├── pem_oth.c │ │ │ │ ├── pem_pk8.c │ │ │ │ ├── pem_pkey.c │ │ │ │ ├── pem_seal.c │ │ │ │ ├── pem_sign.c │ │ │ │ ├── pem_x509.c │ │ │ │ ├── pem_xaux.c │ │ │ │ └── pkcs7.lis │ │ │ ├── perlasm │ │ │ │ ├── cbc.pl │ │ │ │ ├── readme │ │ │ │ ├── x86_64-xlate.pl │ │ │ │ ├── x86asm.pl │ │ │ │ ├── x86ms.pl │ │ │ │ ├── x86nasm.pl │ │ │ │ └── x86unix.pl │ │ │ ├── pkcs12 │ │ │ │ ├── Makefile │ │ │ │ ├── p12_add.c │ │ │ │ ├── p12_asn.c │ │ │ │ ├── p12_attr.c │ │ │ │ ├── p12_crpt.c │ │ │ │ ├── p12_crt.c │ │ │ │ ├── p12_decr.c │ │ │ │ ├── p12_init.c │ │ │ │ ├── p12_key.c │ │ │ │ ├── p12_kiss.c │ │ │ │ ├── p12_mutl.c │ │ │ │ ├── p12_npas.c │ │ │ │ ├── p12_p8d.c │ │ │ │ ├── p12_p8e.c │ │ │ │ ├── p12_utl.c │ │ │ │ ├── pk12err.c │ │ │ │ └── pkcs12.h │ │ │ ├── pkcs7 │ │ │ │ ├── Makefile │ │ │ │ ├── bio_ber.c │ │ │ │ ├── dec.c │ │ │ │ ├── des.pem │ │ │ │ ├── doc │ │ │ │ ├── enc.c │ │ │ │ ├── es1.pem │ │ │ │ ├── example.c │ │ │ │ ├── example.h │ │ │ │ ├── info.pem │ │ │ │ ├── infokey.pem │ │ │ │ ├── p7 │ │ │ │ │ ├── a1 │ │ │ │ │ ├── a2 │ │ │ │ │ ├── cert.p7c │ │ │ │ │ ├── smime.p7m │ │ │ │ │ └── smime.p7s │ │ │ │ ├── pk7_asn1.c │ │ │ │ ├── pk7_attr.c │ │ │ │ ├── pk7_dgst.c │ │ │ │ ├── pk7_doit.c │ │ │ │ ├── pk7_enc.c │ │ │ │ ├── pk7_lib.c │ │ │ │ ├── pk7_mime.c │ │ │ │ ├── pk7_smime.c │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.c │ │ │ │ ├── server.pem │ │ │ │ ├── sign.c │ │ │ │ ├── t │ │ │ │ │ ├── 3des.pem │ │ │ │ │ ├── 3dess.pem │ │ │ │ │ ├── c.pem │ │ │ │ │ ├── ff │ │ │ │ │ ├── msie-e │ │ │ │ │ ├── msie-e.pem │ │ │ │ │ ├── msie-enc-01 │ │ │ │ │ ├── msie-enc-01.pem │ │ │ │ │ ├── msie-enc-02 │ │ │ │ │ ├── msie-enc-02.pem │ │ │ │ │ ├── msie-s-a-e │ │ │ │ │ ├── msie-s-a-e.pem │ │ │ │ │ ├── nav-smime │ │ │ │ │ ├── s.pem │ │ │ │ │ └── server.pem │ │ │ │ └── verify.c │ │ │ ├── pqueue │ │ │ │ ├── Makefile │ │ │ │ ├── pq_compat.h │ │ │ │ ├── pq_test.c │ │ │ │ ├── pqueue.c │ │ │ │ └── pqueue.h │ │ │ ├── rand │ │ │ │ ├── Makefile │ │ │ │ ├── md_rand.c │ │ │ │ ├── rand.h │ │ │ │ ├── rand_egd.c │ │ │ │ ├── rand_eng.c │ │ │ │ ├── rand_err.c │ │ │ │ ├── rand_lcl.h │ │ │ │ ├── rand_lib.c │ │ │ │ ├── rand_nw.c │ │ │ │ ├── rand_os2.c │ │ │ │ ├── rand_unix.c │ │ │ │ ├── rand_vms.c │ │ │ │ ├── rand_win.c │ │ │ │ ├── randfile.c │ │ │ │ └── randtest.c │ │ │ ├── rc2 │ │ │ │ ├── Makefile │ │ │ │ ├── rc2.h │ │ │ │ ├── rc2_cbc.c │ │ │ │ ├── rc2_ecb.c │ │ │ │ ├── rc2_locl.h │ │ │ │ ├── rc2_skey.c │ │ │ │ ├── rc2cfb64.c │ │ │ │ ├── rc2ofb64.c │ │ │ │ ├── rc2speed.c │ │ │ │ ├── rc2test.c │ │ │ │ ├── rrc2.doc │ │ │ │ ├── tab.c │ │ │ │ └── version │ │ │ ├── rc4 │ │ │ │ ├── Makefile │ │ │ │ ├── asm │ │ │ │ │ ├── rc4-586.pl │ │ │ │ │ ├── rc4-ia64.S │ │ │ │ │ └── rc4-x86_64.pl │ │ │ │ ├── rc4.c │ │ │ │ ├── rc4.h │ │ │ │ ├── rc4_enc.c │ │ │ │ ├── rc4_fblk.c │ │ │ │ ├── rc4_locl.h │ │ │ │ ├── rc4_skey.c │ │ │ │ ├── rc4s.cpp │ │ │ │ ├── rc4speed.c │ │ │ │ ├── rc4test.c │ │ │ │ └── rrc4.doc │ │ │ ├── rc5 │ │ │ │ ├── Makefile │ │ │ │ ├── asm │ │ │ │ │ └── rc5-586.pl │ │ │ │ ├── rc5.h │ │ │ │ ├── rc5_ecb.c │ │ │ │ ├── rc5_enc.c │ │ │ │ ├── rc5_locl.h │ │ │ │ ├── rc5_skey.c │ │ │ │ ├── rc5cfb64.c │ │ │ │ ├── rc5ofb64.c │ │ │ │ ├── rc5s.cpp │ │ │ │ ├── rc5speed.c │ │ │ │ └── rc5test.c │ │ │ ├── ripemd │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── asm │ │ │ │ │ ├── rips.cpp │ │ │ │ │ └── rmd-586.pl │ │ │ │ ├── ripemd.h │ │ │ │ ├── rmd160.c │ │ │ │ ├── rmd_dgst.c │ │ │ │ ├── rmd_locl.h │ │ │ │ ├── rmd_one.c │ │ │ │ ├── rmdconst.h │ │ │ │ └── rmdtest.c │ │ │ ├── rsa │ │ │ │ ├── Makefile │ │ │ │ ├── rsa.h │ │ │ │ ├── rsa_asn1.c │ │ │ │ ├── rsa_chk.c │ │ │ │ ├── rsa_depr.c │ │ │ │ ├── rsa_eay.c │ │ │ │ ├── rsa_eng.c │ │ │ │ ├── rsa_err.c │ │ │ │ ├── rsa_gen.c │ │ │ │ ├── rsa_lib.c │ │ │ │ ├── rsa_none.c │ │ │ │ ├── rsa_null.c │ │ │ │ ├── rsa_oaep.c │ │ │ │ ├── rsa_pk1.c │ │ │ │ ├── rsa_pss.c │ │ │ │ ├── rsa_saos.c │ │ │ │ ├── rsa_sign.c │ │ │ │ ├── rsa_ssl.c │ │ │ │ ├── rsa_test.c │ │ │ │ ├── rsa_x931.c │ │ │ │ └── rsa_x931g.c │ │ │ ├── seed │ │ │ │ ├── Makefile │ │ │ │ ├── seed.c │ │ │ │ ├── seed.h │ │ │ │ ├── seed_cbc.c │ │ │ │ ├── seed_cfb.c │ │ │ │ ├── seed_ecb.c │ │ │ │ ├── seed_locl.h │ │ │ │ └── seed_ofb.c │ │ │ ├── sha │ │ │ │ ├── Makefile │ │ │ │ ├── asm │ │ │ │ │ ├── README │ │ │ │ │ ├── sha1-586.pl │ │ │ │ │ ├── sha1-ia64.pl │ │ │ │ │ ├── sha1-x86_64.pl │ │ │ │ │ ├── sha512-ia64.pl │ │ │ │ │ ├── sha512-sse2.pl │ │ │ │ │ └── sha512-x86_64.pl │ │ │ │ ├── sha.c │ │ │ │ ├── sha.h │ │ │ │ ├── sha1.c │ │ │ │ ├── sha1_one.c │ │ │ │ ├── sha1dgst.c │ │ │ │ ├── sha1s.cpp │ │ │ │ ├── sha1test.c │ │ │ │ ├── sha256.c │ │ │ │ ├── sha256t.c │ │ │ │ ├── sha512.c │ │ │ │ ├── sha512t.c │ │ │ │ ├── sha_dgst.c │ │ │ │ ├── sha_locl.h │ │ │ │ ├── sha_one.c │ │ │ │ └── shatest.c │ │ │ ├── sparccpuid.S │ │ │ ├── stack │ │ │ │ ├── Makefile │ │ │ │ ├── safestack.h │ │ │ │ ├── stack.c │ │ │ │ └── stack.h │ │ │ ├── store │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── store.h │ │ │ │ ├── str_err.c │ │ │ │ ├── str_lib.c │ │ │ │ ├── str_locl.h │ │ │ │ ├── str_mem.c │ │ │ │ └── str_meth.c │ │ │ ├── symhacks.h │ │ │ ├── threads │ │ │ │ ├── README │ │ │ │ ├── mttest.c │ │ │ │ ├── netware.bat │ │ │ │ ├── profile.sh │ │ │ │ ├── ptest.bat │ │ │ │ ├── pthread.sh │ │ │ │ ├── pthread2.sh │ │ │ │ ├── pthreads-vms.com │ │ │ │ ├── purify.sh │ │ │ │ ├── solaris.sh │ │ │ │ ├── th-lock.c │ │ │ │ └── win32.bat │ │ │ ├── tmdiff.c │ │ │ ├── tmdiff.h │ │ │ ├── txt_db │ │ │ │ ├── Makefile │ │ │ │ ├── txt_db.c │ │ │ │ └── txt_db.h │ │ │ ├── ui │ │ │ │ ├── Makefile │ │ │ │ ├── ui.h │ │ │ │ ├── ui_compat.c │ │ │ │ ├── ui_compat.h │ │ │ │ ├── ui_err.c │ │ │ │ ├── ui_lib.c │ │ │ │ ├── ui_locl.h │ │ │ │ ├── ui_openssl.c │ │ │ │ └── ui_util.c │ │ │ ├── uid.c │ │ │ ├── x509 │ │ │ │ ├── Makefile │ │ │ │ ├── by_dir.c │ │ │ │ ├── by_file.c │ │ │ │ ├── x509.h │ │ │ │ ├── x509_att.c │ │ │ │ ├── x509_cmp.c │ │ │ │ ├── x509_d2.c │ │ │ │ ├── x509_def.c │ │ │ │ ├── x509_err.c │ │ │ │ ├── x509_ext.c │ │ │ │ ├── x509_lu.c │ │ │ │ ├── x509_obj.c │ │ │ │ ├── x509_r2x.c │ │ │ │ ├── x509_req.c │ │ │ │ ├── x509_set.c │ │ │ │ ├── x509_trs.c │ │ │ │ ├── x509_txt.c │ │ │ │ ├── x509_v3.c │ │ │ │ ├── x509_vfy.c │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509_vpm.c │ │ │ │ ├── x509cset.c │ │ │ │ ├── x509name.c │ │ │ │ ├── x509rset.c │ │ │ │ ├── x509spki.c │ │ │ │ ├── x509type.c │ │ │ │ └── x_all.c │ │ │ ├── x509v3 │ │ │ │ ├── Makefile │ │ │ │ ├── ext_dat.h │ │ │ │ ├── pcy_cache.c │ │ │ │ ├── pcy_data.c │ │ │ │ ├── pcy_int.h │ │ │ │ ├── pcy_lib.c │ │ │ │ ├── pcy_map.c │ │ │ │ ├── pcy_node.c │ │ │ │ ├── pcy_tree.c │ │ │ │ ├── tabtest.c │ │ │ │ ├── v3_addr.c │ │ │ │ ├── v3_akey.c │ │ │ │ ├── v3_akeya.c │ │ │ │ ├── v3_alt.c │ │ │ │ ├── v3_asid.c │ │ │ │ ├── v3_bcons.c │ │ │ │ ├── v3_bitst.c │ │ │ │ ├── v3_conf.c │ │ │ │ ├── v3_cpols.c │ │ │ │ ├── v3_crld.c │ │ │ │ ├── v3_enum.c │ │ │ │ ├── v3_extku.c │ │ │ │ ├── v3_genn.c │ │ │ │ ├── v3_ia5.c │ │ │ │ ├── v3_info.c │ │ │ │ ├── v3_int.c │ │ │ │ ├── v3_lib.c │ │ │ │ ├── v3_ncons.c │ │ │ │ ├── v3_ocsp.c │ │ │ │ ├── v3_pci.c │ │ │ │ ├── v3_pcia.c │ │ │ │ ├── v3_pcons.c │ │ │ │ ├── v3_pku.c │ │ │ │ ├── v3_pmaps.c │ │ │ │ ├── v3_prn.c │ │ │ │ ├── v3_purp.c │ │ │ │ ├── v3_skey.c │ │ │ │ ├── v3_sxnet.c │ │ │ │ ├── v3_utl.c │ │ │ │ ├── v3conf.c │ │ │ │ ├── v3err.c │ │ │ │ ├── v3prin.c │ │ │ │ └── x509v3.h │ │ │ ├── x86_64cpuid.pl │ │ │ └── x86cpuid.pl │ │ ├── demos │ │ │ ├── README │ │ │ ├── asn1 │ │ │ │ ├── README.ASN1 │ │ │ │ └── ocsp.c │ │ │ ├── b64.c │ │ │ ├── b64.pl │ │ │ ├── bio │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── saccept.c │ │ │ │ ├── sconnect.c │ │ │ │ └── server.pem │ │ │ ├── easy_tls │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cacerts.pem │ │ │ │ ├── cert.pem │ │ │ │ ├── easy-tls.c │ │ │ │ ├── easy-tls.h │ │ │ │ ├── test.c │ │ │ │ └── test.h │ │ │ ├── eay │ │ │ │ ├── Makefile │ │ │ │ ├── base64.c │ │ │ │ ├── conn.c │ │ │ │ └── loadrsa.c │ │ │ ├── engines │ │ │ │ ├── cluster_labs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cluster_labs.h │ │ │ │ │ ├── hw_cluster_labs.c │ │ │ │ │ ├── hw_cluster_labs.ec │ │ │ │ │ ├── hw_cluster_labs_err.c │ │ │ │ │ └── hw_cluster_labs_err.h │ │ │ │ ├── ibmca │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hw_ibmca.c │ │ │ │ │ ├── hw_ibmca.ec │ │ │ │ │ ├── hw_ibmca_err.c │ │ │ │ │ ├── hw_ibmca_err.h │ │ │ │ │ └── ica_openssl_api.h │ │ │ │ ├── rsaref │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── build.com │ │ │ │ │ ├── rsaref.c │ │ │ │ │ ├── rsaref.ec │ │ │ │ │ ├── rsaref_err.c │ │ │ │ │ └── rsaref_err.h │ │ │ │ └── zencod │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hw_zencod.c │ │ │ │ │ ├── hw_zencod.ec │ │ │ │ │ ├── hw_zencod.h │ │ │ │ │ ├── hw_zencod_err.c │ │ │ │ │ └── hw_zencod_err.h │ │ │ ├── jpake │ │ │ │ ├── Makefile │ │ │ │ └── jpakedemo.c │ │ │ ├── maurice │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── cert.pem │ │ │ │ ├── example1.c │ │ │ │ ├── example2.c │ │ │ │ ├── example3.c │ │ │ │ ├── example4.c │ │ │ │ ├── loadkeys.c │ │ │ │ ├── loadkeys.h │ │ │ │ └── privkey.pem │ │ │ ├── pkcs12 │ │ │ │ ├── README │ │ │ │ ├── pkread.c │ │ │ │ └── pkwrite.c │ │ │ ├── prime │ │ │ │ ├── Makefile │ │ │ │ └── prime.c │ │ │ ├── privkey.pem │ │ │ ├── selfsign.c │ │ │ ├── sign │ │ │ │ ├── Makefile │ │ │ │ ├── cert.pem │ │ │ │ ├── key.pem │ │ │ │ ├── sig.txt │ │ │ │ ├── sign.c │ │ │ │ └── sign.txt │ │ │ ├── spkigen.c │ │ │ ├── ssl │ │ │ │ ├── cli.cpp │ │ │ │ ├── inetdsrv.cpp │ │ │ │ └── serv.cpp │ │ │ ├── ssltest-ecc │ │ │ │ ├── ECC-RSAcertgen.sh │ │ │ │ ├── ECCcertgen.sh │ │ │ │ ├── README │ │ │ │ ├── RSAcertgen.sh │ │ │ │ └── ssltest.sh │ │ │ ├── state_machine │ │ │ │ ├── Makefile │ │ │ │ └── state_machine.c │ │ │ ├── tunala │ │ │ │ ├── A-client.pem │ │ │ │ ├── A-server.pem │ │ │ │ ├── CA.pem │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── autogunk.sh │ │ │ │ ├── autoungunk.sh │ │ │ │ ├── breakage.c │ │ │ │ ├── buffer.c │ │ │ │ ├── cb.c │ │ │ │ ├── configure.in │ │ │ │ ├── ip.c │ │ │ │ ├── sm.c │ │ │ │ ├── test.sh │ │ │ │ ├── tunala.c │ │ │ │ └── tunala.h │ │ │ └── x509 │ │ │ │ ├── README │ │ │ │ ├── mkcert.c │ │ │ │ └── mkreq.c │ │ ├── doc │ │ │ ├── HOWTO │ │ │ │ ├── certificates.txt │ │ │ │ ├── keys.txt │ │ │ │ └── proxy_certificates.txt │ │ │ ├── README │ │ │ ├── apps │ │ │ │ ├── CA.pl.pod │ │ │ │ ├── asn1parse.pod │ │ │ │ ├── ca.pod │ │ │ │ ├── ciphers.pod │ │ │ │ ├── config.pod │ │ │ │ ├── crl.pod │ │ │ │ ├── crl2pkcs7.pod │ │ │ │ ├── dgst.pod │ │ │ │ ├── dhparam.pod │ │ │ │ ├── dsa.pod │ │ │ │ ├── dsaparam.pod │ │ │ │ ├── ec.pod │ │ │ │ ├── ecparam.pod │ │ │ │ ├── enc.pod │ │ │ │ ├── errstr.pod │ │ │ │ ├── gendsa.pod │ │ │ │ ├── genrsa.pod │ │ │ │ ├── nseq.pod │ │ │ │ ├── ocsp.pod │ │ │ │ ├── openssl.pod │ │ │ │ ├── passwd.pod │ │ │ │ ├── pkcs12.pod │ │ │ │ ├── pkcs7.pod │ │ │ │ ├── pkcs8.pod │ │ │ │ ├── rand.pod │ │ │ │ ├── req.pod │ │ │ │ ├── rsa.pod │ │ │ │ ├── rsautl.pod │ │ │ │ ├── s_client.pod │ │ │ │ ├── s_server.pod │ │ │ │ ├── s_time.pod │ │ │ │ ├── sess_id.pod │ │ │ │ ├── smime.pod │ │ │ │ ├── speed.pod │ │ │ │ ├── spkac.pod │ │ │ │ ├── verify.pod │ │ │ │ ├── version.pod │ │ │ │ ├── x509.pod │ │ │ │ └── x509v3_config.pod │ │ │ ├── c-indentation.el │ │ │ ├── crypto │ │ │ │ ├── ASN1_OBJECT_new.pod │ │ │ │ ├── ASN1_STRING_length.pod │ │ │ │ ├── ASN1_STRING_new.pod │ │ │ │ ├── ASN1_STRING_print_ex.pod │ │ │ │ ├── ASN1_generate_nconf.pod │ │ │ │ ├── BIO_ctrl.pod │ │ │ │ ├── BIO_f_base64.pod │ │ │ │ ├── BIO_f_buffer.pod │ │ │ │ ├── BIO_f_cipher.pod │ │ │ │ ├── BIO_f_md.pod │ │ │ │ ├── BIO_f_null.pod │ │ │ │ ├── BIO_f_ssl.pod │ │ │ │ ├── BIO_find_type.pod │ │ │ │ ├── BIO_new.pod │ │ │ │ ├── BIO_push.pod │ │ │ │ ├── BIO_read.pod │ │ │ │ ├── BIO_s_accept.pod │ │ │ │ ├── BIO_s_bio.pod │ │ │ │ ├── BIO_s_connect.pod │ │ │ │ ├── BIO_s_fd.pod │ │ │ │ ├── BIO_s_file.pod │ │ │ │ ├── BIO_s_mem.pod │ │ │ │ ├── BIO_s_null.pod │ │ │ │ ├── BIO_s_socket.pod │ │ │ │ ├── BIO_set_callback.pod │ │ │ │ ├── BIO_should_retry.pod │ │ │ │ ├── BN_BLINDING_new.pod │ │ │ │ ├── BN_CTX_new.pod │ │ │ │ ├── BN_CTX_start.pod │ │ │ │ ├── BN_add.pod │ │ │ │ ├── BN_add_word.pod │ │ │ │ ├── BN_bn2bin.pod │ │ │ │ ├── BN_cmp.pod │ │ │ │ ├── BN_copy.pod │ │ │ │ ├── BN_generate_prime.pod │ │ │ │ ├── BN_mod_inverse.pod │ │ │ │ ├── BN_mod_mul_montgomery.pod │ │ │ │ ├── BN_mod_mul_reciprocal.pod │ │ │ │ ├── BN_new.pod │ │ │ │ ├── BN_num_bytes.pod │ │ │ │ ├── BN_rand.pod │ │ │ │ ├── BN_set_bit.pod │ │ │ │ ├── BN_swap.pod │ │ │ │ ├── BN_zero.pod │ │ │ │ ├── CONF_modules_free.pod │ │ │ │ ├── CONF_modules_load_file.pod │ │ │ │ ├── CRYPTO_set_ex_data.pod │ │ │ │ ├── DH_generate_key.pod │ │ │ │ ├── DH_generate_parameters.pod │ │ │ │ ├── DH_get_ex_new_index.pod │ │ │ │ ├── DH_new.pod │ │ │ │ ├── DH_set_method.pod │ │ │ │ ├── DH_size.pod │ │ │ │ ├── DSA_SIG_new.pod │ │ │ │ ├── DSA_do_sign.pod │ │ │ │ ├── DSA_dup_DH.pod │ │ │ │ ├── DSA_generate_key.pod │ │ │ │ ├── DSA_generate_parameters.pod │ │ │ │ ├── DSA_get_ex_new_index.pod │ │ │ │ ├── DSA_new.pod │ │ │ │ ├── DSA_set_method.pod │ │ │ │ ├── DSA_sign.pod │ │ │ │ ├── DSA_size.pod │ │ │ │ ├── ERR_GET_LIB.pod │ │ │ │ ├── ERR_clear_error.pod │ │ │ │ ├── ERR_error_string.pod │ │ │ │ ├── ERR_get_error.pod │ │ │ │ ├── ERR_load_crypto_strings.pod │ │ │ │ ├── ERR_load_strings.pod │ │ │ │ ├── ERR_print_errors.pod │ │ │ │ ├── ERR_put_error.pod │ │ │ │ ├── ERR_remove_state.pod │ │ │ │ ├── ERR_set_mark.pod │ │ │ │ ├── EVP_BytesToKey.pod │ │ │ │ ├── EVP_DigestInit.pod │ │ │ │ ├── EVP_EncryptInit.pod │ │ │ │ ├── EVP_OpenInit.pod │ │ │ │ ├── EVP_PKEY_new.pod │ │ │ │ ├── EVP_PKEY_set1_RSA.pod │ │ │ │ ├── EVP_SealInit.pod │ │ │ │ ├── EVP_SignInit.pod │ │ │ │ ├── EVP_VerifyInit.pod │ │ │ │ ├── OBJ_nid2obj.pod │ │ │ │ ├── OPENSSL_Applink.pod │ │ │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ │ │ ├── OPENSSL_config.pod │ │ │ │ ├── OPENSSL_ia32cap.pod │ │ │ │ ├── OPENSSL_load_builtin_modules.pod │ │ │ │ ├── OpenSSL_add_all_algorithms.pod │ │ │ │ ├── PKCS12_create.pod │ │ │ │ ├── PKCS12_parse.pod │ │ │ │ ├── PKCS7_decrypt.pod │ │ │ │ ├── PKCS7_encrypt.pod │ │ │ │ ├── PKCS7_sign.pod │ │ │ │ ├── PKCS7_verify.pod │ │ │ │ ├── RAND_add.pod │ │ │ │ ├── RAND_bytes.pod │ │ │ │ ├── RAND_cleanup.pod │ │ │ │ ├── RAND_egd.pod │ │ │ │ ├── RAND_load_file.pod │ │ │ │ ├── RAND_set_rand_method.pod │ │ │ │ ├── RSA_blinding_on.pod │ │ │ │ ├── RSA_check_key.pod │ │ │ │ ├── RSA_generate_key.pod │ │ │ │ ├── RSA_get_ex_new_index.pod │ │ │ │ ├── RSA_new.pod │ │ │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ │ │ ├── RSA_print.pod │ │ │ │ ├── RSA_private_encrypt.pod │ │ │ │ ├── RSA_public_encrypt.pod │ │ │ │ ├── RSA_set_method.pod │ │ │ │ ├── RSA_sign.pod │ │ │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ │ │ ├── RSA_size.pod │ │ │ │ ├── SMIME_read_PKCS7.pod │ │ │ │ ├── SMIME_write_PKCS7.pod │ │ │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ │ │ ├── X509_NAME_get_index_by_NID.pod │ │ │ │ ├── X509_NAME_print_ex.pod │ │ │ │ ├── X509_new.pod │ │ │ │ ├── bio.pod │ │ │ │ ├── blowfish.pod │ │ │ │ ├── bn.pod │ │ │ │ ├── bn_internal.pod │ │ │ │ ├── buffer.pod │ │ │ │ ├── crypto.pod │ │ │ │ ├── d2i_ASN1_OBJECT.pod │ │ │ │ ├── d2i_DHparams.pod │ │ │ │ ├── d2i_DSAPublicKey.pod │ │ │ │ ├── d2i_PKCS8PrivateKey.pod │ │ │ │ ├── d2i_RSAPublicKey.pod │ │ │ │ ├── d2i_X509.pod │ │ │ │ ├── d2i_X509_ALGOR.pod │ │ │ │ ├── d2i_X509_CRL.pod │ │ │ │ ├── d2i_X509_NAME.pod │ │ │ │ ├── d2i_X509_REQ.pod │ │ │ │ ├── d2i_X509_SIG.pod │ │ │ │ ├── des.pod │ │ │ │ ├── des_modes.pod │ │ │ │ ├── dh.pod │ │ │ │ ├── dsa.pod │ │ │ │ ├── ecdsa.pod │ │ │ │ ├── engine.pod │ │ │ │ ├── err.pod │ │ │ │ ├── evp.pod │ │ │ │ ├── hmac.pod │ │ │ │ ├── lh_stats.pod │ │ │ │ ├── lhash.pod │ │ │ │ ├── md5.pod │ │ │ │ ├── mdc2.pod │ │ │ │ ├── pem.pod │ │ │ │ ├── rand.pod │ │ │ │ ├── rc4.pod │ │ │ │ ├── ripemd.pod │ │ │ │ ├── rsa.pod │ │ │ │ ├── sha.pod │ │ │ │ ├── threads.pod │ │ │ │ ├── ui.pod │ │ │ │ ├── ui_compat.pod │ │ │ │ └── x509.pod │ │ │ ├── fingerprints.txt │ │ │ ├── openssl-shared.txt │ │ │ ├── openssl.txt │ │ │ ├── openssl_button.gif │ │ │ ├── openssl_button.html │ │ │ ├── ssl │ │ │ │ ├── SSL_CIPHER_get_name.pod │ │ │ │ ├── SSL_COMP_add_compression_method.pod │ │ │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ │ │ ├── SSL_CTX_add_session.pod │ │ │ │ ├── SSL_CTX_ctrl.pod │ │ │ │ ├── SSL_CTX_flush_sessions.pod │ │ │ │ ├── SSL_CTX_free.pod │ │ │ │ ├── SSL_CTX_get_ex_new_index.pod │ │ │ │ ├── SSL_CTX_get_verify_mode.pod │ │ │ │ ├── SSL_CTX_load_verify_locations.pod │ │ │ │ ├── SSL_CTX_new.pod │ │ │ │ ├── SSL_CTX_sess_number.pod │ │ │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ │ │ ├── SSL_CTX_sessions.pod │ │ │ │ ├── SSL_CTX_set_cert_store.pod │ │ │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ │ │ ├── SSL_CTX_set_cipher_list.pod │ │ │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ │ │ ├── SSL_CTX_set_info_callback.pod │ │ │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ │ │ ├── SSL_CTX_set_mode.pod │ │ │ │ ├── SSL_CTX_set_msg_callback.pod │ │ │ │ ├── SSL_CTX_set_options.pod │ │ │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ │ │ ├── SSL_CTX_set_session_id_context.pod │ │ │ │ ├── SSL_CTX_set_ssl_version.pod │ │ │ │ ├── SSL_CTX_set_timeout.pod │ │ │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ │ │ ├── SSL_CTX_set_tmp_rsa_callback.pod │ │ │ │ ├── SSL_CTX_set_verify.pod │ │ │ │ ├── SSL_CTX_use_certificate.pod │ │ │ │ ├── SSL_SESSION_free.pod │ │ │ │ ├── SSL_SESSION_get_ex_new_index.pod │ │ │ │ ├── SSL_SESSION_get_time.pod │ │ │ │ ├── SSL_accept.pod │ │ │ │ ├── SSL_alert_type_string.pod │ │ │ │ ├── SSL_clear.pod │ │ │ │ ├── SSL_connect.pod │ │ │ │ ├── SSL_do_handshake.pod │ │ │ │ ├── SSL_free.pod │ │ │ │ ├── SSL_get_SSL_CTX.pod │ │ │ │ ├── SSL_get_ciphers.pod │ │ │ │ ├── SSL_get_client_CA_list.pod │ │ │ │ ├── SSL_get_current_cipher.pod │ │ │ │ ├── SSL_get_default_timeout.pod │ │ │ │ ├── SSL_get_error.pod │ │ │ │ ├── SSL_get_ex_data_X509_STORE_CTX_idx.pod │ │ │ │ ├── SSL_get_ex_new_index.pod │ │ │ │ ├── SSL_get_fd.pod │ │ │ │ ├── SSL_get_peer_cert_chain.pod │ │ │ │ ├── SSL_get_peer_certificate.pod │ │ │ │ ├── SSL_get_rbio.pod │ │ │ │ ├── SSL_get_session.pod │ │ │ │ ├── SSL_get_verify_result.pod │ │ │ │ ├── SSL_get_version.pod │ │ │ │ ├── SSL_library_init.pod │ │ │ │ ├── SSL_load_client_CA_file.pod │ │ │ │ ├── SSL_new.pod │ │ │ │ ├── SSL_pending.pod │ │ │ │ ├── SSL_read.pod │ │ │ │ ├── SSL_rstate_string.pod │ │ │ │ ├── SSL_session_reused.pod │ │ │ │ ├── SSL_set_bio.pod │ │ │ │ ├── SSL_set_connect_state.pod │ │ │ │ ├── SSL_set_fd.pod │ │ │ │ ├── SSL_set_session.pod │ │ │ │ ├── SSL_set_shutdown.pod │ │ │ │ ├── SSL_set_verify_result.pod │ │ │ │ ├── SSL_shutdown.pod │ │ │ │ ├── SSL_state_string.pod │ │ │ │ ├── SSL_want.pod │ │ │ │ ├── SSL_write.pod │ │ │ │ ├── d2i_SSL_SESSION.pod │ │ │ │ └── ssl.pod │ │ │ ├── ssleay.txt │ │ │ └── standards.txt │ │ ├── e_os.h │ │ ├── e_os2.h │ │ ├── engines │ │ │ ├── Makefile │ │ │ ├── axp.opt │ │ │ ├── e_4758cca.c │ │ │ ├── e_4758cca.ec │ │ │ ├── e_4758cca_err.c │ │ │ ├── e_4758cca_err.h │ │ │ ├── e_aep.c │ │ │ ├── e_aep.ec │ │ │ ├── e_aep_err.c │ │ │ ├── e_aep_err.h │ │ │ ├── e_atalla.c │ │ │ ├── e_atalla.ec │ │ │ ├── e_atalla_err.c │ │ │ ├── e_atalla_err.h │ │ │ ├── e_capi.c │ │ │ ├── e_capi.ec │ │ │ ├── e_capi_err.c │ │ │ ├── e_capi_err.h │ │ │ ├── e_chil.c │ │ │ ├── e_chil.ec │ │ │ ├── e_chil_err.c │ │ │ ├── e_chil_err.h │ │ │ ├── e_cswift.c │ │ │ ├── e_cswift.ec │ │ │ ├── e_cswift_err.c │ │ │ ├── e_cswift_err.h │ │ │ ├── e_gmp.c │ │ │ ├── e_gmp.ec │ │ │ ├── e_gmp_err.c │ │ │ ├── e_gmp_err.h │ │ │ ├── e_nuron.c │ │ │ ├── e_nuron.ec │ │ │ ├── e_nuron_err.c │ │ │ ├── e_nuron_err.h │ │ │ ├── e_sureware.c │ │ │ ├── e_sureware.ec │ │ │ ├── e_sureware_err.c │ │ │ ├── e_sureware_err.h │ │ │ ├── e_ubsec.c │ │ │ ├── e_ubsec.ec │ │ │ ├── e_ubsec_err.c │ │ │ ├── e_ubsec_err.h │ │ │ ├── engine_vector.mar │ │ │ ├── makeengines.com │ │ │ ├── vax.opt │ │ │ └── vendor_defns │ │ │ │ ├── aep.h │ │ │ │ ├── atalla.h │ │ │ │ ├── cswift.h │ │ │ │ ├── hw_4758_cca.h │ │ │ │ ├── hw_ubsec.h │ │ │ │ ├── hwcryptohook.h │ │ │ │ └── sureware.h │ │ ├── fips │ │ │ ├── Makefile │ │ │ ├── aes │ │ │ │ ├── Makefile │ │ │ │ ├── fips_aes_selftest.c │ │ │ │ └── fips_aesavs.c │ │ │ ├── des │ │ │ │ ├── Makefile │ │ │ │ ├── fips_des_selftest.c │ │ │ │ └── fips_desmovs.c │ │ │ ├── dh │ │ │ │ ├── Makefile │ │ │ │ ├── dh_gen.c │ │ │ │ ├── fips_dh_check.c │ │ │ │ ├── fips_dh_gen.c │ │ │ │ ├── fips_dh_key.c │ │ │ │ └── fips_dh_lib.c │ │ │ ├── dsa │ │ │ │ ├── Makefile │ │ │ │ ├── fips_dsa_gen.c │ │ │ │ ├── fips_dsa_key.c │ │ │ │ ├── fips_dsa_lib.c │ │ │ │ ├── fips_dsa_ossl.c │ │ │ │ ├── fips_dsa_selftest.c │ │ │ │ ├── fips_dsa_sign.c │ │ │ │ ├── fips_dsatest.c │ │ │ │ └── fips_dssvs.c │ │ │ ├── fips-lib.com │ │ │ ├── fips-nodiff.txt │ │ │ ├── fips.c │ │ │ ├── fips.h │ │ │ ├── fips_canister.c │ │ │ ├── fips_locl.h │ │ │ ├── fips_premain.c │ │ │ ├── fips_premain.c.sha1 │ │ │ ├── fips_test_suite.c │ │ │ ├── fips_utl.h │ │ │ ├── fipsalgtest.pl │ │ │ ├── fipsld │ │ │ ├── fipstests.bat │ │ │ ├── fipstests.sh │ │ │ ├── hmac │ │ │ │ ├── Makefile │ │ │ │ ├── fips_hmac.c │ │ │ │ ├── fips_hmac_selftest.c │ │ │ │ └── fips_hmactest.c │ │ │ ├── install.com │ │ │ ├── mkfipsscr.pl │ │ │ ├── openssl_fips_fingerprint │ │ │ ├── rand │ │ │ │ ├── Makefile │ │ │ │ ├── fips_rand.c │ │ │ │ ├── fips_rand.h │ │ │ │ ├── fips_rand_selftest.c │ │ │ │ ├── fips_randtest.c │ │ │ │ └── fips_rngvs.c │ │ │ ├── rsa │ │ │ │ ├── Makefile │ │ │ │ ├── fips_rsa_eay.c │ │ │ │ ├── fips_rsa_gen.c │ │ │ │ ├── fips_rsa_lib.c │ │ │ │ ├── fips_rsa_selftest.c │ │ │ │ ├── fips_rsa_sign.c │ │ │ │ ├── fips_rsa_x931g.c │ │ │ │ ├── fips_rsagtest.c │ │ │ │ ├── fips_rsastest.c │ │ │ │ └── fips_rsavtest.c │ │ │ └── sha │ │ │ │ ├── Makefile │ │ │ │ ├── fips_sha1_selftest.c │ │ │ │ ├── fips_shatest.c │ │ │ │ └── fips_standalone_sha1.c │ │ ├── install.com │ │ ├── makevms.com │ │ ├── ms │ │ │ ├── .rnd │ │ │ ├── 32all.bat │ │ │ ├── README │ │ │ ├── applink.c │ │ │ ├── bcb4.bat │ │ │ ├── certCA.srl │ │ │ ├── certCA.ss │ │ │ ├── certU.ss │ │ │ ├── cmp.pl │ │ │ ├── do_fips.bat │ │ │ ├── do_masm.bat │ │ │ ├── do_ms.bat │ │ │ ├── do_nasm.bat │ │ │ ├── do_nt.bat │ │ │ ├── do_win64a.bat │ │ │ ├── do_win64i.bat │ │ │ ├── keyCA.ss │ │ │ ├── keyU.ss │ │ │ ├── mingw32.bat │ │ │ ├── mw.bat │ │ │ ├── req2CA.ss │ │ │ ├── reqCA.ss │ │ │ ├── reqU.ss │ │ │ ├── segrenam.pl │ │ │ ├── speed32.bat │ │ │ ├── tenc.bat │ │ │ ├── tencce.bat │ │ │ ├── test.bat │ │ │ ├── testce.bat │ │ │ ├── testce2.bat │ │ │ ├── testenc.bat │ │ │ ├── testencce.bat │ │ │ ├── testpem.bat │ │ │ ├── testpemce.bat │ │ │ ├── testss.bat │ │ │ ├── testssce.bat │ │ │ ├── tlhelp32.h │ │ │ ├── tpem.bat │ │ │ ├── tpemce.bat │ │ │ ├── uplink.c │ │ │ ├── uplink.h │ │ │ ├── uplink.pl │ │ │ └── x86asm.bat │ │ ├── openssl.doxy │ │ ├── openssl.spec │ │ ├── os2 │ │ │ ├── OS2-EMX.cmd │ │ │ └── backwardify.pl │ │ ├── shlib │ │ │ ├── Makefile.hpux10-cc │ │ │ ├── README │ │ │ ├── hpux10-cc.sh │ │ │ ├── irix.sh │ │ │ ├── sco5-shared-gcc.sh │ │ │ ├── sco5-shared-installed │ │ │ ├── sco5-shared.sh │ │ │ ├── solaris-sc4.sh │ │ │ ├── solaris.sh │ │ │ ├── sun.sh │ │ │ ├── svr5-shared-gcc.sh │ │ │ ├── svr5-shared-installed │ │ │ ├── svr5-shared.sh │ │ │ ├── win32.bat │ │ │ └── win32dll.bat │ │ ├── ssl │ │ │ ├── Makefile │ │ │ ├── bio_ssl.c │ │ │ ├── d1_both.c │ │ │ ├── d1_clnt.c │ │ │ ├── d1_enc.c │ │ │ ├── d1_lib.c │ │ │ ├── d1_meth.c │ │ │ ├── d1_pkt.c │ │ │ ├── d1_srvr.c │ │ │ ├── dtls1.h │ │ │ ├── install.com │ │ │ ├── kssl.c │ │ │ ├── kssl.h │ │ │ ├── kssl_lcl.h │ │ │ ├── s23_clnt.c │ │ │ ├── s23_lib.c │ │ │ ├── s23_meth.c │ │ │ ├── s23_pkt.c │ │ │ ├── s23_srvr.c │ │ │ ├── s2_clnt.c │ │ │ ├── s2_enc.c │ │ │ ├── s2_lib.c │ │ │ ├── s2_meth.c │ │ │ ├── s2_pkt.c │ │ │ ├── s2_srvr.c │ │ │ ├── s3_both.c │ │ │ ├── s3_clnt.c │ │ │ ├── s3_enc.c │ │ │ ├── s3_lib.c │ │ │ ├── s3_meth.c │ │ │ ├── s3_pkt.c │ │ │ ├── s3_srvr.c │ │ │ ├── ssl-lib.com │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── ssl_algs.c │ │ │ ├── ssl_asn1.c │ │ │ ├── ssl_cert.c │ │ │ ├── ssl_ciph.c │ │ │ ├── ssl_err.c │ │ │ ├── ssl_err2.c │ │ │ ├── ssl_lib.c │ │ │ ├── ssl_locl.h │ │ │ ├── ssl_rsa.c │ │ │ ├── ssl_sess.c │ │ │ ├── ssl_stat.c │ │ │ ├── ssl_task.c │ │ │ ├── ssl_txt.c │ │ │ ├── ssltest.c │ │ │ ├── t1_clnt.c │ │ │ ├── t1_enc.c │ │ │ ├── t1_lib.c │ │ │ ├── t1_meth.c │ │ │ ├── t1_srvr.c │ │ │ └── tls1.h │ │ ├── test │ │ │ ├── CAss.cnf │ │ │ ├── CAssdh.cnf │ │ │ ├── CAssdsa.cnf │ │ │ ├── CAssrsa.cnf │ │ │ ├── Makefile │ │ │ ├── P1ss.cnf │ │ │ ├── P2ss.cnf │ │ │ ├── SHAmix.r │ │ │ ├── SHAmix.x │ │ │ ├── Sssdsa.cnf │ │ │ ├── Sssrsa.cnf │ │ │ ├── Uss.cnf │ │ │ ├── VMSca-response.1 │ │ │ ├── VMSca-response.2 │ │ │ ├── bctest │ │ │ ├── cms-examples.pl │ │ │ ├── cms-test.pl │ │ │ ├── dummytest.c │ │ │ ├── evptests.txt │ │ │ ├── igetest.c │ │ │ ├── maketests.com │ │ │ ├── methtest.c │ │ │ ├── pkcs7-1.pem │ │ │ ├── pkcs7.pem │ │ │ ├── r160test.c │ │ │ ├── smcont.txt │ │ │ ├── smime-certs │ │ │ │ ├── smdsa1.pem │ │ │ │ ├── smdsa2.pem │ │ │ │ ├── smdsa3.pem │ │ │ │ ├── smdsap.pem │ │ │ │ ├── smroot.pem │ │ │ │ ├── smrsa1.pem │ │ │ │ ├── smrsa2.pem │ │ │ │ └── smrsa3.pem │ │ │ ├── tcrl │ │ │ ├── tcrl.com │ │ │ ├── test.cnf │ │ │ ├── testca │ │ │ ├── testca.com │ │ │ ├── testcrl.pem │ │ │ ├── testenc │ │ │ ├── testenc.com │ │ │ ├── testfipsssl │ │ │ ├── testgen │ │ │ ├── testgen.com │ │ │ ├── testp7.pem │ │ │ ├── testreq2.pem │ │ │ ├── testrsa.pem │ │ │ ├── tests.com │ │ │ ├── testsid.pem │ │ │ ├── testss │ │ │ ├── testss.com │ │ │ ├── testssl │ │ │ ├── testssl.com │ │ │ ├── testsslproxy │ │ │ ├── testx509.pem │ │ │ ├── times │ │ │ ├── tpkcs7 │ │ │ ├── tpkcs7.com │ │ │ ├── tpkcs7d │ │ │ ├── tpkcs7d.com │ │ │ ├── treq │ │ │ ├── treq.com │ │ │ ├── trsa │ │ │ ├── trsa.com │ │ │ ├── tsid │ │ │ ├── tsid.com │ │ │ ├── tverify.com │ │ │ ├── tx509 │ │ │ ├── tx509.com │ │ │ ├── v3-cert1.pem │ │ │ └── v3-cert2.pem │ │ ├── times │ │ │ ├── 090 │ │ │ │ └── 586-100.nt │ │ │ ├── 091 │ │ │ │ ├── 486-50.nt │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 68000.bsd │ │ │ │ ├── 686-200.lnx │ │ │ │ ├── alpha064.osf │ │ │ │ ├── alpha164.lnx │ │ │ │ ├── alpha164.osf │ │ │ │ ├── mips-rel.pl │ │ │ │ ├── r10000.irx │ │ │ │ ├── r3000.ult │ │ │ │ └── r4400.irx │ │ │ ├── 100.lnx │ │ │ ├── 100.nt │ │ │ ├── 200.lnx │ │ │ ├── 486-66.dos │ │ │ ├── 486-66.nt │ │ │ ├── 486-66.w31 │ │ │ ├── 5.lnx │ │ │ ├── 586-085i.nt │ │ │ ├── 586-100.LN3 │ │ │ ├── 586-100.NT2 │ │ │ ├── 586-100.dos │ │ │ ├── 586-100.ln4 │ │ │ ├── 586-100.lnx │ │ │ ├── 586-100.nt │ │ │ ├── 586-100.ntx │ │ │ ├── 586-100.w31 │ │ │ ├── 586-1002.lnx │ │ │ ├── 586p-100.lnx │ │ │ ├── 686-200.bsd │ │ │ ├── 686-200.lnx │ │ │ ├── 686-200.nt │ │ │ ├── L1 │ │ │ ├── R10000.t │ │ │ ├── R4400.t │ │ │ ├── aix.t │ │ │ ├── aixold.t │ │ │ ├── alpha.t │ │ │ ├── alpha400.t │ │ │ ├── cyrix100.lnx │ │ │ ├── dgux-x86.t │ │ │ ├── dgux.t │ │ │ ├── hpux-acc.t │ │ │ ├── hpux-kr.t │ │ │ ├── hpux.t │ │ │ ├── p2.w95 │ │ │ ├── pent2.t │ │ │ ├── readme │ │ │ ├── s586-100.lnx │ │ │ ├── s586-100.nt │ │ │ ├── sgi.t │ │ │ ├── sparc.t │ │ │ ├── sparc2 │ │ │ ├── sparcLX.t │ │ │ ├── usparc.t │ │ │ └── x86 │ │ │ │ ├── bfs.cpp │ │ │ │ ├── casts.cpp │ │ │ │ ├── des3s.cpp │ │ │ │ ├── dess.cpp │ │ │ │ ├── md4s.cpp │ │ │ │ ├── md5s.cpp │ │ │ │ ├── rc4s.cpp │ │ │ │ └── sha1s.cpp │ │ ├── tools │ │ │ ├── Makefile │ │ │ ├── c89.sh │ │ │ ├── c_hash │ │ │ ├── c_info │ │ │ ├── c_issuer │ │ │ ├── c_name │ │ │ ├── c_rehash │ │ │ └── c_rehash.in │ │ └── util │ │ │ ├── FreeBSD.sh │ │ │ ├── add_cr.pl │ │ │ ├── arx.pl │ │ │ ├── bat.sh │ │ │ ├── ck_errf.pl │ │ │ ├── clean-depend.pl │ │ │ ├── copy.pl │ │ │ ├── cygwin.sh │ │ │ ├── deleof.pl │ │ │ ├── dirname.pl │ │ │ ├── do_ms.sh │ │ │ ├── domd │ │ │ ├── err-ins.pl │ │ │ ├── extract-names.pl │ │ │ ├── extract-section.pl │ │ │ ├── files.pl │ │ │ ├── fipslink.pl │ │ │ ├── fixNT.sh │ │ │ ├── install.sh │ │ │ ├── libeay.num │ │ │ ├── mk1mf.pl │ │ │ ├── mkcerts.sh │ │ │ ├── mkdef.pl │ │ │ ├── mkdir-p.pl │ │ │ ├── mkerr.pl │ │ │ ├── mkfiles.pl │ │ │ ├── mklink.pl │ │ │ ├── mksdef.pl │ │ │ ├── mkstack.pl │ │ │ ├── opensslwrap.sh │ │ │ ├── perlpath.pl │ │ │ ├── pl │ │ │ ├── BC-32.pl │ │ │ ├── Mingw32.pl │ │ │ ├── OS2-EMX.pl │ │ │ ├── VC-32.pl │ │ │ ├── linux.pl │ │ │ ├── netware.pl │ │ │ ├── ultrix.pl │ │ │ └── unix.pl │ │ │ ├── pod2man.pl │ │ │ ├── pod2mantest │ │ │ ├── pod2mantest.pod │ │ │ ├── point.sh │ │ │ ├── selftest.pl │ │ │ ├── shlib_wrap.sh │ │ │ ├── sp-diff.pl │ │ │ ├── speed.sh │ │ │ ├── src-dep.pl │ │ │ ├── ssleay.num │ │ │ ├── tab_num.pl │ │ │ └── x86asm.sh │ └── version │ ├── tbblib │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── build │ │ │ ├── FreeBSD.gcc.inc │ │ │ ├── FreeBSD.inc │ │ │ ├── Makefile.rml │ │ │ ├── Makefile.tbb │ │ │ ├── Makefile.tbbmalloc │ │ │ ├── Makefile.test │ │ │ ├── SunOS.gcc.inc │ │ │ ├── SunOS.inc │ │ │ ├── SunOS.suncc.inc │ │ │ ├── codecov.txt │ │ │ ├── common.inc │ │ │ ├── common_rules.inc │ │ │ ├── detect.js │ │ │ ├── generate_tbbvars.bat │ │ │ ├── generate_tbbvars.sh │ │ │ ├── index.html │ │ │ ├── linux.gcc.inc │ │ │ ├── linux.icc.inc │ │ │ ├── linux.inc │ │ │ ├── macos.gcc.inc │ │ │ ├── macos.icc.inc │ │ │ ├── macos.inc │ │ │ ├── suncc.map.pause │ │ │ ├── test_launcher.bat │ │ │ ├── test_launcher.sh │ │ │ ├── version_info_linux.sh │ │ │ ├── version_info_macos.sh │ │ │ ├── version_info_sunos.sh │ │ │ ├── version_info_windows.js │ │ │ ├── vsproject │ │ │ │ ├── index.html │ │ │ │ ├── makefile.sln │ │ │ │ ├── tbb.vcproj │ │ │ │ ├── tbbmalloc.vcproj │ │ │ │ ├── tbbmalloc_proxy.vcproj │ │ │ │ └── version_string.tmp │ │ │ ├── windows.cl.inc │ │ │ ├── windows.gcc.inc │ │ │ ├── windows.icl.inc │ │ │ ├── windows.inc │ │ │ ├── xbox360.cl.inc │ │ │ └── xbox360.inc │ │ ├── doc │ │ │ ├── Release_Notes.txt │ │ │ └── html │ │ │ │ ├── a00001.html │ │ │ │ ├── a00002.html │ │ │ │ ├── a00003.html │ │ │ │ ├── a00004.html │ │ │ │ ├── a00005.html │ │ │ │ ├── a00006.html │ │ │ │ ├── a00007.html │ │ │ │ ├── a00009.html │ │ │ │ ├── a00011.html │ │ │ │ ├── a00012.html │ │ │ │ ├── a00013.html │ │ │ │ ├── a00015.html │ │ │ │ ├── a00016.html │ │ │ │ ├── a00017.html │ │ │ │ ├── a00018.html │ │ │ │ ├── a00019.html │ │ │ │ ├── a00021.html │ │ │ │ ├── a00026.html │ │ │ │ ├── a00031.html │ │ │ │ ├── a00034.html │ │ │ │ ├── a00035.html │ │ │ │ ├── a00036.html │ │ │ │ ├── a00037.html │ │ │ │ ├── a00038.html │ │ │ │ ├── a00039.html │ │ │ │ ├── a00040.html │ │ │ │ ├── a00041.html │ │ │ │ ├── a00042.html │ │ │ │ ├── a00043.html │ │ │ │ ├── a00044.html │ │ │ │ ├── a00046.html │ │ │ │ ├── a00048.html │ │ │ │ ├── a00049.html │ │ │ │ ├── a00050.html │ │ │ │ ├── a00051.html │ │ │ │ ├── a00053.html │ │ │ │ ├── a00054.html │ │ │ │ ├── a00055.html │ │ │ │ ├── a00056.html │ │ │ │ ├── a00057.html │ │ │ │ ├── a00058.html │ │ │ │ ├── a00059.html │ │ │ │ ├── a00060.html │ │ │ │ ├── a00061.html │ │ │ │ ├── a00062.html │ │ │ │ ├── a00063.html │ │ │ │ ├── a00065.html │ │ │ │ ├── a00067.html │ │ │ │ ├── a00068.html │ │ │ │ ├── a00069.html │ │ │ │ ├── a00070.html │ │ │ │ ├── a00072.html │ │ │ │ ├── a00073.html │ │ │ │ ├── a00075.html │ │ │ │ ├── a00076.html │ │ │ │ ├── a00077.html │ │ │ │ ├── a00084.html │ │ │ │ ├── a00086.html │ │ │ │ ├── a00088.html │ │ │ │ ├── a00090.html │ │ │ │ ├── a00092.html │ │ │ │ ├── a00094.html │ │ │ │ ├── a00095.html │ │ │ │ ├── a00096.html │ │ │ │ ├── a00097.html │ │ │ │ ├── a00098.html │ │ │ │ ├── a00099.html │ │ │ │ ├── a00100.html │ │ │ │ ├── a00101.html │ │ │ │ ├── a00102.html │ │ │ │ ├── a00109.html │ │ │ │ ├── a00113.html │ │ │ │ ├── a00114.html │ │ │ │ ├── a00141.html │ │ │ │ ├── a00142.html │ │ │ │ ├── a00143.html │ │ │ │ ├── a00144.html │ │ │ │ ├── a00145.html │ │ │ │ ├── a00146.html │ │ │ │ ├── a00147.html │ │ │ │ ├── a00148.html │ │ │ │ ├── a00149.html │ │ │ │ ├── a00150.html │ │ │ │ ├── a00151.html │ │ │ │ ├── a00152.html │ │ │ │ ├── a00153.html │ │ │ │ ├── a00153.png │ │ │ │ ├── a00154.html │ │ │ │ ├── a00155.html │ │ │ │ ├── a00155.png │ │ │ │ ├── a00156.html │ │ │ │ ├── a00157.html │ │ │ │ ├── a00157.png │ │ │ │ ├── a00158.html │ │ │ │ ├── a00159.html │ │ │ │ ├── a00159.png │ │ │ │ ├── a00160.html │ │ │ │ ├── a00161.html │ │ │ │ ├── a00161.png │ │ │ │ ├── a00162.html │ │ │ │ ├── a00163.html │ │ │ │ ├── a00163.png │ │ │ │ ├── a00164.html │ │ │ │ ├── a00165.html │ │ │ │ ├── a00165.png │ │ │ │ ├── a00166.html │ │ │ │ ├── a00167.html │ │ │ │ ├── a00168.html │ │ │ │ ├── a00169.html │ │ │ │ ├── a00170.html │ │ │ │ ├── a00171.html │ │ │ │ ├── a00171.png │ │ │ │ ├── a00172.html │ │ │ │ ├── a00173.html │ │ │ │ ├── a00174.html │ │ │ │ ├── a00175.html │ │ │ │ ├── a00176.html │ │ │ │ ├── a00177.html │ │ │ │ ├── a00178.html │ │ │ │ ├── a00179.html │ │ │ │ ├── a00180.html │ │ │ │ ├── a00181.html │ │ │ │ ├── a00182.html │ │ │ │ ├── a00183.html │ │ │ │ ├── a00184.html │ │ │ │ ├── a00185.html │ │ │ │ ├── a00186.html │ │ │ │ ├── a00187.html │ │ │ │ ├── a00188.html │ │ │ │ ├── a00189.html │ │ │ │ ├── a00190.html │ │ │ │ ├── a00191.html │ │ │ │ ├── a00192.html │ │ │ │ ├── a00193.html │ │ │ │ ├── a00194.html │ │ │ │ ├── a00195.html │ │ │ │ ├── a00196.html │ │ │ │ ├── a00197.html │ │ │ │ ├── a00198.html │ │ │ │ ├── a00199.html │ │ │ │ ├── a00199.png │ │ │ │ ├── a00200.html │ │ │ │ ├── a00201.html │ │ │ │ ├── a00202.html │ │ │ │ ├── a00203.html │ │ │ │ ├── a00204.html │ │ │ │ ├── a00205.html │ │ │ │ ├── a00206.html │ │ │ │ ├── a00206.png │ │ │ │ ├── a00207.html │ │ │ │ ├── a00208.html │ │ │ │ ├── a00209.html │ │ │ │ ├── a00209.png │ │ │ │ ├── a00210.html │ │ │ │ ├── a00211.html │ │ │ │ ├── a00212.html │ │ │ │ ├── a00213.html │ │ │ │ ├── a00214.html │ │ │ │ ├── a00248.html │ │ │ │ ├── a00267.html │ │ │ │ ├── a00273.html │ │ │ │ ├── a00274.html │ │ │ │ ├── a00275.html │ │ │ │ ├── a00276.html │ │ │ │ ├── a00277.html │ │ │ │ ├── a00278.html │ │ │ │ ├── a00279.html │ │ │ │ ├── a00280.html │ │ │ │ ├── a00298.html │ │ │ │ ├── a00308.html │ │ │ │ ├── a00310.html │ │ │ │ ├── a00311.html │ │ │ │ ├── a00319.html │ │ │ │ ├── a00320.html │ │ │ │ ├── a00321.html │ │ │ │ ├── a00322.html │ │ │ │ ├── a00324.html │ │ │ │ ├── a00325.html │ │ │ │ ├── a00335.html │ │ │ │ ├── a00336.html │ │ │ │ ├── a00341.html │ │ │ │ ├── a00350.html │ │ │ │ ├── a00353.html │ │ │ │ ├── a00362.html │ │ │ │ ├── a00364.html │ │ │ │ ├── a00365.html │ │ │ │ ├── a00366.html │ │ │ │ ├── a00375.html │ │ │ │ ├── a00379.html │ │ │ │ ├── a00381.html │ │ │ │ ├── a00387.html │ │ │ │ ├── a00391.html │ │ │ │ ├── a00396.html │ │ │ │ ├── a00400.html │ │ │ │ ├── a00404.html │ │ │ │ ├── a00409.html │ │ │ │ ├── a00420.html │ │ │ │ ├── a00421.html │ │ │ │ ├── a00422.html │ │ │ │ ├── a00423.html │ │ │ │ ├── a00424.html │ │ │ │ ├── a00425.html │ │ │ │ ├── a00426.html │ │ │ │ ├── a00427.html │ │ │ │ ├── a00436.html │ │ │ │ ├── a00443.html │ │ │ │ ├── a00444.html │ │ │ │ ├── a00446.html │ │ │ │ ├── a00447.html │ │ │ │ ├── a00451.html │ │ │ │ ├── a00452.html │ │ │ │ ├── a00453.html │ │ │ │ ├── a00454.html │ │ │ │ ├── a00458.html │ │ │ │ ├── a00459.html │ │ │ │ ├── a00466.html │ │ │ │ ├── a00474.html │ │ │ │ ├── a00476.html │ │ │ │ ├── annotated.html │ │ │ │ ├── concepts.html │ │ │ │ ├── deprecated.html │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── files.html │ │ │ │ ├── functions.html │ │ │ │ ├── functions_enum.html │ │ │ │ ├── functions_eval.html │ │ │ │ ├── functions_func.html │ │ │ │ ├── functions_rela.html │ │ │ │ ├── functions_type.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── hierarchy.html │ │ │ │ ├── index.html │ │ │ │ ├── modules.html │ │ │ │ ├── namespacemembers.html │ │ │ │ ├── namespacemembers_enum.html │ │ │ │ ├── namespacemembers_eval.html │ │ │ │ ├── namespacemembers_func.html │ │ │ │ ├── namespacemembers_type.html │ │ │ │ ├── namespaces.html │ │ │ │ ├── pages.html │ │ │ │ ├── parallel_do_body_req.html │ │ │ │ ├── parallel_for_body_req.html │ │ │ │ ├── parallel_reduce_body_req.html │ │ │ │ ├── parallel_reduce_lambda_req.html │ │ │ │ ├── parallel_scan_body_req.html │ │ │ │ ├── parallel_sort_iter_req.html │ │ │ │ ├── range_req.html │ │ │ │ ├── tab_b.gif │ │ │ │ ├── tab_l.gif │ │ │ │ ├── tab_r.gif │ │ │ │ └── tabs.css │ │ ├── examples │ │ │ ├── GettingStarted │ │ │ │ ├── index.html │ │ │ │ └── sub_string_finder │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ ├── sub_string_finder.icproj │ │ │ │ │ ├── sub_string_finder.vcproj │ │ │ │ │ ├── sub_string_finder_cl.sln │ │ │ │ │ ├── sub_string_finder_extended.icproj │ │ │ │ │ ├── sub_string_finder_extended.vcproj │ │ │ │ │ ├── sub_string_finder_icl.sln │ │ │ │ │ ├── sub_string_finder_pretty.icproj │ │ │ │ │ └── sub_string_finder_pretty.vcproj │ │ │ │ │ ├── sub_string_finder.cpp │ │ │ │ │ ├── sub_string_finder_extended.cpp │ │ │ │ │ ├── sub_string_finder_pretty.cpp │ │ │ │ │ └── xcode │ │ │ │ │ └── sub_string_finder.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── Makefile │ │ │ ├── common │ │ │ │ ├── copy_libraries.bat │ │ │ │ ├── gui │ │ │ │ │ ├── Makefile.gmake │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── convideo.cpp │ │ │ │ │ ├── ddvideo.cpp │ │ │ │ │ ├── dxcheck.bat │ │ │ │ │ ├── gdivideo.cpp │ │ │ │ │ ├── macvideo.cpp │ │ │ │ │ ├── video.h │ │ │ │ │ ├── winvideo.h │ │ │ │ │ └── xvideo.cpp │ │ │ │ └── index.html │ │ │ ├── concurrent_hash_map │ │ │ │ ├── count_strings │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── count_strings.cpp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ │ ├── count_strings.icproj │ │ │ │ │ │ ├── count_strings.vcproj │ │ │ │ │ │ ├── count_strings_cl.sln │ │ │ │ │ │ └── count_strings_icl.sln │ │ │ │ │ └── xcode │ │ │ │ │ │ └── count_strings.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── parallel_do │ │ │ │ ├── index.html │ │ │ │ └── parallel_preorder │ │ │ │ │ ├── Graph.cpp │ │ │ │ │ ├── Graph.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ ├── parallel_preorder.icproj │ │ │ │ │ ├── parallel_preorder.vcproj │ │ │ │ │ ├── parallel_preorder_cl.sln │ │ │ │ │ └── parallel_preorder_icl.sln │ │ │ │ │ ├── parallel_preorder.cpp │ │ │ │ │ └── xcode │ │ │ │ │ └── parallel_preorder.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── parallel_for │ │ │ │ ├── game_of_life.NET │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ │ ├── Game_of_life.sln │ │ │ │ │ │ ├── Game_of_life.vcproj │ │ │ │ │ │ ├── app.ico │ │ │ │ │ │ ├── app.rc │ │ │ │ │ │ └── resource.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ │ │ ├── Board.h │ │ │ │ │ │ ├── Evolution.cpp │ │ │ │ │ │ ├── Evolution.h │ │ │ │ │ │ ├── Form1.h │ │ │ │ │ │ ├── Game_of_life.cpp │ │ │ │ │ │ └── Update_state.cpp │ │ │ │ ├── index.html │ │ │ │ ├── polygon_overlay │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ │ ├── pover.icproj │ │ │ │ │ │ ├── pover.rc │ │ │ │ │ │ ├── pover.vcproj │ │ │ │ │ │ ├── pover_cl.sln │ │ │ │ │ │ ├── pover_icl.sln │ │ │ │ │ │ └── resource.h │ │ │ │ │ ├── polymain.cpp │ │ │ │ │ ├── polymain.h │ │ │ │ │ ├── polyover.cpp │ │ │ │ │ ├── polyover.h │ │ │ │ │ ├── pover_global.h │ │ │ │ │ ├── pover_video.cpp │ │ │ │ │ ├── pover_video.h │ │ │ │ │ ├── rpolygon.h │ │ │ │ │ ├── speedup.gif │ │ │ │ │ └── xcode │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── main.nib │ │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ │ └── objects.xib │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── PolygonOverlay.pch │ │ │ │ │ │ └── PolygonOverlay.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── seismic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── SeismicSimulation.cpp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ │ ├── SeismicSimulation.ico │ │ │ │ │ │ ├── SeismicSimulation.icproj │ │ │ │ │ │ ├── SeismicSimulation.rc │ │ │ │ │ │ ├── SeismicSimulation.vcproj │ │ │ │ │ │ ├── SeismicSimulation_cl.sln │ │ │ │ │ │ ├── SeismicSimulation_icl.sln │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ └── small.ico │ │ │ │ │ └── xcode │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── main.nib │ │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ │ └── objects.xib │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── SeismicSimulation.pch │ │ │ │ │ │ └── SeismicSimulation.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ └── tachyon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── dat │ │ │ │ │ ├── 820spheres.dat │ │ │ │ │ ├── balls.dat │ │ │ │ │ ├── balls3.dat │ │ │ │ │ ├── lattice.dat │ │ │ │ │ ├── model2.dat │ │ │ │ │ ├── teapot.dat │ │ │ │ │ └── trypsin4pti.dat │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ ├── gui.ico │ │ │ │ │ ├── gui.rc │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── small.ico │ │ │ │ │ ├── tachyon.icproj │ │ │ │ │ ├── tachyon.serial.icproj │ │ │ │ │ ├── tachyon.serial.vcproj │ │ │ │ │ ├── tachyon.tbb.icproj │ │ │ │ │ ├── tachyon.tbb.vcproj │ │ │ │ │ ├── tachyon.tbb1d.icproj │ │ │ │ │ ├── tachyon.tbb1d.vcproj │ │ │ │ │ ├── tachyon.vcproj │ │ │ │ │ ├── tachyon_cl.sln │ │ │ │ │ └── tachyon_icl.sln │ │ │ │ │ ├── src │ │ │ │ │ ├── api.cpp │ │ │ │ │ ├── api.h │ │ │ │ │ ├── apigeom.cpp │ │ │ │ │ ├── apitrigeom.cpp │ │ │ │ │ ├── apitrigeom.h │ │ │ │ │ ├── bndbox.cpp │ │ │ │ │ ├── bndbox.h │ │ │ │ │ ├── box.cpp │ │ │ │ │ ├── box.h │ │ │ │ │ ├── camera.cpp │ │ │ │ │ ├── camera.h │ │ │ │ │ ├── coordsys.cpp │ │ │ │ │ ├── coordsys.h │ │ │ │ │ ├── cylinder.cpp │ │ │ │ │ ├── cylinder.h │ │ │ │ │ ├── extvol.cpp │ │ │ │ │ ├── extvol.h │ │ │ │ │ ├── getargs.cpp │ │ │ │ │ ├── getargs.h │ │ │ │ │ ├── global.cpp │ │ │ │ │ ├── global.h │ │ │ │ │ ├── grid.cpp │ │ │ │ │ ├── grid.h │ │ │ │ │ ├── imageio.cpp │ │ │ │ │ ├── imageio.h │ │ │ │ │ ├── imap.cpp │ │ │ │ │ ├── imap.h │ │ │ │ │ ├── intersect.cpp │ │ │ │ │ ├── intersect.h │ │ │ │ │ ├── jpeg.cpp │ │ │ │ │ ├── jpeg.h │ │ │ │ │ ├── light.cpp │ │ │ │ │ ├── light.h │ │ │ │ │ ├── machine.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── objbound.cpp │ │ │ │ │ ├── objbound.h │ │ │ │ │ ├── parse.cpp │ │ │ │ │ ├── parse.h │ │ │ │ │ ├── plane.cpp │ │ │ │ │ ├── plane.h │ │ │ │ │ ├── ppm.cpp │ │ │ │ │ ├── ppm.h │ │ │ │ │ ├── pthread.cpp │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── quadric.cpp │ │ │ │ │ ├── quadric.h │ │ │ │ │ ├── render.cpp │ │ │ │ │ ├── render.h │ │ │ │ │ ├── ring.cpp │ │ │ │ │ ├── ring.h │ │ │ │ │ ├── shade.cpp │ │ │ │ │ ├── shade.h │ │ │ │ │ ├── sphere.cpp │ │ │ │ │ ├── sphere.h │ │ │ │ │ ├── texture.cpp │ │ │ │ │ ├── texture.h │ │ │ │ │ ├── tgafile.cpp │ │ │ │ │ ├── tgafile.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── trace.serial.cpp │ │ │ │ │ ├── trace.tbb.cpp │ │ │ │ │ ├── trace.tbb1d.cpp │ │ │ │ │ ├── trace_rest.cpp │ │ │ │ │ ├── triangle.cpp │ │ │ │ │ ├── triangle.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.cpp │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── util.cpp │ │ │ │ │ ├── util.h │ │ │ │ │ ├── vector.cpp │ │ │ │ │ ├── vector.h │ │ │ │ │ ├── video.cpp │ │ │ │ │ ├── video.h │ │ │ │ │ ├── vol.cpp │ │ │ │ │ └── vol.h │ │ │ │ │ └── xcode │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── main.nib │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ └── objects.xib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── tachyon.pch │ │ │ │ │ └── tachyon.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── parallel_reduce │ │ │ │ ├── convex_hull │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── convex_hull.h │ │ │ │ │ ├── convex_hull_bench.cpp │ │ │ │ │ ├── convex_hull_sample.cpp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ │ ├── convex_hull_benchmark.icproj │ │ │ │ │ │ ├── convex_hull_benchmark.vcproj │ │ │ │ │ │ ├── convex_hull_cl.sln │ │ │ │ │ │ ├── convex_hull_icl.sln │ │ │ │ │ │ ├── convex_hull_sample.icproj │ │ │ │ │ │ └── convex_hull_sample.vcproj │ │ │ │ │ └── xcode │ │ │ │ │ │ └── convex_hull.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── index.html │ │ │ │ └── primes │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ ├── primes.icproj │ │ │ │ │ ├── primes.vcproj │ │ │ │ │ ├── primes_cl.sln │ │ │ │ │ └── primes_icl.sln │ │ │ │ │ ├── primes.cpp │ │ │ │ │ └── xcode │ │ │ │ │ └── primes.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── pipeline │ │ │ │ ├── index.html │ │ │ │ └── square │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── gen_input.cpp │ │ │ │ │ ├── index.html │ │ │ │ │ ├── msvs │ │ │ │ │ ├── gen_input.icproj │ │ │ │ │ ├── gen_input.vcproj │ │ │ │ │ ├── square.icproj │ │ │ │ │ ├── square.vcproj │ │ │ │ │ ├── square.vcproj.user │ │ │ │ │ ├── square_cl.sln │ │ │ │ │ └── square_icl.sln │ │ │ │ │ ├── square.cpp │ │ │ │ │ └── xcode │ │ │ │ │ └── square.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── task │ │ │ │ ├── index.html │ │ │ │ └── tree_sum │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── OptimizedParallelSumTree.cpp │ │ │ │ │ ├── SerialSumTree.cpp │ │ │ │ │ ├── SimpleParallelSumTree.cpp │ │ │ │ │ ├── common.h │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── msvs │ │ │ │ │ ├── tree_sum.icproj │ │ │ │ │ ├── tree_sum.vcproj │ │ │ │ │ ├── tree_sum_cl.sln │ │ │ │ │ └── tree_sum_icl.sln │ │ │ │ │ └── xcode │ │ │ │ │ └── tree_sum.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── task_group │ │ │ │ ├── index.html │ │ │ │ └── sudoku │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.windows │ │ │ │ │ ├── index.html │ │ │ │ │ ├── input1 │ │ │ │ │ ├── input2 │ │ │ │ │ ├── input3 │ │ │ │ │ ├── input4 │ │ │ │ │ ├── msvs │ │ │ │ │ ├── sudoku.icproj │ │ │ │ │ ├── sudoku.vcproj │ │ │ │ │ ├── sudoku_cl.sln │ │ │ │ │ └── sudoku_icl.sln │ │ │ │ │ └── sudoku.cpp │ │ │ └── test_all │ │ │ │ ├── fibonacci │ │ │ │ ├── Fibonacci.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── index.html │ │ │ │ ├── msvs │ │ │ │ │ ├── fibonacci.icproj │ │ │ │ │ ├── fibonacci.vcproj │ │ │ │ │ ├── fibonacci_cl.sln │ │ │ │ │ └── fibonacci_icl.sln │ │ │ │ └── xcode │ │ │ │ │ └── fibonacci.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── index.html │ │ ├── include │ │ │ ├── index.html │ │ │ └── tbb │ │ │ │ ├── _concurrent_queue_internal.h │ │ │ │ ├── _concurrent_unordered_internal.h │ │ │ │ ├── _tbb_windef.h │ │ │ │ ├── aligned_space.h │ │ │ │ ├── atomic.h │ │ │ │ ├── blocked_range.h │ │ │ │ ├── blocked_range2d.h │ │ │ │ ├── blocked_range3d.h │ │ │ │ ├── cache_aligned_allocator.h │ │ │ │ ├── combinable.h │ │ │ │ ├── compat │ │ │ │ ├── condition_variable │ │ │ │ ├── ppl.h │ │ │ │ └── thread │ │ │ │ ├── concurrent_hash_map.h │ │ │ │ ├── concurrent_queue.h │ │ │ │ ├── concurrent_unordered_map.h │ │ │ │ ├── concurrent_vector.h │ │ │ │ ├── critical_section.h │ │ │ │ ├── enumerable_thread_specific.h │ │ │ │ ├── index.html │ │ │ │ ├── machine │ │ │ │ ├── ibm_aix51.h │ │ │ │ ├── linux_common.h │ │ │ │ ├── linux_ia32.h │ │ │ │ ├── linux_ia64.h │ │ │ │ ├── linux_intel64.h │ │ │ │ ├── mac_ppc.h │ │ │ │ ├── sunos_sparc.h │ │ │ │ ├── windows_ia32.h │ │ │ │ ├── windows_intel64.h │ │ │ │ └── xbox360_ppc.h │ │ │ │ ├── mutex.h │ │ │ │ ├── null_mutex.h │ │ │ │ ├── null_rw_mutex.h │ │ │ │ ├── parallel_do.h │ │ │ │ ├── parallel_for.h │ │ │ │ ├── parallel_for_each.h │ │ │ │ ├── parallel_invoke.h │ │ │ │ ├── parallel_reduce.h │ │ │ │ ├── parallel_scan.h │ │ │ │ ├── parallel_sort.h │ │ │ │ ├── parallel_while.h │ │ │ │ ├── partitioner.h │ │ │ │ ├── pipeline.h │ │ │ │ ├── queuing_mutex.h │ │ │ │ ├── queuing_rw_mutex.h │ │ │ │ ├── reader_writer_lock.h │ │ │ │ ├── recursive_mutex.h │ │ │ │ ├── scalable_allocator.h │ │ │ │ ├── spin_mutex.h │ │ │ │ ├── spin_rw_mutex.h │ │ │ │ ├── task.h │ │ │ │ ├── task_group.h │ │ │ │ ├── task_scheduler_init.h │ │ │ │ ├── task_scheduler_observer.h │ │ │ │ ├── tbb.h │ │ │ │ ├── tbb_allocator.h │ │ │ │ ├── tbb_config.h │ │ │ │ ├── tbb_exception.h │ │ │ │ ├── tbb_machine.h │ │ │ │ ├── tbb_profiling.h │ │ │ │ ├── tbb_stddef.h │ │ │ │ ├── tbb_thread.h │ │ │ │ ├── tbbmalloc_proxy.h │ │ │ │ └── tick_count.h │ │ ├── index.html │ │ └── src │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── old │ │ │ ├── concurrent_queue_v2.cpp │ │ │ ├── concurrent_queue_v2.h │ │ │ ├── concurrent_vector_v2.cpp │ │ │ ├── concurrent_vector_v2.h │ │ │ ├── spin_rw_mutex_v2.cpp │ │ │ ├── spin_rw_mutex_v2.h │ │ │ ├── task_v2.cpp │ │ │ ├── test_concurrent_queue_v2.cpp │ │ │ ├── test_concurrent_vector_v2.cpp │ │ │ ├── test_mutex_v2.cpp │ │ │ └── test_task_v2.cpp │ │ │ ├── perf │ │ │ ├── fibonacci_cutoff.cpp │ │ │ ├── fibonacci_impl_tbb.cpp │ │ │ ├── perf_util.h │ │ │ ├── statistics.cpp │ │ │ ├── statistics.h │ │ │ ├── statistics_xml.h │ │ │ ├── time_base.cpp │ │ │ ├── time_framework.h │ │ │ ├── time_hash_map.cpp │ │ │ ├── time_hash_map_fill.cpp │ │ │ ├── time_locked_work.cpp │ │ │ ├── time_sandbox.h │ │ │ ├── time_unit.cpp │ │ │ └── time_vector.cpp │ │ │ ├── rml │ │ │ ├── client │ │ │ │ ├── index.html │ │ │ │ ├── library_assert.h │ │ │ │ ├── omp_dynamic_link.cpp │ │ │ │ ├── omp_dynamic_link.h │ │ │ │ ├── rml_factory.h │ │ │ │ ├── rml_omp.cpp │ │ │ │ └── rml_tbb.cpp │ │ │ ├── include │ │ │ │ ├── index.html │ │ │ │ ├── rml_base.h │ │ │ │ ├── rml_omp.h │ │ │ │ └── rml_tbb.h │ │ │ ├── index.html │ │ │ ├── perfor │ │ │ │ ├── omp_nested.cpp │ │ │ │ ├── omp_simple.cpp │ │ │ │ ├── tbb_multi_omp.cpp │ │ │ │ ├── tbb_simple.cpp │ │ │ │ └── thread_level.h │ │ │ ├── server │ │ │ │ ├── index.html │ │ │ │ ├── irml.rc │ │ │ │ ├── job_automaton.h │ │ │ │ ├── lin-rml-export.def │ │ │ │ ├── rml_server.cpp │ │ │ │ ├── thread_monitor.h │ │ │ │ ├── wait_counter.h │ │ │ │ ├── win32-rml-export.def │ │ │ │ └── win64-rml-export.def │ │ │ └── test │ │ │ │ ├── rml_omp_stub.cpp │ │ │ │ ├── test_job_automaton.cpp │ │ │ │ ├── test_rml_mixed.cpp │ │ │ │ ├── test_rml_omp.cpp │ │ │ │ ├── test_rml_omp_c_linkage.c │ │ │ │ ├── test_rml_tbb.cpp │ │ │ │ ├── test_server.h │ │ │ │ └── test_thread_monitor.cpp │ │ │ ├── tbb │ │ │ ├── arena.cpp │ │ │ ├── arena.h │ │ │ ├── cache_aligned_allocator.cpp │ │ │ ├── concurrent_hash_map.cpp │ │ │ ├── concurrent_monitor.cpp │ │ │ ├── concurrent_monitor.h │ │ │ ├── concurrent_queue.cpp │ │ │ ├── concurrent_vector.cpp │ │ │ ├── condition_variable.cpp │ │ │ ├── critical_section.cpp │ │ │ ├── custom_scheduler.h │ │ │ ├── dynamic_link.cpp │ │ │ ├── dynamic_link.h │ │ │ ├── governor.cpp │ │ │ ├── governor.h │ │ │ ├── ia32-masm │ │ │ │ ├── atomic_support.asm │ │ │ │ └── lock_byte.asm │ │ │ ├── ia64-gas │ │ │ │ ├── atomic_support.s │ │ │ │ ├── ia64_misc.s │ │ │ │ ├── lock_byte.s │ │ │ │ ├── log2.s │ │ │ │ └── pause.s │ │ │ ├── ibm_aix51 │ │ │ │ └── atomic_support.c │ │ │ ├── index.html │ │ │ ├── intel64-masm │ │ │ │ └── atomic_support.asm │ │ │ ├── intrusive_list.h │ │ │ ├── itt_notify.cpp │ │ │ ├── itt_notify.h │ │ │ ├── lin32-tbb-export.def │ │ │ ├── lin64-tbb-export.def │ │ │ ├── lin64ipf-tbb-export.def │ │ │ ├── mac32-tbb-export.def │ │ │ ├── mac64-tbb-export.def │ │ │ ├── mailbox.h │ │ │ ├── market.cpp │ │ │ ├── market.h │ │ │ ├── mutex.cpp │ │ │ ├── observer_proxy.cpp │ │ │ ├── observer_proxy.h │ │ │ ├── pipeline.cpp │ │ │ ├── private_server.cpp │ │ │ ├── queuing_mutex.cpp │ │ │ ├── queuing_rw_mutex.cpp │ │ │ ├── reader_writer_lock.cpp │ │ │ ├── recursive_mutex.cpp │ │ │ ├── scheduler.cpp │ │ │ ├── scheduler.h │ │ │ ├── scheduler_common.h │ │ │ ├── scheduler_utility.h │ │ │ ├── spin_mutex.cpp │ │ │ ├── spin_rw_mutex.cpp │ │ │ ├── task.cpp │ │ │ ├── task_group_context.cpp │ │ │ ├── task_stream.h │ │ │ ├── tbb_assert_impl.h │ │ │ ├── tbb_main.cpp │ │ │ ├── tbb_main.h │ │ │ ├── tbb_misc.cpp │ │ │ ├── tbb_misc.h │ │ │ ├── tbb_resource.rc │ │ │ ├── tbb_thread.cpp │ │ │ ├── tbb_version.h │ │ │ ├── tls.h │ │ │ ├── tools_api │ │ │ │ ├── disable_warnings.h │ │ │ │ ├── internal │ │ │ │ │ └── ittnotify.h │ │ │ │ ├── ittnotify.h │ │ │ │ ├── ittnotify_config.h │ │ │ │ ├── ittnotify_static.c │ │ │ │ ├── ittnotify_static.h │ │ │ │ ├── ittnotify_types.h │ │ │ │ ├── legacy │ │ │ │ │ └── ittnotify.h │ │ │ │ └── prototype │ │ │ │ │ └── ittnotify.h │ │ │ ├── win32-tbb-export.def │ │ │ ├── win64-tbb-export.def │ │ │ └── xbox360-tbb-export.def │ │ │ ├── tbbmalloc │ │ │ ├── Customize.h │ │ │ ├── LifoList.h │ │ │ ├── MapMemory.h │ │ │ ├── MemoryAllocator.cpp │ │ │ ├── Statistics.h │ │ │ ├── TypeDefinitions.h │ │ │ ├── lin-tbbmalloc-export.def │ │ │ ├── lin32-proxy-export.def │ │ │ ├── lin64-proxy-export.def │ │ │ ├── lin64ipf-proxy-export.def │ │ │ ├── mac32-tbbmalloc-export.def │ │ │ ├── mac64-tbbmalloc-export.def │ │ │ ├── proxy.cpp │ │ │ ├── proxy.h │ │ │ ├── tbb_function_replacement.cpp │ │ │ ├── tbb_function_replacement.h │ │ │ ├── tbbmalloc.cpp │ │ │ ├── tbbmalloc.rc │ │ │ ├── win-gcc-tbbmalloc-export.def │ │ │ ├── win32-tbbmalloc-export.def │ │ │ ├── win64-tbbmalloc-export.def │ │ │ └── xbox360-tbbmalloc-export.def │ │ │ └── test │ │ │ ├── harness.h │ │ │ ├── harness_allocator.h │ │ │ ├── harness_assert.h │ │ │ ├── harness_bad_expr.h │ │ │ ├── harness_barrier.h │ │ │ ├── harness_concurrency_tracker.h │ │ │ ├── harness_cpu.h │ │ │ ├── harness_eh.h │ │ │ ├── harness_inject_scheduler.h │ │ │ ├── harness_iterator.h │ │ │ ├── harness_m128.h │ │ │ ├── harness_memory.h │ │ │ ├── harness_report.h │ │ │ ├── test_ScalableAllocator.cpp │ │ │ ├── test_ScalableAllocator_STL.cpp │ │ │ ├── test_aligned_space.cpp │ │ │ ├── test_allocator.h │ │ │ ├── test_allocator_STL.h │ │ │ ├── test_assembly.cpp │ │ │ ├── test_atomic.cpp │ │ │ ├── test_blocked_range.cpp │ │ │ ├── test_blocked_range2d.cpp │ │ │ ├── test_blocked_range3d.cpp │ │ │ ├── test_cache_aligned_allocator.cpp │ │ │ ├── test_cache_aligned_allocator_STL.cpp │ │ │ ├── test_combinable.cpp │ │ │ ├── test_compiler.cpp │ │ │ ├── test_concurrent_hash_map.cpp │ │ │ ├── test_concurrent_monitor.cpp │ │ │ ├── test_concurrent_queue.cpp │ │ │ ├── test_concurrent_unordered.cpp │ │ │ ├── test_concurrent_vector.cpp │ │ │ ├── test_condition_variable.h │ │ │ ├── test_critical_section.cpp │ │ │ ├── test_eh_algorithms.cpp │ │ │ ├── test_eh_tasks.cpp │ │ │ ├── test_enumerable_thread_specific.cpp │ │ │ ├── test_halt.cpp │ │ │ ├── test_handle_perror.cpp │ │ │ ├── test_inits_loop.cpp │ │ │ ├── test_intrusive_list.cpp │ │ │ ├── test_ittnotify.cpp │ │ │ ├── test_lambda.cpp │ │ │ ├── test_malloc_compliance.cpp │ │ │ ├── test_malloc_lib_unload.cpp │ │ │ ├── test_malloc_overload.cpp │ │ │ ├── test_malloc_pure_c.c │ │ │ ├── test_malloc_regression.cpp │ │ │ ├── test_malloc_whitebox.cpp │ │ │ ├── test_model_plugin.cpp │ │ │ ├── test_mutex.cpp │ │ │ ├── test_mutex_native_threads.cpp │ │ │ ├── test_openmp.cpp │ │ │ ├── test_parallel_do.cpp │ │ │ ├── test_parallel_for.cpp │ │ │ ├── test_parallel_for_each.cpp │ │ │ ├── test_parallel_invoke.cpp │ │ │ ├── test_parallel_pipeline.cpp │ │ │ ├── test_parallel_reduce.cpp │ │ │ ├── test_parallel_scan.cpp │ │ │ ├── test_parallel_sort.cpp │ │ │ ├── test_parallel_while.cpp │ │ │ ├── test_pipeline.cpp │ │ │ ├── test_pipeline_with_tbf.cpp │ │ │ ├── test_reader_writer_lock.cpp │ │ │ ├── test_rwm_upgrade_downgrade.cpp │ │ │ ├── test_std_thread.cpp │ │ │ ├── test_task.cpp │ │ │ ├── test_task_assertions.cpp │ │ │ ├── test_task_auto_init.cpp │ │ │ ├── test_task_group.cpp │ │ │ ├── test_task_leaks.cpp │ │ │ ├── test_task_scheduler_init.cpp │ │ │ ├── test_task_scheduler_observer.cpp │ │ │ ├── test_tbb_condition_variable.cpp │ │ │ ├── test_tbb_header.cpp │ │ │ ├── test_tbb_thread.cpp │ │ │ ├── test_tbb_version.cpp │ │ │ ├── test_thread.h │ │ │ ├── test_tick_count.cpp │ │ │ └── test_yield.cpp │ └── version │ ├── uptcpip │ ├── parsec │ │ ├── gcc-hooks.bldconf │ │ ├── gcc-openmp.bldconf │ │ ├── gcc-pthreads.bldconf │ │ ├── gcc-serial.bldconf │ │ ├── gcc-tbb.bldconf │ │ ├── gcc.bldconf │ │ └── icc.bldconf │ ├── src │ │ ├── Makefile │ │ ├── Makefile.config │ │ ├── diff-030521 │ │ ├── freebsd.kern │ │ │ ├── Makefile │ │ │ ├── kern_clock.c │ │ │ ├── kern_intr.c │ │ │ ├── kern_malloc.c │ │ │ ├── kern_mbuf.c │ │ │ ├── kern_mutex.c │ │ │ ├── kern_rwlock.c │ │ │ ├── kern_shutdown.c │ │ │ ├── kern_sx.c │ │ │ ├── kern_synch.c │ │ │ ├── kern_tc.c │ │ │ ├── kern_timeout.c │ │ │ ├── subr_bufring.c │ │ │ ├── subr_prf.c │ │ │ ├── uipc_syscalls.c │ │ │ └── uma_core.c │ │ ├── freebsd.netinet │ │ │ ├── Makefile │ │ │ ├── arc4random.c │ │ │ ├── divdi3.c │ │ │ ├── harvest.c │ │ │ ├── if.c │ │ │ ├── if_ether.c │ │ │ ├── if_gif.c │ │ │ ├── if_llatbl.c │ │ │ ├── if_loop.c │ │ │ ├── igmp.c │ │ │ ├── in.c │ │ │ ├── in_cksum.c │ │ │ ├── in_cksum_i386.c │ │ │ ├── in_cksum_x86_64.c │ │ │ ├── in_gif.c │ │ │ ├── in_mcast.c │ │ │ ├── in_pcb.c │ │ │ ├── in_proto.c │ │ │ ├── in_rmx.c │ │ │ ├── inet_ntoa.c │ │ │ ├── ip_ecn.c │ │ │ ├── ip_encap.c │ │ │ ├── ip_fastfwd.c │ │ │ ├── ip_icmp.c │ │ │ ├── ip_id.c │ │ │ ├── ip_input.c │ │ │ ├── ip_options.c │ │ │ ├── ip_output.c │ │ │ ├── kern_subr.c │ │ │ ├── md5c.c │ │ │ ├── netisr.c │ │ │ ├── qdivrem.c │ │ │ ├── radix.c │ │ │ ├── random.c │ │ │ ├── raw_ip.c │ │ │ ├── route.c │ │ │ ├── strcat.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strlcpy.c │ │ │ ├── strlen.c │ │ │ ├── strncmp.c │ │ │ ├── subr_sbuf.c │ │ │ ├── support.c │ │ │ ├── tcp_hostcache.c │ │ │ ├── tcp_input.c │ │ │ ├── tcp_lro.c │ │ │ ├── tcp_offload.c │ │ │ ├── tcp_output.c │ │ │ ├── tcp_reass.c │ │ │ ├── tcp_sack.c │ │ │ ├── tcp_subr.c │ │ │ ├── tcp_syncache.c │ │ │ ├── tcp_timer.c │ │ │ ├── tcp_timewait.c │ │ │ ├── tcp_usrreq.c │ │ │ ├── udivdi3.c │ │ │ ├── udp_usrreq.c │ │ │ ├── uipc_domain.c │ │ │ ├── uipc_mbuf.c │ │ │ ├── uipc_mbuf2.c │ │ │ ├── uipc_sockbuf.c │ │ │ └── uipc_socket.c │ │ ├── host.support │ │ │ ├── Makefile │ │ │ ├── host_serv.c │ │ │ ├── host_serv.h │ │ │ ├── if_host.c │ │ │ ├── if_host.h │ │ │ ├── shmbuf_ring.h │ │ │ ├── uptcp_daemon.c │ │ │ ├── uptcp_daemon.h │ │ │ ├── uptcp_statis.c │ │ │ └── uptcp_statis.h │ │ ├── include │ │ │ ├── altq │ │ │ │ └── bsd_if_altq.h │ │ │ ├── bsm │ │ │ │ ├── bsd_audit.h │ │ │ │ └── bsd_audit_kevents.h │ │ │ ├── discard │ │ │ │ ├── bsd__iovec.h │ │ │ │ ├── bsd_pcpu.h │ │ │ │ ├── bsd_proc.h │ │ │ │ ├── bsd_signalvar.h │ │ │ │ └── bsd_sysproto.h │ │ │ ├── i386 │ │ │ │ ├── bsd__bus.h │ │ │ │ ├── bsd__limits.h │ │ │ │ ├── bsd__stdint.h │ │ │ │ ├── bsd__types.h │ │ │ │ ├── bsd_asmacros.h │ │ │ │ ├── bsd_atomic.h │ │ │ │ ├── bsd_bus.h │ │ │ │ ├── bsd_bus_dma.h │ │ │ │ ├── bsd_cpu.h │ │ │ │ ├── bsd_cpufunc.h │ │ │ │ ├── bsd_cputypes.h │ │ │ │ ├── bsd_endian.h │ │ │ │ ├── bsd_frame.h │ │ │ │ ├── bsd_in_cksum.h │ │ │ │ ├── bsd_intr_machdep.h │ │ │ │ ├── bsd_mutex.h │ │ │ │ ├── bsd_param.h │ │ │ │ ├── bsd_pmap.h │ │ │ │ ├── bsd_proc.h │ │ │ │ ├── bsd_psl.h │ │ │ │ ├── bsd_resource.h │ │ │ │ ├── bsd_runq.h │ │ │ │ ├── bsd_segments.h │ │ │ │ ├── bsd_signal.h │ │ │ │ ├── bsd_specialreg.h │ │ │ │ ├── bsd_stdarg.h │ │ │ │ ├── bsd_trap.h │ │ │ │ ├── bsd_tss.h │ │ │ │ └── bsd_ucontext.h │ │ │ ├── libkern │ │ │ │ └── bsd_quad.h │ │ │ ├── net │ │ │ │ ├── bsd_bpf.h │ │ │ │ ├── bsd_ethernet.h │ │ │ │ ├── bsd_flowtable.h │ │ │ │ ├── bsd_if.h │ │ │ │ ├── bsd_if_arc.h │ │ │ │ ├── bsd_if_arp.h │ │ │ │ ├── bsd_if_bridgevar.h │ │ │ │ ├── bsd_if_clone.h │ │ │ │ ├── bsd_if_dl.h │ │ │ │ ├── bsd_if_gif.h │ │ │ │ ├── bsd_if_llatbl.h │ │ │ │ ├── bsd_if_llc.h │ │ │ │ ├── bsd_if_media.h │ │ │ │ ├── bsd_if_types.h │ │ │ │ ├── bsd_if_var.h │ │ │ │ ├── bsd_iso88025.h │ │ │ │ ├── bsd_netisr.h │ │ │ │ ├── bsd_radix.h │ │ │ │ ├── bsd_raw_cb.h │ │ │ │ ├── bsd_route.h │ │ │ │ └── bsd_vnet.h │ │ │ ├── netinet │ │ │ │ ├── bsd_core.h │ │ │ │ ├── bsd_icmp6.h │ │ │ │ ├── bsd_icmp_var.h │ │ │ │ ├── bsd_if_ether.h │ │ │ │ ├── bsd_igmp.h │ │ │ │ ├── bsd_igmp_var.h │ │ │ │ ├── bsd_in.h │ │ │ │ ├── bsd_in_gif.h │ │ │ │ ├── bsd_in_pcb.h │ │ │ │ ├── bsd_in_systm.h │ │ │ │ ├── bsd_in_var.h │ │ │ │ ├── bsd_ip.h │ │ │ │ ├── bsd_ip6.h │ │ │ │ ├── bsd_ip_ecn.h │ │ │ │ ├── bsd_ip_encap.h │ │ │ │ ├── bsd_ip_fw.h │ │ │ │ ├── bsd_ip_icmp.h │ │ │ │ ├── bsd_ip_mroute.h │ │ │ │ ├── bsd_ip_options.h │ │ │ │ ├── bsd_ip_var.h │ │ │ │ ├── bsd_tcp.h │ │ │ │ ├── bsd_tcp_fsm.h │ │ │ │ ├── bsd_tcp_hostcache.h │ │ │ │ ├── bsd_tcp_lro.h │ │ │ │ ├── bsd_tcp_offload.h │ │ │ │ ├── bsd_tcp_seq.h │ │ │ │ ├── bsd_tcp_syncache.h │ │ │ │ ├── bsd_tcp_timer.h │ │ │ │ ├── bsd_tcp_var.h │ │ │ │ ├── bsd_tcpip.h │ │ │ │ ├── bsd_toedev.h │ │ │ │ ├── bsd_udp.h │ │ │ │ └── bsd_udp_var.h │ │ │ ├── netinet6 │ │ │ │ ├── bsd_in6.h │ │ │ │ ├── bsd_in6_pcb.h │ │ │ │ ├── bsd_in6_var.h │ │ │ │ ├── bsd_ip6_var.h │ │ │ │ ├── bsd_ip6protosw.h │ │ │ │ ├── bsd_nd6.h │ │ │ │ └── bsd_tcp6_var.h │ │ │ ├── opt │ │ │ │ ├── bsd_assym.s │ │ │ │ ├── bsd_bus_if.h │ │ │ │ ├── bsd_core.h │ │ │ │ ├── bsd_device_if.h │ │ │ │ ├── bsd_opt_atalk.h │ │ │ │ ├── bsd_opt_bootp.h │ │ │ │ ├── bsd_opt_carp.h │ │ │ │ ├── bsd_opt_compat.h │ │ │ │ ├── bsd_opt_ddb.h │ │ │ │ ├── bsd_opt_device_polling.h │ │ │ │ ├── bsd_opt_inet.h │ │ │ │ ├── bsd_opt_inet6.h │ │ │ │ ├── bsd_opt_ipfw.h │ │ │ │ ├── bsd_opt_ipsec.h │ │ │ │ ├── bsd_opt_ipstealth.h │ │ │ │ ├── bsd_opt_ipx.h │ │ │ │ ├── bsd_opt_mbuf_profiling.h │ │ │ │ ├── bsd_opt_mbuf_stress_test.h │ │ │ │ ├── bsd_opt_mpath.h │ │ │ │ ├── bsd_opt_mrouting.h │ │ │ │ ├── bsd_opt_npx.h │ │ │ │ ├── bsd_opt_ntp.h │ │ │ │ ├── bsd_opt_param.h │ │ │ │ ├── bsd_opt_pf.h │ │ │ │ ├── bsd_opt_printf.h │ │ │ │ ├── bsd_opt_route.h │ │ │ │ ├── bsd_opt_sctp.h │ │ │ │ ├── bsd_opt_tcpdebug.h │ │ │ │ └── bsd_opt_zero.h │ │ │ ├── security │ │ │ │ └── mac │ │ │ │ │ └── bsd_mac_framework.h │ │ │ ├── sys │ │ │ │ ├── bsd__bus_dma.h │ │ │ │ ├── bsd__lock.h │ │ │ │ ├── bsd__mutex.h │ │ │ │ ├── bsd__null.h │ │ │ │ ├── bsd__pthreadtypes.h │ │ │ │ ├── bsd__rmlock.h │ │ │ │ ├── bsd__rwlock.h │ │ │ │ ├── bsd__semaphore.h │ │ │ │ ├── bsd__sigset.h │ │ │ │ ├── bsd__sx.h │ │ │ │ ├── bsd__task.h │ │ │ │ ├── bsd__timeval.h │ │ │ │ ├── bsd__types.h │ │ │ │ ├── bsd_aio.h │ │ │ │ ├── bsd_bitstring.h │ │ │ │ ├── bsd_buf_ring.h │ │ │ │ ├── bsd_bus.h │ │ │ │ ├── bsd_bus_dma.h │ │ │ │ ├── bsd_callout.h │ │ │ │ ├── bsd_cdefs.h │ │ │ │ ├── bsd_condvar.h │ │ │ │ ├── bsd_conf.h │ │ │ │ ├── bsd_cpuset.h │ │ │ │ ├── bsd_ctype.h │ │ │ │ ├── bsd_domain.h │ │ │ │ ├── bsd_endian.h │ │ │ │ ├── bsd_errno.h │ │ │ │ ├── bsd_event.h │ │ │ │ ├── bsd_eventhandler.h │ │ │ │ ├── bsd_fcntl.h │ │ │ │ ├── bsd_file.h │ │ │ │ ├── bsd_fnv_hash.h │ │ │ │ ├── bsd_interrupt.h │ │ │ │ ├── bsd_ioccom.h │ │ │ │ ├── bsd_kernel.h │ │ │ │ ├── bsd_kobj.h │ │ │ │ ├── bsd_kthread.h │ │ │ │ ├── bsd_ktr.h │ │ │ │ ├── bsd_libkern.h │ │ │ │ ├── bsd_limits.h │ │ │ │ ├── bsd_linker_set.h │ │ │ │ ├── bsd_lock.h │ │ │ │ ├── bsd_lock_profile.h │ │ │ │ ├── bsd_lockstat.h │ │ │ │ ├── bsd_mac.h │ │ │ │ ├── bsd_malloc.h │ │ │ │ ├── bsd_mbuf.h │ │ │ │ ├── bsd_md5.h │ │ │ │ ├── bsd_mutex.h │ │ │ │ ├── bsd_osd.h │ │ │ │ ├── bsd_param.h │ │ │ │ ├── bsd_poll.h │ │ │ │ ├── bsd_priority.h │ │ │ │ ├── bsd_protosw.h │ │ │ │ ├── bsd_queue.h │ │ │ │ ├── bsd_random.h │ │ │ │ ├── bsd_refcount.h │ │ │ │ ├── bsd_resource.h │ │ │ │ ├── bsd_resourcevar.h │ │ │ │ ├── bsd_rman.h │ │ │ │ ├── bsd_rmlock.h │ │ │ │ ├── bsd_rtprio.h │ │ │ │ ├── bsd_runq.h │ │ │ │ ├── bsd_rwlock.h │ │ │ │ ├── bsd_sbuf.h │ │ │ │ ├── bsd_sched.h │ │ │ │ ├── bsd_select.h │ │ │ │ ├── bsd_selinfo.h │ │ │ │ ├── bsd_sigio.h │ │ │ │ ├── bsd_signal.h │ │ │ │ ├── bsd_smp.h │ │ │ │ ├── bsd_sockbuf.h │ │ │ │ ├── bsd_socket.h │ │ │ │ ├── bsd_socketvar.h │ │ │ │ ├── bsd_sockio.h │ │ │ │ ├── bsd_sockopt.h │ │ │ │ ├── bsd_sockstate.h │ │ │ │ ├── bsd_stat.h │ │ │ │ ├── bsd_stddef.h │ │ │ │ ├── bsd_stdint.h │ │ │ │ ├── bsd_sx.h │ │ │ │ ├── bsd_syslimits.h │ │ │ │ ├── bsd_syslog.h │ │ │ │ ├── bsd_systm.h │ │ │ │ ├── bsd_taskqueue.h │ │ │ │ ├── bsd_time.h │ │ │ │ ├── bsd_timepps.h │ │ │ │ ├── bsd_timespec.h │ │ │ │ ├── bsd_timetc.h │ │ │ │ ├── bsd_timex.h │ │ │ │ ├── bsd_tree.h │ │ │ │ ├── bsd_types.h │ │ │ │ ├── bsd_ucontext.h │ │ │ │ ├── bsd_ucred.h │ │ │ │ ├── bsd_uio.h │ │ │ │ └── bsd_vmmeter.h │ │ │ ├── vm │ │ │ │ ├── bsd_uma.h │ │ │ │ └── bsd_uma_int.h │ │ │ └── x86_64 │ │ │ │ ├── bsd__bus.h │ │ │ │ ├── bsd__limits.h │ │ │ │ ├── bsd__stdint.h │ │ │ │ ├── bsd__types.h │ │ │ │ ├── bsd_asmacros.h │ │ │ │ ├── bsd_atomic.h │ │ │ │ ├── bsd_bus.h │ │ │ │ ├── bsd_bus_dma.h │ │ │ │ ├── bsd_cpu.h │ │ │ │ ├── bsd_cpufunc.h │ │ │ │ ├── bsd_cputypes.h │ │ │ │ ├── bsd_endian.h │ │ │ │ ├── bsd_frame.h │ │ │ │ ├── bsd_in_cksum.h │ │ │ │ ├── bsd_intr_machdep.h │ │ │ │ ├── bsd_mutex.h │ │ │ │ ├── bsd_param.h │ │ │ │ ├── bsd_pmap.h │ │ │ │ ├── bsd_proc.h │ │ │ │ ├── bsd_psl.h │ │ │ │ ├── bsd_resource.h │ │ │ │ ├── bsd_runq.h │ │ │ │ ├── bsd_segments.h │ │ │ │ ├── bsd_signal.h │ │ │ │ ├── bsd_specialreg.h │ │ │ │ ├── bsd_stdarg.h │ │ │ │ ├── bsd_trap.h │ │ │ │ ├── bsd_tss.h │ │ │ │ └── bsd_ucontext.h │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── uptcp_api.c │ │ │ ├── uptcp_api.h │ │ │ └── uptcp_socket.h │ │ ├── samples │ │ │ ├── Makefile │ │ │ └── test │ │ │ │ ├── Makefile │ │ │ │ ├── client.c │ │ │ │ └── server.c │ │ └── scripts │ │ │ ├── analyze-freebsd-linux-headers.py │ │ │ ├── analyze-freebsd-linux-types.py │ │ │ ├── c-parser │ │ │ ├── ansi-c │ │ │ │ ├── c-gramar.l │ │ │ │ ├── c-gramar.y │ │ │ │ ├── lex.yy.c │ │ │ │ └── y.tab.h │ │ │ ├── c-gramar.l │ │ │ ├── lex.yy.c │ │ │ └── y.tab.h │ │ │ ├── copy-include-dirs.py │ │ │ ├── copy-include.py │ │ │ ├── extract_funcdefs.py │ │ │ ├── extract_types.py │ │ │ ├── gen-fake-filelist.py │ │ │ ├── gen-wrap-filelist.py │ │ │ ├── gen-wrap-funclist.py │ │ │ ├── ld.sh │ │ │ ├── remove_h_file.sh │ │ │ ├── replace_h_file.sh │ │ │ ├── save_h_file.sh │ │ │ └── script.log │ └── version │ └── zlib │ ├── parsec │ ├── gcc-hooks.bldconf │ ├── gcc-openmp.bldconf │ ├── gcc-pthreads.bldconf │ ├── gcc-serial.bldconf │ ├── gcc-tbb.bldconf │ ├── gcc.bldconf │ └── icc.bldconf │ ├── src │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── algorithm.txt │ ├── amiga │ │ ├── Makefile.pup │ │ └── Makefile.sas │ ├── as400 │ │ ├── bndsrc │ │ ├── compile.clp │ │ ├── readme.txt │ │ └── zlib.inc │ ├── compress.c │ ├── configure.shared │ ├── contrib │ │ ├── README.contrib │ │ ├── ada │ │ │ ├── buffer_demo.adb │ │ │ ├── mtest.adb │ │ │ ├── read.adb │ │ │ ├── readme.txt │ │ │ ├── test.adb │ │ │ ├── zlib-streams.adb │ │ │ ├── zlib-streams.ads │ │ │ ├── zlib-thin.adb │ │ │ ├── zlib-thin.ads │ │ │ ├── zlib.adb │ │ │ ├── zlib.ads │ │ │ └── zlib.gpr │ │ ├── asm586 │ │ │ ├── README.586 │ │ │ └── match.S │ │ ├── asm686 │ │ │ ├── README.686 │ │ │ └── match.S │ │ ├── blast │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── blast.c │ │ │ ├── blast.h │ │ │ ├── test.pk │ │ │ └── test.txt │ │ ├── delphi │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── readme.txt │ │ │ └── zlibd32.mak │ │ ├── dotzlib │ │ │ ├── DotZLib.build │ │ │ ├── DotZLib.chm │ │ │ ├── DotZLib.sln │ │ │ ├── DotZLib │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── DotZLib.csproj │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── Inflater.cs │ │ │ │ └── UnitTests.cs │ │ │ ├── LICENSE_1_0.txt │ │ │ └── readme.txt │ │ ├── infback9 │ │ │ ├── README │ │ │ ├── infback9.c │ │ │ ├── infback9.h │ │ │ ├── inffix9.h │ │ │ ├── inflate9.h │ │ │ ├── inftree9.c │ │ │ └── inftree9.h │ │ ├── inflate86 │ │ │ ├── inffas86.c │ │ │ └── inffast.S │ │ ├── iostream │ │ │ ├── test.cpp │ │ │ ├── zfstream.cpp │ │ │ └── zfstream.h │ │ ├── iostream2 │ │ │ ├── zstream.h │ │ │ └── zstream_test.cpp │ │ ├── iostream3 │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── test.cc │ │ │ ├── zfstream.cc │ │ │ └── zfstream.h │ │ ├── masm686 │ │ │ └── match.asm │ │ ├── masmx64 │ │ │ ├── bld_ml64.bat │ │ │ ├── gvmat64.asm │ │ │ ├── inffas8664.c │ │ │ ├── inffasx64.asm │ │ │ └── readme.txt │ │ ├── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ ├── gvmat32.asm │ │ │ ├── gvmat32c.c │ │ │ ├── inffas32.asm │ │ │ ├── mkasm.bat │ │ │ └── readme.txt │ │ ├── minizip │ │ │ ├── ChangeLogUnzip │ │ │ ├── Makefile │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── miniunz.c │ │ │ ├── minizip.c │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── pascal │ │ │ ├── example.pas │ │ │ ├── readme.txt │ │ │ ├── zlibd32.mak │ │ │ └── zlibpas.pas │ │ ├── puff │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── puff.c │ │ │ ├── puff.h │ │ │ └── zeros.raw │ │ ├── testzlib │ │ │ ├── testzlib.c │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ ├── Makefile │ │ │ ├── Makefile.msc │ │ │ └── untgz.c │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vc7 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ │ └── vc8 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── example.c │ ├── examples │ │ ├── README.examples │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ └── zran.c │ ├── gzio.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── minigzip.c │ ├── msdos │ │ ├── Makefile.bor │ │ ├── Makefile.dj2 │ │ ├── Makefile.emx │ │ ├── Makefile.msc │ │ └── Makefile.tc │ ├── old │ │ ├── Makefile.riscos │ │ ├── README │ │ ├── descrip.mms │ │ ├── os2 │ │ │ ├── Makefile.os2 │ │ │ └── zlib.def │ │ ├── visual-basic.txt │ │ └── zlib.html │ ├── projects │ │ ├── README.projects │ │ └── visualc6 │ │ │ ├── README.txt │ │ │ ├── example.dsp │ │ │ ├── minigzip.dsp │ │ │ ├── zlib.dsp │ │ │ └── zlib.dsw │ ├── qnx │ │ └── package.qpg │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.emx │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── VisualC.txt │ │ ├── zlib.def │ │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.in.h │ ├── zlib.3 │ ├── zlib.h │ ├── zutil.c │ └── zutil.h │ └── version ├── scripts ├── .gitignore ├── benchmarks.py ├── clean.sh ├── compile.py ├── download_inputs.sh ├── gen_linux_image.py └── run_aws.py └── version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/.gitignore -------------------------------------------------------------------------------- /.parsec_uniquefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/FAQ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/README -------------------------------------------------------------------------------- /bin/bldconfadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/bin/bldconfadd -------------------------------------------------------------------------------- /bin/bldconfdel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/bin/bldconfdel -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/bin/install -------------------------------------------------------------------------------- /bin/parsecmgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/bin/parsecmgmt -------------------------------------------------------------------------------- /config/gcc.bldconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/config/gcc.bldconf -------------------------------------------------------------------------------- /config/icc.bldconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/config/icc.bldconf -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/env.sh -------------------------------------------------------------------------------- /ext/splash2x/apps/barnes/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/fmm/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/ocean_cp/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/ocean_ncp/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/radiosity/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/raytrace/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/volrend/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/water_nsquared/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/apps/water_spatial/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/kernels/cholesky/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/kernels/fft/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/kernels/lu_cb/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/kernels/lu_ncb/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /ext/splash2x/kernels/radix/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /pkgs/apps/blackscholes/src/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright (c) Intel Corp. 2 | -------------------------------------------------------------------------------- /pkgs/apps/blackscholes/version: -------------------------------------------------------------------------------- 1 | 2.2 2 | -------------------------------------------------------------------------------- /pkgs/apps/bodytrack/src/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/bodytrack/src/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/bodytrack/version: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /pkgs/apps/facesim/version: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /pkgs/apps/ferret/src/INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/ferret/src/doc/manual/datatype.texi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/ferret/src/doc/manual/install.texi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/ferret/src/doc/manual/intro.texi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/ferret/src/doc/manual/server.texi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/ferret/src/tools/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: 3 | cd ..; $(MAKE) tools 4 | -------------------------------------------------------------------------------- /pkgs/apps/ferret/version: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /pkgs/apps/fluidanimate/src/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007 Intel Corp. 2 | -------------------------------------------------------------------------------- /pkgs/apps/fluidanimate/version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /pkgs/apps/freqmine/version: -------------------------------------------------------------------------------- 1 | 1.2 2 | -------------------------------------------------------------------------------- /pkgs/apps/raytrace/version: -------------------------------------------------------------------------------- 1 | 1.2 2 | -------------------------------------------------------------------------------- /pkgs/apps/swaptions/src/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007 Intel Corp. 2 | -------------------------------------------------------------------------------- /pkgs/apps/swaptions/version: -------------------------------------------------------------------------------- 1 | 2.1 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/doc/reference/libvips-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/doc/src/vipsmanual.tmp: -------------------------------------------------------------------------------- 1 | 2 | /* css.sty */ -------------------------------------------------------------------------------- /pkgs/apps/vips/src/libvips/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = vips 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/libvipsCC/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = vips 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_IMAGE_N_ELEMENTS.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_IMAGE_ADDR.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_ELEMENT.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_IMAGE_ADDR.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_LINE.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_IMAGE_ADDR.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_IMAGE_SIZEOF_PEL.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_IMAGE_ADDR.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_NEW.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_ARRAY.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_NUMBER.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_ARRAY.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_RECT_BOTTOM.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_RECT_HCENTRE.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_RECT_RIGHT.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_RECT_VCENTRE.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_REGION_LSKIP.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_REGION_ADDR.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_REGION_N_ELEMENTS.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_REGION_ADDR.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/IM_REGION_SIZEOF_LINE.3: -------------------------------------------------------------------------------- 1 | .so man3/IM_REGION_ADDR.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/cooc_features.1: -------------------------------------------------------------------------------- 1 | .so man1/cooc.1 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/error_exit.3: -------------------------------------------------------------------------------- 1 | .so man3/im_error.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/glds_features.1: -------------------------------------------------------------------------------- 1 | .so man1/glds.1 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_BandFmt2char.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Coding2char.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Compression2char.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LCh2Lab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LCh2UCS.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Lab2LCh.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Lab2LabS.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2LabQ.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Lab2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Lab2disp.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2UCS.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LabQ2Lab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2LabQ.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LabQ2LabS.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2LabQ.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LabQ2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2UCS.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LabQ2disp_build_table.3: -------------------------------------------------------------------------------- 1 | .so man3/im_LabQ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LabQ2disp_table.3: -------------------------------------------------------------------------------- 1 | .so man3/im_LabQ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LabS2Lab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2LabQ.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_LabS2LabQ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2LabQ.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Type2char.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_UCS2LCh.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_UCS2Lab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2UCS.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_UCS2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2UCS.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_XYZ2Lab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_XYZ2UCS.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2UCS.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_XYZ2Yxy.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_XYZ2sRGB.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_Yxy2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_acostra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_costra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_add_close_callback.3: -------------------------------------------------------------------------------- 1 | .so man3/im_malloc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_add_eval_callback.3: -------------------------------------------------------------------------------- 1 | .so man3/im_malloc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_add_evalend_callback.3: -------------------------------------------------------------------------------- 1 | .so man3/im_malloc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_add_evalstart_callback.3: -------------------------------------------------------------------------------- 1 | .so man3/im_malloc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_add_invalidate_callback.3: -------------------------------------------------------------------------------- 1 | .so man3/im_malloc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_add_preclose_callback.3: -------------------------------------------------------------------------------- 1 | .so man3/im_malloc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_affinei_all.3: -------------------------------------------------------------------------------- 1 | .so man3/im_affinei.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_allocate_input_array.3: -------------------------------------------------------------------------------- 1 | .so man3/im_generate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_amiMSBfirst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_and_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_andconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_asintra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_costra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_atantra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_costra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_blend.3: -------------------------------------------------------------------------------- 1 | .so man3/im_ifthenelse.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_c2amph.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_c2imag.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_c2ps.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_c2real.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_c2rect.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_cache.3: -------------------------------------------------------------------------------- 1 | .so man3/im_render.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_char2BandFmt.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_char2Coding.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_char2Compression.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_char2Type.3: -------------------------------------------------------------------------------- 1 | .so man3/im_printdesc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2c.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2cm.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2d.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2dcm.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2f.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2fmt.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2i.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2s.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2ui.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_clip2us.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_C2Cucs.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_Ch2ab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_Ch2hucs.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_Chucs2h.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_Cucs2C.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_L2Lucs.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_Lab2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_Lucs2L.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_XYZ2Lab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_ab2Ch.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_dECMC.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_display.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_make_tables_RGB.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_make_tables_UCS.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_pythagoras.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_col_rgb2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_col_XYZ2rgb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_concurrency_get.3: -------------------------------------------------------------------------------- 1 | .so man3/im_concurrency_set.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_contrast_surface_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_contrast_surface.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_conv_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_convf.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_convf_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_convsep.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_convsep_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_convsepf.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_convsepf_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_convsub.3: -------------------------------------------------------------------------------- 1 | .so man3/im_conv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_cooc_asm.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cooc_matrix.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_cooc_contrast.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cooc_matrix.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_cooc_correlation.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cooc_matrix.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_cooc_entropy.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cooc_matrix.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_copy_from.3: -------------------------------------------------------------------------------- 1 | .so man3/im_copy.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_copy_morph.3: -------------------------------------------------------------------------------- 1 | .so man3/im_copy.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_copy_set.3: -------------------------------------------------------------------------------- 1 | .so man3/im_copy.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_copy_set_meta.3: -------------------------------------------------------------------------------- 1 | .so man3/im_copy.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_copy_swap.3: -------------------------------------------------------------------------------- 1 | .so man3/im_copy.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_cp_desc_array.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cp_desc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_cp_descv.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cp_desc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_create_imask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_dE00_fromLab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_dE_fromLab.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_dECMC_fromLab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_dE_fromLab.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_dECMC_fromdisp.3: -------------------------------------------------------------------------------- 1 | .so man3/im_dE_fromdisp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_dE_fromXYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_dE_fromdisp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_demand_hint_array.3: -------------------------------------------------------------------------------- 1 | .so man3/im_demand_hint.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_deviate.3: -------------------------------------------------------------------------------- 1 | .so man3/im_avg.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_diag.3: -------------------------------------------------------------------------------- 1 | .so man3/im_error.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_dilate_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_dilate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_disp2Lab.3: -------------------------------------------------------------------------------- 1 | .so man3/im_Lab2UCS.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_disp2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_dup_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_dup_imask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_eor_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_eorconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_eorimage.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_equal_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_equalconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_erode.3: -------------------------------------------------------------------------------- 1 | .so man3/im_dilate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_erode_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_dilate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_error_buffer.3: -------------------------------------------------------------------------------- 1 | .so man3/im_error.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_error_clear.3: -------------------------------------------------------------------------------- 1 | .so man3/im_error.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_expntra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_exp10tra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_expntra_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_exp10tra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_exptra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_exp10tra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_extract_area.3: -------------------------------------------------------------------------------- 1 | .so man3/im_extract.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_extract_areabands.3: -------------------------------------------------------------------------------- 1 | .so man3/im_extract.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_extract_bands.3: -------------------------------------------------------------------------------- 1 | .so man3/im_extract.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_fastline.3: -------------------------------------------------------------------------------- 1 | .so man3/im_paintrect.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_fastlineuser.3: -------------------------------------------------------------------------------- 1 | .so man3/im_paintrect.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_feye.3: -------------------------------------------------------------------------------- 1 | .so man3/im_eye.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_fgrey.3: -------------------------------------------------------------------------------- 1 | .so man3/im_grey.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_fliphor.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rot180.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_flipver.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rot180.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_float2rad.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rad2float.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_flood_blob.3: -------------------------------------------------------------------------------- 1 | .so man3/im_flood.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_free.3: -------------------------------------------------------------------------------- 1 | .so man3/im_malloc.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_free_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_free_imask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_fzone.3: -------------------------------------------------------------------------------- 1 | .so man3/im_zone.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gadd.3: -------------------------------------------------------------------------------- 1 | .so man3/im_add.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gaddim.3: -------------------------------------------------------------------------------- 1 | .so man3/im_add.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gauss_imask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_gauss_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gauss_imask_sep.3: -------------------------------------------------------------------------------- 1 | .so man3/im_gauss_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gbandjoin.3: -------------------------------------------------------------------------------- 1 | .so man3/im_bandjoin.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_get_option_group.3: -------------------------------------------------------------------------------- 1 | .so man3/im_init_world.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gfadd.3: -------------------------------------------------------------------------------- 1 | .so man3/im_add.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_glds_asm.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_glds_contrast.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_glds_entropy.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_glds_mean.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_global_balance_float.3: -------------------------------------------------------------------------------- 1 | .so man3/im_global_balance.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_grad_y.3: -------------------------------------------------------------------------------- 1 | .so man3/im_grad_x.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gradcor.3: -------------------------------------------------------------------------------- 1 | .so man3/im_fastcor.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_gradient.3: -------------------------------------------------------------------------------- 1 | .so man3/im_compass.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_guess_libdir.3: -------------------------------------------------------------------------------- 1 | .so man3/im_guess_prefix.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_header_double.3: -------------------------------------------------------------------------------- 1 | .so man3/im_header.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_header_get.3: -------------------------------------------------------------------------------- 1 | .so man3/im_header.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_header_get_type.3: -------------------------------------------------------------------------------- 1 | .so man3/im_header.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_header_int.3: -------------------------------------------------------------------------------- 1 | .so man3/im_header.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_header_map.3: -------------------------------------------------------------------------------- 1 | .so man3/im_header.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_header_string.3: -------------------------------------------------------------------------------- 1 | .so man3/im_header.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_histcum.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histgr.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_histeq.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histgr.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_histnD.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histgr.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_histnorm.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histgr.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_history_get.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histlin.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_histspec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histgr.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_hsp.3: -------------------------------------------------------------------------------- 1 | .so man3/im_heq.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_icc_ac2rc.3: -------------------------------------------------------------------------------- 1 | .so man3/im_icc_transform.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_icc_export.3: -------------------------------------------------------------------------------- 1 | .so man3/im_icc_transform.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_icc_export_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/im_icc_transform.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_icc_import.3: -------------------------------------------------------------------------------- 1 | .so man3/im_icc_transform.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_icc_import_embedded.3: -------------------------------------------------------------------------------- 1 | .so man3/im_icc_transform.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_icc_present.3: -------------------------------------------------------------------------------- 1 | .so man3/im_icc_transform.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_identity.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histgr.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_identity_ushort.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histgr.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_image.3: -------------------------------------------------------------------------------- 1 | .so man3/im_binfile.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_incheck.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iocheck.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_invfft.3: -------------------------------------------------------------------------------- 1 | .so man3/im_fwfft.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_invfftr.3: -------------------------------------------------------------------------------- 1 | .so man3/im_fwfft.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_isMSBfirst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_isfile.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_isfloat.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_isint.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_ispartial.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_isscalar.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_isuint.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_isvips.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iscomplex.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_less.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_less_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lessconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lesseq.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lesseq_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lesseqconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lhisteq.3: -------------------------------------------------------------------------------- 1 | .so man3/im_heq.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lhisteq_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_heq.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lindetect.3: -------------------------------------------------------------------------------- 1 | .so man3/im_compass.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lineset.3: -------------------------------------------------------------------------------- 1 | .so man3/im_paintrect.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lintra_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_lintra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_log10tra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_exp10tra.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_log_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_log_imask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_logtra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_exp10tra.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_lu_solve.3: -------------------------------------------------------------------------------- 1 | .so man3/im_lu_decomp.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_make_xy.3: -------------------------------------------------------------------------------- 1 | .so man3/im_grey.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_mask2vips.3: -------------------------------------------------------------------------------- 1 | .so man3/im_vips2mask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_matcat.3: -------------------------------------------------------------------------------- 1 | .so man3/im_matinv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_match_linear.3: -------------------------------------------------------------------------------- 1 | .so man3/im_match_linear_search.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_matinv_inplace.3: -------------------------------------------------------------------------------- 1 | .so man3/im_matinv.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_matmul.3: -------------------------------------------------------------------------------- 1 | .so man3/im_matinv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_mattrn.3: -------------------------------------------------------------------------------- 1 | .so man3/im_matinv.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_max.3: -------------------------------------------------------------------------------- 1 | .so man3/im_avg.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_maxpos.3: -------------------------------------------------------------------------------- 1 | .so man3/im_avg.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_maxvalue.3: -------------------------------------------------------------------------------- 1 | .so man3/im_compass.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_mean_std_double_buffer.3: -------------------------------------------------------------------------------- 1 | .so man3/im_mean_std_int_buffer.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_get.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_get_area.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_get_blob.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_get_double.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_get_int.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_get_string.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_get_type.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_set.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_set_area.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_set_blob.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_set_double.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_set_int.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_meta_set_string.3: -------------------------------------------------------------------------------- 1 | .so man3/im_meta.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_min.3: -------------------------------------------------------------------------------- 1 | .so man3/im_avg.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_minpos.3: -------------------------------------------------------------------------------- 1 | .so man3/im_avg.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_minpos_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_maxpos_vec.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_more.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_more_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_moreconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_moreeq.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_moreeq_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_moreeqconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_msb_band.3: -------------------------------------------------------------------------------- 1 | .so man3/im_msb.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_multiply.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cmulnorm.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_norm_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_notequal.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_notequal_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_notequalconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_equal.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_offsets90.3: -------------------------------------------------------------------------------- 1 | .so man3/im_offsets45.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_open_local.3: -------------------------------------------------------------------------------- 1 | .so man3/im_open.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_open_local_array.3: -------------------------------------------------------------------------------- 1 | .so man3/im_open.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_or_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_orconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_orimage.3: -------------------------------------------------------------------------------- 1 | .so man3/im_andimage.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_outcheck.3: -------------------------------------------------------------------------------- 1 | .so man3/im_iocheck.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_pincheck.3: -------------------------------------------------------------------------------- 1 | .so man3/im_piocheck.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_plotmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_paintrect.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_plotpoint.3: -------------------------------------------------------------------------------- 1 | .so man3/im_paintrect.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_poutcheck.3: -------------------------------------------------------------------------------- 1 | .so man3/im_piocheck.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_powtra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_exp10tra.3 2 | 3 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_powtra_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_exp10tra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_prepare_many.3: -------------------------------------------------------------------------------- 1 | .so man3/im_prepare.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_prepare_to.3: -------------------------------------------------------------------------------- 1 | .so man3/im_prepare.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_print_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_print_imask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_printlines.3: -------------------------------------------------------------------------------- 1 | .so man3/im_debugim.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_profile.3: -------------------------------------------------------------------------------- 1 | .so man3/im_cntlines.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_quantlut.3: -------------------------------------------------------------------------------- 1 | .so man3/im_quantim.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rank_image.3: -------------------------------------------------------------------------------- 1 | .so man3/im_compass.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_read_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_read_imask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_readpoint.3: -------------------------------------------------------------------------------- 1 | .so man3/im_paintrect.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_dup.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_equalsrect.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_includespoint.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_includesrect.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_intersectrect.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_isempty.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_normalise.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rect_unionrect.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rect_marginadjust.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_region_free.3: -------------------------------------------------------------------------------- 1 | .so man3/im_region_create.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_region_image.3: -------------------------------------------------------------------------------- 1 | .so man3/im_region_buffer.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_region_position.3: -------------------------------------------------------------------------------- 1 | .so man3/im_region_buffer.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_region_region.3: -------------------------------------------------------------------------------- 1 | .so man3/im_region_buffer.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_remainderconst.3: -------------------------------------------------------------------------------- 1 | .so man3/im_remainder.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_remainderconst_vec.3: -------------------------------------------------------------------------------- 1 | .so man3/im_remainder.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_render_fade.3: -------------------------------------------------------------------------------- 1 | .so man3/im_render.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_resize_linear.3: -------------------------------------------------------------------------------- 1 | .so man3/im_shrink.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_ri2c.3: -------------------------------------------------------------------------------- 1 | .so man3/im_clip.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rot270.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rot180.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rot90.3: -------------------------------------------------------------------------------- 1 | .so man3/im_rot180.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rotate_dmask45.3: -------------------------------------------------------------------------------- 1 | .so man3/im_offsets45.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rotate_dmask90.3: -------------------------------------------------------------------------------- 1 | .so man3/im_offsets45.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rotate_imask45.3: -------------------------------------------------------------------------------- 1 | .so man3/im_offsets45.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_rotate_imask90.3: -------------------------------------------------------------------------------- 1 | .so man3/im_offsets45.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_sRGB2XYZ.3: -------------------------------------------------------------------------------- 1 | .so man3/im_XYZ2disp.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_scale_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_scaleps.3: -------------------------------------------------------------------------------- 1 | .so man3/im_scale.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_shiftright.3: -------------------------------------------------------------------------------- 1 | .so man3/im_shiftleft.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_similarity.3: -------------------------------------------------------------------------------- 1 | .so man3/im_similarity_area.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_sintra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_costra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_slice.3: -------------------------------------------------------------------------------- 1 | .so man3/im_thresh.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_smear.3: -------------------------------------------------------------------------------- 1 | .so man3/im_smudge.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_spatres.3: -------------------------------------------------------------------------------- 1 | .so man3/im_quantim.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_spcor.3: -------------------------------------------------------------------------------- 1 | .so man3/im_fastcor.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_start_many.3: -------------------------------------------------------------------------------- 1 | .so man3/im_generate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_start_one.3: -------------------------------------------------------------------------------- 1 | .so man3/im_generate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_stop_many.3: -------------------------------------------------------------------------------- 1 | .so man3/im_generate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_stop_one.3: -------------------------------------------------------------------------------- 1 | .so man3/im_generate.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_tantra.3: -------------------------------------------------------------------------------- 1 | .so man3/im_costra.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_tbjoin.3: -------------------------------------------------------------------------------- 1 | .so man3/im_lrjoin.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_tbmerge.3: -------------------------------------------------------------------------------- 1 | .so man3/im_lrmerge.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_tbmosaic.3: -------------------------------------------------------------------------------- 1 | .so man3/im_lrmosaic.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_tone_analyse.3: -------------------------------------------------------------------------------- 1 | .so man3/im_tone_build.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_tone_map.3: -------------------------------------------------------------------------------- 1 | .so man3/im_tone_build.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_updatehist.3: -------------------------------------------------------------------------------- 1 | .so man3/im_histlin.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_verror.3: -------------------------------------------------------------------------------- 1 | .so man3/im_error.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_version_string.3: -------------------------------------------------------------------------------- 1 | .so man3/im_version.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2bufjpeg.3: -------------------------------------------------------------------------------- 1 | .so man3/im_jpeg2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2csv.3: -------------------------------------------------------------------------------- 1 | .so man3/im_csv2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2jpeg.3: -------------------------------------------------------------------------------- 1 | .so man3/im_jpeg2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2mimejpeg.3: -------------------------------------------------------------------------------- 1 | .so man3/im_jpeg2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2png.3: -------------------------------------------------------------------------------- 1 | .so man3/im_png2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2ppm.3: -------------------------------------------------------------------------------- 1 | .so man3/im_ppm2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2raw.3: -------------------------------------------------------------------------------- 1 | .so man3/im_raw2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_vips2tiff.3: -------------------------------------------------------------------------------- 1 | .so man3/im_tiff2vips.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_warn.3: -------------------------------------------------------------------------------- 1 | .so man3/im_error.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_wrapmany.3: -------------------------------------------------------------------------------- 1 | .so man3/im_wrapone.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_write_dmask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_write_dmask_name.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_write_imask.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/im_write_imask_name.3: -------------------------------------------------------------------------------- 1 | .so man3/im_create_dmask.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/printlines.1: -------------------------------------------------------------------------------- 1 | .so man1/debugim.1 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/squares.1: -------------------------------------------------------------------------------- 1 | .so man1/sines.1 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/vips_format_for_file.3: -------------------------------------------------------------------------------- 1 | .so man3/VipsFormat.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/vips_format_for_name.3: -------------------------------------------------------------------------------- 1 | .so man3/VipsFormat.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/vips_format_map.3: -------------------------------------------------------------------------------- 1 | .so man3/VipsFormat.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/vips_format_read.3: -------------------------------------------------------------------------------- 1 | .so man3/VipsFormat.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/man/vips_format_write.3: -------------------------------------------------------------------------------- 1 | .so man3/VipsFormat.3 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/po/ChangeLog: -------------------------------------------------------------------------------- 1 | started 17 dec 03 2 | -------------------------------------------------------------------------------- /pkgs/apps/vips/src/po/LINGUAS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/apps/vips/version: -------------------------------------------------------------------------------- 1 | 7.22.1 2 | -------------------------------------------------------------------------------- /pkgs/apps/x264/src/conftest.asm: -------------------------------------------------------------------------------- 1 | pinsrd xmm0, [esp], 0 2 | -------------------------------------------------------------------------------- /pkgs/apps/x264/version: -------------------------------------------------------------------------------- 1 | r1047.1 2 | -------------------------------------------------------------------------------- /pkgs/kernels/canneal/version: -------------------------------------------------------------------------------- 1 | 2.2 2 | -------------------------------------------------------------------------------- /pkgs/kernels/dedup/version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /pkgs/kernels/streamcluster/version: -------------------------------------------------------------------------------- 1 | 2.2 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/gio/gio-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/gio/tmpl/gio-unused.sgml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/gio/version.xml: -------------------------------------------------------------------------------- 1 | 2.24.1 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/gio/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/glib/glib.types: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/glib/version.xml: -------------------------------------------------------------------------------- 1 | 2.24.1 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/glib/version.xml.in: -------------------------------------------------------------------------------- 1 | @GLIB_VERSION@ 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/gobject/gobject-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/gobject/version.xml: -------------------------------------------------------------------------------- 1 | 2.24.1 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/docs/reference/gobject/version.xml.in: -------------------------------------------------------------------------------- 1 | @GLIB_VERSION@ 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/glib/gspawn-win64-helper.c: -------------------------------------------------------------------------------- 1 | #include "gspawn-win32-helper.c" 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/gmodule/AUTHORS: -------------------------------------------------------------------------------- 1 | Tim Janik 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/gobject/stamp-gmarshal.h: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/bookmarks/fail-01.xbel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/fail-1.gmarkup: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/fail-12.gmarkup: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/fail-13.gmarkup: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/fail-14.gmarkup: -------------------------------------------------------------------------------- 1 | 2 | < -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/fail-16.gmarkup: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/fail-8.gmarkup: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/fail-9.gmarkup: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/valid-11.gmarkup: -------------------------------------------------------------------------------- 1 | data 3 | -------------------------------------------------------------------------------- /pkgs/libs/glib/src/tests/markups/valid-9.gmarkup: -------------------------------------------------------------------------------- 1 | data 3 | -------------------------------------------------------------------------------- /pkgs/libs/glib/version: -------------------------------------------------------------------------------- 1 | 2.24.1 2 | -------------------------------------------------------------------------------- /pkgs/libs/gsl/src/doc/examples/intro.out: -------------------------------------------------------------------------------- 1 | J0(5) = -1.775967713143382920e-01 2 | -------------------------------------------------------------------------------- /pkgs/libs/gsl/src/doc/multimin.texi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/gsl/src/vector/TODO: -------------------------------------------------------------------------------- 1 | * Pretty print function 2 | 3 | * Vector p-norms 4 | -------------------------------------------------------------------------------- /pkgs/libs/gsl/version: -------------------------------------------------------------------------------- 1 | 1.9 2 | -------------------------------------------------------------------------------- /pkgs/libs/hooks/version: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libjpeg/src/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_7.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /pkgs/libs/libjpeg/version: -------------------------------------------------------------------------------- 1 | 7.0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/doc/examples/test1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/python/tests/test.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/53867.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/Down.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/attrents.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/autoclose.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/autoclose2.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/autoclose3.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/cf_128.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/entities2.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/liclose.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/lt.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/pre.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/python.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/reg1.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/reg2.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/reg3.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/repeat.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/script.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/script2.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/HTML/test2.html.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/SVG/bike-errors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/VC/NS1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/docids.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/fallback.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/fallback2.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/include.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/nodes.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/nodes2.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/recursive.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/tstencoding.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/XInclude/txtinclude.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/att1.rde: -------------------------------------------------------------------------------- 1 | 0 1 doc 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/att1.rdr: -------------------------------------------------------------------------------- 1 | 0 1 doc 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/att2.rde: -------------------------------------------------------------------------------- 1 | 0 1 doc 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/att2.rdr: -------------------------------------------------------------------------------- 1 | 0 1 doc 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/attrib.xml.rde: -------------------------------------------------------------------------------- 1 | 0 1 item 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/attrib.xml.rdr: -------------------------------------------------------------------------------- 1 | 0 1 item 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-15: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-16: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/c14n/exc-without-comments/merlin-c14n-two-25: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/c14n/with-comments/example-6: -------------------------------------------------------------------------------- 1 | © -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/c14n/without-comments/example-6: -------------------------------------------------------------------------------- 1 | © -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/c14n/without-comments/test-0: -------------------------------------------------------------------------------- 1 | I am the text. -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/errors/attr1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/errors/attr2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/errors/cdata.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/errors/charref1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/errors/name.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/errors/name2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/example.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/namespaces/err_0.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/namespaces/err_10.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/namespaces/err_11.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/namespaces/err_2.xml: -------------------------------------------------------------------------------- 1 | 2 | <:/> 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/namespaces/err_3.xml: -------------------------------------------------------------------------------- 1 | 2 | <:foo/> 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/namespaces/err_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/namespaces/err_8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/noent/ns7: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/noent/utf8bom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/ns4.rde: -------------------------------------------------------------------------------- 1 | 0 1 diagram 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/ns4.rdr: -------------------------------------------------------------------------------- 1 | 0 1 diagram 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/ns7: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/ns7.rde: -------------------------------------------------------------------------------- 1 | 0 1 xml:test 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/ns7.rdr: -------------------------------------------------------------------------------- 1 | 0 1 xml:test 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/302836_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/302836_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/302836.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/302836_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/307377_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/307377_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/307377_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/307377_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/307377.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/307377_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/OpenDocumentSub_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/addressBook_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/choice0_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/compare0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/compare0_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/comps_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/comps_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/comps.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/comps_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/demo2_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/demo2.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/demo2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/demo3_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/demo3.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/demo3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/demo_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/demo.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/demo_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/docbook_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/docbook_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/empty0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/empty0_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/empty0.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/empty0_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/empty1_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/empty1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/empty1_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/empty1.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/empty1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/inline2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/inline3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/inline_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/inline.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/inline_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/interleave0_0_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/interleave1_0_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/list_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/list_0.err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/list_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/list_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/list_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/list.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/list_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/pattern1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/pattern2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/proofsystem_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/rngbug-001_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/spec1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/spec1_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/spec1.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/spec1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/spec_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/spec_0.err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/spec_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/spec_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/spec.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/spec_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/table_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/table.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/table_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_10_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_10_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_1_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_1_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_1_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_1_5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_1_6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_2_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_2_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_2_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_4_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_4_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_5_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_5_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_6_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_6_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_7_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_7_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_7_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_7_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_8_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_8_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_8_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_8_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_9_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor10_9_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_1_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_1_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_2_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_2_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_4_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor11_4_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor12_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor12_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor13_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor13_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor14_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_4_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor1_4_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor2_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor2_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_1_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_4_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_4_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_5_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_5_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_5_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_6_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_6_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_7_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_7_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_8_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_8_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_9_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor3_9_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_3_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_3_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_3_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_3_5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_3_6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_4_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor4_4_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_4_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_4_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor5_5_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_1_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_1_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_1_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_1_5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_2_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_2_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_2_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor6_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_1_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_1_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_1_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_2_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_2_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_2_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_3_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_3_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_3_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_3_5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor7_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_1_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_2_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_2_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_2_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_2_5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_2_6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor8_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_10_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_10_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_11_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_11_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_12_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_12_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_1_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_1_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_2_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_2_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_2_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_3_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_3_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_3_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_4_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_4_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_4_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_5_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_5_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_5_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_5_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_6_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_6_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_6_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_6_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_7_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_7_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_8_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_8_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_9_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutor9_9_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutorA_err: -------------------------------------------------------------------------------- 1 | ./test/relaxng/tutorA.rng validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/relaxng/tutorA_valid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all1_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/all1_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_0_1: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_1.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_0_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_0_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_0_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_1: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_1.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_3: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_3.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_4: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_4.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_6: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_6.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_6.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_7: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_7.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_1_7.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_2_3: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_3.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_2_3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_2_6: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_6.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_2_6.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_2_7: -------------------------------------------------------------------------------- 1 | ./test/schemas/all_7.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/all_2_7.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/allsg_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/allsg_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/allsg_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/allsg_0_1: -------------------------------------------------------------------------------- 1 | ./test/schemas/allsg_1.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/allsg_0_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/allsg_0_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/allsg_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/allsg_0_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/annot-err_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any1_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/any1_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any2_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/any2_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any2_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any4_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/any4_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any4_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any5_0_3: -------------------------------------------------------------------------------- 1 | ./test/schemas/any5_3.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any5_0_3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any5_1_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/any5_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any5_1_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any5_1_5: -------------------------------------------------------------------------------- 1 | ./test/schemas/any5_5.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any5_1_5.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any6_1_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/any6_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any6_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any6_2_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/any6_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any6_2_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any7_1_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/any7_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any7_1_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any7_2_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/any7_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any7_2_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any8_1_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/any8_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/any8_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/anyAttr-derive-errors1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/anyAttr-derive1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/anyAttr-derive2_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/anyAttr-processContents1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/anyAttr1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/attr0_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/attr0_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/attr0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/attruse_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug141312_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug141333_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug143951_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug145246_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug152470_1_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug167754_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug306806_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug309338_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug310264_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug313982_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug321475_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/bug322411_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_0_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_1_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_1_4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_2_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_2_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_2_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_2_3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/choice_2_5.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/cos-ct-extends-1-3_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ct-sc-nobase_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/date_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/derivation-ok-extension-err_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-2-1-1_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/derivation-ok-restriction-4-1-err_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/derivation-restriction-anyAttr_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/deter0_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/dur_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/dur_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/dur_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/elem0_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/elem0_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/elem0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/element-err_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/element-minmax-err_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/empty-value_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/empty-value_1_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/empty_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/empty_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/empty_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/empty_1_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/empty_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/empty_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/extension0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/extension1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/extension2_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/facet-whiteSpace_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/group0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/hexbinary_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/import0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/import1_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/import2_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/include1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/include2_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/include3_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/item_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/item_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/item_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/item_1_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/item_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/item_1_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/length1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/length2_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/length3_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/list0_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/list0_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/list0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/list0_0_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/list0_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/list0_0_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/list0_1_2: -------------------------------------------------------------------------------- 1 | ./test/schemas/list0_2.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/list0_1_2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/mixed0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/mixed1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/ns0_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_0_1: -------------------------------------------------------------------------------- 1 | ./test/schemas/ns0_1.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_0_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_1_3: -------------------------------------------------------------------------------- 1 | ./test/schemas/ns0_3.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_1_3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_1_4: -------------------------------------------------------------------------------- 1 | ./test/schemas/ns0_4.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns0_1_4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns1_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/ns1_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns2_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/ns2_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/ns2_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/po0_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/po0_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/po0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/po1_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/po1_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/po1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/restrict-CT-attr-ref_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/restriction-attr1_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/restriction0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/scc-no-xmlns_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/scc-no-xsi_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/seq-dubl-elem1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/seq0_0_0: -------------------------------------------------------------------------------- 1 | ./test/schemas/seq0_0.xml validates 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/seq0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-attribute1_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-attribute2_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-attribute3-1_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-form_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-st_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-attribute3-2-type_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-attribute4_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-element1_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-element2-1_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-element2-2_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/src-element3_0_0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/subst-group-1_0_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/union_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/vdv-first0_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/vdv-first1_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/vdv-first2_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/vdv-first3_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/vdv-first4_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/vdv-first5_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/xsd-list-itemType_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/schemas/xsd-simpleType-varieties_0_0.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/scripts/base.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/scripts/base2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/scripts/set1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/scripts/set4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/utf8bom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/utf8bom.xml.rde: -------------------------------------------------------------------------------- 1 | 0 1 foo 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/utf8bom.xml.rdr: -------------------------------------------------------------------------------- 1 | 0 1 foo 1 0 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/127772.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/REC-xml-19980210.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/dia.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/id1.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/id2.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/id3.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/index.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/mixed_ns.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/ns.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/ns2.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/objednavka.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t10.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t4.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t4.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t4a.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t4a.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t6.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t6.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t8.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t8a.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t9.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/t9a.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/valid/xhtml1.xhtml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/result/xmlid/id_tst1.xml.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/HTML/autoclose.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/HTML/autoclose2.html: -------------------------------------------------------------------------------- 1 |

toto 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/VC/ElementValid: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/XInclude/ents/inc.txt: -------------------------------------------------------------------------------- 1 | is a test 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/XInclude/ents/something.txt: -------------------------------------------------------------------------------- 1 | this is some text in ASCII 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/XPath/tests/usr1check: -------------------------------------------------------------------------------- 1 | //ITEM[1] 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/att1: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/att2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-18.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-19.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-20.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-21.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-22.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-23.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-24.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-25.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/merlin-c14n-two-26.ns: -------------------------------------------------------------------------------- 1 | #default -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/exc-without-comments/test-1.ns: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/with-comments/doc.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/with-comments/world.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/without-comments/doc.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/c14n/without-comments/world.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/catalogs/catal1.sgml: -------------------------------------------------------------------------------- 1 | CATALOG catal3.sgml 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/namespaces/err_0.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/namespaces/err_1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/namespaces/err_2.xml: -------------------------------------------------------------------------------- 1 | <:/> 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/namespaces/err_3.xml: -------------------------------------------------------------------------------- 1 | <:foo/> 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/namespaces/err_7.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/ns7: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/307377_0.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/307377_1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/307377_2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/list_0.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/list_1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor10_1_4.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor10_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor10_2_2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor3_7_1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor3_9_1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor4_3_1.xml: -------------------------------------------------------------------------------- 1 |

2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor4_3_2.xml: -------------------------------------------------------------------------------- 1 |

a

2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/relaxng/tutor5_4_1.xml: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/schemas/attr0_0.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/schemas/mixed0_0.xml: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/schemas/mixed1_0.xml: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/schemas/ns0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/scripts/set1.script: -------------------------------------------------------------------------------- 1 | set 2 | save - 3 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/scripts/set1.xml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/scripts/set3.xml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/threads/a/a.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/threads/c/c.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/utf8bom.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/valid/dtds/destfoo.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/xmlid/id_err1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/xmlid/id_tst1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/xmlid/id_tst2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/test/xmlid/id_tst3.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/src/win32/wince/libxml2.vcb: -------------------------------------------------------------------------------- 1 | Microsoft C/C++ program database 2.00 2 | -------------------------------------------------------------------------------- /pkgs/libs/libxml2/version: -------------------------------------------------------------------------------- 1 | 2.6.28.1 2 | -------------------------------------------------------------------------------- /pkgs/libs/mesa/src/src/glut/glx/depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/mesa/src/src/glw/depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/mesa/src/src/mesa/depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/mesa/version: -------------------------------------------------------------------------------- 1 | 7.2.1 2 | -------------------------------------------------------------------------------- /pkgs/libs/parmacs/version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /pkgs/libs/ssl/src/test/smcont.txt: -------------------------------------------------------------------------------- 1 | Some test content for OpenSSL CMS -------------------------------------------------------------------------------- /pkgs/libs/ssl/version: -------------------------------------------------------------------------------- 1 | 0.9.8j.1 2 | -------------------------------------------------------------------------------- /pkgs/libs/tbblib/src/build/suncc.map.pause: -------------------------------------------------------------------------------- 1 | hwcap_1 = OVERRIDE; -------------------------------------------------------------------------------- /pkgs/libs/tbblib/version: -------------------------------------------------------------------------------- 1 | 3.0-20100406oss 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_atalk.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_bootp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_carp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_ddb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_device_polling.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet.h: -------------------------------------------------------------------------------- 1 | #define INET 1 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_inet6.h: -------------------------------------------------------------------------------- 1 | //#define INET6 1 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipfw.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipsec.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipstealth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_ipx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_profiling.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_mbuf_stress_test.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_mpath.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_mrouting.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_npx.h: -------------------------------------------------------------------------------- 1 | #define DEV_NPX 1 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_ntp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_param.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_pf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_printf.h: -------------------------------------------------------------------------------- 1 | #define PRINTF_BUFR_SIZE 128 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_route.h: -------------------------------------------------------------------------------- 1 | //#define FLOWTABLE 1 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_sctp.h: -------------------------------------------------------------------------------- 1 | //#define SCTP 1 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_tcpdebug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/include/opt/bsd_opt_zero.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/src/scripts/ld.sh: -------------------------------------------------------------------------------- 1 | gcc -fPIC --shared -o libuptcp.so *.o 2 | -------------------------------------------------------------------------------- /pkgs/libs/uptcpip/version: -------------------------------------------------------------------------------- 1 | 0.3 2 | -------------------------------------------------------------------------------- /pkgs/libs/zlib/version: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csail-csg/parsec/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 3.0-beta-20150206 2 | --------------------------------------------------------------------------------