├── .appveyor.yml ├── .codecov.yml ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── HISTORY ├── INFORMATION ├── LICENSE ├── README.md ├── _config.yml ├── cmake ├── TbagConfig.cmake ├── TbagDebug.cmake ├── TbagFindPackage │ ├── CMakePCHCompiler │ │ ├── CMakeCPCHCompiler.cmake.in │ │ ├── CMakeCPCHInformation.cmake │ │ ├── CMakeCXXPCHCompiler.cmake.in │ │ ├── CMakeCXXPCHInformation.cmake │ │ ├── CMakeDetermineCPCHCompiler.cmake │ │ ├── CMakeDetermineCXXPCHCompiler.cmake │ │ ├── CMakePCHCompiler.cmake │ │ ├── CMakeTestCPCHCompiler.cmake │ │ ├── CMakeTestCXXPCHCompiler.cmake │ │ ├── LICENSE │ │ ├── Platform │ │ │ ├── Apple-AppleClang-CXXPCH.cmake │ │ │ ├── Apple-Clang-CPCH.cmake │ │ │ ├── Apple-Clang-CXXPCH.cmake │ │ │ ├── Apple-GNU-CPCH.cmake │ │ │ ├── Apple-GNU-CXXPCH.cmake │ │ │ ├── Apple-Intel-CPCH.cmake │ │ │ ├── Apple-Intel-CXXPCH.cmake │ │ │ ├── Darwin-AppleClang-CXXPCH.cmake │ │ │ ├── Darwin-Clang-CPCH.cmake │ │ │ ├── Darwin-Clang-CXXPCH.cmake │ │ │ ├── Darwin-GNU-CPCH.cmake │ │ │ ├── Darwin-GNU-CXXPCH.cmake │ │ │ ├── Darwin-Intel-CPCH.cmake │ │ │ ├── Darwin-Intel-CXXPCH.cmake │ │ │ ├── Linux-GNU-CPCH.cmake │ │ │ ├── Linux-GNU-CXXPCH.cmake │ │ │ ├── Linux-Intel-CPCH.cmake │ │ │ ├── Linux-Intel-CXXPCH.cmake │ │ │ ├── Windows-Clang-CPCH.cmake │ │ │ ├── Windows-Clang-CXXPCH.cmake │ │ │ ├── Windows-Intel-CPCH.cmake │ │ │ ├── Windows-Intel-CXXPCH.cmake │ │ │ ├── Windows-MSVC-CPCH.cmake │ │ │ └── Windows-MSVC-CXXPCH.cmake │ │ └── README.md │ ├── FindCUDNN.cmake │ ├── FindCapnp.cmake │ ├── FindCxxObfuscator.cmake │ ├── FindEGL.cmake │ ├── FindFFmpeg.cmake │ ├── FindFlatc.cmake │ ├── FindGFlags.cmake │ ├── FindGLES.cmake │ ├── FindGLog.cmake │ ├── FindHDF5v2.cmake │ ├── FindICU.cmake │ ├── FindLMDB.cmake │ ├── FindLevelDB.cmake │ ├── FindLive555.cmake │ ├── FindNCurses.cmake │ ├── FindNumPy.cmake │ ├── FindOpenALPR.cmake │ ├── FindOpenBLAS.cmake │ ├── FindOpenH264.cmake │ ├── FindSQLite3.cmake │ ├── FindSnappy.cmake │ ├── FindSpdlog.cmake │ ├── FindTbag.cmake │ ├── FindTbagCUDA.cmake │ ├── FindTbagDoxygen.cmake │ ├── FindTbagOpenCV.cmake │ ├── FindTbagProtobuf.cmake │ ├── FindTbagPython.cmake │ ├── FindTbagSFML.cmake │ ├── FindTbagwxWidgets.cmake │ ├── FindTinyXML2.cmake │ ├── FindUDev.cmake │ ├── FindUV.cmake │ ├── FindWebRTC.cmake │ └── TbagSimpleFindLibrary.cmake ├── TbagFlags.cmake ├── TbagInformation.cmake ├── TbagInstall │ ├── TbagPrefix.cmake │ └── TbagSuffix.cmake ├── TbagModules.cmake ├── TbagPreview.cmake ├── TbagProject.cmake ├── TbagScript │ ├── TbagData2String.cmake │ └── TbagStripRegex.cmake └── TbagUtils.cmake ├── dep ├── simdpp │ ├── .gitignore │ ├── LICENSE_1_0.txt │ ├── README.md │ ├── cmake │ │ └── SimdppMultiarch.cmake │ └── simdpp │ │ ├── capabilities.h │ │ ├── core │ │ ├── align.h │ │ ├── aligned_allocator.h │ │ ├── bit_and.h │ │ ├── bit_andnot.h │ │ ├── bit_not.h │ │ ├── bit_or.h │ │ ├── bit_xor.h │ │ ├── blend.h │ │ ├── cache.h │ │ ├── cast.h │ │ ├── cmp_eq.h │ │ ├── cmp_ge.h │ │ ├── cmp_gt.h │ │ ├── cmp_le.h │ │ ├── cmp_lt.h │ │ ├── cmp_neq.h │ │ ├── combine.h │ │ ├── detail │ │ │ ├── get_expr_bitwise.h │ │ │ ├── get_expr_uint.h │ │ │ ├── scalar_arg_impl.h │ │ │ ├── subvec_extract.h │ │ │ └── subvec_insert.h │ │ ├── extract.h │ │ ├── extract_bits.h │ │ ├── f_abs.h │ │ ├── f_add.h │ │ ├── f_ceil.h │ │ ├── f_div.h │ │ ├── f_floor.h │ │ ├── f_fmadd.h │ │ ├── f_fmsub.h │ │ ├── f_isnan.h │ │ ├── f_isnan2.h │ │ ├── f_max.h │ │ ├── f_min.h │ │ ├── f_mul.h │ │ ├── f_neg.h │ │ ├── f_rcp_e.h │ │ ├── f_rcp_rh.h │ │ ├── f_reduce_add.h │ │ ├── f_reduce_max.h │ │ ├── f_reduce_min.h │ │ ├── f_reduce_mul.h │ │ ├── f_rsqrt_e.h │ │ ├── f_rsqrt_rh.h │ │ ├── f_sign.h │ │ ├── f_sqrt.h │ │ ├── f_sub.h │ │ ├── f_trunc.h │ │ ├── for_each.h │ │ ├── i_abs.h │ │ ├── i_add.h │ │ ├── i_add_sat.h │ │ ├── i_avg.h │ │ ├── i_avg_trunc.h │ │ ├── i_div_p.h │ │ ├── i_max.h │ │ ├── i_min.h │ │ ├── i_mul.h │ │ ├── i_mull.h │ │ ├── i_neg.h │ │ ├── i_popcnt.h │ │ ├── i_reduce_add.h │ │ ├── i_reduce_and.h │ │ ├── i_reduce_max.h │ │ ├── i_reduce_min.h │ │ ├── i_reduce_mul.h │ │ ├── i_reduce_or.h │ │ ├── i_reduce_popcnt.h │ │ ├── i_shift_l.h │ │ ├── i_shift_r.h │ │ ├── i_sub.h │ │ ├── i_sub_sat.h │ │ ├── insert.h │ │ ├── load.h │ │ ├── load_packed2.h │ │ ├── load_packed3.h │ │ ├── load_packed4.h │ │ ├── load_splat.h │ │ ├── load_u.h │ │ ├── make_float.h │ │ ├── make_int.h │ │ ├── make_shuffle_bytes_mask.h │ │ ├── make_uint.h │ │ ├── move_l.h │ │ ├── move_r.h │ │ ├── permute2.h │ │ ├── permute4.h │ │ ├── permute_bytes16.h │ │ ├── permute_zbytes16.h │ │ ├── set_splat.h │ │ ├── shuffle1.h │ │ ├── shuffle2.h │ │ ├── shuffle2x2.h │ │ ├── shuffle4x2.h │ │ ├── shuffle_bytes16.h │ │ ├── shuffle_zbytes16.h │ │ ├── splat.h │ │ ├── splat_n.h │ │ ├── split.h │ │ ├── store.h │ │ ├── store_first.h │ │ ├── store_last.h │ │ ├── store_masked.h │ │ ├── store_packed2.h │ │ ├── store_packed3.h │ │ ├── store_packed4.h │ │ ├── store_u.h │ │ ├── stream.h │ │ ├── test_bits.h │ │ ├── to_float32.h │ │ ├── to_float64.h │ │ ├── to_int16.h │ │ ├── to_int32.h │ │ ├── to_int64.h │ │ ├── to_int8.h │ │ ├── to_mask.h │ │ ├── transpose.h │ │ ├── unzip_hi.h │ │ ├── unzip_lo.h │ │ ├── zip_hi.h │ │ └── zip_lo.h │ │ ├── deprecations.h │ │ ├── detail │ │ ├── align.h │ │ ├── align_v128.h │ │ ├── altivec │ │ │ └── load1.h │ │ ├── array.h │ │ ├── cast.h │ │ ├── cast.inl │ │ ├── cast_bitwise.h │ │ ├── construct_eval.h │ │ ├── eval_scalar.h │ │ ├── expr │ │ │ ├── bit_and.h │ │ │ ├── bit_andnot.h │ │ │ ├── bit_not.h │ │ │ ├── bit_or.h │ │ │ ├── blend.h │ │ │ ├── f_abs.h │ │ │ ├── f_add.h │ │ │ ├── f_fmadd.h │ │ │ ├── f_fmsub.h │ │ │ ├── f_mul.h │ │ │ ├── f_neg.h │ │ │ ├── f_sub.h │ │ │ ├── i_abs.h │ │ │ ├── i_add.h │ │ │ ├── i_add_sat.h │ │ │ ├── i_mul.h │ │ │ ├── i_mull.h │ │ │ ├── i_neg.h │ │ │ ├── i_sub.h │ │ │ ├── i_sub_sat.h │ │ │ ├── scalar.h │ │ │ ├── splat_n.h │ │ │ ├── test_bits.h │ │ │ └── vec.h │ │ ├── extract128.h │ │ ├── for_each.h │ │ ├── get_expr.h │ │ ├── insn │ │ │ ├── align.h │ │ │ ├── bit_and.h │ │ │ ├── bit_andnot.h │ │ │ ├── bit_not.h │ │ │ ├── bit_or.h │ │ │ ├── bit_xor.h │ │ │ ├── blend.h │ │ │ ├── cmp_eq.h │ │ │ ├── cmp_ge.h │ │ │ ├── cmp_gt.h │ │ │ ├── cmp_le.h │ │ │ ├── cmp_lt.h │ │ │ ├── cmp_neq.h │ │ │ ├── combine.h │ │ │ ├── conv_any_to_float32.h │ │ │ ├── conv_any_to_float64.h │ │ │ ├── conv_extend_to_int16.h │ │ │ ├── conv_extend_to_int32.h │ │ │ ├── conv_extend_to_int64.h │ │ │ ├── conv_float_to_int16.h │ │ │ ├── conv_float_to_int32.h │ │ │ ├── conv_float_to_int64.h │ │ │ ├── conv_float_to_int8.h │ │ │ ├── conv_shrink_to_int16.h │ │ │ ├── conv_shrink_to_int32.h │ │ │ ├── conv_shrink_to_int8.h │ │ │ ├── conv_to_mask.h │ │ │ ├── conv_to_mask.inl │ │ │ ├── extract.h │ │ │ ├── extract_bits.h │ │ │ ├── f_abs.h │ │ │ ├── f_add.h │ │ │ ├── f_ceil.h │ │ │ ├── f_div.h │ │ │ ├── f_floor.h │ │ │ ├── f_fmadd.h │ │ │ ├── f_fmsub.h │ │ │ ├── f_isnan.h │ │ │ ├── f_isnan2.h │ │ │ ├── f_max.h │ │ │ ├── f_min.h │ │ │ ├── f_mul.h │ │ │ ├── f_neg.h │ │ │ ├── f_rcp_e.h │ │ │ ├── f_rcp_rh.h │ │ │ ├── f_reduce_add.h │ │ │ ├── f_reduce_max.h │ │ │ ├── f_reduce_min.h │ │ │ ├── f_reduce_mul.h │ │ │ ├── f_rsqrt_e.h │ │ │ ├── f_rsqrt_rh.h │ │ │ ├── f_sign.h │ │ │ ├── f_sqrt.h │ │ │ ├── f_sub.h │ │ │ ├── f_trunc.h │ │ │ ├── i_abs.h │ │ │ ├── i_add.h │ │ │ ├── i_add_sat.h │ │ │ ├── i_avg.h │ │ │ ├── i_avg_trunc.h │ │ │ ├── i_max.h │ │ │ ├── i_min.h │ │ │ ├── i_mul_hi.h │ │ │ ├── i_mul_lo.h │ │ │ ├── i_mull.h │ │ │ ├── i_neg.h │ │ │ ├── i_popcnt.h │ │ │ ├── i_reduce_add.h │ │ │ ├── i_reduce_and.h │ │ │ ├── i_reduce_max.h │ │ │ ├── i_reduce_min.h │ │ │ ├── i_reduce_mul.h │ │ │ ├── i_reduce_or.h │ │ │ ├── i_reduce_popcnt.h │ │ │ ├── i_shift.h │ │ │ ├── i_shift_l.h │ │ │ ├── i_shift_l_v.h │ │ │ ├── i_shift_r.h │ │ │ ├── i_shift_r_v.h │ │ │ ├── i_sub.h │ │ │ ├── i_sub_sat.h │ │ │ ├── insert.h │ │ │ ├── load.h │ │ │ ├── load_packed2.h │ │ │ ├── load_packed3.h │ │ │ ├── load_packed4.h │ │ │ ├── load_splat.h │ │ │ ├── load_u.h │ │ │ ├── make_const.h │ │ │ ├── mem_pack.h │ │ │ ├── mem_unpack.h │ │ │ ├── move_l.h │ │ │ ├── move_r.h │ │ │ ├── permute2.h │ │ │ ├── permute4.h │ │ │ ├── permute_bytes16.h │ │ │ ├── permute_zbytes16.h │ │ │ ├── set_splat.h │ │ │ ├── shuffle128.h │ │ │ ├── shuffle2x2.h │ │ │ ├── shuffle4x2.h │ │ │ ├── shuffle_bytes16.h │ │ │ ├── shuffle_emul.h │ │ │ ├── shuffle_zbytes16.h │ │ │ ├── splat.h │ │ │ ├── splat_n.h │ │ │ ├── split.h │ │ │ ├── store.h │ │ │ ├── store_first.h │ │ │ ├── store_last.h │ │ │ ├── store_masked.h │ │ │ ├── store_packed2.h │ │ │ ├── store_packed3.h │ │ │ ├── store_packed4.h │ │ │ ├── store_u.h │ │ │ ├── stream.h │ │ │ ├── test_bits.h │ │ │ ├── transpose.h │ │ │ ├── unzip_hi.h │ │ │ ├── unzip_lo.h │ │ │ ├── zip128.h │ │ │ ├── zip_hi.h │ │ │ └── zip_lo.h │ │ ├── insn_id.h │ │ ├── mem_block.h │ │ ├── neon │ │ │ ├── math_int.h │ │ │ ├── memory_store.h │ │ │ └── shuffle.h │ │ ├── not_implemented.h │ │ ├── null │ │ │ ├── bitwise.h │ │ │ ├── compare.h │ │ │ ├── mask.h │ │ │ ├── math.h │ │ │ ├── memory.h │ │ │ ├── set.h │ │ │ ├── shuffle.h │ │ │ └── transpose.h │ │ ├── preprocess_single_arch.h │ │ ├── preprocessor.h │ │ ├── preprocessor │ │ │ ├── arithmetic │ │ │ │ ├── dec.hpp │ │ │ │ └── inc.hpp │ │ │ ├── cat.hpp │ │ │ ├── config │ │ │ │ └── config.hpp │ │ │ ├── control │ │ │ │ ├── expr_if.hpp │ │ │ │ ├── expr_iif.hpp │ │ │ │ ├── if.hpp │ │ │ │ └── iif.hpp │ │ │ ├── debug │ │ │ │ └── error.hpp │ │ │ ├── detail │ │ │ │ ├── auto_rec.hpp │ │ │ │ └── split.hpp │ │ │ ├── facilities │ │ │ │ ├── detail │ │ │ │ │ └── is_empty.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── expand.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── is_1.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_empty_variadic.hpp │ │ │ │ └── overload.hpp │ │ │ ├── logical │ │ │ │ ├── bool.hpp │ │ │ │ └── compl.hpp │ │ │ ├── punctuation │ │ │ │ ├── comma.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── detail │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ ├── is_begin_parens.hpp │ │ │ │ └── remove_parens.hpp │ │ │ ├── repetition │ │ │ │ ├── detail │ │ │ │ │ ├── for.hpp │ │ │ │ │ └── msvc │ │ │ │ │ │ └── for.hpp │ │ │ │ └── for.hpp │ │ │ ├── seq │ │ │ │ ├── detail │ │ │ │ │ └── is_empty.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ ├── seq.hpp │ │ │ │ └── size.hpp │ │ │ ├── stringize.hpp │ │ │ ├── tuple │ │ │ │ ├── detail │ │ │ │ │ └── is_single_return.hpp │ │ │ │ ├── eat.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── rem.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── to_seq.hpp │ │ │ └── variadic │ │ │ │ ├── elem.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── to_seq.hpp │ │ ├── shuffle │ │ │ ├── neon_int16x8.h │ │ │ ├── neon_int32x4.h │ │ │ ├── neon_int64x2.h │ │ │ ├── shuffle_mask.h │ │ │ ├── sse_float32_4x2.h │ │ │ ├── sse_float64_4x2.h │ │ │ ├── sse_int32_4x2.h │ │ │ └── sse_int64_4x2.h │ │ ├── traits.h │ │ ├── vector_array_conv_macros.h │ │ ├── vector_array_macros.h │ │ ├── width.h │ │ └── workarounds.h │ │ ├── dispatch │ │ ├── arch.h │ │ ├── collect_macros_generated.h │ │ ├── dispatcher.h │ │ ├── get_arch_gcc_builtin_cpu_supports.h │ │ ├── get_arch_linux_cpuinfo.h │ │ ├── get_arch_raw_cpuid.h │ │ ├── get_arch_string_list.h │ │ ├── macros_generated.h │ │ ├── make_dispatcher.h │ │ └── preprocess_single_compile_arch.h │ │ ├── expr.h │ │ ├── expr.inl │ │ ├── operators │ │ ├── bit_and.h │ │ ├── bit_not.h │ │ ├── bit_or.h │ │ ├── bit_xor.h │ │ ├── cmp_eq.h │ │ ├── cmp_ge.h │ │ ├── cmp_gt.h │ │ ├── cmp_le.h │ │ ├── cmp_lt.h │ │ ├── cmp_neq.h │ │ ├── f_add.h │ │ ├── f_div.h │ │ ├── f_mul.h │ │ ├── f_sub.h │ │ ├── i_add.h │ │ ├── i_mul.h │ │ ├── i_shift_l.h │ │ ├── i_shift_r.h │ │ └── i_sub.h │ │ ├── setup_arch.h │ │ ├── simd.h │ │ ├── this_compile_arch.h │ │ ├── types.h │ │ └── types │ │ ├── README │ │ ├── any.h │ │ ├── empty_expr.h │ │ ├── float32.h │ │ ├── float32x16.h │ │ ├── float32x4.h │ │ ├── float32x8.h │ │ ├── float64.h │ │ ├── float64x2.h │ │ ├── float64x4.h │ │ ├── float64x8.h │ │ ├── fwd.h │ │ ├── generic.h │ │ ├── int16.h │ │ ├── int16x16.h │ │ ├── int16x32.h │ │ ├── int16x8.h │ │ ├── int32.h │ │ ├── int32x16.h │ │ ├── int32x4.h │ │ ├── int32x8.h │ │ ├── int64.h │ │ ├── int64x2.h │ │ ├── int64x4.h │ │ ├── int64x8.h │ │ ├── int8.h │ │ ├── int8x16.h │ │ ├── int8x32.h │ │ ├── int8x64.h │ │ ├── tag.h │ │ └── traits.h └── stb │ ├── README.md │ ├── stb_herringbone_wang_tile.h │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ └── stb_truetype.h ├── doc └── css │ ├── c2doc.css │ └── opblock.test.html ├── docker-build.sh ├── docker-run.sh ├── docker ├── dockerfile-ubuntu-14.04 └── dockerfile-ubuntu-18.04 ├── external ├── External.cmake ├── archive │ ├── CMakeLists.txt │ ├── COPYING │ ├── CTestConfig.cmake │ ├── build │ │ ├── Modules │ │ │ └── CMakePushCheckState.cmake │ │ ├── cmake │ │ │ ├── CheckFileOffsetBits.c │ │ │ ├── CheckFileOffsetBits.cmake │ │ │ ├── CheckFuncs.cmake │ │ │ ├── CheckFuncs_stub.c.in │ │ │ ├── CheckHeaderDirent.cmake │ │ │ ├── CheckTypeExists.cmake │ │ │ ├── CreatePkgConfigFile.cmake │ │ │ ├── FindLibGCC.cmake │ │ │ ├── FindNettle.cmake │ │ │ ├── FindPCREPOSIX.cmake │ │ │ ├── LibarchiveCodeCoverage.cmake │ │ │ └── config.h.in │ │ ├── pkgconfig │ │ │ └── libarchive.pc.in │ │ ├── utils │ │ │ └── gen_archive_string_composition_h.sh │ │ └── version │ ├── include │ │ ├── cm_bzlib.h │ │ ├── cm_lzma.h │ │ └── cm_zlib.h │ └── libarchive │ │ ├── CMakeLists.txt │ │ ├── archive.h │ │ ├── archive_acl.c │ │ ├── archive_acl_private.h │ │ ├── archive_check_magic.c │ │ ├── archive_cmdline.c │ │ ├── archive_cmdline_private.h │ │ ├── archive_crc32.h │ │ ├── archive_cryptor.c │ │ ├── archive_cryptor_private.h │ │ ├── archive_digest.c │ │ ├── archive_digest_private.h │ │ ├── archive_disk_acl_darwin.c │ │ ├── archive_disk_acl_freebsd.c │ │ ├── archive_disk_acl_linux.c │ │ ├── archive_disk_acl_sunos.c │ │ ├── archive_endian.h │ │ ├── archive_entry.c │ │ ├── archive_entry.h │ │ ├── archive_entry_copy_bhfi.c │ │ ├── archive_entry_copy_stat.c │ │ ├── archive_entry_link_resolver.c │ │ ├── archive_entry_locale.h │ │ ├── archive_entry_private.h │ │ ├── archive_entry_sparse.c │ │ ├── archive_entry_stat.c │ │ ├── archive_entry_strmode.c │ │ ├── archive_entry_xattr.c │ │ ├── archive_getdate.c │ │ ├── archive_getdate.h │ │ ├── archive_hmac.c │ │ ├── archive_hmac_private.h │ │ ├── archive_match.c │ │ ├── archive_openssl_evp_private.h │ │ ├── archive_openssl_hmac_private.h │ │ ├── archive_options.c │ │ ├── archive_options_private.h │ │ ├── archive_pack_dev.c │ │ ├── archive_pack_dev.h │ │ ├── archive_pathmatch.c │ │ ├── archive_pathmatch.h │ │ ├── archive_platform.h │ │ ├── archive_platform_acl.h │ │ ├── archive_platform_xattr.h │ │ ├── archive_ppmd7.c │ │ ├── archive_ppmd7_private.h │ │ ├── archive_ppmd_private.h │ │ ├── archive_private.h │ │ ├── archive_random.c │ │ ├── archive_random_private.h │ │ ├── archive_rb.c │ │ ├── archive_rb.h │ │ ├── archive_read.c │ │ ├── archive_read_add_passphrase.c │ │ ├── archive_read_append_filter.c │ │ ├── archive_read_data_into_fd.c │ │ ├── archive_read_disk_entry_from_file.c │ │ ├── archive_read_disk_posix.c │ │ ├── archive_read_disk_private.h │ │ ├── archive_read_disk_set_standard_lookup.c │ │ ├── archive_read_disk_windows.c │ │ ├── archive_read_extract.c │ │ ├── archive_read_extract2.c │ │ ├── archive_read_open_fd.c │ │ ├── archive_read_open_file.c │ │ ├── archive_read_open_filename.c │ │ ├── archive_read_open_memory.c │ │ ├── archive_read_private.h │ │ ├── archive_read_set_format.c │ │ ├── archive_read_set_options.c │ │ ├── archive_read_support_filter_all.c │ │ ├── archive_read_support_filter_bzip2.c │ │ ├── archive_read_support_filter_compress.c │ │ ├── archive_read_support_filter_grzip.c │ │ ├── archive_read_support_filter_gzip.c │ │ ├── archive_read_support_filter_lrzip.c │ │ ├── archive_read_support_filter_lz4.c │ │ ├── archive_read_support_filter_lzop.c │ │ ├── archive_read_support_filter_none.c │ │ ├── archive_read_support_filter_program.c │ │ ├── archive_read_support_filter_rpm.c │ │ ├── archive_read_support_filter_uu.c │ │ ├── archive_read_support_filter_xz.c │ │ ├── archive_read_support_filter_zstd.c │ │ ├── archive_read_support_format_7zip.c │ │ ├── archive_read_support_format_all.c │ │ ├── archive_read_support_format_ar.c │ │ ├── archive_read_support_format_by_code.c │ │ ├── archive_read_support_format_cab.c │ │ ├── archive_read_support_format_cpio.c │ │ ├── archive_read_support_format_empty.c │ │ ├── archive_read_support_format_iso9660.c │ │ ├── archive_read_support_format_lha.c │ │ ├── archive_read_support_format_mtree.c │ │ ├── archive_read_support_format_rar.c │ │ ├── archive_read_support_format_raw.c │ │ ├── archive_read_support_format_tar.c │ │ ├── archive_read_support_format_warc.c │ │ ├── archive_read_support_format_xar.c │ │ ├── archive_read_support_format_zip.c │ │ ├── archive_string.c │ │ ├── archive_string.h │ │ ├── archive_string_composition.h │ │ ├── archive_string_sprintf.c │ │ ├── archive_util.c │ │ ├── archive_version_details.c │ │ ├── archive_virtual.c │ │ ├── archive_windows.c │ │ ├── archive_windows.h │ │ ├── archive_write.c │ │ ├── archive_write_add_filter.c │ │ ├── archive_write_add_filter_b64encode.c │ │ ├── archive_write_add_filter_by_name.c │ │ ├── archive_write_add_filter_bzip2.c │ │ ├── archive_write_add_filter_compress.c │ │ ├── archive_write_add_filter_grzip.c │ │ ├── archive_write_add_filter_gzip.c │ │ ├── archive_write_add_filter_lrzip.c │ │ ├── archive_write_add_filter_lz4.c │ │ ├── archive_write_add_filter_lzop.c │ │ ├── archive_write_add_filter_none.c │ │ ├── archive_write_add_filter_program.c │ │ ├── archive_write_add_filter_uuencode.c │ │ ├── archive_write_add_filter_xz.c │ │ ├── archive_write_add_filter_zstd.c │ │ ├── archive_write_disk_posix.c │ │ ├── archive_write_disk_private.h │ │ ├── archive_write_disk_set_standard_lookup.c │ │ ├── archive_write_disk_windows.c │ │ ├── archive_write_open_fd.c │ │ ├── archive_write_open_file.c │ │ ├── archive_write_open_filename.c │ │ ├── archive_write_open_memory.c │ │ ├── archive_write_private.h │ │ ├── archive_write_set_format.c │ │ ├── archive_write_set_format_7zip.c │ │ ├── archive_write_set_format_ar.c │ │ ├── archive_write_set_format_by_name.c │ │ ├── archive_write_set_format_cpio.c │ │ ├── archive_write_set_format_cpio_newc.c │ │ ├── archive_write_set_format_filter_by_ext.c │ │ ├── archive_write_set_format_gnutar.c │ │ ├── archive_write_set_format_iso9660.c │ │ ├── archive_write_set_format_mtree.c │ │ ├── archive_write_set_format_pax.c │ │ ├── archive_write_set_format_raw.c │ │ ├── archive_write_set_format_shar.c │ │ ├── archive_write_set_format_ustar.c │ │ ├── archive_write_set_format_v7tar.c │ │ ├── archive_write_set_format_warc.c │ │ ├── archive_write_set_format_xar.c │ │ ├── archive_write_set_format_zip.c │ │ ├── archive_write_set_options.c │ │ ├── archive_write_set_passphrase.c │ │ ├── archive_xxhash.h │ │ ├── config_freebsd.h │ │ ├── filter_fork.h │ │ ├── filter_fork_posix.c │ │ ├── filter_fork_windows.c │ │ └── xxhash.c ├── asmjit │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README │ ├── asmjit.natvis │ ├── src │ │ └── asmjit │ │ │ ├── asmjit.h │ │ │ ├── core.h │ │ │ ├── core │ │ │ ├── arch.cpp │ │ │ ├── arch.h │ │ │ ├── assembler.cpp │ │ │ ├── assembler.h │ │ │ ├── build.h │ │ │ ├── builder.cpp │ │ │ ├── builder.h │ │ │ ├── callconv.cpp │ │ │ ├── callconv.h │ │ │ ├── codebufferwriter_p.h │ │ │ ├── codeholder.cpp │ │ │ ├── codeholder.h │ │ │ ├── compiler.cpp │ │ │ ├── compiler.h │ │ │ ├── constpool.cpp │ │ │ ├── constpool.h │ │ │ ├── cpuinfo.cpp │ │ │ ├── cpuinfo.h │ │ │ ├── datatypes.h │ │ │ ├── emitter.cpp │ │ │ ├── emitter.h │ │ │ ├── features.h │ │ │ ├── func.cpp │ │ │ ├── func.h │ │ │ ├── globals.cpp │ │ │ ├── globals.h │ │ │ ├── inst.cpp │ │ │ ├── inst.h │ │ │ ├── jitallocator.cpp │ │ │ ├── jitallocator.h │ │ │ ├── jitruntime.cpp │ │ │ ├── jitruntime.h │ │ │ ├── logging.cpp │ │ │ ├── logging.h │ │ │ ├── misc_p.h │ │ │ ├── operand.cpp │ │ │ ├── operand.h │ │ │ ├── osutils.cpp │ │ │ ├── osutils.h │ │ │ ├── raassignment_p.h │ │ │ ├── rabuilders_p.h │ │ │ ├── radefs_p.h │ │ │ ├── ralocal.cpp │ │ │ ├── ralocal_p.h │ │ │ ├── rapass.cpp │ │ │ ├── rapass_p.h │ │ │ ├── rastack.cpp │ │ │ ├── rastack_p.h │ │ │ ├── string.cpp │ │ │ ├── string.h │ │ │ ├── support.cpp │ │ │ ├── support.h │ │ │ ├── target.cpp │ │ │ ├── target.h │ │ │ ├── type.cpp │ │ │ ├── type.h │ │ │ ├── virtmem.cpp │ │ │ ├── virtmem.h │ │ │ ├── zone.cpp │ │ │ ├── zone.h │ │ │ ├── zonehash.cpp │ │ │ ├── zonehash.h │ │ │ ├── zonelist.cpp │ │ │ ├── zonelist.h │ │ │ ├── zonestack.cpp │ │ │ ├── zonestack.h │ │ │ ├── zonestring.h │ │ │ ├── zonetree.cpp │ │ │ ├── zonetree.h │ │ │ ├── zonevector.cpp │ │ │ └── zonevector.h │ │ │ ├── x86.h │ │ │ └── x86 │ │ │ ├── x86assembler.cpp │ │ │ ├── x86assembler.h │ │ │ ├── x86builder.cpp │ │ │ ├── x86builder.h │ │ │ ├── x86callconv.cpp │ │ │ ├── x86callconv_p.h │ │ │ ├── x86compiler.cpp │ │ │ ├── x86compiler.h │ │ │ ├── x86emitter.h │ │ │ ├── x86features.cpp │ │ │ ├── x86features.h │ │ │ ├── x86globals.h │ │ │ ├── x86instapi.cpp │ │ │ ├── x86instapi_p.h │ │ │ ├── x86instdb.cpp │ │ │ ├── x86instdb.h │ │ │ ├── x86instdb_p.h │ │ │ ├── x86internal.cpp │ │ │ ├── x86internal_p.h │ │ │ ├── x86logging.cpp │ │ │ ├── x86logging_p.h │ │ │ ├── x86opcode_p.h │ │ │ ├── x86operand.cpp │ │ │ ├── x86operand.h │ │ │ ├── x86rapass.cpp │ │ │ └── x86rapass_p.h │ ├── test │ │ ├── asmjit.h │ │ ├── asmjit_bench_x86.cpp │ │ ├── asmjit_test_misc.h │ │ ├── asmjit_test_opcode.cpp │ │ ├── asmjit_test_opcode.h │ │ ├── asmjit_test_unit.cpp │ │ ├── asmjit_test_x86_asm.cpp │ │ ├── asmjit_test_x86_cc.cpp │ │ ├── asmjit_test_x86_sections.cpp │ │ ├── broken.cpp │ │ └── broken.h │ └── tools │ │ ├── configure-makefiles.sh │ │ ├── configure-ninja.sh │ │ ├── configure-vs-x64.bat │ │ ├── configure-vs-x86.bat │ │ ├── configure-xcode.sh │ │ ├── tablegen-x86.js │ │ ├── tablegen.js │ │ └── tablegen.sh ├── blend2d │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── src │ │ ├── blend2d-debug.h │ │ ├── blend2d-impl.h │ │ ├── blend2d.h │ │ ├── blend2d.natvis │ │ └── blend2d │ │ │ ├── blapi-build_p.h │ │ │ ├── blapi-impl.h │ │ │ ├── blapi-internal_p.h │ │ │ ├── blapi-nocxx.cpp │ │ │ ├── blapi.h │ │ │ ├── blarray.cpp │ │ │ ├── blarray.h │ │ │ ├── blarray_p.h │ │ │ ├── blarrayops.cpp │ │ │ ├── blarrayops_p.h │ │ │ ├── blbitarray.cpp │ │ │ ├── blbitarray.h │ │ │ ├── blbitarray_p.h │ │ │ ├── blcompop.cpp │ │ │ ├── blcompop_p.h │ │ │ ├── blcontext.cpp │ │ │ ├── blcontext.h │ │ │ ├── blcontext_p.h │ │ │ ├── blfilesystem.cpp │ │ │ ├── blfilesystem.h │ │ │ ├── blfilesystem_p.h │ │ │ ├── blfont.cpp │ │ │ ├── blfont.h │ │ │ ├── blfont_p.h │ │ │ ├── blfontdefs.h │ │ │ ├── blformat.cpp │ │ │ ├── blformat.h │ │ │ ├── blformat_p.h │ │ │ ├── blgeometry.cpp │ │ │ ├── blgeometry.h │ │ │ ├── blgeometry_p.h │ │ │ ├── blglyphbuffer.cpp │ │ │ ├── blglyphbuffer.h │ │ │ ├── blglyphbuffer_p.h │ │ │ ├── blgradient.cpp │ │ │ ├── blgradient.h │ │ │ ├── blgradient_avx2.cpp │ │ │ ├── blgradient_p.h │ │ │ ├── blgradient_sse2.cpp │ │ │ ├── blimage.cpp │ │ │ ├── blimage.h │ │ │ ├── blimage_p.h │ │ │ ├── blimagescale.cpp │ │ │ ├── blimagescale_p.h │ │ │ ├── blmath.cpp │ │ │ ├── blmath_p.h │ │ │ ├── blmatrix.cpp │ │ │ ├── blmatrix.h │ │ │ ├── blmatrix_avx.cpp │ │ │ ├── blmatrix_p.h │ │ │ ├── blmatrix_sse2.cpp │ │ │ ├── blpath.cpp │ │ │ ├── blpath.h │ │ │ ├── blpath_p.h │ │ │ ├── blpathstroke.cpp │ │ │ ├── blpathstroke_p.h │ │ │ ├── blpattern.cpp │ │ │ ├── blpattern.h │ │ │ ├── blpattern_p.h │ │ │ ├── blpipedefs.cpp │ │ │ ├── blpipedefs_p.h │ │ │ ├── blpiperuntime.cpp │ │ │ ├── blpiperuntime_p.h │ │ │ ├── blpixelconverter.cpp │ │ │ ├── blpixelconverter.h │ │ │ ├── blpixelconverter_avx2.cpp │ │ │ ├── blpixelconverter_p.h │ │ │ ├── blpixelconverter_sse2.cpp │ │ │ ├── blpixelconverter_ssse3.cpp │ │ │ ├── blpixelops.cpp │ │ │ ├── blpixelops_p.h │ │ │ ├── blrandom.cpp │ │ │ ├── blrandom.h │ │ │ ├── blrandom_p.h │ │ │ ├── blregion.cpp │ │ │ ├── blregion.h │ │ │ ├── blregion_p.h │ │ │ ├── blrgba.cpp │ │ │ ├── blrgba.h │ │ │ ├── blrgba_p.h │ │ │ ├── blruntime.cpp │ │ │ ├── blruntime.h │ │ │ ├── blruntime_p.h │ │ │ ├── blsimd_p.h │ │ │ ├── blsimd_x86_p.h │ │ │ ├── blstring.cpp │ │ │ ├── blstring.h │ │ │ ├── blstring_p.h │ │ │ ├── blsupport.cpp │ │ │ ├── blsupport_p.h │ │ │ ├── bltables.cpp │ │ │ ├── bltables_p.h │ │ │ ├── blthreading.cpp │ │ │ ├── blthreading_p.h │ │ │ ├── blthreadpool.cpp │ │ │ ├── blthreadpool_p.h │ │ │ ├── bltrace.cpp │ │ │ ├── bltrace_p.h │ │ │ ├── blunicode.cpp │ │ │ ├── blunicode_p.h │ │ │ ├── blvariant.cpp │ │ │ ├── blvariant.h │ │ │ ├── blvariant_p.h │ │ │ ├── blzeroallocator.cpp │ │ │ ├── blzeroallocator_p.h │ │ │ ├── blzoneallocator.cpp │ │ │ ├── blzoneallocator_p.h │ │ │ ├── blzonelist.cpp │ │ │ ├── blzonelist_p.h │ │ │ ├── blzonetree.cpp │ │ │ ├── blzonetree_p.h │ │ │ ├── codec │ │ │ ├── blbmpcodec.cpp │ │ │ ├── blbmpcodec_p.h │ │ │ ├── bldeflate.cpp │ │ │ ├── bldeflate_p.h │ │ │ ├── bljpegcodec.cpp │ │ │ ├── bljpegcodec_p.h │ │ │ ├── bljpeghuffman.cpp │ │ │ ├── bljpeghuffman_p.h │ │ │ ├── bljpegops.cpp │ │ │ ├── bljpegops_p.h │ │ │ ├── bljpegops_sse2.cpp │ │ │ ├── blpngcodec.cpp │ │ │ ├── blpngcodec_p.h │ │ │ ├── blpngops.cpp │ │ │ ├── blpngops_p.h │ │ │ └── blpngops_sse2.cpp │ │ │ ├── fixedpipe │ │ │ ├── blfixedpiperuntime.cpp │ │ │ └── blfixedpiperuntime_p.h │ │ │ ├── opentype │ │ │ ├── blotcff.cpp │ │ │ ├── blotcff_p.h │ │ │ ├── blotcmap.cpp │ │ │ ├── blotcmap_p.h │ │ │ ├── blotcore.cpp │ │ │ ├── blotcore_p.h │ │ │ ├── blotdefs_p.h │ │ │ ├── blotface.cpp │ │ │ ├── blotface_p.h │ │ │ ├── blotglyf.cpp │ │ │ ├── blotglyf_p.h │ │ │ ├── blotkern.cpp │ │ │ ├── blotkern_p.h │ │ │ ├── blotlayout.cpp │ │ │ ├── blotlayout_p.h │ │ │ ├── blotmetrics.cpp │ │ │ ├── blotmetrics_p.h │ │ │ ├── blotname.cpp │ │ │ ├── blotname_p.h │ │ │ └── blotplatform_p.h │ │ │ ├── pipegen │ │ │ ├── blcompoppart.cpp │ │ │ ├── blcompoppart_p.h │ │ │ ├── blfetchgradientpart.cpp │ │ │ ├── blfetchgradientpart_p.h │ │ │ ├── blfetchpart.cpp │ │ │ ├── blfetchpart_p.h │ │ │ ├── blfetchpatternpart.cpp │ │ │ ├── blfetchpatternpart_p.h │ │ │ ├── blfetchpixelptrpart.cpp │ │ │ ├── blfetchpixelptrpart_p.h │ │ │ ├── blfetchsolidpart.cpp │ │ │ ├── blfetchsolidpart_p.h │ │ │ ├── blfetchutils.cpp │ │ │ ├── blfetchutils_p.h │ │ │ ├── blfillpart.cpp │ │ │ ├── blfillpart_p.h │ │ │ ├── blpipecompiler.cpp │ │ │ ├── blpipecompiler_p.h │ │ │ ├── blpipedebug_p.h │ │ │ ├── blpipegencore.cpp │ │ │ ├── blpipegencore_p.h │ │ │ ├── blpipegenruntime.cpp │ │ │ ├── blpipegenruntime_p.h │ │ │ ├── blpipepart.cpp │ │ │ ├── blpipepart_p.h │ │ │ └── blpiperegusage_p.h │ │ │ └── raster │ │ │ ├── blanalyticrasterizer_p.h │ │ │ ├── bledgebuilder_p.h │ │ │ ├── blrastercontext.cpp │ │ │ ├── blrastercontext_p.h │ │ │ ├── blrasterdefs_p.h │ │ │ ├── blrasterfiller.cpp │ │ │ ├── blrasterfiller_p.h │ │ │ ├── blrasterworkcmd_p.h │ │ │ ├── blrasterworker.cpp │ │ │ └── blrasterworker_p.h │ ├── test │ │ ├── bl_test_unit.cpp │ │ ├── broken.cpp │ │ └── broken.h │ └── tools │ │ ├── configure-makefiles.sh │ │ ├── configure-ninja.sh │ │ ├── configure-vs-x64.bat │ │ ├── configure-vs-x86.bat │ │ └── configure-xcode.sh ├── bzip2 │ ├── CHANGES │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── blocksort.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── huffman.c │ └── randtable.c ├── civetweb │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── cmake │ │ ├── AddCCompilerFlag.cmake │ │ ├── AddCXXCompilerFlag.cmake │ │ ├── DetermineTargetArchitecture.cmake │ │ ├── FindLibDl.cmake │ │ ├── FindLibM.cmake │ │ ├── FindLibRt.cmake │ │ ├── FindWinSock.cmake │ │ └── civetweb-config.cmake.in │ ├── include │ │ └── civetweb.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── civetweb.c │ │ ├── civetweb_private_lua.h │ │ ├── handle_form.inl │ │ ├── md5.inl │ │ ├── mod_duktape.inl │ │ ├── mod_lua.inl │ │ ├── mod_lua_shared.inl │ │ ├── mod_zlib.inl │ │ ├── sha1.inl │ │ ├── timer.inl │ │ └── wolfssl_extras.inl ├── date │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── include │ │ └── date │ │ │ ├── chrono_io.h │ │ │ ├── date.h │ │ │ ├── ios.h │ │ │ ├── islamic.h │ │ │ ├── iso_week.h │ │ │ ├── julian.h │ │ │ ├── ptz.h │ │ │ ├── tz.h │ │ │ └── tz_private.h │ └── src │ │ ├── ios.mm │ │ └── tz.cpp ├── demangle │ ├── CMakeLists.txt │ ├── demangle.cpp │ └── demangle.h ├── flatbuffers │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── grpc │ │ └── src │ │ │ └── compiler │ │ │ ├── config.h │ │ │ ├── cpp_generator.cc │ │ │ ├── cpp_generator.h │ │ │ ├── go_generator.cc │ │ │ ├── go_generator.h │ │ │ ├── java_generator.cc │ │ │ ├── java_generator.h │ │ │ └── schema_interface.h │ ├── include │ │ └── flatbuffers │ │ │ ├── base.h │ │ │ ├── code_generators.h │ │ │ ├── flatbuffers.h │ │ │ ├── flatc.h │ │ │ ├── flexbuffers.h │ │ │ ├── grpc.h │ │ │ ├── hash.h │ │ │ ├── idl.h │ │ │ ├── minireflect.h │ │ │ ├── reflection.h │ │ │ ├── reflection_generated.h │ │ │ ├── registry.h │ │ │ ├── stl_emulation.h │ │ │ └── util.h │ └── src │ │ ├── code_generators.cpp │ │ ├── flatc.cpp │ │ ├── flatc_main.cpp │ │ ├── flathash.cpp │ │ ├── idl_gen_cpp.cpp │ │ ├── idl_gen_dart.cpp │ │ ├── idl_gen_fbs.cpp │ │ ├── idl_gen_general.cpp │ │ ├── idl_gen_go.cpp │ │ ├── idl_gen_grpc.cpp │ │ ├── idl_gen_js.cpp │ │ ├── idl_gen_json_schema.cpp │ │ ├── idl_gen_lobster.cpp │ │ ├── idl_gen_lua.cpp │ │ ├── idl_gen_php.cpp │ │ ├── idl_gen_python.cpp │ │ ├── idl_gen_rust.cpp │ │ ├── idl_gen_text.cpp │ │ ├── idl_parser.cpp │ │ ├── reflection.cpp │ │ └── util.cpp ├── freetype │ ├── CMakeLists.txt │ ├── README │ ├── builds │ │ ├── amiga │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ └── ftmodule.h │ │ │ ├── makefile │ │ │ ├── makefile.os4 │ │ │ ├── smakefile │ │ │ └── src │ │ │ │ └── base │ │ │ │ ├── ftdebug.c │ │ │ │ └── ftsystem.c │ │ ├── ansi │ │ │ ├── ansi-def.mk │ │ │ └── ansi.mk │ │ ├── atari │ │ │ ├── ATARI.H │ │ │ ├── FNames.SIC │ │ │ ├── FREETYPE.PRJ │ │ │ ├── README.TXT │ │ │ ├── deflinejoiner.awk │ │ │ └── gen-purec-patch.sh │ │ ├── beos │ │ │ ├── beos-def.mk │ │ │ ├── beos.mk │ │ │ └── detect.mk │ │ ├── cmake │ │ │ ├── FindHarfBuzz.cmake │ │ │ ├── iOS.cmake │ │ │ └── testbuild.sh │ │ ├── compiler │ │ │ ├── ansi-cc.mk │ │ │ ├── bcc-dev.mk │ │ │ ├── bcc.mk │ │ │ ├── emx.mk │ │ │ ├── gcc-dev.mk │ │ │ ├── gcc.mk │ │ │ ├── intelc.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── visualage.mk │ │ │ ├── visualc.mk │ │ │ ├── watcom.mk │ │ │ └── win-lcc.mk │ │ ├── detect.mk │ │ ├── dos │ │ │ ├── detect.mk │ │ │ ├── dos-def.mk │ │ │ ├── dos-emx.mk │ │ │ ├── dos-gcc.mk │ │ │ └── dos-wat.mk │ │ ├── exports.mk │ │ ├── freetype.mk │ │ ├── link_dos.mk │ │ ├── link_std.mk │ │ ├── mac │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ ├── README │ │ │ ├── ascii2mpw.py │ │ │ ├── freetype-Info.plist │ │ │ ├── ftlib.prj.xml │ │ │ └── ftmac.c │ │ ├── modules.mk │ │ ├── os2 │ │ │ ├── detect.mk │ │ │ ├── os2-def.mk │ │ │ ├── os2-dev.mk │ │ │ └── os2-gcc.mk │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ └── freetype.mmp │ │ ├── toplevel.mk │ │ ├── unix │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── configure.raw │ │ │ ├── detect.mk │ │ │ ├── freetype-config.in │ │ │ ├── freetype2.in │ │ │ ├── freetype2.m4 │ │ │ ├── ft-munmap.m4 │ │ │ ├── ftconfig.in │ │ │ ├── ftsystem.c │ │ │ ├── install-sh │ │ │ ├── install.mk │ │ │ ├── ltmain.sh │ │ │ ├── pkg.m4 │ │ │ ├── unix-cc.in │ │ │ ├── unix-def.in │ │ │ ├── unix-dev.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── unix.mk │ │ │ └── unixddef.mk │ │ ├── vms │ │ │ ├── ftconfig.h │ │ │ └── ftsystem.c │ │ ├── wince │ │ │ ├── ftdebug.c │ │ │ ├── vc2005-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ └── vc2008-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ └── windows │ │ │ ├── detect.mk │ │ │ ├── ftdebug.c │ │ │ ├── vc2005 │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── vc2008 │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── vc2010 │ │ │ ├── freetype.sln │ │ │ ├── freetype.user.props │ │ │ ├── freetype.vcxproj │ │ │ ├── freetype.vcxproj.filters │ │ │ └── index.html │ │ │ ├── visualc │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── visualce │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── w32-bcc.mk │ │ │ ├── w32-bccd.mk │ │ │ ├── w32-dev.mk │ │ │ ├── w32-gcc.mk │ │ │ ├── w32-icc.mk │ │ │ ├── w32-intl.mk │ │ │ ├── w32-lcc.mk │ │ │ ├── w32-mingw32.mk │ │ │ ├── w32-vcc.mk │ │ │ ├── w32-wat.mk │ │ │ └── win32-def.mk │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── ftdriver.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftparams.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── cffotypes.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdrv.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpic.h │ │ │ │ ├── ftpsprop.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmetric.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ └── src │ │ ├── Jamfile │ │ ├── autofit │ │ ├── Jamfile │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afpic.c │ │ ├── afpic.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ ├── afwrtsys.h │ │ ├── autofit.c │ │ ├── module.mk │ │ └── rules.mk │ │ ├── base │ │ ├── Jamfile │ │ ├── basepic.c │ │ ├── basepic.h │ │ ├── ftadvanc.c │ │ ├── ftapi.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpic.c │ │ ├── ftpsprop.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftver.rc │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ ├── md5.h │ │ └── rules.mk │ │ ├── bdf │ │ ├── Jamfile │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ ├── bdflib.c │ │ ├── module.mk │ │ └── rules.mk │ │ ├── bzip2 │ │ ├── Jamfile │ │ ├── ftbzip2.c │ │ └── rules.mk │ │ ├── cache │ │ ├── Jamfile │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ ├── ftcsbits.h │ │ └── rules.mk │ │ ├── cff │ │ ├── Jamfile │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cffpic.c │ │ ├── cffpic.h │ │ ├── cfftoken.h │ │ ├── module.mk │ │ └── rules.mk │ │ ├── cid │ │ ├── Jamfile │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── type1cid.c │ │ ├── gxvalid │ │ ├── Jamfile │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ ├── gxvtrak.c │ │ ├── module.mk │ │ └── rules.mk │ │ ├── gzip │ │ ├── Jamfile │ │ ├── adler32.c │ │ ├── ftgzip.c │ │ ├── ftzconf.h │ │ ├── infblock.c │ │ ├── infblock.h │ │ ├── infcodes.c │ │ ├── infcodes.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── infutil.c │ │ ├── infutil.h │ │ ├── rules.mk │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ │ ├── lzw │ │ ├── Jamfile │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ ├── ftzopen.h │ │ └── rules.mk │ │ ├── otvalid │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ ├── otvmod.h │ │ └── rules.mk │ │ ├── pcf │ │ ├── Jamfile │ │ ├── README │ │ ├── module.mk │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ ├── pcfutil.h │ │ └── rules.mk │ │ ├── pfr │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ ├── pfrtypes.h │ │ └── rules.mk │ │ ├── psaux │ │ ├── Jamfile │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── cffdecode.c │ │ ├── cffdecode.h │ │ ├── module.mk │ │ ├── psarrst.c │ │ ├── psarrst.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psblues.c │ │ ├── psblues.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── pserror.c │ │ ├── pserror.h │ │ ├── psfixed.h │ │ ├── psfont.c │ │ ├── psfont.h │ │ ├── psft.c │ │ ├── psft.h │ │ ├── psglue.h │ │ ├── pshints.c │ │ ├── pshints.h │ │ ├── psintrp.c │ │ ├── psintrp.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── psread.c │ │ ├── psread.h │ │ ├── psstack.c │ │ ├── psstack.h │ │ ├── pstypes.h │ │ ├── rules.mk │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ │ ├── pshinter │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshpic.c │ │ ├── pshpic.h │ │ ├── pshrec.c │ │ ├── pshrec.h │ │ └── rules.mk │ │ ├── psnames │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pspic.c │ │ ├── pspic.h │ │ ├── pstables.h │ │ └── rules.mk │ │ ├── raster │ │ ├── Jamfile │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── module.mk │ │ ├── raster.c │ │ ├── rasterrs.h │ │ ├── rastpic.c │ │ ├── rastpic.h │ │ └── rules.mk │ │ ├── sfnt │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── rules.mk │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfntpic.c │ │ ├── sfntpic.h │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ └── ttsbit.h │ │ ├── smooth │ │ ├── Jamfile │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── ftspic.c │ │ ├── ftspic.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── smooth.c │ │ ├── tools │ │ ├── Jamfile │ │ ├── afblue.pl │ │ ├── apinames.c │ │ ├── chktrcmp.py │ │ ├── cordic.py │ │ ├── docmaker │ │ │ ├── content.py │ │ │ ├── docbeauty.py │ │ │ ├── docmaker.py │ │ │ ├── formatter.py │ │ │ ├── sources.py │ │ │ ├── tohtml.py │ │ │ └── utils.py │ │ ├── ftfuzzer │ │ │ ├── README │ │ │ ├── ftfuzzer.cc │ │ │ ├── ftmutator.cc │ │ │ ├── rasterfuzzer.cc │ │ │ └── runinput.cc │ │ ├── ftrandom │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── ftrandom.c │ │ ├── glnames.py │ │ ├── no-copyright │ │ ├── test_afm.c │ │ ├── test_bbox.c │ │ ├── test_trig.c │ │ ├── update-copyright │ │ └── update-copyright-year │ │ ├── truetype │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpic.c │ │ ├── ttpic.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttsubpix.c │ │ └── ttsubpix.h │ │ ├── type1 │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ │ ├── type42 │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ │ └── winfonts │ │ ├── Jamfile │ │ ├── fnterrs.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── winfnt.c │ │ └── winfnt.h ├── gperftools │ ├── .gitignore │ ├── COPYING │ ├── INSTALL │ ├── Makefile.am │ ├── README │ ├── README_windows.txt │ ├── configure.ac │ └── src │ │ ├── addressmap-inl.h │ │ ├── base │ │ ├── arm_instruction_set_select.h │ │ ├── atomicops-internals-arm-generic.h │ │ ├── atomicops-internals-arm-v6plus.h │ │ ├── atomicops-internals-gcc.h │ │ ├── atomicops-internals-linuxppc.h │ │ ├── atomicops-internals-macosx.h │ │ ├── atomicops-internals-mips.h │ │ ├── atomicops-internals-windows.h │ │ ├── atomicops-internals-x86.cc │ │ ├── atomicops-internals-x86.h │ │ ├── atomicops.h │ │ ├── basictypes.h │ │ ├── commandlineflags.h │ │ ├── dynamic_annotations.c │ │ ├── dynamic_annotations.h │ │ ├── elf_mem_image.cc │ │ ├── elf_mem_image.h │ │ ├── elfcore.h │ │ ├── googleinit.h │ │ ├── linux_syscall_support.h │ │ ├── linuxthreads.cc │ │ ├── linuxthreads.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── low_level_alloc.cc │ │ ├── low_level_alloc.h │ │ ├── simple_mutex.h │ │ ├── spinlock.cc │ │ ├── spinlock.h │ │ ├── spinlock_internal.cc │ │ ├── spinlock_internal.h │ │ ├── spinlock_linux-inl.h │ │ ├── spinlock_posix-inl.h │ │ ├── spinlock_win32-inl.h │ │ ├── stl_allocator.h │ │ ├── sysinfo.cc │ │ ├── sysinfo.h │ │ ├── thread_annotations.h │ │ ├── thread_lister.c │ │ ├── thread_lister.h │ │ ├── vdso_support.cc │ │ └── vdso_support.h │ │ ├── central_freelist.cc │ │ ├── central_freelist.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── config_for_unittests.h │ │ ├── debugallocation.cc │ │ ├── emergency_malloc.cc │ │ ├── emergency_malloc.h │ │ ├── emergency_malloc_for_stacktrace.cc │ │ ├── fake_stacktrace_scope.cc │ │ ├── getenv_safe.h │ │ ├── getpc.h │ │ ├── google │ │ ├── heap-checker.h │ │ ├── heap-profiler.h │ │ ├── malloc_extension.h │ │ ├── malloc_extension_c.h │ │ ├── malloc_hook.h │ │ ├── malloc_hook_c.h │ │ ├── profiler.h │ │ ├── stacktrace.h │ │ └── tcmalloc.h │ │ ├── gperftools │ │ ├── heap-checker.h │ │ ├── heap-profiler.h │ │ ├── malloc_extension.h │ │ ├── malloc_extension_c.h │ │ ├── malloc_hook.h │ │ ├── malloc_hook_c.h │ │ ├── nallocx.h │ │ ├── profiler.h │ │ ├── stacktrace.h │ │ └── tcmalloc.h.in │ │ ├── heap-checker-bcad.cc │ │ ├── heap-checker.cc │ │ ├── heap-profile-stats.h │ │ ├── heap-profile-table.cc │ │ ├── heap-profile-table.h │ │ ├── heap-profiler.cc │ │ ├── internal_logging.cc │ │ ├── internal_logging.h │ │ ├── libc_override.h │ │ ├── libc_override_gcc_and_weak.h │ │ ├── libc_override_glibc.h │ │ ├── libc_override_osx.h │ │ ├── libc_override_redefine.h │ │ ├── linked_list.h │ │ ├── malloc_extension.cc │ │ ├── malloc_hook-inl.h │ │ ├── malloc_hook.cc │ │ ├── malloc_hook_mmap_freebsd.h │ │ ├── malloc_hook_mmap_linux.h │ │ ├── maybe_emergency_malloc.h │ │ ├── maybe_threads.cc │ │ ├── maybe_threads.h │ │ ├── memfs_malloc.cc │ │ ├── memory_region_map.cc │ │ ├── memory_region_map.h │ │ ├── packed-cache-inl.h │ │ ├── page_heap.cc │ │ ├── page_heap.h │ │ ├── page_heap_allocator.h │ │ ├── pagemap.h │ │ ├── pprof │ │ ├── profile-handler.cc │ │ ├── profile-handler.h │ │ ├── profiledata.cc │ │ ├── profiledata.h │ │ ├── profiler.cc │ │ ├── raw_printer.cc │ │ ├── raw_printer.h │ │ ├── sampler.cc │ │ ├── sampler.h │ │ ├── solaris │ │ └── libstdc++.la │ │ ├── span.cc │ │ ├── span.h │ │ ├── stack_trace_table.cc │ │ ├── stack_trace_table.h │ │ ├── stacktrace.cc │ │ ├── stacktrace_arm-inl.h │ │ ├── stacktrace_generic-inl.h │ │ ├── stacktrace_impl_setup-inl.h │ │ ├── stacktrace_instrument-inl.h │ │ ├── stacktrace_libgcc-inl.h │ │ ├── stacktrace_libunwind-inl.h │ │ ├── stacktrace_powerpc-darwin-inl.h │ │ ├── stacktrace_powerpc-inl.h │ │ ├── stacktrace_powerpc-linux-inl.h │ │ ├── stacktrace_win32-inl.h │ │ ├── stacktrace_x86-inl.h │ │ ├── static_vars.cc │ │ ├── static_vars.h │ │ ├── symbolize.cc │ │ ├── symbolize.h │ │ ├── system-alloc.cc │ │ ├── system-alloc.h │ │ ├── tcmalloc.cc │ │ ├── tcmalloc.h │ │ ├── tcmalloc_guard.h │ │ ├── tests │ │ ├── addressmap_unittest.cc │ │ ├── atomicops_unittest.cc │ │ ├── current_allocated_bytes_test.cc │ │ ├── debugallocation_test.cc │ │ ├── debugallocation_test.sh │ │ ├── frag_unittest.cc │ │ ├── getpc_test.cc │ │ ├── heap-checker-death_unittest.sh │ │ ├── heap-checker_unittest.cc │ │ ├── heap-checker_unittest.sh │ │ ├── heap-profiler_unittest.cc │ │ ├── heap-profiler_unittest.sh │ │ ├── large_heap_fragmentation_unittest.cc │ │ ├── low_level_alloc_unittest.cc │ │ ├── malloc_extension_c_test.c │ │ ├── malloc_extension_test.cc │ │ ├── malloc_hook_test.cc │ │ ├── markidle_unittest.cc │ │ ├── maybe_threads_unittest.sh │ │ ├── memalign_unittest.cc │ │ ├── packed-cache_test.cc │ │ ├── page_heap_test.cc │ │ ├── pagemap_unittest.cc │ │ ├── profile-handler_unittest.cc │ │ ├── profiledata_unittest.cc │ │ ├── profiler_unittest.cc │ │ ├── profiler_unittest.sh │ │ ├── raw_printer_test.cc │ │ ├── realloc_unittest.cc │ │ ├── sampler_test.cc │ │ ├── sampling_test.cc │ │ ├── sampling_test.sh │ │ ├── simple_compat_test.cc │ │ ├── stack_trace_table_test.cc │ │ ├── stacktrace_unittest.cc │ │ ├── system-alloc_unittest.cc │ │ ├── tcmalloc_large_unittest.cc │ │ ├── tcmalloc_unittest.cc │ │ ├── tcmalloc_unittest.sh │ │ ├── testutil.cc │ │ ├── testutil.h │ │ └── thread_dealloc_unittest.cc │ │ ├── third_party │ │ └── valgrind.h │ │ ├── thread_cache.cc │ │ ├── thread_cache.h │ │ └── windows │ │ ├── TODO │ │ ├── addr2line-pdb.c │ │ ├── auto_testing_hook.h │ │ ├── config.h │ │ ├── get_mangled_names.cc │ │ ├── google │ │ └── tcmalloc.h │ │ ├── gperftools │ │ ├── tcmalloc.h │ │ └── tcmalloc.h.in │ │ ├── ia32_modrm_map.cc │ │ ├── ia32_opcode_map.cc │ │ ├── mingw.h │ │ ├── mini_disassembler.cc │ │ ├── mini_disassembler.h │ │ ├── mini_disassembler_types.h │ │ ├── nm-pdb.c │ │ ├── override_functions.cc │ │ ├── patch_functions.cc │ │ ├── port.cc │ │ ├── port.h │ │ ├── preamble_patcher.cc │ │ ├── preamble_patcher.h │ │ ├── preamble_patcher_test.cc │ │ ├── preamble_patcher_with_stub.cc │ │ ├── shortproc.asm │ │ └── system-alloc.cc ├── gtest │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── main │ │ └── gtest_main.cc ├── http-parser │ ├── CMakeLists.txt │ ├── LICENSE-MIT │ ├── README.md │ ├── bench.c │ ├── http_parser.c │ ├── http_parser.h │ └── test.c ├── icu │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── common │ │ ├── appendable.cpp │ │ ├── bmpset.cpp │ │ ├── bmpset.h │ │ ├── brkeng.cpp │ │ ├── brkeng.h │ │ ├── brkiter.cpp │ │ ├── bytestream.cpp │ │ ├── bytestrie.cpp │ │ ├── bytestriebuilder.cpp │ │ ├── bytestrieiterator.cpp │ │ ├── caniter.cpp │ │ ├── chariter.cpp │ │ ├── charstr.cpp │ │ ├── charstr.h │ │ ├── cmemory.c │ │ ├── cmemory.h │ │ ├── cpputils.h │ │ ├── cstr.cpp │ │ ├── cstr.h │ │ ├── cstring.c │ │ ├── cstring.h │ │ ├── cwchar.c │ │ ├── cwchar.h │ │ ├── dictbe.cpp │ │ ├── dictbe.h │ │ ├── dictionarydata.cpp │ │ ├── dictionarydata.h │ │ ├── dtintrv.cpp │ │ ├── errorcode.cpp │ │ ├── filteredbrk.cpp │ │ ├── filterednormalizer2.cpp │ │ ├── hash.h │ │ ├── icudataver.c │ │ ├── icuplug.cpp │ │ ├── icuplugimp.h │ │ ├── listformatter.cpp │ │ ├── loadednormalizer2impl.cpp │ │ ├── localsvc.h │ │ ├── locavailable.cpp │ │ ├── locbased.cpp │ │ ├── locbased.h │ │ ├── locdispnames.cpp │ │ ├── locdspnm.cpp │ │ ├── locid.cpp │ │ ├── loclikely.cpp │ │ ├── locmap.c │ │ ├── locmap.h │ │ ├── locresdata.cpp │ │ ├── locutil.cpp │ │ ├── locutil.h │ │ ├── messageimpl.h │ │ ├── messagepattern.cpp │ │ ├── msvcres.h │ │ ├── mutex.h │ │ ├── norm2_nfc_data.h │ │ ├── norm2allmodes.h │ │ ├── normalizer2.cpp │ │ ├── normalizer2impl.cpp │ │ ├── normalizer2impl.h │ │ ├── normlzr.cpp │ │ ├── parsepos.cpp │ │ ├── patternprops.cpp │ │ ├── patternprops.h │ │ ├── pluralmap.cpp │ │ ├── pluralmap.h │ │ ├── propname.cpp │ │ ├── propname.h │ │ ├── propname_data.h │ │ ├── propsvec.c │ │ ├── propsvec.h │ │ ├── punycode.cpp │ │ ├── punycode.h │ │ ├── putil.cpp │ │ ├── putilimp.h │ │ ├── rbbi.cpp │ │ ├── rbbidata.cpp │ │ ├── rbbidata.h │ │ ├── rbbinode.cpp │ │ ├── rbbinode.h │ │ ├── rbbirb.cpp │ │ ├── rbbirb.h │ │ ├── rbbirpt.h │ │ ├── rbbiscan.cpp │ │ ├── rbbiscan.h │ │ ├── rbbisetb.cpp │ │ ├── rbbisetb.h │ │ ├── rbbistbl.cpp │ │ ├── rbbitblb.cpp │ │ ├── rbbitblb.h │ │ ├── resbund.cpp │ │ ├── resbund_cnv.cpp │ │ ├── resource.cpp │ │ ├── resource.h │ │ ├── ruleiter.cpp │ │ ├── ruleiter.h │ │ ├── schriter.cpp │ │ ├── serv.cpp │ │ ├── serv.h │ │ ├── servlk.cpp │ │ ├── servlkf.cpp │ │ ├── servloc.h │ │ ├── servls.cpp │ │ ├── servnotf.cpp │ │ ├── servnotf.h │ │ ├── servrbf.cpp │ │ ├── servslkf.cpp │ │ ├── sharedobject.cpp │ │ ├── sharedobject.h │ │ ├── simpleformatter.cpp │ │ ├── sprpimpl.h │ │ ├── stringpiece.cpp │ │ ├── stringtriebuilder.cpp │ │ ├── uarrsort.c │ │ ├── uarrsort.h │ │ ├── uassert.h │ │ ├── ubidi.c │ │ ├── ubidi_props.c │ │ ├── ubidi_props.h │ │ ├── ubidi_props_data.h │ │ ├── ubidiimp.h │ │ ├── ubidiln.c │ │ ├── ubidiwrt.c │ │ ├── ubrk.cpp │ │ ├── ubrkimpl.h │ │ ├── ucase.cpp │ │ ├── ucase.h │ │ ├── ucase_props_data.h │ │ ├── ucasemap.cpp │ │ ├── ucasemap_titlecase_brkiter.cpp │ │ ├── ucat.c │ │ ├── uchar.c │ │ ├── uchar_props_data.h │ │ ├── ucharstrie.cpp │ │ ├── ucharstriebuilder.cpp │ │ ├── ucharstrieiterator.cpp │ │ ├── uchriter.cpp │ │ ├── ucln.h │ │ ├── ucln_cmn.cpp │ │ ├── ucln_cmn.h │ │ ├── ucln_imp.h │ │ ├── ucmndata.c │ │ ├── ucmndata.h │ │ ├── ucnv.c │ │ ├── ucnv2022.cpp │ │ ├── ucnv_bld.cpp │ │ ├── ucnv_bld.h │ │ ├── ucnv_cb.c │ │ ├── ucnv_cnv.c │ │ ├── ucnv_cnv.h │ │ ├── ucnv_ct.c │ │ ├── ucnv_err.c │ │ ├── ucnv_ext.cpp │ │ ├── ucnv_ext.h │ │ ├── ucnv_imp.h │ │ ├── ucnv_io.cpp │ │ ├── ucnv_io.h │ │ ├── ucnv_lmb.c │ │ ├── ucnv_set.c │ │ ├── ucnv_u16.c │ │ ├── ucnv_u32.c │ │ ├── ucnv_u7.c │ │ ├── ucnv_u8.c │ │ ├── ucnvbocu.cpp │ │ ├── ucnvdisp.c │ │ ├── ucnvhz.c │ │ ├── ucnvisci.c │ │ ├── ucnvlat1.c │ │ ├── ucnvmbcs.cpp │ │ ├── ucnvmbcs.h │ │ ├── ucnvscsu.c │ │ ├── ucnvsel.cpp │ │ ├── ucol_data.h │ │ ├── ucol_swp.cpp │ │ ├── ucol_swp.h │ │ ├── ucurr.cpp │ │ ├── ucurrimp.h │ │ ├── udata.cpp │ │ ├── udatamem.c │ │ ├── udatamem.h │ │ ├── udataswp.c │ │ ├── udataswp.h │ │ ├── uelement.h │ │ ├── uenum.c │ │ ├── uenumimp.h │ │ ├── uhash.c │ │ ├── uhash.h │ │ ├── uhash_us.cpp │ │ ├── uidna.cpp │ │ ├── uinit.cpp │ │ ├── uinvchar.c │ │ ├── uinvchar.h │ │ ├── uiter.cpp │ │ ├── ulist.c │ │ ├── ulist.h │ │ ├── ulistformatter.cpp │ │ ├── uloc.cpp │ │ ├── uloc_keytype.cpp │ │ ├── uloc_tag.c │ │ ├── ulocimp.h │ │ ├── umapfile.c │ │ ├── umapfile.h │ │ ├── umath.c │ │ ├── umutex.cpp │ │ ├── umutex.h │ │ ├── unames.cpp │ │ ├── unicode │ │ │ ├── appendable.h │ │ │ ├── brkiter.h │ │ │ ├── bytestream.h │ │ │ ├── bytestrie.h │ │ │ ├── bytestriebuilder.h │ │ │ ├── caniter.h │ │ │ ├── chariter.h │ │ │ ├── dbbi.h │ │ │ ├── docmain.h │ │ │ ├── dtintrv.h │ │ │ ├── enumset.h │ │ │ ├── errorcode.h │ │ │ ├── filteredbrk.h │ │ │ ├── icudataver.h │ │ │ ├── icuplug.h │ │ │ ├── idna.h │ │ │ ├── listformatter.h │ │ │ ├── localpointer.h │ │ │ ├── locdspnm.h │ │ │ ├── locid.h │ │ │ ├── messagepattern.h │ │ │ ├── normalizer2.h │ │ │ ├── normlzr.h │ │ │ ├── parseerr.h │ │ │ ├── parsepos.h │ │ │ ├── platform.h │ │ │ ├── ptypes.h │ │ │ ├── putil.h │ │ │ ├── rbbi.h │ │ │ ├── rep.h │ │ │ ├── resbund.h │ │ │ ├── schriter.h │ │ │ ├── simpleformatter.h │ │ │ ├── std_string.h │ │ │ ├── strenum.h │ │ │ ├── stringpiece.h │ │ │ ├── stringtriebuilder.h │ │ │ ├── symtable.h │ │ │ ├── ubidi.h │ │ │ ├── ubrk.h │ │ │ ├── ucasemap.h │ │ │ ├── ucat.h │ │ │ ├── uchar.h │ │ │ ├── ucharstrie.h │ │ │ ├── ucharstriebuilder.h │ │ │ ├── uchriter.h │ │ │ ├── uclean.h │ │ │ ├── ucnv.h │ │ │ ├── ucnv_cb.h │ │ │ ├── ucnv_err.h │ │ │ ├── ucnvsel.h │ │ │ ├── uconfig.h │ │ │ ├── ucurr.h │ │ │ ├── udata.h │ │ │ ├── udisplaycontext.h │ │ │ ├── uenum.h │ │ │ ├── uidna.h │ │ │ ├── uiter.h │ │ │ ├── uldnames.h │ │ │ ├── ulistformatter.h │ │ │ ├── uloc.h │ │ │ ├── umachine.h │ │ │ ├── umisc.h │ │ │ ├── unifilt.h │ │ │ ├── unifunct.h │ │ │ ├── unimatch.h │ │ │ ├── uniset.h │ │ │ ├── unistr.h │ │ │ ├── unorm.h │ │ │ ├── unorm2.h │ │ │ ├── uobject.h │ │ │ ├── urename.h │ │ │ ├── urep.h │ │ │ ├── ures.h │ │ │ ├── uscript.h │ │ │ ├── uset.h │ │ │ ├── usetiter.h │ │ │ ├── ushape.h │ │ │ ├── usprep.h │ │ │ ├── ustring.h │ │ │ ├── ustringtrie.h │ │ │ ├── utext.h │ │ │ ├── utf.h │ │ │ ├── utf16.h │ │ │ ├── utf32.h │ │ │ ├── utf8.h │ │ │ ├── utf_old.h │ │ │ ├── utrace.h │ │ │ ├── utypes.h │ │ │ ├── uvernum.h │ │ │ └── uversion.h │ │ ├── unifiedcache.cpp │ │ ├── unifiedcache.h │ │ ├── unifilt.cpp │ │ ├── unifunct.cpp │ │ ├── uniset.cpp │ │ ├── uniset_closure.cpp │ │ ├── uniset_props.cpp │ │ ├── unisetspan.cpp │ │ ├── unisetspan.h │ │ ├── unistr.cpp │ │ ├── unistr_case.cpp │ │ ├── unistr_case_locale.cpp │ │ ├── unistr_cnv.cpp │ │ ├── unistr_props.cpp │ │ ├── unistr_titlecase_brkiter.cpp │ │ ├── unistrappender.h │ │ ├── unorm.cpp │ │ ├── unormcmp.cpp │ │ ├── unormimp.h │ │ ├── uobject.cpp │ │ ├── uposixdefs.h │ │ ├── uprops.cpp │ │ ├── uprops.h │ │ ├── ures_cnv.c │ │ ├── uresbund.cpp │ │ ├── uresdata.cpp │ │ ├── uresdata.h │ │ ├── uresimp.h │ │ ├── ureslocs.h │ │ ├── usc_impl.c │ │ ├── usc_impl.h │ │ ├── uscript.c │ │ ├── uscript_props.cpp │ │ ├── uset.cpp │ │ ├── uset_imp.h │ │ ├── uset_props.cpp │ │ ├── usetiter.cpp │ │ ├── ushape.cpp │ │ ├── usprep.cpp │ │ ├── ustack.cpp │ │ ├── ustr_cnv.cpp │ │ ├── ustr_cnv.h │ │ ├── ustr_imp.h │ │ ├── ustr_titlecase_brkiter.cpp │ │ ├── ustr_wcs.cpp │ │ ├── ustrcase.cpp │ │ ├── ustrcase_locale.cpp │ │ ├── ustrenum.cpp │ │ ├── ustrenum.h │ │ ├── ustrfmt.c │ │ ├── ustrfmt.h │ │ ├── ustring.cpp │ │ ├── ustrtrns.cpp │ │ ├── utext.cpp │ │ ├── utf_impl.c │ │ ├── util.cpp │ │ ├── util.h │ │ ├── util_props.cpp │ │ ├── utrace.c │ │ ├── utracimp.h │ │ ├── utrie.cpp │ │ ├── utrie.h │ │ ├── utrie2.cpp │ │ ├── utrie2.h │ │ ├── utrie2_builder.cpp │ │ ├── utrie2_impl.h │ │ ├── uts46.cpp │ │ ├── utypeinfo.h │ │ ├── utypes.c │ │ ├── uvector.cpp │ │ ├── uvector.h │ │ ├── uvectr32.cpp │ │ ├── uvectr32.h │ │ ├── uvectr64.cpp │ │ ├── uvectr64.h │ │ ├── wintz.c │ │ └── wintz.h │ ├── i18n │ │ ├── affixpatternparser.cpp │ │ ├── affixpatternparser.h │ │ ├── alphaindex.cpp │ │ ├── anytrans.cpp │ │ ├── anytrans.h │ │ ├── astro.cpp │ │ ├── astro.h │ │ ├── basictz.cpp │ │ ├── bocsu.cpp │ │ ├── bocsu.h │ │ ├── brktrans.cpp │ │ ├── brktrans.h │ │ ├── buddhcal.cpp │ │ ├── buddhcal.h │ │ ├── calendar.cpp │ │ ├── casetrn.cpp │ │ ├── casetrn.h │ │ ├── cecal.cpp │ │ ├── cecal.h │ │ ├── chnsecal.cpp │ │ ├── chnsecal.h │ │ ├── choicfmt.cpp │ │ ├── coleitr.cpp │ │ ├── coll.cpp │ │ ├── collation.cpp │ │ ├── collation.h │ │ ├── collationbuilder.cpp │ │ ├── collationbuilder.h │ │ ├── collationcompare.cpp │ │ ├── collationcompare.h │ │ ├── collationdata.cpp │ │ ├── collationdata.h │ │ ├── collationdatabuilder.cpp │ │ ├── collationdatabuilder.h │ │ ├── collationdatareader.cpp │ │ ├── collationdatareader.h │ │ ├── collationdatawriter.cpp │ │ ├── collationdatawriter.h │ │ ├── collationfastlatin.cpp │ │ ├── collationfastlatin.h │ │ ├── collationfastlatinbuilder.cpp │ │ ├── collationfastlatinbuilder.h │ │ ├── collationfcd.cpp │ │ ├── collationfcd.h │ │ ├── collationiterator.cpp │ │ ├── collationiterator.h │ │ ├── collationkeys.cpp │ │ ├── collationkeys.h │ │ ├── collationroot.cpp │ │ ├── collationroot.h │ │ ├── collationrootelements.cpp │ │ ├── collationrootelements.h │ │ ├── collationruleparser.cpp │ │ ├── collationruleparser.h │ │ ├── collationsets.cpp │ │ ├── collationsets.h │ │ ├── collationsettings.cpp │ │ ├── collationsettings.h │ │ ├── collationtailoring.cpp │ │ ├── collationtailoring.h │ │ ├── collationweights.cpp │ │ ├── collationweights.h │ │ ├── collunsafe.h │ │ ├── compactdecimalformat.cpp │ │ ├── coptccal.cpp │ │ ├── coptccal.h │ │ ├── cpdtrans.cpp │ │ ├── cpdtrans.h │ │ ├── csdetect.cpp │ │ ├── csdetect.h │ │ ├── csmatch.cpp │ │ ├── csmatch.h │ │ ├── csr2022.cpp │ │ ├── csr2022.h │ │ ├── csrecog.cpp │ │ ├── csrecog.h │ │ ├── csrmbcs.cpp │ │ ├── csrmbcs.h │ │ ├── csrsbcs.cpp │ │ ├── csrsbcs.h │ │ ├── csrucode.cpp │ │ ├── csrucode.h │ │ ├── csrutf8.cpp │ │ ├── csrutf8.h │ │ ├── curramt.cpp │ │ ├── currfmt.cpp │ │ ├── currfmt.h │ │ ├── currpinf.cpp │ │ ├── currunit.cpp │ │ ├── dangical.cpp │ │ ├── dangical.h │ │ ├── datefmt.cpp │ │ ├── dayperiodrules.cpp │ │ ├── dayperiodrules.h │ │ ├── dcfmtimp.h │ │ ├── dcfmtsym.cpp │ │ ├── decContext.c │ │ ├── decContext.h │ │ ├── decNumber.c │ │ ├── decNumber.h │ │ ├── decNumberLocal.h │ │ ├── decfmtst.cpp │ │ ├── decfmtst.h │ │ ├── decimalformatpattern.cpp │ │ ├── decimalformatpattern.h │ │ ├── decimalformatpatternimpl.h │ │ ├── decimfmt.cpp │ │ ├── decimfmtimpl.cpp │ │ ├── decimfmtimpl.h │ │ ├── digitaffix.cpp │ │ ├── digitaffix.h │ │ ├── digitaffixesandpadding.cpp │ │ ├── digitaffixesandpadding.h │ │ ├── digitformatter.cpp │ │ ├── digitformatter.h │ │ ├── digitgrouping.cpp │ │ ├── digitgrouping.h │ │ ├── digitinterval.cpp │ │ ├── digitinterval.h │ │ ├── digitlst.cpp │ │ ├── digitlst.h │ │ ├── dtfmtsym.cpp │ │ ├── dtitv_impl.h │ │ ├── dtitvfmt.cpp │ │ ├── dtitvinf.cpp │ │ ├── dtptngen.cpp │ │ ├── dtptngen_impl.h │ │ ├── dtrule.cpp │ │ ├── esctrn.cpp │ │ ├── esctrn.h │ │ ├── ethpccal.cpp │ │ ├── ethpccal.h │ │ ├── fmtable.cpp │ │ ├── fmtable_cnv.cpp │ │ ├── fmtableimp.h │ │ ├── format.cpp │ │ ├── fphdlimp.cpp │ │ ├── fphdlimp.h │ │ ├── fpositer.cpp │ │ ├── funcrepl.cpp │ │ ├── funcrepl.h │ │ ├── gender.cpp │ │ ├── gregocal.cpp │ │ ├── gregoimp.cpp │ │ ├── gregoimp.h │ │ ├── hebrwcal.cpp │ │ ├── hebrwcal.h │ │ ├── identifier_info.cpp │ │ ├── identifier_info.h │ │ ├── indiancal.cpp │ │ ├── indiancal.h │ │ ├── inputext.cpp │ │ ├── inputext.h │ │ ├── islamcal.cpp │ │ ├── islamcal.h │ │ ├── japancal.cpp │ │ ├── japancal.h │ │ ├── measfmt.cpp │ │ ├── measunit.cpp │ │ ├── measure.cpp │ │ ├── msgfmt.cpp │ │ ├── msgfmt_impl.h │ │ ├── name2uni.cpp │ │ ├── name2uni.h │ │ ├── nfrlist.h │ │ ├── nfrs.cpp │ │ ├── nfrs.h │ │ ├── nfrule.cpp │ │ ├── nfrule.h │ │ ├── nfsubs.cpp │ │ ├── nfsubs.h │ │ ├── nortrans.cpp │ │ ├── nortrans.h │ │ ├── nultrans.cpp │ │ ├── nultrans.h │ │ ├── numfmt.cpp │ │ ├── numsys.cpp │ │ ├── numsys_impl.h │ │ ├── olsontz.cpp │ │ ├── olsontz.h │ │ ├── persncal.cpp │ │ ├── persncal.h │ │ ├── pluralaffix.cpp │ │ ├── pluralaffix.h │ │ ├── plurfmt.cpp │ │ ├── plurrule.cpp │ │ ├── plurrule_impl.h │ │ ├── precision.cpp │ │ ├── precision.h │ │ ├── quant.cpp │ │ ├── quant.h │ │ ├── quantityformatter.cpp │ │ ├── quantityformatter.h │ │ ├── rbnf.cpp │ │ ├── rbt.cpp │ │ ├── rbt.h │ │ ├── rbt_data.cpp │ │ ├── rbt_data.h │ │ ├── rbt_pars.cpp │ │ ├── rbt_pars.h │ │ ├── rbt_rule.cpp │ │ ├── rbt_rule.h │ │ ├── rbt_set.cpp │ │ ├── rbt_set.h │ │ ├── rbtz.cpp │ │ ├── regexcmp.cpp │ │ ├── regexcmp.h │ │ ├── regexcst.h │ │ ├── regeximp.cpp │ │ ├── regeximp.h │ │ ├── regexst.cpp │ │ ├── regexst.h │ │ ├── regextxt.cpp │ │ ├── regextxt.h │ │ ├── region.cpp │ │ ├── region_impl.h │ │ ├── reldatefmt.cpp │ │ ├── reldtfmt.cpp │ │ ├── reldtfmt.h │ │ ├── rematch.cpp │ │ ├── remtrans.cpp │ │ ├── remtrans.h │ │ ├── repattrn.cpp │ │ ├── rulebasedcollator.cpp │ │ ├── scientificnumberformatter.cpp │ │ ├── scriptset.cpp │ │ ├── scriptset.h │ │ ├── search.cpp │ │ ├── selfmt.cpp │ │ ├── selfmtimpl.h │ │ ├── sharedbreakiterator.cpp │ │ ├── sharedbreakiterator.h │ │ ├── sharedcalendar.h │ │ ├── shareddateformatsymbols.h │ │ ├── sharednumberformat.h │ │ ├── sharedpluralrules.h │ │ ├── significantdigitinterval.h │ │ ├── simpletz.cpp │ │ ├── smallintformatter.cpp │ │ ├── smallintformatter.h │ │ ├── smpdtfmt.cpp │ │ ├── smpdtfst.cpp │ │ ├── smpdtfst.h │ │ ├── sortkey.cpp │ │ ├── standardplural.cpp │ │ ├── standardplural.h │ │ ├── strmatch.cpp │ │ ├── strmatch.h │ │ ├── strrepl.cpp │ │ ├── strrepl.h │ │ ├── stsearch.cpp │ │ ├── taiwncal.cpp │ │ ├── taiwncal.h │ │ ├── timezone.cpp │ │ ├── titletrn.cpp │ │ ├── titletrn.h │ │ ├── tmunit.cpp │ │ ├── tmutamt.cpp │ │ ├── tmutfmt.cpp │ │ ├── tolowtrn.cpp │ │ ├── tolowtrn.h │ │ ├── toupptrn.cpp │ │ ├── toupptrn.h │ │ ├── translit.cpp │ │ ├── transreg.cpp │ │ ├── transreg.h │ │ ├── tridpars.cpp │ │ ├── tridpars.h │ │ ├── tzfmt.cpp │ │ ├── tzgnames.cpp │ │ ├── tzgnames.h │ │ ├── tznames.cpp │ │ ├── tznames_impl.cpp │ │ ├── tznames_impl.h │ │ ├── tzrule.cpp │ │ ├── tztrans.cpp │ │ ├── ucal.cpp │ │ ├── ucln_in.cpp │ │ ├── ucln_in.h │ │ ├── ucol.cpp │ │ ├── ucol_imp.h │ │ ├── ucol_res.cpp │ │ ├── ucol_sit.cpp │ │ ├── ucoleitr.cpp │ │ ├── ucsdet.cpp │ │ ├── udat.cpp │ │ ├── udateintervalformat.cpp │ │ ├── udatpg.cpp │ │ ├── ufieldpositer.cpp │ │ ├── uitercollationiterator.cpp │ │ ├── uitercollationiterator.h │ │ ├── ulocdata.c │ │ ├── umsg.cpp │ │ ├── umsg_imp.h │ │ ├── unesctrn.cpp │ │ ├── unesctrn.h │ │ ├── uni2name.cpp │ │ ├── uni2name.h │ │ ├── unicode │ │ │ ├── alphaindex.h │ │ │ ├── basictz.h │ │ │ ├── calendar.h │ │ │ ├── choicfmt.h │ │ │ ├── coleitr.h │ │ │ ├── coll.h │ │ │ ├── compactdecimalformat.h │ │ │ ├── curramt.h │ │ │ ├── currpinf.h │ │ │ ├── currunit.h │ │ │ ├── datefmt.h │ │ │ ├── dcfmtsym.h │ │ │ ├── decimfmt.h │ │ │ ├── dtfmtsym.h │ │ │ ├── dtitvfmt.h │ │ │ ├── dtitvinf.h │ │ │ ├── dtptngen.h │ │ │ ├── dtrule.h │ │ │ ├── fieldpos.h │ │ │ ├── fmtable.h │ │ │ ├── format.h │ │ │ ├── fpositer.h │ │ │ ├── gender.h │ │ │ ├── gregocal.h │ │ │ ├── measfmt.h │ │ │ ├── measunit.h │ │ │ ├── measure.h │ │ │ ├── msgfmt.h │ │ │ ├── numfmt.h │ │ │ ├── numsys.h │ │ │ ├── plurfmt.h │ │ │ ├── plurrule.h │ │ │ ├── rbnf.h │ │ │ ├── rbtz.h │ │ │ ├── regex.h │ │ │ ├── region.h │ │ │ ├── reldatefmt.h │ │ │ ├── scientificnumberformatter.h │ │ │ ├── search.h │ │ │ ├── selfmt.h │ │ │ ├── simpletz.h │ │ │ ├── smpdtfmt.h │ │ │ ├── sortkey.h │ │ │ ├── stsearch.h │ │ │ ├── tblcoll.h │ │ │ ├── timezone.h │ │ │ ├── tmunit.h │ │ │ ├── tmutamt.h │ │ │ ├── tmutfmt.h │ │ │ ├── translit.h │ │ │ ├── tzfmt.h │ │ │ ├── tznames.h │ │ │ ├── tzrule.h │ │ │ ├── tztrans.h │ │ │ ├── ucal.h │ │ │ ├── ucol.h │ │ │ ├── ucoleitr.h │ │ │ ├── ucsdet.h │ │ │ ├── udat.h │ │ │ ├── udateintervalformat.h │ │ │ ├── udatpg.h │ │ │ ├── ufieldpositer.h │ │ │ ├── uformattable.h │ │ │ ├── ugender.h │ │ │ ├── ulocdata.h │ │ │ ├── umsg.h │ │ │ ├── unirepl.h │ │ │ ├── unum.h │ │ │ ├── unumsys.h │ │ │ ├── upluralrules.h │ │ │ ├── uregex.h │ │ │ ├── uregion.h │ │ │ ├── ureldatefmt.h │ │ │ ├── usearch.h │ │ │ ├── uspoof.h │ │ │ ├── utmscale.h │ │ │ ├── utrans.h │ │ │ └── vtzone.h │ │ ├── unum.cpp │ │ ├── unumsys.cpp │ │ ├── upluralrules.cpp │ │ ├── uregex.cpp │ │ ├── uregexc.cpp │ │ ├── uregion.cpp │ │ ├── usearch.cpp │ │ ├── uspoof.cpp │ │ ├── uspoof_build.cpp │ │ ├── uspoof_conf.cpp │ │ ├── uspoof_conf.h │ │ ├── uspoof_impl.cpp │ │ ├── uspoof_impl.h │ │ ├── uspoof_wsconf.cpp │ │ ├── uspoof_wsconf.h │ │ ├── usrchimp.h │ │ ├── utf16collationiterator.cpp │ │ ├── utf16collationiterator.h │ │ ├── utf8collationiterator.cpp │ │ ├── utf8collationiterator.h │ │ ├── utmscale.c │ │ ├── utrans.cpp │ │ ├── valueformatter.cpp │ │ ├── valueformatter.h │ │ ├── visibledigits.cpp │ │ ├── visibledigits.h │ │ ├── vtzone.cpp │ │ ├── vzone.cpp │ │ ├── vzone.h │ │ ├── windtfmt.cpp │ │ ├── windtfmt.h │ │ ├── winnmfmt.cpp │ │ ├── winnmfmt.h │ │ ├── wintzimpl.cpp │ │ ├── wintzimpl.h │ │ ├── zonemeta.cpp │ │ ├── zonemeta.h │ │ ├── zrule.cpp │ │ ├── zrule.h │ │ ├── ztrans.cpp │ │ └── ztrans.h │ └── stubdata │ │ ├── icudt57l │ │ ├── cns_11643_1992_cnv.c │ │ ├── cnvalias_icu.c │ │ ├── confusables_cfu.c │ │ ├── ebcdic_xml_us_cnv.c │ │ ├── euc_jp_2007_cnv.c │ │ ├── euc_tw_2014_cnv.c │ │ ├── gb18030_cnv.c │ │ ├── gsm_03.38_2000_cnv.c │ │ ├── ibm_1004_P100_1995_cnv.c │ │ ├── ibm_1006_P100_1995_cnv.c │ │ ├── ibm_1008_P100_1995_cnv.c │ │ ├── ibm_1009_P100_1995_cnv.c │ │ ├── ibm_1010_P100_1995_cnv.c │ │ ├── ibm_1011_P100_1995_cnv.c │ │ ├── ibm_1012_P100_1995_cnv.c │ │ ├── ibm_1013_P100_1995_cnv.c │ │ ├── ibm_1014_P100_1995_cnv.c │ │ ├── ibm_1015_P100_1995_cnv.c │ │ ├── ibm_1016_P100_1995_cnv.c │ │ ├── ibm_1017_P100_1995_cnv.c │ │ ├── ibm_1018_P100_1995_cnv.c │ │ ├── ibm_1019_P100_1995_cnv.c │ │ ├── ibm_1020_P100_2003_cnv.c │ │ ├── ibm_1021_P100_2003_cnv.c │ │ ├── ibm_1023_P100_2003_cnv.c │ │ ├── ibm_1025_P100_1995_cnv.c │ │ ├── ibm_1026_P100_1995_cnv.c │ │ ├── ibm_1046_X110_1999_cnv.c │ │ ├── ibm_1047_P100_1995_cnv.c │ │ ├── ibm_1051_P100_1995_cnv.c │ │ ├── ibm_1089_P100_1995_cnv.c │ │ ├── ibm_1097_P100_1995_cnv.c │ │ ├── ibm_1098_P100_1995_cnv.c │ │ ├── ibm_1100_P100_2003_cnv.c │ │ ├── ibm_1101_P100_2003_cnv.c │ │ ├── ibm_1102_P100_2003_cnv.c │ │ ├── ibm_1103_P100_2003_cnv.c │ │ ├── ibm_1104_P100_2003_cnv.c │ │ ├── ibm_1105_P100_2003_cnv.c │ │ ├── ibm_1106_P100_2003_cnv.c │ │ ├── ibm_1107_P100_2003_cnv.c │ │ ├── ibm_1112_P100_1995_cnv.c │ │ ├── ibm_1122_P100_1999_cnv.c │ │ ├── ibm_1123_P100_1995_cnv.c │ │ ├── ibm_1124_P100_1996_cnv.c │ │ ├── ibm_1125_P100_1997_cnv.c │ │ ├── ibm_1127_P100_2004_cnv.c │ │ ├── ibm_1129_P100_1997_cnv.c │ │ ├── ibm_1130_P100_1997_cnv.c │ │ ├── ibm_1131_P100_1997_cnv.c │ │ ├── ibm_1132_P100_1998_cnv.c │ │ ├── ibm_1133_P100_1997_cnv.c │ │ ├── ibm_1137_P100_1999_cnv.c │ │ ├── ibm_1140_P100_1997_cnv.c │ │ ├── ibm_1141_P100_1997_cnv.c │ │ ├── ibm_1142_P100_1997_cnv.c │ │ ├── ibm_1143_P100_1997_cnv.c │ │ ├── ibm_1144_P100_1997_cnv.c │ │ ├── ibm_1145_P100_1997_cnv.c │ │ ├── ibm_1146_P100_1997_cnv.c │ │ ├── ibm_1147_P100_1997_cnv.c │ │ ├── ibm_1148_P100_1997_cnv.c │ │ ├── ibm_1149_P100_1997_cnv.c │ │ ├── ibm_1153_P100_1999_cnv.c │ │ ├── ibm_1154_P100_1999_cnv.c │ │ ├── ibm_1155_P100_1999_cnv.c │ │ ├── ibm_1156_P100_1999_cnv.c │ │ ├── ibm_1157_P100_1999_cnv.c │ │ ├── ibm_1158_P100_1999_cnv.c │ │ ├── ibm_1160_P100_1999_cnv.c │ │ ├── ibm_1161_P100_1999_cnv.c │ │ ├── ibm_1162_P100_1999_cnv.c │ │ ├── ibm_1163_P100_1999_cnv.c │ │ ├── ibm_1164_P100_1999_cnv.c │ │ ├── ibm_1165_P101_2000_cnv.c │ │ ├── ibm_1166_P100_2002_cnv.c │ │ ├── ibm_1167_P100_2002_cnv.c │ │ ├── ibm_1168_P100_2002_cnv.c │ │ ├── ibm_1174_X100_2007_cnv.c │ │ ├── ibm_1250_P100_1995_cnv.c │ │ ├── ibm_1251_P100_1995_cnv.c │ │ ├── ibm_1252_P100_2000_cnv.c │ │ ├── ibm_1253_P100_1995_cnv.c │ │ ├── ibm_1254_P100_1995_cnv.c │ │ ├── ibm_1255_P100_1995_cnv.c │ │ ├── ibm_1256_P110_1997_cnv.c │ │ ├── ibm_1257_P100_1995_cnv.c │ │ ├── ibm_1258_P100_1997_cnv.c │ │ ├── ibm_12712_P100_1998_cnv.c │ │ ├── ibm_1276_P100_1995_cnv.c │ │ ├── ibm_1277_P100_1995_cnv.c │ │ ├── ibm_13125_P100_1997_cnv.c │ │ ├── ibm_13140_P101_2000_cnv.c │ │ ├── ibm_13218_P100_1996_cnv.c │ │ ├── ibm_1350_P110_1997_cnv.c │ │ ├── ibm_1351_P110_1997_cnv.c │ │ ├── ibm_1362_P110_1999_cnv.c │ │ ├── ibm_1363_P110_1997_cnv.c │ │ ├── ibm_1363_P11B_1998_cnv.c │ │ ├── ibm_1364_P110_2007_cnv.c │ │ ├── ibm_13676_P102_2001_cnv.c │ │ ├── ibm_1371_P100_1999_cnv.c │ │ ├── ibm_1373_P100_2002_cnv.c │ │ ├── ibm_1375_P100_2008_cnv.c │ │ ├── ibm_1380_P100_1995_cnv.c │ │ ├── ibm_1381_P110_1999_cnv.c │ │ ├── ibm_1382_P100_1995_cnv.c │ │ ├── ibm_1383_P110_1999_cnv.c │ │ ├── ibm_1386_P100_2001_cnv.c │ │ ├── ibm_1388_P103_2001_cnv.c │ │ ├── ibm_1390_P110_2003_cnv.c │ │ ├── ibm_1399_P110_2003_cnv.c │ │ ├── ibm_16684_P110_2003_cnv.c │ │ ├── ibm_16804_X110_1999_cnv.c │ │ ├── ibm_17221_P100_2001_cnv.c │ │ ├── ibm_17248_X110_1999_cnv.c │ │ ├── ibm_21344_P101_2000_cnv.c │ │ ├── ibm_21427_P100_1999_cnv.c │ │ ├── ibm_256_P100_1995_cnv.c │ │ ├── ibm_259_P100_1995_cnv.c │ │ ├── ibm_273_P100_1995_cnv.c │ │ ├── ibm_274_P100_2000_cnv.c │ │ ├── ibm_275_P100_1995_cnv.c │ │ ├── ibm_277_P100_1995_cnv.c │ │ ├── ibm_278_P100_1995_cnv.c │ │ ├── ibm_280_P100_1995_cnv.c │ │ ├── ibm_284_P100_1995_cnv.c │ │ ├── ibm_285_P100_1995_cnv.c │ │ ├── ibm_286_P100_2003_cnv.c │ │ ├── ibm_290_P100_1995_cnv.c │ │ ├── ibm_293_P100_1995_cnv.c │ │ ├── ibm_297_P100_1995_cnv.c │ │ ├── ibm_300_P120_2006_cnv.c │ │ ├── ibm_301_P110_1997_cnv.c │ │ ├── ibm_33058_P100_2000_cnv.c │ │ ├── ibm_33722_P120_1999_cnv.c │ │ ├── ibm_33722_P12A_P12A_2004_U2_cnv.c │ │ ├── ibm_33722_P12A_P12A_2009_U2_cnv.c │ │ ├── ibm_37_P100_1995_cnv.c │ │ ├── ibm_420_X120_1999_cnv.c │ │ ├── ibm_424_P100_1995_cnv.c │ │ ├── ibm_425_P101_2000_cnv.c │ │ ├── ibm_437_P100_1995_cnv.c │ │ ├── ibm_4517_P100_2005_cnv.c │ │ ├── ibm_4899_P100_1998_cnv.c │ │ ├── ibm_4909_P100_1999_cnv.c │ │ ├── ibm_4930_P110_1999_cnv.c │ │ ├── ibm_4933_P100_2002_cnv.c │ │ ├── ibm_4948_P100_1995_cnv.c │ │ ├── ibm_4951_P100_1995_cnv.c │ │ ├── ibm_4952_P100_1995_cnv.c │ │ ├── ibm_4960_P100_1995_cnv.c │ │ ├── ibm_4971_P100_1999_cnv.c │ │ ├── ibm_500_P100_1995_cnv.c │ │ ├── ibm_5012_P100_1999_cnv.c │ │ ├── ibm_5039_P11A_1998_cnv.c │ │ ├── ibm_5048_P100_1995_cnv.c │ │ ├── ibm_5049_P100_1995_cnv.c │ │ ├── ibm_5067_P100_1995_cnv.c │ │ ├── ibm_5104_X110_1999_cnv.c │ │ ├── ibm_5123_P100_1999_cnv.c │ │ ├── ibm_5233_P100_2011_cnv.c │ │ ├── ibm_5346_P100_1998_cnv.c │ │ ├── ibm_5347_P100_1998_cnv.c │ │ ├── ibm_5348_P100_1997_cnv.c │ │ ├── ibm_5349_P100_1998_cnv.c │ │ ├── ibm_5350_P100_1998_cnv.c │ │ ├── ibm_5351_P100_1998_cnv.c │ │ ├── ibm_5352_P100_1998_cnv.c │ │ ├── ibm_5353_P100_1998_cnv.c │ │ ├── ibm_5354_P100_1998_cnv.c │ │ ├── ibm_5471_P100_2006_cnv.c │ │ ├── ibm_5478_P100_1995_cnv.c │ │ ├── ibm_720_P100_1997_cnv.c │ │ ├── ibm_737_P100_1997_cnv.c │ │ ├── ibm_775_P100_1996_cnv.c │ │ ├── ibm_803_P100_1999_cnv.c │ │ ├── ibm_806_P100_1998_cnv.c │ │ ├── ibm_808_P100_1999_cnv.c │ │ ├── ibm_813_P100_1995_cnv.c │ │ ├── ibm_834_P100_1995_cnv.c │ │ ├── ibm_835_P100_1995_cnv.c │ │ ├── ibm_837_P100_2011_cnv.c │ │ ├── ibm_838_P100_1995_cnv.c │ │ ├── ibm_8482_P100_1999_cnv.c │ │ ├── ibm_848_P100_1999_cnv.c │ │ ├── ibm_849_P100_1999_cnv.c │ │ ├── ibm_850_P100_1995_cnv.c │ │ ├── ibm_851_P100_1995_cnv.c │ │ ├── ibm_852_P100_1995_cnv.c │ │ ├── ibm_855_P100_1995_cnv.c │ │ ├── ibm_856_P100_1995_cnv.c │ │ ├── ibm_857_P100_1995_cnv.c │ │ ├── ibm_858_P100_1997_cnv.c │ │ ├── ibm_859_P100_1999_cnv.c │ │ ├── ibm_860_P100_1995_cnv.c │ │ ├── ibm_8612_P100_1995_cnv.c │ │ ├── ibm_861_P100_1995_cnv.c │ │ ├── ibm_862_P100_1995_cnv.c │ │ ├── ibm_863_P100_1995_cnv.c │ │ ├── ibm_864_X110_1999_cnv.c │ │ ├── ibm_864_X120_2012_cnv.c │ │ ├── ibm_865_P100_1995_cnv.c │ │ ├── ibm_866_P100_1995_cnv.c │ │ ├── ibm_867_P100_1998_cnv.c │ │ ├── ibm_868_P100_1995_cnv.c │ │ ├── ibm_869_P100_1995_cnv.c │ │ ├── ibm_870_P100_1995_cnv.c │ │ ├── ibm_871_P100_1995_cnv.c │ │ ├── ibm_872_P100_1999_cnv.c │ │ ├── ibm_874_P100_1995_cnv.c │ │ ├── ibm_875_P100_1995_cnv.c │ │ ├── ibm_878_P100_1996_cnv.c │ │ ├── ibm_880_P100_1995_cnv.c │ │ ├── ibm_896_P100_1995_cnv.c │ │ ├── ibm_897_P100_1995_cnv.c │ │ ├── ibm_9005_X110_2007_cnv.c │ │ ├── ibm_901_P100_1999_cnv.c │ │ ├── ibm_9027_P100_1999_cnv.c │ │ ├── ibm_902_P100_1999_cnv.c │ │ ├── ibm_9048_P100_1998_cnv.c │ │ ├── ibm_9056_P100_1995_cnv.c │ │ ├── ibm_905_P100_1995_cnv.c │ │ ├── ibm_9061_P100_1999_cnv.c │ │ ├── ibm_9067_X100_2005_cnv.c │ │ ├── ibm_912_P100_1995_cnv.c │ │ ├── ibm_913_P100_2000_cnv.c │ │ ├── ibm_9145_P110_1997_cnv.c │ │ ├── ibm_914_P100_1995_cnv.c │ │ ├── ibm_915_P100_1995_cnv.c │ │ ├── ibm_916_P100_1995_cnv.c │ │ ├── ibm_918_P100_1995_cnv.c │ │ ├── ibm_920_P100_1995_cnv.c │ │ ├── ibm_921_P100_1995_cnv.c │ │ ├── ibm_922_P100_1999_cnv.c │ │ ├── ibm_9238_X110_1999_cnv.c │ │ ├── ibm_923_P100_1998_cnv.c │ │ ├── ibm_924_P100_1998_cnv.c │ │ ├── ibm_926_P100_2000_cnv.c │ │ ├── ibm_927_P100_1995_cnv.c │ │ ├── ibm_928_P100_1995_cnv.c │ │ ├── ibm_930_P120_1999_cnv.c │ │ ├── ibm_933_P110_1995_cnv.c │ │ ├── ibm_935_P110_1999_cnv.c │ │ ├── ibm_937_P110_1999_cnv.c │ │ ├── ibm_939_P120_1999_cnv.c │ │ ├── ibm_941_P13A_2001_cnv.c │ │ ├── ibm_942_P12A_1999_cnv.c │ │ ├── ibm_943_P130_1999_cnv.c │ │ ├── ibm_943_P15A_2003_cnv.c │ │ ├── ibm_9447_P100_2002_cnv.c │ │ ├── ibm_9448_X100_2005_cnv.c │ │ ├── ibm_9449_P100_2002_cnv.c │ │ ├── ibm_944_P100_1995_cnv.c │ │ ├── ibm_946_P100_1995_cnv.c │ │ ├── ibm_947_P100_1995_cnv.c │ │ ├── ibm_948_P110_1999_cnv.c │ │ ├── ibm_949_P110_1999_cnv.c │ │ ├── ibm_949_P11A_1999_cnv.c │ │ ├── ibm_950_P110_1999_cnv.c │ │ ├── ibm_951_P100_1995_cnv.c │ │ ├── ibm_952_P110_1997_cnv.c │ │ ├── ibm_953_P100_2000_cnv.c │ │ ├── ibm_954_P101_2007_cnv.c │ │ ├── ibm_955_P110_1997_cnv.c │ │ ├── ibm_9577_P100_2001_cnv.c │ │ ├── ibm_964_P110_1999_cnv.c │ │ ├── ibm_970_P110_P110_2006_U2_cnv.c │ │ ├── ibm_971_P100_1995_cnv.c │ │ ├── icu_internal_25546_cnv.c │ │ ├── icu_internal_compound_d1_cnv.c │ │ ├── icu_internal_compound_d2_cnv.c │ │ ├── icu_internal_compound_d3_cnv.c │ │ ├── icu_internal_compound_d4_cnv.c │ │ ├── icu_internal_compound_d5_cnv.c │ │ ├── icu_internal_compound_d6_cnv.c │ │ ├── icu_internal_compound_d7_cnv.c │ │ ├── icu_internal_compound_s1_cnv.c │ │ ├── icu_internal_compound_s2_cnv.c │ │ ├── icu_internal_compound_s3_cnv.c │ │ ├── icu_internal_compound_t_cnv.c │ │ ├── icudt57l_dat.c │ │ ├── iso_8859_10_1998_cnv.c │ │ ├── iso_8859_11_2001_cnv.c │ │ ├── iso_8859_14_1998_cnv.c │ │ ├── iso_8859_16_2001_cnv.c │ │ ├── iso_ir_165_cnv.c │ │ ├── jisx_212_cnv.c │ │ ├── lmb_excp_cnv.c │ │ ├── macos_0_2_10.2_cnv.c │ │ ├── macos_29_10.2_cnv.c │ │ ├── macos_35_10.2_cnv.c │ │ ├── macos_6_2_10.4_cnv.c │ │ ├── macos_7_3_10.2_cnv.c │ │ ├── nfkc_cf_nrm.c │ │ ├── nfkc_nrm.c │ │ ├── uts46_nrm.c │ │ ├── windows_51932_2006_cnv.c │ │ ├── windows_874_2000_cnv.c │ │ ├── windows_936_2000_cnv.c │ │ ├── windows_949_2000_cnv.c │ │ └── windows_950_2000_cnv.c │ │ └── stubdata.c ├── lemon │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── lemon │ │ │ ├── adaptors.h │ │ │ ├── arg_parser.h │ │ │ ├── assert.h │ │ │ ├── bellman_ford.h │ │ │ ├── bfs.h │ │ │ ├── bin_heap.h │ │ │ ├── binomial_heap.h │ │ │ ├── bits │ │ │ ├── alteration_notifier.h │ │ │ ├── array_map.h │ │ │ ├── bezier.h │ │ │ ├── default_map.h │ │ │ ├── edge_set_extender.h │ │ │ ├── enable_if.h │ │ │ ├── graph_adaptor_extender.h │ │ │ ├── graph_extender.h │ │ │ ├── lock.h │ │ │ ├── map_extender.h │ │ │ ├── path_dump.h │ │ │ ├── solver_bits.h │ │ │ ├── traits.h │ │ │ ├── variant.h │ │ │ ├── vector_map.h │ │ │ └── windows.h │ │ │ ├── bucket_heap.h │ │ │ ├── capacity_scaling.h │ │ │ ├── cbc.h │ │ │ ├── christofides_tsp.h │ │ │ ├── circulation.h │ │ │ ├── clp.h │ │ │ ├── color.h │ │ │ ├── concept_check.h │ │ │ ├── concepts │ │ │ ├── bpgraph.h │ │ │ ├── digraph.h │ │ │ ├── graph.h │ │ │ ├── graph_components.h │ │ │ ├── heap.h │ │ │ ├── maps.h │ │ │ └── path.h │ │ │ ├── config.h │ │ │ ├── connectivity.h │ │ │ ├── core.h │ │ │ ├── cost_scaling.h │ │ │ ├── counter.h │ │ │ ├── cplex.h │ │ │ ├── cycle_canceling.h │ │ │ ├── dfs.h │ │ │ ├── dheap.h │ │ │ ├── dijkstra.h │ │ │ ├── dim2.h │ │ │ ├── dimacs.h │ │ │ ├── edge_set.h │ │ │ ├── edmonds_karp.h │ │ │ ├── elevator.h │ │ │ ├── error.h │ │ │ ├── euler.h │ │ │ ├── fib_heap.h │ │ │ ├── fractional_matching.h │ │ │ ├── full_graph.h │ │ │ ├── glpk.h │ │ │ ├── gomory_hu.h │ │ │ ├── graph_to_eps.h │ │ │ ├── greedy_tsp.h │ │ │ ├── grid_graph.h │ │ │ ├── grosso_locatelli_pullan_mc.h │ │ │ ├── hao_orlin.h │ │ │ ├── hartmann_orlin_mmc.h │ │ │ ├── howard_mmc.h │ │ │ ├── hypercube_graph.h │ │ │ ├── insertion_tsp.h │ │ │ ├── karp_mmc.h │ │ │ ├── kruskal.h │ │ │ ├── lgf_reader.h │ │ │ ├── lgf_writer.h │ │ │ ├── list_graph.h │ │ │ ├── lp.h │ │ │ ├── lp_base.h │ │ │ ├── lp_skeleton.h │ │ │ ├── maps.h │ │ │ ├── matching.h │ │ │ ├── math.h │ │ │ ├── max_cardinality_search.h │ │ │ ├── min_cost_arborescence.h │ │ │ ├── nagamochi_ibaraki.h │ │ │ ├── nauty_reader.h │ │ │ ├── nearest_neighbor_tsp.h │ │ │ ├── network_simplex.h │ │ │ ├── opt2_tsp.h │ │ │ ├── pairing_heap.h │ │ │ ├── path.h │ │ │ ├── planarity.h │ │ │ ├── preflow.h │ │ │ ├── quad_heap.h │ │ │ ├── radix_heap.h │ │ │ ├── radix_sort.h │ │ │ ├── random.h │ │ │ ├── smart_graph.h │ │ │ ├── soplex.h │ │ │ ├── static_graph.h │ │ │ ├── suurballe.h │ │ │ ├── time_measure.h │ │ │ ├── tolerance.h │ │ │ └── unionfind.h │ └── src │ │ ├── arg_parser.cc │ │ ├── base.cc │ │ ├── bits │ │ └── windows.cc │ │ ├── color.cc │ │ ├── lp_base.cc │ │ ├── lp_skeleton.cc │ │ └── random.cc ├── lfds │ ├── CMakeLists.txt │ ├── inc │ │ ├── liblfds711.h │ │ └── liblfds711 │ │ │ ├── lfds711_btree_addonly_unbalanced.h │ │ │ ├── lfds711_freelist.h │ │ │ ├── lfds711_hash_addonly.h │ │ │ ├── lfds711_list_addonly_singlylinked_ordered.h │ │ │ ├── lfds711_list_addonly_singlylinked_unordered.h │ │ │ ├── lfds711_misc.h │ │ │ ├── lfds711_porting_abstraction_layer_compiler.h │ │ │ ├── lfds711_porting_abstraction_layer_operating_system.h │ │ │ ├── lfds711_porting_abstraction_layer_processor.h │ │ │ ├── lfds711_prng.h │ │ │ ├── lfds711_queue_bounded_manyproducer_manyconsumer.h │ │ │ ├── lfds711_queue_bounded_singleproducer_singleconsumer.h │ │ │ ├── lfds711_queue_unbounded_manyproducer_manyconsumer.h │ │ │ ├── lfds711_ringbuffer.h │ │ │ └── lfds711_stack.h │ └── src │ │ ├── lfds711_btree_addonly_unbalanced │ │ ├── lfds711_btree_addonly_unbalanced_cleanup.c │ │ ├── lfds711_btree_addonly_unbalanced_get.c │ │ ├── lfds711_btree_addonly_unbalanced_init.c │ │ ├── lfds711_btree_addonly_unbalanced_insert.c │ │ ├── lfds711_btree_addonly_unbalanced_internal.h │ │ └── lfds711_btree_addonly_unbalanced_query.c │ │ ├── lfds711_freelist │ │ ├── lfds711_freelist_cleanup.c │ │ ├── lfds711_freelist_init.c │ │ ├── lfds711_freelist_internal.h │ │ ├── lfds711_freelist_pop.c │ │ ├── lfds711_freelist_push.c │ │ └── lfds711_freelist_query.c │ │ ├── lfds711_hash_addonly │ │ ├── lfds711_hash_addonly_cleanup.c │ │ ├── lfds711_hash_addonly_get.c │ │ ├── lfds711_hash_addonly_init.c │ │ ├── lfds711_hash_addonly_insert.c │ │ ├── lfds711_hash_addonly_internal.h │ │ ├── lfds711_hash_addonly_iterate.c │ │ └── lfds711_hash_addonly_query.c │ │ ├── lfds711_list_addonly_singlylinked_ordered │ │ ├── lfds711_list_addonly_singlylinked_ordered_cleanup.c │ │ ├── lfds711_list_addonly_singlylinked_ordered_get.c │ │ ├── lfds711_list_addonly_singlylinked_ordered_init.c │ │ ├── lfds711_list_addonly_singlylinked_ordered_insert.c │ │ ├── lfds711_list_addonly_singlylinked_ordered_internal.h │ │ └── lfds711_list_addonly_singlylinked_ordered_query.c │ │ ├── lfds711_list_addonly_singlylinked_unordered │ │ ├── lfds711_list_addonly_singlylinked_unordered_cleanup.c │ │ ├── lfds711_list_addonly_singlylinked_unordered_get.c │ │ ├── lfds711_list_addonly_singlylinked_unordered_init.c │ │ ├── lfds711_list_addonly_singlylinked_unordered_insert.c │ │ ├── lfds711_list_addonly_singlylinked_unordered_internal.h │ │ └── lfds711_list_addonly_singlylinked_unordered_query.c │ │ ├── lfds711_misc │ │ ├── lfds711_misc_globals.c │ │ ├── lfds711_misc_internal.h │ │ ├── lfds711_misc_internal_backoff_init.c │ │ └── lfds711_misc_query.c │ │ ├── lfds711_prng │ │ ├── lfds711_prng_init.c │ │ └── lfds711_prng_internal.h │ │ ├── lfds711_queue_bounded_manyproducer_manyconsumer │ │ ├── lfds711_queue_bounded_manyproducer_manyconsumer_cleanup.c │ │ ├── lfds711_queue_bounded_manyproducer_manyconsumer_dequeue.c │ │ ├── lfds711_queue_bounded_manyproducer_manyconsumer_enqueue.c │ │ ├── lfds711_queue_bounded_manyproducer_manyconsumer_init.c │ │ ├── lfds711_queue_bounded_manyproducer_manyconsumer_internal.h │ │ └── lfds711_queue_bounded_manyproducer_manyconsumer_query.c │ │ ├── lfds711_queue_bounded_singleproducer_singleconsumer │ │ ├── lfds711_queue_bounded_singleproducer_singleconsumer_cleanup.c │ │ ├── lfds711_queue_bounded_singleproducer_singleconsumer_dequeue.c │ │ ├── lfds711_queue_bounded_singleproducer_singleconsumer_enqueue.c │ │ ├── lfds711_queue_bounded_singleproducer_singleconsumer_init.c │ │ ├── lfds711_queue_bounded_singleproducer_singleconsumer_internal.h │ │ └── lfds711_queue_bounded_singleproducer_singleconsumer_query.c │ │ ├── lfds711_queue_unbounded_manyproducer_manyconsumer │ │ ├── lfds711_queue_unbounded_manyproducer_manyconsumer_cleanup.c │ │ ├── lfds711_queue_unbounded_manyproducer_manyconsumer_dequeue.c │ │ ├── lfds711_queue_unbounded_manyproducer_manyconsumer_enqueue.c │ │ ├── lfds711_queue_unbounded_manyproducer_manyconsumer_init.c │ │ ├── lfds711_queue_unbounded_manyproducer_manyconsumer_internal.h │ │ └── lfds711_queue_unbounded_manyproducer_manyconsumer_query.c │ │ ├── lfds711_ringbuffer │ │ ├── lfds711_ringbuffer_cleanup.c │ │ ├── lfds711_ringbuffer_init.c │ │ ├── lfds711_ringbuffer_internal.h │ │ ├── lfds711_ringbuffer_query.c │ │ ├── lfds711_ringbuffer_read.c │ │ └── lfds711_ringbuffer_write.c │ │ ├── lfds711_stack │ │ ├── lfds711_stack_cleanup.c │ │ ├── lfds711_stack_init.c │ │ ├── lfds711_stack_internal.h │ │ ├── lfds711_stack_pop.c │ │ ├── lfds711_stack_push.c │ │ └── lfds711_stack_query.c │ │ └── liblfds711_internal.h ├── lmdb │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── lmdb.h │ ├── lmdb_export.h │ ├── mdb.c │ ├── midl.c │ └── midl.h ├── luajit │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── README.md │ ├── cmake │ │ ├── FindLua.cmake │ │ ├── FindReadline.cmake │ │ ├── dist.cmake │ │ └── lua.cmake │ ├── dist.info │ ├── doc │ │ ├── bluequad-print.css │ │ ├── bluequad.css │ │ ├── changes.html │ │ ├── contact.html │ │ ├── ext_c_api.html │ │ ├── ext_ffi.html │ │ ├── ext_ffi_api.html │ │ ├── ext_ffi_semantics.html │ │ ├── ext_ffi_tutorial.html │ │ ├── ext_jit.html │ │ ├── extensions.html │ │ ├── faq.html │ │ ├── img │ │ │ └── contact.png │ │ ├── install.html │ │ ├── luajit.html │ │ ├── running.html │ │ └── status.html │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ ├── luajit.ico │ │ └── luajit.pc │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── host │ │ ├── .gitignore │ │ ├── README │ │ ├── buildvm.c │ │ ├── buildvm.h │ │ ├── buildvm_asm.c │ │ ├── buildvm_fold.c │ │ ├── buildvm_lib.c │ │ ├── buildvm_peobj.c │ │ ├── genminilua.lua │ │ └── minilua.c │ │ ├── jit │ │ ├── .gitignore │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_mips.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ └── v.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_package_rel.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.def │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h.in │ │ ├── luaconf.h.orig │ │ ├── luajit.c │ │ ├── luajit.h │ │ ├── luajit.rc │ │ ├── lualib.h │ │ ├── msvcbuild.bat │ │ ├── ps4build.bat │ │ ├── psvitabuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_ppcspe.dasc │ │ ├── vm_x86.dasc │ │ ├── wmain.c │ │ └── xedkbuild.bat ├── lzma │ ├── CMakeLists.txt │ ├── COPYING │ ├── common │ │ ├── common_w32res.rc │ │ ├── sysdefs.h │ │ └── tuklib_integer.h │ ├── config.h.in │ └── liblzma │ │ ├── api │ │ ├── lzma.h │ │ └── lzma │ │ │ ├── base.h │ │ │ ├── bcj.h │ │ │ ├── block.h │ │ │ ├── check.h │ │ │ ├── container.h │ │ │ ├── delta.h │ │ │ ├── filter.h │ │ │ ├── hardware.h │ │ │ ├── index.h │ │ │ ├── index_hash.h │ │ │ ├── lzma12.h │ │ │ ├── stream_flags.h │ │ │ ├── version.h │ │ │ └── vli.h │ │ ├── check │ │ ├── check.c │ │ ├── check.h │ │ ├── crc32_fast.c │ │ ├── crc32_small.c │ │ ├── crc32_table.c │ │ ├── crc32_table_be.h │ │ ├── crc32_table_le.h │ │ ├── crc32_tablegen.c │ │ ├── crc32_x86.S │ │ ├── crc64_fast.c │ │ ├── crc64_small.c │ │ ├── crc64_table.c │ │ ├── crc64_table_be.h │ │ ├── crc64_table_le.h │ │ ├── crc64_tablegen.c │ │ ├── crc64_x86.S │ │ ├── crc_macros.h │ │ └── sha256.c │ │ ├── common │ │ ├── alone_decoder.c │ │ ├── alone_decoder.h │ │ ├── alone_encoder.c │ │ ├── auto_decoder.c │ │ ├── block_buffer_decoder.c │ │ ├── block_buffer_encoder.c │ │ ├── block_buffer_encoder.h │ │ ├── block_decoder.c │ │ ├── block_decoder.h │ │ ├── block_encoder.c │ │ ├── block_encoder.h │ │ ├── block_header_decoder.c │ │ ├── block_header_encoder.c │ │ ├── block_util.c │ │ ├── common.c │ │ ├── common.h │ │ ├── easy_buffer_encoder.c │ │ ├── easy_decoder_memusage.c │ │ ├── easy_encoder.c │ │ ├── easy_encoder_memusage.c │ │ ├── easy_preset.c │ │ ├── easy_preset.h │ │ ├── filter_buffer_decoder.c │ │ ├── filter_buffer_encoder.c │ │ ├── filter_common.c │ │ ├── filter_common.h │ │ ├── filter_decoder.c │ │ ├── filter_decoder.h │ │ ├── filter_encoder.c │ │ ├── filter_encoder.h │ │ ├── filter_flags_decoder.c │ │ ├── filter_flags_encoder.c │ │ ├── hardware_cputhreads.c │ │ ├── hardware_physmem.c │ │ ├── index.c │ │ ├── index.h │ │ ├── index_decoder.c │ │ ├── index_encoder.c │ │ ├── index_encoder.h │ │ ├── index_hash.c │ │ ├── memcmplen.h │ │ ├── outqueue.c │ │ ├── outqueue.h │ │ ├── stream_buffer_decoder.c │ │ ├── stream_buffer_encoder.c │ │ ├── stream_decoder.c │ │ ├── stream_decoder.h │ │ ├── stream_encoder.c │ │ ├── stream_encoder_mt.c │ │ ├── stream_flags_common.c │ │ ├── stream_flags_common.h │ │ ├── stream_flags_decoder.c │ │ ├── stream_flags_encoder.c │ │ ├── vli_decoder.c │ │ ├── vli_encoder.c │ │ └── vli_size.c │ │ ├── delta │ │ ├── delta_common.c │ │ ├── delta_common.h │ │ ├── delta_decoder.c │ │ ├── delta_decoder.h │ │ ├── delta_encoder.c │ │ ├── delta_encoder.h │ │ └── delta_private.h │ │ ├── liblzma.pc.in │ │ ├── liblzma_w32res.rc │ │ ├── lz │ │ ├── lz_decoder.c │ │ ├── lz_decoder.h │ │ ├── lz_encoder.c │ │ ├── lz_encoder.h │ │ ├── lz_encoder_hash.h │ │ ├── lz_encoder_hash_table.h │ │ └── lz_encoder_mf.c │ │ ├── lzma │ │ ├── fastpos.h │ │ ├── fastpos_table.c │ │ ├── fastpos_tablegen.c │ │ ├── lzma2_decoder.c │ │ ├── lzma2_decoder.h │ │ ├── lzma2_encoder.c │ │ ├── lzma2_encoder.h │ │ ├── lzma_common.h │ │ ├── lzma_decoder.c │ │ ├── lzma_decoder.h │ │ ├── lzma_encoder.c │ │ ├── lzma_encoder.h │ │ ├── lzma_encoder_optimum_fast.c │ │ ├── lzma_encoder_optimum_normal.c │ │ ├── lzma_encoder_presets.c │ │ └── lzma_encoder_private.h │ │ ├── rangecoder │ │ ├── price.h │ │ ├── price_table.c │ │ ├── price_tablegen.c │ │ ├── range_common.h │ │ ├── range_decoder.h │ │ └── range_encoder.h │ │ └── simple │ │ ├── arm.c │ │ ├── armthumb.c │ │ ├── ia64.c │ │ ├── powerpc.c │ │ ├── simple_coder.c │ │ ├── simple_coder.h │ │ ├── simple_decoder.c │ │ ├── simple_decoder.h │ │ ├── simple_encoder.c │ │ ├── simple_encoder.h │ │ ├── simple_private.h │ │ ├── sparc.c │ │ └── x86.c ├── minizip │ ├── CMakeLists.txt │ ├── README.md │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── nng │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.adoc │ ├── RELEASE_NOTES.adoc │ ├── cmake │ │ ├── CheckSanitizer.cmake │ │ ├── FindmbedTLS.cmake │ │ └── nng-config.cmake.in │ ├── include │ │ └── nng │ │ │ ├── compat │ │ │ └── nanomsg │ │ │ │ ├── bus.h │ │ │ │ ├── inproc.h │ │ │ │ ├── ipc.h │ │ │ │ ├── nn.h │ │ │ │ ├── pair.h │ │ │ │ ├── pipeline.h │ │ │ │ ├── pubsub.h │ │ │ │ ├── reqrep.h │ │ │ │ ├── survey.h │ │ │ │ ├── tcp.h │ │ │ │ └── ws.h │ │ │ ├── nng.h │ │ │ ├── protocol │ │ │ ├── bus0 │ │ │ │ └── bus.h │ │ │ ├── pair0 │ │ │ │ └── pair.h │ │ │ ├── pair1 │ │ │ │ └── pair.h │ │ │ ├── pipeline0 │ │ │ │ ├── pull.h │ │ │ │ └── push.h │ │ │ ├── pubsub0 │ │ │ │ ├── pub.h │ │ │ │ └── sub.h │ │ │ ├── reqrep0 │ │ │ │ ├── rep.h │ │ │ │ └── req.h │ │ │ └── survey0 │ │ │ │ ├── respond.h │ │ │ │ └── survey.h │ │ │ ├── supplemental │ │ │ ├── http │ │ │ │ └── http.h │ │ │ ├── tls │ │ │ │ ├── engine.h │ │ │ │ └── tls.h │ │ │ └── util │ │ │ │ ├── options.h │ │ │ │ └── platform.h │ │ │ └── transport │ │ │ ├── inproc │ │ │ └── inproc.h │ │ │ ├── ipc │ │ │ └── ipc.h │ │ │ ├── tcp │ │ │ └── tcp.h │ │ │ ├── tls │ │ │ └── tls.h │ │ │ ├── ws │ │ │ └── websocket.h │ │ │ └── zerotier │ │ │ └── zerotier.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── compat │ │ └── nanomsg │ │ │ ├── CMakeLists.txt │ │ │ ├── compat_tcp_test.c │ │ │ ├── compat_testutil.h │ │ │ └── nn.c │ │ ├── core │ │ ├── aio.c │ │ ├── aio.h │ │ ├── clock.c │ │ ├── clock.h │ │ ├── defs.h │ │ ├── device.c │ │ ├── device.h │ │ ├── dialer.c │ │ ├── dialer.h │ │ ├── file.c │ │ ├── file.h │ │ ├── idhash.c │ │ ├── idhash.h │ │ ├── init.c │ │ ├── init.h │ │ ├── list.c │ │ ├── list.h │ │ ├── listener.c │ │ ├── listener.h │ │ ├── lmq.c │ │ ├── lmq.h │ │ ├── message.c │ │ ├── message.h │ │ ├── msgqueue.c │ │ ├── msgqueue.h │ │ ├── nng_impl.h │ │ ├── options.c │ │ ├── options.h │ │ ├── panic.c │ │ ├── panic.h │ │ ├── pipe.c │ │ ├── pipe.h │ │ ├── platform.h │ │ ├── pollable.c │ │ ├── pollable.h │ │ ├── protocol.c │ │ ├── protocol.h │ │ ├── reap.c │ │ ├── reap.h │ │ ├── socket.c │ │ ├── socket.h │ │ ├── sockimpl.h │ │ ├── stats.c │ │ ├── stats.h │ │ ├── stream.c │ │ ├── stream.h │ │ ├── strs.c │ │ ├── strs.h │ │ ├── taskq.c │ │ ├── taskq.h │ │ ├── tcp.h │ │ ├── thread.c │ │ ├── thread.h │ │ ├── timer.c │ │ ├── timer.h │ │ ├── transport.c │ │ ├── transport.h │ │ ├── url.c │ │ └── url.h │ │ ├── nng.c │ │ ├── platform │ │ ├── posix │ │ │ ├── posix_aio.h │ │ │ ├── posix_alloc.c │ │ │ ├── posix_atomic.c │ │ │ ├── posix_clock.c │ │ │ ├── posix_config.h │ │ │ ├── posix_debug.c │ │ │ ├── posix_file.c │ │ │ ├── posix_impl.h │ │ │ ├── posix_ipc.h │ │ │ ├── posix_ipcconn.c │ │ │ ├── posix_ipcdial.c │ │ │ ├── posix_ipclisten.c │ │ │ ├── posix_pipe.c │ │ │ ├── posix_pollq.h │ │ │ ├── posix_pollq_epoll.c │ │ │ ├── posix_pollq_kqueue.c │ │ │ ├── posix_pollq_poll.c │ │ │ ├── posix_pollq_port.c │ │ │ ├── posix_rand_arc4random.c │ │ │ ├── posix_rand_getrandom.c │ │ │ ├── posix_rand_urandom.c │ │ │ ├── posix_resolv_gai.c │ │ │ ├── posix_sockaddr.c │ │ │ ├── posix_tcp.h │ │ │ ├── posix_tcpconn.c │ │ │ ├── posix_tcpdial.c │ │ │ ├── posix_tcplisten.c │ │ │ ├── posix_thread.c │ │ │ └── posix_udp.c │ │ └── windows │ │ │ ├── win_clock.c │ │ │ ├── win_debug.c │ │ │ ├── win_file.c │ │ │ ├── win_impl.h │ │ │ ├── win_io.c │ │ │ ├── win_ipc.h │ │ │ ├── win_ipcconn.c │ │ │ ├── win_ipcdial.c │ │ │ ├── win_ipclisten.c │ │ │ ├── win_pipe.c │ │ │ ├── win_rand.c │ │ │ ├── win_resolv.c │ │ │ ├── win_sockaddr.c │ │ │ ├── win_tcp.c │ │ │ ├── win_tcp.h │ │ │ ├── win_tcpconn.c │ │ │ ├── win_tcpdial.c │ │ │ ├── win_tcplisten.c │ │ │ ├── win_thread.c │ │ │ └── win_udp.c │ │ ├── protocol │ │ ├── bus0 │ │ │ ├── CMakeLists.txt │ │ │ └── bus.c │ │ ├── pair0 │ │ │ ├── CMakeLists.txt │ │ │ └── pair.c │ │ ├── pair1 │ │ │ ├── CMakeLists.txt │ │ │ ├── pair.c │ │ │ ├── pair1_poly.c │ │ │ ├── pair1_poly_test.c │ │ │ └── pair1_test.c │ │ ├── pipeline0 │ │ │ ├── CMakeLists.txt │ │ │ ├── pull.c │ │ │ └── push.c │ │ ├── pubsub0 │ │ │ ├── CMakeLists.txt │ │ │ ├── pub.c │ │ │ ├── pub_test.c │ │ │ ├── sub.c │ │ │ ├── sub_test.c │ │ │ ├── xsub.c │ │ │ └── xsub_test.c │ │ ├── reqrep0 │ │ │ ├── CMakeLists.txt │ │ │ ├── rep.c │ │ │ ├── rep_test.c │ │ │ ├── req.c │ │ │ ├── req_test.c │ │ │ ├── xrep.c │ │ │ ├── xrep_test.c │ │ │ ├── xreq.c │ │ │ └── xreq_test.c │ │ └── survey0 │ │ │ ├── CMakeLists.txt │ │ │ ├── respond.c │ │ │ ├── respond_test.c │ │ │ ├── survey.c │ │ │ ├── survey_test.c │ │ │ ├── xrespond.c │ │ │ ├── xrespond_test.c │ │ │ ├── xsurvey.c │ │ │ └── xsurvey_test.c │ │ ├── supplemental │ │ ├── README.adoc │ │ ├── base64 │ │ │ ├── CMakeLists.txt │ │ │ ├── base64.c │ │ │ ├── base64.h │ │ │ └── base64_test.c │ │ ├── http │ │ │ ├── CMakeLists.txt │ │ │ ├── http_api.h │ │ │ ├── http_chunk.c │ │ │ ├── http_client.c │ │ │ ├── http_conn.c │ │ │ ├── http_msg.c │ │ │ ├── http_public.c │ │ │ └── http_server.c │ │ ├── sha1 │ │ │ ├── CMakeLists.txt │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ └── sha1_test.c │ │ ├── tcp │ │ │ ├── CMakeLists.txt │ │ │ └── tcp.c │ │ ├── tls │ │ │ ├── CMakeLists.txt │ │ │ ├── mbedtls │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── tls.c │ │ │ ├── tls_api.h │ │ │ ├── tls_common.c │ │ │ ├── tls_test.c │ │ │ └── wolfssl │ │ │ │ └── CMakeLists.txt │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── options.c │ │ │ └── platform.c │ │ └── websocket │ │ │ ├── CMakeLists.txt │ │ │ ├── stub.c │ │ │ ├── websocket.c │ │ │ ├── websocket.h │ │ │ ├── websocket_test.c │ │ │ └── wssfile_test.c │ │ └── transport │ │ ├── inproc │ │ ├── CMakeLists.txt │ │ └── inproc.c │ │ ├── ipc │ │ ├── CMakeLists.txt │ │ └── ipc.c │ │ ├── tcp │ │ ├── CMakeLists.txt │ │ └── tcp.c │ │ ├── tls │ │ ├── CMakeLists.txt │ │ └── tls.c │ │ ├── ws │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ └── websocket.c │ │ └── zerotier │ │ ├── CMakeLists.txt │ │ └── zerotier.c ├── ressl │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── OPENBSD_BRANCH │ ├── README.md │ ├── README.windows │ ├── VERSION │ ├── cmake_export_symbol.cmake │ ├── cmake_uninstall.cmake.in │ ├── crypto │ │ ├── CMakeLists.txt │ │ ├── VERSION │ │ ├── aes │ │ │ ├── aes-elf-armv4.S │ │ │ ├── aes-elf-x86_64.S │ │ │ ├── aes-macosx-x86_64.S │ │ │ ├── aes-masm-x86_64.S │ │ │ ├── aes-mingw64-x86_64.S │ │ │ ├── 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 │ │ │ ├── aesni-elf-x86_64.S │ │ │ ├── aesni-macosx-x86_64.S │ │ │ ├── aesni-masm-x86_64.S │ │ │ ├── aesni-mingw64-x86_64.S │ │ │ ├── aesni-sha1-elf-x86_64.S │ │ │ ├── aesni-sha1-macosx-x86_64.S │ │ │ ├── aesni-sha1-masm-x86_64.S │ │ │ ├── aesni-sha1-mingw64-x86_64.S │ │ │ ├── bsaes-elf-x86_64.S │ │ │ ├── bsaes-macosx-x86_64.S │ │ │ ├── bsaes-masm-x86_64.S │ │ │ ├── bsaes-mingw64-x86_64.S │ │ │ ├── vpaes-elf-x86_64.S │ │ │ ├── vpaes-macosx-x86_64.S │ │ │ ├── vpaes-masm-x86_64.S │ │ │ └── vpaes-mingw64-x86_64.S │ │ ├── arm_arch.h │ │ ├── armcap.c │ │ ├── armv4cpuid.S │ │ ├── asn1 │ │ │ ├── a_bitstr.c │ │ │ ├── a_bool.c │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_digest.c │ │ │ ├── a_dup.c │ │ │ ├── a_enum.c │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_int.c │ │ │ ├── a_mbstr.c │ │ │ ├── a_object.c │ │ │ ├── a_octet.c │ │ │ ├── a_print.c │ │ │ ├── a_sign.c │ │ │ ├── a_strex.c │ │ │ ├── a_strnid.c │ │ │ ├── a_time.c │ │ │ ├── a_time_tm.c │ │ │ ├── a_type.c │ │ │ ├── a_utf8.c │ │ │ ├── a_verify.c │ │ │ ├── ameth_lib.c │ │ │ ├── asn1_err.c │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_par.c │ │ │ ├── asn_mime.c │ │ │ ├── asn_moid.c │ │ │ ├── asn_pack.c │ │ │ ├── bio_asn1.c │ │ │ ├── bio_ndef.c │ │ │ ├── charmap.h │ │ │ ├── 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_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_nx509.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 │ │ │ ├── bf_cfb64.c │ │ │ ├── bf_ecb.c │ │ │ ├── bf_enc.c │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.c │ │ │ ├── bf_pi.h │ │ │ └── bf_skey.c │ │ ├── bio │ │ │ ├── b_dump.c │ │ │ ├── b_posix.c │ │ │ ├── b_print.c │ │ │ ├── b_sock.c │ │ │ ├── b_win.c │ │ │ ├── bf_buff.c │ │ │ ├── bf_nbio.c │ │ │ ├── bf_null.c │ │ │ ├── bio_cb.c │ │ │ ├── bio_err.c │ │ │ ├── bio_lib.c │ │ │ ├── bio_meth.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_sock.c │ │ ├── bn │ │ │ ├── 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_prime.c │ │ │ ├── bn_prime.h │ │ │ ├── bn_print.c │ │ │ ├── bn_rand.c │ │ │ ├── bn_recp.c │ │ │ ├── bn_shift.c │ │ │ ├── bn_sqr.c │ │ │ ├── bn_sqrt.c │ │ │ ├── bn_word.c │ │ │ ├── bn_x931p.c │ │ │ ├── gf2m-elf-armv4.S │ │ │ ├── gf2m-elf-x86_64.S │ │ │ ├── gf2m-macosx-x86_64.S │ │ │ ├── gf2m-masm-x86_64.S │ │ │ ├── gf2m-mingw64-x86_64.S │ │ │ ├── modexp512-elf-x86_64.S │ │ │ ├── modexp512-macosx-x86_64.S │ │ │ ├── modexp512-masm-x86_64.S │ │ │ ├── modexp512-mingw64-x86_64.S │ │ │ ├── mont-elf-armv4.S │ │ │ ├── mont-elf-x86_64.S │ │ │ ├── mont-macosx-x86_64.S │ │ │ ├── mont-masm-x86_64.S │ │ │ ├── mont-mingw64-x86_64.S │ │ │ ├── mont5-elf-x86_64.S │ │ │ ├── mont5-macosx-x86_64.S │ │ │ ├── mont5-masm-x86_64.S │ │ │ └── mont5-mingw64-x86_64.S │ │ ├── buffer │ │ │ ├── buf_err.c │ │ │ ├── buf_str.c │ │ │ └── buffer.c │ │ ├── camellia │ │ │ ├── camellia.c │ │ │ ├── camellia.h │ │ │ ├── cmll-elf-x86_64.S │ │ │ ├── cmll-macosx-x86_64.S │ │ │ ├── cmll-masm-x86_64.S │ │ │ ├── cmll-mingw64-x86_64.S │ │ │ ├── cmll_cbc.c │ │ │ ├── cmll_cfb.c │ │ │ ├── cmll_ctr.c │ │ │ ├── cmll_ecb.c │ │ │ ├── cmll_locl.h │ │ │ ├── cmll_misc.c │ │ │ └── cmll_ofb.c │ │ ├── cast │ │ │ ├── c_cfb64.c │ │ │ ├── c_ecb.c │ │ │ ├── c_enc.c │ │ │ ├── c_ofb64.c │ │ │ ├── c_skey.c │ │ │ ├── cast_lcl.h │ │ │ └── cast_s.h │ │ ├── chacha │ │ │ ├── chacha-merged.c │ │ │ └── chacha.c │ │ ├── cmac │ │ │ ├── cm_ameth.c │ │ │ ├── cm_pmeth.c │ │ │ └── cmac.c │ │ ├── comp │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── compat │ │ │ ├── arc4random.c │ │ │ ├── arc4random.h │ │ │ ├── arc4random_aix.h │ │ │ ├── arc4random_freebsd.h │ │ │ ├── arc4random_hpux.h │ │ │ ├── arc4random_linux.h │ │ │ ├── arc4random_netbsd.h │ │ │ ├── arc4random_osx.h │ │ │ ├── arc4random_solaris.h │ │ │ ├── arc4random_uniform.c │ │ │ ├── arc4random_win.h │ │ │ ├── b_win.c │ │ │ ├── bsd-asprintf.c │ │ │ ├── chacha_private.h │ │ │ ├── crypto_lock_win.c │ │ │ ├── explicit_bzero.c │ │ │ ├── explicit_bzero_win.c │ │ │ ├── freezero.c │ │ │ ├── getentropy_aix.c │ │ │ ├── getentropy_freebsd.c │ │ │ ├── getentropy_hpux.c │ │ │ ├── getentropy_linux.c │ │ │ ├── getentropy_netbsd.c │ │ │ ├── getentropy_osx.c │ │ │ ├── getentropy_solaris.c │ │ │ ├── getentropy_win.c │ │ │ ├── getpagesize.c │ │ │ ├── getprogname_linux.c │ │ │ ├── getprogname_unimpl.c │ │ │ ├── getprogname_windows.c │ │ │ ├── posix_win.c │ │ │ ├── reallocarray.c │ │ │ ├── recallocarray.c │ │ │ ├── strcasecmp.c │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strndup.c │ │ │ ├── strnlen.c │ │ │ ├── strsep.c │ │ │ ├── syslog_r.c │ │ │ ├── timegm.c │ │ │ ├── timingsafe_bcmp.c │ │ │ ├── timingsafe_memcmp.c │ │ │ └── ui_openssl_win.c │ │ ├── conf │ │ │ ├── conf_api.c │ │ │ ├── conf_def.c │ │ │ ├── conf_def.h │ │ │ ├── conf_err.c │ │ │ ├── conf_lib.c │ │ │ ├── conf_mall.c │ │ │ ├── conf_mod.c │ │ │ └── conf_sap.c │ │ ├── constant_time_locl.h │ │ ├── cpt_err.c │ │ ├── cpuid-elf-x86_64.S │ │ ├── cpuid-macosx-x86_64.S │ │ ├── cpuid-masm-x86_64.S │ │ ├── cpuid-mingw64-x86_64.S │ │ ├── cryptlib.c │ │ ├── cryptlib.h │ │ ├── crypto.sym │ │ ├── crypto_init.c │ │ ├── crypto_lock.c │ │ ├── curve25519 │ │ │ ├── curve25519-generic.c │ │ │ ├── curve25519.c │ │ │ └── curve25519_internal.h │ │ ├── cversion.c │ │ ├── des │ │ │ ├── cbc_cksm.c │ │ │ ├── cbc_enc.c │ │ │ ├── cfb64ede.c │ │ │ ├── cfb64enc.c │ │ │ ├── cfb_enc.c │ │ │ ├── des_enc.c │ │ │ ├── des_locl.h │ │ │ ├── ecb3_enc.c │ │ │ ├── ecb_enc.c │ │ │ ├── ede_cbcm_enc.c │ │ │ ├── enc_read.c │ │ │ ├── enc_writ.c │ │ │ ├── fcrypt.c │ │ │ ├── fcrypt_b.c │ │ │ ├── ncbc_enc.c │ │ │ ├── ofb64ede.c │ │ │ ├── ofb64enc.c │ │ │ ├── ofb_enc.c │ │ │ ├── pcbc_enc.c │ │ │ ├── qud_cksm.c │ │ │ ├── rand_key.c │ │ │ ├── set_key.c │ │ │ ├── spr.h │ │ │ ├── str2key.c │ │ │ └── xcbc_enc.c │ │ ├── dh │ │ │ ├── dh_ameth.c │ │ │ ├── dh_asn1.c │ │ │ ├── dh_check.c │ │ │ ├── dh_depr.c │ │ │ ├── dh_err.c │ │ │ ├── dh_gen.c │ │ │ ├── dh_key.c │ │ │ ├── dh_lib.c │ │ │ ├── dh_pmeth.c │ │ │ └── dh_prn.c │ │ ├── dsa │ │ │ ├── dsa_ameth.c │ │ │ ├── dsa_asn1.c │ │ │ ├── dsa_depr.c │ │ │ ├── dsa_err.c │ │ │ ├── dsa_gen.c │ │ │ ├── dsa_key.c │ │ │ ├── dsa_lib.c │ │ │ ├── dsa_locl.h │ │ │ ├── dsa_meth.c │ │ │ ├── dsa_ossl.c │ │ │ ├── dsa_pmeth.c │ │ │ ├── dsa_prn.c │ │ │ ├── dsa_sign.c │ │ │ └── dsa_vrf.c │ │ ├── dso │ │ │ ├── dso_dlfcn.c │ │ │ ├── dso_err.c │ │ │ ├── dso_lib.c │ │ │ ├── dso_null.c │ │ │ └── dso_openssl.c │ │ ├── ec │ │ │ ├── ec2_mult.c │ │ │ ├── ec2_oct.c │ │ │ ├── ec2_smpl.c │ │ │ ├── ec_ameth.c │ │ │ ├── ec_asn1.c │ │ │ ├── ec_check.c │ │ │ ├── ec_curve.c │ │ │ ├── ec_cvt.c │ │ │ ├── ec_err.c │ │ │ ├── ec_key.c │ │ │ ├── ec_kmeth.c │ │ │ ├── ec_lcl.h │ │ │ ├── ec_lib.c │ │ │ ├── ec_mult.c │ │ │ ├── ec_oct.c │ │ │ ├── ec_pmeth.c │ │ │ ├── ec_print.c │ │ │ ├── eck_prn.c │ │ │ ├── ecp_mont.c │ │ │ ├── ecp_nist.c │ │ │ ├── ecp_oct.c │ │ │ └── ecp_smpl.c │ │ ├── ecdh │ │ │ ├── ech_err.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ └── ech_locl.h │ │ ├── ecdsa │ │ │ ├── ecs_asn1.c │ │ │ ├── ecs_err.c │ │ │ ├── ecs_lib.c │ │ │ ├── ecs_locl.h │ │ │ ├── ecs_ossl.c │ │ │ ├── ecs_sign.c │ │ │ └── ecs_vrf.c │ │ ├── engine │ │ │ ├── eng_all.c │ │ │ ├── eng_cnf.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_pkey.c │ │ │ ├── eng_table.c │ │ │ ├── tb_asnmth.c │ │ │ ├── tb_cipher.c │ │ │ ├── tb_dh.c │ │ │ ├── tb_digest.c │ │ │ ├── tb_dsa.c │ │ │ ├── tb_ecdh.c │ │ │ ├── tb_ecdsa.c │ │ │ ├── tb_eckey.c │ │ │ ├── tb_pkmeth.c │ │ │ ├── tb_rand.c │ │ │ ├── tb_rsa.c │ │ │ └── tb_store.c │ │ ├── err │ │ │ ├── err.c │ │ │ ├── err_all.c │ │ │ └── err_prn.c │ │ ├── evp │ │ │ ├── bio_b64.c │ │ │ ├── bio_enc.c │ │ │ ├── bio_md.c │ │ │ ├── c_all.c │ │ │ ├── digest.c │ │ │ ├── e_aes.c │ │ │ ├── e_aes_cbc_hmac_sha1.c │ │ │ ├── e_bf.c │ │ │ ├── e_camellia.c │ │ │ ├── e_cast.c │ │ │ ├── e_chacha.c │ │ │ ├── e_chacha20poly1305.c │ │ │ ├── e_des.c │ │ │ ├── e_des3.c │ │ │ ├── e_gost2814789.c │ │ │ ├── e_idea.c │ │ │ ├── e_null.c │ │ │ ├── e_old.c │ │ │ ├── e_rc2.c │ │ │ ├── e_rc4.c │ │ │ ├── e_rc4_hmac_md5.c │ │ │ ├── e_sm4.c │ │ │ ├── e_xcbc_d.c │ │ │ ├── encode.c │ │ │ ├── evp_aead.c │ │ │ ├── evp_enc.c │ │ │ ├── evp_err.c │ │ │ ├── evp_key.c │ │ │ ├── evp_lib.c │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.c │ │ │ ├── evp_pkey.c │ │ │ ├── m_dss.c │ │ │ ├── m_dss1.c │ │ │ ├── m_ecdsa.c │ │ │ ├── m_gost2814789.c │ │ │ ├── m_gostr341194.c │ │ │ ├── m_md4.c │ │ │ ├── m_md5.c │ │ │ ├── m_md5_sha1.c │ │ │ ├── m_null.c │ │ │ ├── m_ripemd.c │ │ │ ├── m_sha1.c │ │ │ ├── m_sigver.c │ │ │ ├── m_sm3.c │ │ │ ├── m_streebog.c │ │ │ ├── m_wp.c │ │ │ ├── names.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 │ │ │ ├── pmeth_fn.c │ │ │ ├── pmeth_gn.c │ │ │ └── pmeth_lib.c │ │ ├── ex_data.c │ │ ├── gost │ │ │ ├── gost.h │ │ │ ├── gost2814789.c │ │ │ ├── gost89_keywrap.c │ │ │ ├── gost89_params.c │ │ │ ├── gost89imit_ameth.c │ │ │ ├── gost89imit_pmeth.c │ │ │ ├── gost_asn1.c │ │ │ ├── gost_asn1.h │ │ │ ├── gost_err.c │ │ │ ├── gost_locl.h │ │ │ ├── gostr341001.c │ │ │ ├── gostr341001_ameth.c │ │ │ ├── gostr341001_key.c │ │ │ ├── gostr341001_params.c │ │ │ ├── gostr341001_pmeth.c │ │ │ ├── gostr341194.c │ │ │ └── streebog.c │ │ ├── hkdf │ │ │ └── hkdf.c │ │ ├── hmac │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ └── hmac.c │ │ ├── idea │ │ │ ├── i_cbc.c │ │ │ ├── i_cfb64.c │ │ │ ├── i_ecb.c │ │ │ ├── i_ofb64.c │ │ │ ├── i_skey.c │ │ │ └── idea_lcl.h │ │ ├── lhash │ │ │ ├── lh_stats.c │ │ │ └── lhash.c │ │ ├── malloc-wrapper.c │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ └── md4_one.c │ │ ├── md5 │ │ │ ├── md5-elf-x86_64.S │ │ │ ├── md5-macosx-x86_64.S │ │ │ ├── md5-masm-x86_64.S │ │ │ ├── md5-mingw64-x86_64.S │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ └── md5_one.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── cbc128.c │ │ │ ├── ccm128.c │ │ │ ├── cfb128.c │ │ │ ├── ctr128.c │ │ │ ├── cts128.c │ │ │ ├── gcm128.c │ │ │ ├── ghash-elf-armv4.S │ │ │ ├── ghash-elf-x86_64.S │ │ │ ├── ghash-macosx-x86_64.S │ │ │ ├── ghash-masm-x86_64.S │ │ │ ├── ghash-mingw64-x86_64.S │ │ │ ├── modes_lcl.h │ │ │ ├── ofb128.c │ │ │ └── xts128.c │ │ ├── o_init.c │ │ ├── o_str.c │ │ ├── o_time.c │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── o_names.c │ │ │ ├── obj_dat.c │ │ │ ├── obj_dat.h │ │ │ ├── obj_err.c │ │ │ ├── obj_lib.c │ │ │ ├── obj_xref.c │ │ │ └── obj_xref.h │ │ ├── ocsp │ │ │ ├── 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 │ │ ├── pem │ │ │ ├── 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 │ │ │ └── pvkfmt.c │ │ ├── pkcs12 │ │ │ ├── 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 │ │ ├── pkcs7 │ │ │ ├── bio_pk7.c │ │ │ ├── pk7_asn1.c │ │ │ ├── pk7_attr.c │ │ │ ├── pk7_doit.c │ │ │ ├── pk7_lib.c │ │ │ ├── pk7_mime.c │ │ │ ├── pk7_smime.c │ │ │ └── pkcs7err.c │ │ ├── poly1305 │ │ │ ├── poly1305-donna.c │ │ │ └── poly1305.c │ │ ├── rand │ │ │ ├── rand_err.c │ │ │ ├── rand_lib.c │ │ │ └── randfile.c │ │ ├── rc2 │ │ │ ├── rc2_cbc.c │ │ │ ├── rc2_ecb.c │ │ │ ├── rc2_locl.h │ │ │ ├── rc2_skey.c │ │ │ ├── rc2cfb64.c │ │ │ └── rc2ofb64.c │ │ ├── rc4 │ │ │ ├── rc4-elf-x86_64.S │ │ │ ├── rc4-macosx-x86_64.S │ │ │ ├── rc4-masm-x86_64.S │ │ │ ├── rc4-md5-elf-x86_64.S │ │ │ ├── rc4-md5-macosx-x86_64.S │ │ │ ├── rc4-md5-masm-x86_64.S │ │ │ ├── rc4-md5-mingw64-x86_64.S │ │ │ ├── rc4-mingw64-x86_64.S │ │ │ ├── rc4_enc.c │ │ │ ├── rc4_locl.h │ │ │ └── rc4_skey.c │ │ ├── ripemd │ │ │ ├── rmd_dgst.c │ │ │ ├── rmd_locl.h │ │ │ ├── rmd_one.c │ │ │ └── rmdconst.h │ │ ├── rsa │ │ │ ├── rsa_ameth.c │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_chk.c │ │ │ ├── rsa_crpt.c │ │ │ ├── rsa_depr.c │ │ │ ├── rsa_eay.c │ │ │ ├── rsa_err.c │ │ │ ├── rsa_gen.c │ │ │ ├── rsa_lib.c │ │ │ ├── rsa_locl.h │ │ │ ├── rsa_meth.c │ │ │ ├── rsa_none.c │ │ │ ├── rsa_oaep.c │ │ │ ├── rsa_pk1.c │ │ │ ├── rsa_pmeth.c │ │ │ ├── rsa_prn.c │ │ │ ├── rsa_pss.c │ │ │ ├── rsa_saos.c │ │ │ ├── rsa_sign.c │ │ │ └── rsa_x931.c │ │ ├── sha │ │ │ ├── sha1-elf-armv4.S │ │ │ ├── sha1-elf-x86_64.S │ │ │ ├── sha1-macosx-x86_64.S │ │ │ ├── sha1-masm-x86_64.S │ │ │ ├── sha1-mingw64-x86_64.S │ │ │ ├── sha1_one.c │ │ │ ├── sha1dgst.c │ │ │ ├── sha256-elf-armv4.S │ │ │ ├── sha256-elf-x86_64.S │ │ │ ├── sha256-macosx-x86_64.S │ │ │ ├── sha256-masm-x86_64.S │ │ │ ├── sha256-mingw64-x86_64.S │ │ │ ├── sha256.c │ │ │ ├── sha512-elf-armv4.S │ │ │ ├── sha512-elf-x86_64.S │ │ │ ├── sha512-macosx-x86_64.S │ │ │ ├── sha512-masm-x86_64.S │ │ │ ├── sha512-mingw64-x86_64.S │ │ │ ├── sha512.c │ │ │ └── sha_locl.h │ │ ├── sm3 │ │ │ ├── sm3.c │ │ │ └── sm3_locl.h │ │ ├── sm4 │ │ │ └── sm4.c │ │ ├── stack │ │ │ └── stack.c │ │ ├── ts │ │ │ ├── ts_asn1.c │ │ │ ├── ts_conf.c │ │ │ ├── ts_err.c │ │ │ ├── ts_lib.c │ │ │ ├── ts_req_print.c │ │ │ ├── ts_req_utils.c │ │ │ ├── ts_rsp_print.c │ │ │ ├── ts_rsp_sign.c │ │ │ ├── ts_rsp_utils.c │ │ │ ├── ts_rsp_verify.c │ │ │ └── ts_verify_ctx.c │ │ ├── txt_db │ │ │ └── txt_db.c │ │ ├── ui │ │ │ ├── ui_err.c │ │ │ ├── ui_lib.c │ │ │ ├── ui_locl.h │ │ │ ├── ui_openssl.c │ │ │ ├── ui_openssl_win.c │ │ │ └── ui_util.c │ │ ├── whrlpool │ │ │ ├── wp-elf-x86_64.S │ │ │ ├── wp-macosx-x86_64.S │ │ │ ├── wp-masm-x86_64.S │ │ │ ├── wp-mingw64-x86_64.S │ │ │ ├── wp_block.c │ │ │ ├── wp_dgst.c │ │ │ └── wp_locl.h │ │ ├── x509 │ │ │ ├── by_dir.c │ │ │ ├── by_file.c │ │ │ ├── by_mem.c │ │ │ ├── vpm_int.h │ │ │ ├── x509_att.c │ │ │ ├── x509_cmp.c │ │ │ ├── x509_d2.c │ │ │ ├── x509_def.c │ │ │ ├── x509_err.c │ │ │ ├── x509_ext.c │ │ │ ├── x509_lcl.h │ │ │ ├── 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_vpm.c │ │ │ ├── x509cset.c │ │ │ ├── x509name.c │ │ │ ├── x509rset.c │ │ │ ├── x509spki.c │ │ │ ├── x509type.c │ │ │ └── x_all.c │ │ ├── x509v3 │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_data.c │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_map.c │ │ │ ├── pcy_node.c │ │ │ ├── pcy_tree.c │ │ │ ├── v3_akey.c │ │ │ ├── v3_akeya.c │ │ │ ├── v3_alt.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 │ │ │ └── v3err.c │ │ └── x86_arch.h │ ├── include │ │ ├── CMakeLists.txt │ │ ├── compat │ │ │ ├── arpa │ │ │ │ ├── inet.h │ │ │ │ └── nameser.h │ │ │ ├── dirent.h │ │ │ ├── dirent_msvc.h │ │ │ ├── err.h │ │ │ ├── fcntl.h │ │ │ ├── limits.h │ │ │ ├── machine │ │ │ │ └── endian.h │ │ │ ├── netdb.h │ │ │ ├── netinet │ │ │ │ ├── in.h │ │ │ │ ├── ip.h │ │ │ │ └── tcp.h │ │ │ ├── poll.h │ │ │ ├── pthread.h │ │ │ ├── readpassphrase.h │ │ │ ├── resolv.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ │ ├── ioctl.h │ │ │ │ ├── mman.h │ │ │ │ ├── param.h │ │ │ │ ├── select.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── time.h │ │ │ │ ├── types.h │ │ │ │ └── uio.h │ │ │ ├── syslog.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ └── win32netcompat.h │ │ ├── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── chacha.h │ │ │ ├── cmac.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── curve25519.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── gost.h │ │ │ ├── hkdf.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslfeatures.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── poly1305.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── sm3.h │ │ │ ├── sm4.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ │ ├── pqueue.h │ │ └── tls.h │ ├── ssl │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── VERSION │ │ ├── bio_ssl.c │ │ ├── bs_ber.c │ │ ├── bs_cbb.c │ │ ├── bs_cbs.c │ │ ├── bytestring.h │ │ ├── d1_both.c │ │ ├── d1_clnt.c │ │ ├── d1_enc.c │ │ ├── d1_lib.c │ │ ├── d1_pkt.c │ │ ├── d1_srtp.c │ │ ├── d1_srvr.c │ │ ├── pqueue.c │ │ ├── s3_cbc.c │ │ ├── s3_lib.c │ │ ├── srtp.h │ │ ├── ssl.sym │ │ ├── ssl_algs.c │ │ ├── ssl_asn1.c │ │ ├── ssl_both.c │ │ ├── ssl_cert.c │ │ ├── ssl_ciph.c │ │ ├── ssl_ciphers.c │ │ ├── ssl_clnt.c │ │ ├── ssl_err.c │ │ ├── ssl_init.c │ │ ├── ssl_lib.c │ │ ├── ssl_locl.h │ │ ├── ssl_methods.c │ │ ├── ssl_packet.c │ │ ├── ssl_pkt.c │ │ ├── ssl_rsa.c │ │ ├── ssl_sess.c │ │ ├── ssl_sigalgs.c │ │ ├── ssl_sigalgs.h │ │ ├── ssl_srvr.c │ │ ├── ssl_stat.c │ │ ├── ssl_tlsext.c │ │ ├── ssl_tlsext.h │ │ ├── ssl_transcript.c │ │ ├── ssl_txt.c │ │ ├── ssl_versions.c │ │ ├── t1_enc.c │ │ ├── t1_lib.c │ │ ├── tls13_buffer.c │ │ ├── tls13_client.c │ │ ├── tls13_handshake.c │ │ ├── tls13_handshake.h │ │ ├── tls13_handshake_msg.c │ │ ├── tls13_internal.h │ │ ├── tls13_key_schedule.c │ │ ├── tls13_lib.c │ │ ├── tls13_record.c │ │ ├── tls13_record.h │ │ └── tls13_record_layer.c │ └── tls │ │ ├── CMakeLists.txt │ │ ├── VERSION │ │ ├── compat │ │ ├── ftruncate.c │ │ ├── pread.c │ │ └── pwrite.c │ │ ├── tls.c │ │ ├── tls.sym │ │ ├── tls_bio_cb.c │ │ ├── tls_client.c │ │ ├── tls_config.c │ │ ├── tls_conninfo.c │ │ ├── tls_internal.h │ │ ├── tls_keypair.c │ │ ├── tls_ocsp.c │ │ ├── tls_peer.c │ │ ├── tls_server.c │ │ ├── tls_util.c │ │ └── tls_verify.c ├── sqlite3 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h ├── uv │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── configure.ac │ ├── include │ │ ├── uv.h │ │ └── uv │ │ │ ├── aix.h │ │ │ ├── android-ifaddrs.h │ │ │ ├── bsd.h │ │ │ ├── darwin.h │ │ │ ├── errno.h │ │ │ ├── linux.h │ │ │ ├── os390.h │ │ │ ├── posix.h │ │ │ ├── stdint-msvc2008.h │ │ │ ├── sunos.h │ │ │ ├── threadpool.h │ │ │ ├── tree.h │ │ │ ├── unix.h │ │ │ ├── version.h │ │ │ └── win.h │ ├── libuv.pc.in │ └── src │ │ ├── fs-poll.c │ │ ├── heap-inl.h │ │ ├── idna.c │ │ ├── idna.h │ │ ├── inet.c │ │ ├── queue.h │ │ ├── random.c │ │ ├── strscpy.c │ │ ├── strscpy.h │ │ ├── threadpool.c │ │ ├── timer.c │ │ ├── unix │ │ ├── aix-common.c │ │ ├── aix.c │ │ ├── android-ifaddrs.c │ │ ├── async.c │ │ ├── atomic-ops.h │ │ ├── bsd-ifaddrs.c │ │ ├── bsd-proctitle.c │ │ ├── core.c │ │ ├── cygwin.c │ │ ├── darwin-proctitle.c │ │ ├── darwin-stub.h │ │ ├── darwin.c │ │ ├── dl.c │ │ ├── freebsd.c │ │ ├── fs.c │ │ ├── fsevents.c │ │ ├── getaddrinfo.c │ │ ├── getnameinfo.c │ │ ├── haiku.c │ │ ├── ibmi.c │ │ ├── internal.h │ │ ├── kqueue.c │ │ ├── linux-core.c │ │ ├── linux-inotify.c │ │ ├── linux-syscalls.c │ │ ├── linux-syscalls.h │ │ ├── loop-watcher.c │ │ ├── loop.c │ │ ├── netbsd.c │ │ ├── no-fsevents.c │ │ ├── no-proctitle.c │ │ ├── openbsd.c │ │ ├── os390-syscalls.c │ │ ├── os390-syscalls.h │ │ ├── os390.c │ │ ├── pipe.c │ │ ├── poll.c │ │ ├── posix-hrtime.c │ │ ├── posix-poll.c │ │ ├── process.c │ │ ├── procfs-exepath.c │ │ ├── proctitle.c │ │ ├── pthread-fixes.c │ │ ├── random-devurandom.c │ │ ├── random-getentropy.c │ │ ├── random-getrandom.c │ │ ├── random-sysctl-linux.c │ │ ├── signal.c │ │ ├── spinlock.h │ │ ├── stream.c │ │ ├── sunos.c │ │ ├── sysinfo-loadavg.c │ │ ├── sysinfo-memory.c │ │ ├── tcp.c │ │ ├── thread.c │ │ ├── tty.c │ │ └── udp.c │ │ ├── uv-common.c │ │ ├── uv-common.h │ │ ├── uv-data-getter-setters.c │ │ ├── version.c │ │ └── win │ │ ├── async.c │ │ ├── atomicops-inl.h │ │ ├── core.c │ │ ├── detect-wakeup.c │ │ ├── dl.c │ │ ├── error.c │ │ ├── fs-event.c │ │ ├── fs-fd-hash-inl.h │ │ ├── fs.c │ │ ├── getaddrinfo.c │ │ ├── getnameinfo.c │ │ ├── handle-inl.h │ │ ├── handle.c │ │ ├── internal.h │ │ ├── loop-watcher.c │ │ ├── pipe.c │ │ ├── poll.c │ │ ├── process-stdio.c │ │ ├── process.c │ │ ├── req-inl.h │ │ ├── signal.c │ │ ├── snprintf.c │ │ ├── stream-inl.h │ │ ├── stream.c │ │ ├── tcp.c │ │ ├── thread.c │ │ ├── tty.c │ │ ├── udp.c │ │ ├── util.c │ │ ├── winapi.c │ │ ├── winapi.h │ │ ├── winsock.c │ │ └── winsock.h └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── INDEX │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── contrib │ ├── amd64 │ │ └── amd64-match.S │ ├── asm686 │ │ ├── README.686 │ │ └── match.S │ ├── masmx64 │ │ ├── bld_ml64.bat │ │ ├── gvmat64.asm │ │ ├── inffas8664.c │ │ ├── inffasx64.asm │ │ └── readme.txt │ └── masmx86 │ │ ├── bld_ml32.bat │ │ ├── inffas32.asm │ │ ├── match686.asm │ │ └── readme.txt │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zconf.h.included │ ├── zlib.3 │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zutil.c │ └── zutil.h ├── libtbag ├── DbgPair.hpp ├── Err.cpp ├── Err.hpp ├── ErrPair.hpp ├── Exception.hpp ├── Noncopyable.hpp ├── Type.hpp ├── Unit.hpp ├── algorithm │ ├── Clamp.hpp │ ├── Compare.hpp │ ├── Equals.hpp │ ├── MinMax.hpp │ ├── Pack.hpp │ └── Swap.hpp ├── animation │ ├── AlphaAnimation.cpp │ ├── AlphaAnimation.hpp │ ├── Animation.cpp │ ├── Animation.hpp │ ├── FrameAnimation.cpp │ ├── FrameAnimation.hpp │ ├── FrameNumberAnimation.cpp │ ├── FrameNumberAnimation.hpp │ ├── MoveAnimation.cpp │ ├── MoveAnimation.hpp │ ├── RotateAnimation.cpp │ ├── RotateAnimation.hpp │ ├── ScaleAnimation.cpp │ ├── ScaleAnimation.hpp │ └── interpolator │ │ ├── AccelerateDecelerateInterpolator.cpp │ │ ├── AccelerateDecelerateInterpolator.hpp │ │ ├── AccelerateInterpolator.cpp │ │ ├── AccelerateInterpolator.hpp │ │ ├── AnticipateInterpolator.cpp │ │ ├── AnticipateInterpolator.hpp │ │ ├── AnticipateOvershootInterpolator.cpp │ │ ├── AnticipateOvershootInterpolator.hpp │ │ ├── BounceInterpolator.cpp │ │ ├── BounceInterpolator.hpp │ │ ├── DecelerateInterpolator.cpp │ │ ├── DecelerateInterpolator.hpp │ │ ├── Interpolator.hpp │ │ ├── LinearInterpolator.cpp │ │ ├── LinearInterpolator.hpp │ │ ├── OvershootInterpolator.cpp │ │ └── OvershootInterpolator.hpp ├── archive │ ├── Archive.cpp │ ├── Archive.hpp │ ├── Zip.cpp │ ├── Zip.hpp │ ├── details │ │ ├── archive_frontend.cpp │ │ └── archive_frontend.hpp │ └── ex │ │ ├── ZipBase64.cpp │ │ └── ZipBase64.hpp ├── auth │ ├── Auth.cpp │ └── Auth.hpp ├── bitwise │ ├── BitFlags.hpp │ ├── BitHacks.hpp │ ├── ByteUtils.cpp │ ├── ByteUtils.hpp │ ├── Checksum.cpp │ ├── Checksum.hpp │ ├── Endian.cpp │ └── Endian.hpp ├── box │ ├── Box.cpp │ ├── Box.hpp │ ├── BoxBase.cpp │ ├── BoxBase.hpp │ ├── BoxConverter.cpp │ ├── BoxConverter.hpp │ ├── BoxCursor.cpp │ ├── BoxCursor.hpp │ ├── BoxIterator.hpp │ ├── BoxIteratorGenerator.hpp │ ├── BoxPacket.cpp │ ├── BoxPacket.hpp │ ├── BoxTraits.hpp │ ├── details │ │ ├── box_api.cpp │ │ ├── box_api.hpp │ │ ├── box_common.hpp │ │ ├── box_cpu.cpp │ │ └── box_cpu.hpp │ └── fbs │ │ ├── .gitignore │ │ └── box.fbs ├── codec │ ├── PercentEncoding.cpp │ └── PercentEncoding.hpp ├── common │ └── Object.hpp ├── container │ ├── CircularBuffer.hpp │ ├── DependencyWorker.hpp │ ├── Global.hpp │ ├── Manager.hpp │ ├── Pointer.hpp │ ├── ReuseMap.hpp │ ├── ReuseQueue.hpp │ ├── SafetyQueue.hpp │ ├── SingleManager.hpp │ └── simple │ │ └── List.hpp ├── crypto │ ├── Aes.cpp │ ├── Aes.hpp │ ├── Base64.cpp │ ├── Base64.hpp │ ├── Md5.cpp │ ├── Md5.hpp │ ├── Pbkdf2.cpp │ ├── Pbkdf2.hpp │ ├── PseudoRandom.cpp │ ├── PseudoRandom.hpp │ ├── Rsa.cpp │ ├── Rsa.hpp │ ├── Sha.cpp │ ├── Sha.hpp │ ├── SslUtils.cpp │ ├── SslUtils.hpp │ ├── Tls.cpp │ ├── Tls.hpp │ ├── X509.cpp │ └── X509.hpp ├── database │ ├── Sqlite.cpp │ └── Sqlite.hpp ├── debug │ ├── Assert.hpp │ ├── Demangle.cpp │ ├── Demangle.hpp │ ├── Profile.cpp │ ├── Profile.hpp │ ├── StackTrace.cpp │ ├── StackTrace.hpp │ └── st │ │ ├── ExecInfoStackTrace.cpp │ │ ├── ExecInfoStackTrace.hpp │ │ ├── LibunwindStackTrace.cpp │ │ ├── LibunwindStackTrace.hpp │ │ ├── StFrame.cpp │ │ ├── StFrame.hpp │ │ ├── UnwindStackTrace.cpp │ │ ├── UnwindStackTrace.hpp │ │ ├── WindbgStackTrace.cpp │ │ ├── WindbgStackTrace.hpp │ │ └── unix │ │ ├── AddressToLine.cpp │ │ └── AddressToLine.hpp ├── dom │ ├── json │ │ ├── JsonHelper.cpp │ │ ├── JsonHelper.hpp │ │ ├── JsonUtils.cpp │ │ ├── JsonUtils.hpp │ │ └── jsoncpp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── json-forwards.h │ │ │ ├── json.h │ │ │ └── jsoncpp.cpp │ └── xml │ │ ├── Property.cpp │ │ ├── Property.hpp │ │ ├── Resource.cpp │ │ ├── Resource.hpp │ │ ├── XmlHelper.cpp │ │ ├── XmlHelper.hpp │ │ ├── XmlUtils.cpp │ │ ├── XmlUtils.hpp │ │ └── tinyxml2 │ │ ├── readme.md │ │ ├── tinyxml2.cpp │ │ └── tinyxml2.h ├── doxygen.h ├── dummy │ ├── Cl.hpp │ ├── Cuda.hpp │ └── Win32.hpp ├── filesystem │ ├── CwdGuard.cpp │ ├── CwdGuard.hpp │ ├── File.cpp │ ├── File.hpp │ ├── FindPath.cpp │ ├── FindPath.hpp │ ├── Path.cpp │ ├── Path.hpp │ ├── RotatePath.cpp │ ├── RotatePath.hpp │ ├── TempDirGuard.cpp │ ├── TempDirGuard.hpp │ └── details │ │ ├── FsCanonical.cpp │ │ ├── FsCanonical.hpp │ │ ├── FsCommon.cpp │ │ ├── FsCommon.hpp │ │ ├── FsNode.cpp │ │ ├── FsNode.hpp │ │ ├── FsProhibited.cpp │ │ ├── FsProhibited.hpp │ │ ├── FsTypes.hpp │ │ ├── UvFs-inl.hpp │ │ └── windows │ │ ├── FsWinCommon.cpp │ │ └── FsWinCommon.hpp ├── flow │ ├── FlowChart.hpp │ └── FlowLayer.hpp ├── functional │ ├── CallbackHelper.hpp │ ├── Commander.hpp │ ├── HashCombine.hpp │ └── ReleaseCallback.hpp ├── geometry │ ├── Arc2.hpp │ ├── BoundingBox.hpp │ ├── Circle2.hpp │ ├── Ellipse2.hpp │ ├── GeometryTypes.hpp │ ├── Line2.hpp │ ├── Point2.hpp │ ├── Point3.hpp │ ├── Point4.hpp │ ├── Rect2.hpp │ ├── RoundRect2.hpp │ └── Triangle2.hpp ├── gpu │ └── cuda │ │ └── CudaVersion.hpp ├── graph │ ├── ModelLayer.cpp │ ├── ModelLayer.hpp │ ├── ModelNet.cpp │ └── ModelNet.hpp ├── graphic │ ├── Canvas.cpp │ ├── Canvas.hpp │ ├── Color.cpp │ ├── Color.hpp │ ├── ImageIO.cpp │ ├── ImageIO.hpp │ ├── Overlay.hpp │ ├── OverlayState.hpp │ ├── Resolution.hpp │ ├── TextToImage.cpp │ └── TextToImage.hpp ├── http │ ├── CivetWebBypass.cpp │ ├── CivetWebBypass.hpp │ ├── CivetWebEventHandler.hpp │ ├── CivetWebExtension.cpp │ ├── CivetWebExtension.hpp │ ├── CivetWebServer.cpp │ ├── CivetWebServer.hpp │ ├── CivetWebSocketEventHandler.hpp │ ├── HttpClient.cpp │ ├── HttpClient.hpp │ ├── HttpCommon.cpp │ ├── HttpCommon.hpp │ ├── HttpParser.cpp │ ├── HttpParser.hpp │ ├── HttpReader.cpp │ ├── HttpReader.hpp │ ├── HttpServer.cpp │ ├── HttpServer.hpp │ ├── WsFrame.cpp │ ├── WsFrame.hpp │ ├── WsFrameBuffer.cpp │ ├── WsFrameBuffer.hpp │ └── civet-1.12 │ │ └── civetweb.h ├── id │ ├── Id.hpp │ ├── Uuid.cpp │ ├── Uuid.hpp │ └── generator │ │ ├── TimeId.cpp │ │ └── TimeId.hpp ├── io │ ├── InputUtils.cpp │ ├── InputUtils.hpp │ ├── Raw.cpp │ └── Raw.hpp ├── ipc │ ├── PipeReader.cpp │ └── PipeReader.hpp ├── iterator │ └── IteratorBypass.hpp ├── lexer │ ├── ComparisonOperator.cpp │ ├── ComparisonOperator.hpp │ ├── LogicalOperator.cpp │ └── LogicalOperator.hpp ├── lib │ ├── ComHolder.hpp │ ├── ComInitializer.cpp │ ├── ComInitializer.hpp │ ├── DynamicModule.cpp │ ├── DynamicModule.hpp │ ├── SharedLibrary.cpp │ └── SharedLibrary.hpp ├── libtbag.cpp ├── libtbag.h ├── locale │ ├── Convert.cpp │ ├── Convert.hpp │ ├── Locale.cpp │ ├── Locale.hpp │ └── details │ │ ├── LcList.cpp │ │ ├── LcList.hpp │ │ ├── LcUtils.cpp │ │ └── LcUtils.hpp ├── lock │ ├── FakeLock.hpp │ ├── RwLock.cpp │ ├── RwLock.hpp │ ├── SpinLock.hpp │ ├── UvBarrier.cpp │ ├── UvBarrier.hpp │ ├── UvCondition.cpp │ ├── UvCondition.hpp │ ├── UvLock.cpp │ ├── UvLock.hpp │ ├── UvSemaphore.cpp │ └── UvSemaphore.hpp ├── lockfree │ ├── BoundedMpMcQueue.cpp │ ├── BoundedMpMcQueue.hpp │ ├── MpMcQueue.cpp │ ├── MpMcQueue.hpp │ ├── TripleIoIndex.cpp │ └── TripleIoIndex.hpp ├── log │ ├── Log.cpp │ ├── Log.hpp │ ├── Logger.cpp │ ├── Logger.hpp │ ├── LoggerManager.cpp │ ├── LoggerManager.hpp │ ├── Severity.cpp │ ├── Severity.hpp │ ├── details │ │ ├── ColorGeneratorHelper.hpp │ │ ├── dlog.cpp │ │ └── dlog.hpp │ ├── msg │ │ ├── DefaultColorGenerator.cpp │ │ ├── DefaultColorGenerator.hpp │ │ ├── DefaultGenerator.cpp │ │ ├── DefaultGenerator.hpp │ │ ├── DefaultMsg.hpp │ │ ├── Generator.cpp │ │ ├── Generator.hpp │ │ ├── RawColorGenerator.cpp │ │ ├── RawColorGenerator.hpp │ │ ├── RawGenerator.cpp │ │ └── RawGenerator.hpp │ └── sink │ │ ├── CallbackSink.cpp │ │ ├── CallbackSink.hpp │ │ ├── ConsoleSink.cpp │ │ ├── ConsoleSink.hpp │ │ ├── FileSink.cpp │ │ ├── FileSink.hpp │ │ ├── FunctionalSink.cpp │ │ ├── FunctionalSink.hpp │ │ ├── NullSink.cpp │ │ ├── NullSink.hpp │ │ ├── RotateFileSink.cpp │ │ ├── RotateFileSink.hpp │ │ ├── Sink.cpp │ │ ├── Sink.hpp │ │ ├── StringQueueSink.cpp │ │ ├── StringQueueSink.hpp │ │ ├── ThreadSink.cpp │ │ └── ThreadSink.hpp ├── loop │ ├── FunctionalRiseService.hpp │ ├── RenderingLoop.hpp │ ├── RiseService.cpp │ ├── RiseService.hpp │ └── TickLoop.hpp ├── macro │ ├── architecture.hpp │ ├── architecture │ │ └── intel.hpp │ ├── attributes.hpp │ ├── compiler.hpp │ ├── compiler │ │ ├── clang.hpp │ │ ├── gcc.hpp │ │ ├── llvm.hpp │ │ └── msvc.hpp │ ├── debug_stamp.hpp │ ├── features.hpp │ ├── function.hpp │ ├── language.hpp │ ├── language │ │ ├── c.hpp │ │ ├── cpp.hpp │ │ └── objc.hpp │ ├── library │ │ └── boost.hpp │ ├── platform.hpp │ ├── platform │ │ ├── android.hpp │ │ ├── apple.hpp │ │ ├── cygwin.hpp │ │ ├── linux.hpp │ │ ├── unix.hpp │ │ └── windows.hpp │ ├── types.hpp │ └── utils.hpp ├── math │ ├── AffineTransformation.cpp │ ├── AffineTransformation.hpp │ ├── AspectRatio.hpp │ ├── Average.hpp │ ├── Constant.hpp │ ├── Equation.hpp │ ├── Euclidean.hpp │ ├── Jaccard.hpp │ ├── LawOfCosines.hpp │ ├── Matrix.hpp │ ├── Number.hpp │ ├── Rounding.hpp │ ├── Scale.hpp │ ├── Trigonometry.hpp │ ├── Vector.hpp │ └── equation │ │ └── LinearEquation.hpp ├── media │ ├── Fourcc.cpp │ └── Fourcc.hpp ├── memory │ ├── Allocator.hpp │ ├── Memory.cpp │ ├── Memory.hpp │ ├── RedefineMemory.hpp │ └── details │ │ ├── AlignedMemory.cpp │ │ └── AlignedMemory.hpp ├── mq │ ├── NngBypass.cpp │ ├── NngBypass.hpp │ ├── NngSocket.cpp │ ├── NngSocket.hpp │ └── nng │ │ ├── compat │ │ └── nanomsg │ │ │ ├── bus.h │ │ │ ├── inproc.h │ │ │ ├── ipc.h │ │ │ ├── nn.h │ │ │ ├── pair.h │ │ │ ├── pipeline.h │ │ │ ├── pubsub.h │ │ │ ├── reqrep.h │ │ │ ├── survey.h │ │ │ ├── tcp.h │ │ │ └── ws.h │ │ ├── migration.py │ │ ├── nng.h │ │ ├── protocol │ │ ├── bus0 │ │ │ └── bus.h │ │ ├── pair0 │ │ │ └── pair.h │ │ ├── pair1 │ │ │ └── pair.h │ │ ├── pipeline0 │ │ │ ├── pull.h │ │ │ └── push.h │ │ ├── pubsub0 │ │ │ ├── pub.h │ │ │ └── sub.h │ │ ├── reqrep0 │ │ │ ├── rep.h │ │ │ └── req.h │ │ └── survey0 │ │ │ ├── respond.h │ │ │ └── survey.h │ │ ├── supplemental │ │ ├── http │ │ │ └── http.h │ │ ├── tls │ │ │ ├── engine.h │ │ │ └── tls.h │ │ └── util │ │ │ ├── options.h │ │ │ └── platform.h │ │ └── transport │ │ ├── inproc │ │ └── inproc.h │ │ ├── ipc │ │ └── ipc.h │ │ ├── tcp │ │ └── tcp.h │ │ ├── tls │ │ └── tls.h │ │ ├── ws │ │ └── websocket.h │ │ └── zerotier │ │ └── zerotier.h ├── net │ ├── Ip.cpp │ ├── Ip.hpp │ ├── Mime.cpp │ ├── Mime.hpp │ ├── SocketAddress.cpp │ ├── SocketAddress.hpp │ ├── Uri.cpp │ └── Uri.hpp ├── parallel │ ├── ParallelCommon.cpp │ ├── ParallelCommon.hpp │ ├── ParallelDevice.cpp │ ├── ParallelDevice.hpp │ ├── cl │ │ ├── ClDevice.cpp │ │ └── ClDevice.hpp │ ├── cpu │ │ ├── CpuDevice.cpp │ │ └── CpuDevice.hpp │ └── cuda │ │ ├── CudaDevice.cpp │ │ └── CudaDevice.hpp ├── pattern │ ├── Observer.hpp │ ├── Singleton.hpp │ ├── Singleton2.hpp │ └── Singleton3.hpp ├── pch.h ├── predef.hpp ├── pref │ ├── GlobalPref.cpp │ ├── GlobalPref.hpp │ ├── Preferences.cpp │ ├── Preferences.hpp │ └── details │ │ ├── ExtraPref.cpp │ │ ├── ExtraPref.hpp │ │ ├── LogPref.cpp │ │ ├── LogPref.hpp │ │ ├── StoragePref.cpp │ │ ├── StoragePref.hpp │ │ ├── ValuesPref.cpp │ │ └── ValuesPref.hpp ├── preprocessor │ ├── ExpendParams.hpp │ ├── Preprocessor.hpp │ ├── arithmetic │ │ ├── Decrease.hpp │ │ └── Increase.hpp │ ├── comparison │ │ ├── Equal.hpp │ │ └── NotEqual.hpp │ ├── config │ │ └── Config.hpp │ ├── control │ │ └── If.hpp │ ├── details │ │ ├── AutoRec.hpp │ │ ├── Cat.hpp │ │ ├── Error.hpp │ │ └── Stringize.hpp │ ├── facilities │ │ ├── Empty.hpp │ │ ├── Expend.hpp │ │ ├── IsEmpty.hpp │ │ └── Overload.hpp │ ├── logical │ │ ├── BitAnd.hpp │ │ ├── BitNor.hpp │ │ ├── BitOr.hpp │ │ ├── BitXor.hpp │ │ ├── Boolean.hpp │ │ └── Complement.hpp │ ├── numeric │ │ ├── Even.hpp │ │ ├── Odd.hpp │ │ └── OddOrEven.hpp │ ├── punctuation │ │ ├── Comma.hpp │ │ ├── CommaIf.hpp │ │ └── IsBeginParens.hpp │ ├── repetition │ │ └── Repeat2.hpp │ ├── seq │ │ ├── SeqIsEmpty.hpp │ │ ├── SeqSize.hpp │ │ └── VariadicSeqToSeq.hpp │ ├── tuple │ │ ├── TupleEat.hpp │ │ ├── TupleElem.hpp │ │ ├── TupleSize.hpp │ │ └── TupleToSeq.hpp │ └── variadic │ │ ├── VariadicElem.hpp │ │ ├── VariadicIsEmpty.hpp │ │ ├── VariadicSize.hpp │ │ ├── VariadicToSeq.hpp │ │ └── VariadicToTuple.hpp ├── process │ ├── Execute.cpp │ ├── Execute.hpp │ ├── ProcessManager.cpp │ ├── ProcessManager.hpp │ ├── StdProcess.cpp │ └── StdProcess.hpp ├── project.cmake ├── random │ ├── MaskingDevice.cpp │ ├── MaskingDevice.hpp │ └── Random.hpp ├── res │ ├── Asset.hpp │ ├── DynamicAsset.cpp │ ├── DynamicAsset.hpp │ ├── GetText.cpp │ ├── GetText.hpp │ ├── Storage.cpp │ └── Storage.hpp ├── scene │ ├── Scene.cpp │ └── Scene.hpp ├── science │ └── wavelet │ │ └── Haar.hpp ├── script │ ├── DynamicPython.cpp │ ├── DynamicPython.hpp │ ├── LuaBypass.cpp │ ├── LuaBypass.hpp │ ├── LuaExtension.cpp │ ├── LuaExtension.hpp │ ├── LuaMachine.cpp │ ├── LuaMachine.hpp │ ├── LuaMain.cpp │ ├── LuaMain.hpp │ ├── lua │ │ ├── LogLua.cpp │ │ ├── LogLua.hpp │ │ ├── StringLua.cpp │ │ ├── StringLua.hpp │ │ ├── SystemLua.cpp │ │ └── SystemLua.hpp │ └── luajit-2.0.5 │ │ ├── .gitignore │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luajit.h │ │ └── lualib.h ├── security │ ├── KeyStore.cpp │ ├── KeyStore.hpp │ └── store │ │ ├── FileKeyStore.cpp │ │ ├── FileKeyStore.hpp │ │ ├── GnomeKeyStore.cpp │ │ ├── GnomeKeyStore.hpp │ │ ├── KeyStoreInterface.hpp │ │ ├── MacKeyStore.cpp │ │ ├── MacKeyStore.hpp │ │ ├── WindowsKeyStore.cpp │ │ └── WindowsKeyStore.hpp ├── service │ ├── Service.cpp │ ├── Service.hpp │ └── details │ │ ├── FakeService.cpp │ │ ├── FakeService.hpp │ │ ├── ServiceInterface.hpp │ │ ├── UnixService.cpp │ │ ├── UnixService.hpp │ │ ├── WindowsService.cpp │ │ └── WindowsService.hpp ├── signal │ ├── SignalCatcher.cpp │ ├── SignalCatcher.hpp │ ├── SignalHandler.cpp │ ├── SignalHandler.hpp │ ├── SignalRunner.cpp │ └── SignalRunner.hpp ├── string │ ├── ArgumentParser.cpp │ ├── ArgumentParser.hpp │ ├── Arguments.cpp │ ├── Arguments.hpp │ ├── Argv.cpp │ ├── Argv.hpp │ ├── Environments.cpp │ ├── Environments.hpp │ ├── Flags.cpp │ ├── Flags.hpp │ ├── Format.cpp │ ├── Format.hpp │ ├── ParameterExpansion.cpp │ ├── ParameterExpansion.hpp │ ├── String.cpp │ ├── String.hpp │ ├── StringMap.cpp │ ├── StringMap.hpp │ ├── StringUtils.cpp │ ├── StringUtils.hpp │ ├── details │ │ ├── rstr_base.cpp │ │ └── rstr_base.hpp │ └── fmt │ │ ├── LICENSE.rst │ │ ├── README.rst │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── locale.h │ │ ├── migration.sh │ │ ├── os.cc │ │ ├── os.h │ │ ├── ostream.h │ │ ├── posix.h │ │ ├── printf.h │ │ └── ranges.h ├── system │ ├── CpuId.cpp │ ├── CpuId.hpp │ ├── ProcessId.cpp │ ├── ProcessId.hpp │ ├── ResourceUsage.cpp │ ├── ResourceUsage.hpp │ ├── Simd.cpp │ ├── Simd.hpp │ ├── SysInfo.cpp │ ├── SysInfo.hpp │ ├── linux │ │ ├── ProcessState.cpp │ │ └── ProcessState.hpp │ └── macox │ │ ├── TaskInfo.cpp │ │ └── TaskInfo.hpp ├── task │ ├── TaskManager.cpp │ └── TaskManager.hpp ├── thread │ ├── FunctionalThread.cpp │ ├── FunctionalThread.hpp │ ├── Thread.cpp │ ├── Thread.hpp │ ├── ThreadGroup.cpp │ ├── ThreadGroup.hpp │ ├── ThreadKill.cpp │ ├── ThreadKill.hpp │ ├── ThreadLocalStorage.cpp │ ├── ThreadLocalStorage.hpp │ ├── ThreadPool.cpp │ └── ThreadPool.hpp ├── tiled │ ├── TiledMap.cpp │ ├── TiledMap.hpp │ └── details │ │ ├── TmxAnimation.cpp │ │ ├── TmxAnimation.hpp │ │ ├── TmxChunk.cpp │ │ ├── TmxChunk.hpp │ │ ├── TmxData.cpp │ │ ├── TmxData.hpp │ │ ├── TmxDataCommon.cpp │ │ ├── TmxDataCommon.hpp │ │ ├── TmxEllipse.cpp │ │ ├── TmxEllipse.hpp │ │ ├── TmxFrame.cpp │ │ ├── TmxFrame.hpp │ │ ├── TmxGrid.cpp │ │ ├── TmxGrid.hpp │ │ ├── TmxGroup.cpp │ │ ├── TmxGroup.hpp │ │ ├── TmxImage.cpp │ │ ├── TmxImage.hpp │ │ ├── TmxImageLayer.cpp │ │ ├── TmxImageLayer.hpp │ │ ├── TmxLayer.cpp │ │ ├── TmxLayer.hpp │ │ ├── TmxMap.cpp │ │ ├── TmxMap.hpp │ │ ├── TmxObject.cpp │ │ ├── TmxObject.hpp │ │ ├── TmxObjectGroup.cpp │ │ ├── TmxObjectGroup.hpp │ │ ├── TmxPoint.cpp │ │ ├── TmxPoint.hpp │ │ ├── TmxPointsCommon.cpp │ │ ├── TmxPointsCommon.hpp │ │ ├── TmxPolygon.cpp │ │ ├── TmxPolygon.hpp │ │ ├── TmxPolyline.cpp │ │ ├── TmxPolyline.hpp │ │ ├── TmxProperties.cpp │ │ ├── TmxProperties.hpp │ │ ├── TmxProperty.cpp │ │ ├── TmxProperty.hpp │ │ ├── TmxTag.cpp │ │ ├── TmxTag.hpp │ │ ├── TmxTemplate.cpp │ │ ├── TmxTemplate.hpp │ │ ├── TmxTerrain.cpp │ │ ├── TmxTerrain.hpp │ │ ├── TmxTerrainTypes.cpp │ │ ├── TmxTerrainTypes.hpp │ │ ├── TmxText.cpp │ │ ├── TmxText.hpp │ │ ├── TmxTile.cpp │ │ ├── TmxTile.hpp │ │ ├── TmxTileOffset.cpp │ │ ├── TmxTileOffset.hpp │ │ ├── TmxTileSet.cpp │ │ ├── TmxTileSet.hpp │ │ ├── TmxWangCornerColor.cpp │ │ ├── TmxWangCornerColor.hpp │ │ ├── TmxWangEdgeColor.cpp │ │ ├── TmxWangEdgeColor.hpp │ │ ├── TmxWangSet.cpp │ │ ├── TmxWangSet.hpp │ │ ├── TmxWangSets.cpp │ │ ├── TmxWangSets.hpp │ │ ├── TmxWangTile.cpp │ │ └── TmxWangTile.hpp ├── time │ ├── Duration.cpp │ ├── Duration.hpp │ ├── DurationString.cpp │ ├── DurationString.hpp │ ├── DurationStringParser.hpp.inl │ ├── ElapsedTime.hpp │ ├── NtpClient.cpp │ ├── NtpClient.hpp │ ├── SyncedWait.cpp │ ├── SyncedWait.hpp │ ├── Time.cpp │ ├── Time.hpp │ ├── TimePoint.cpp │ └── TimePoint.hpp ├── tmp │ ├── ArraySize.hpp │ ├── Bit.hpp │ ├── NumberOfArguments.hpp │ ├── NumberOfDigits.hpp │ └── Power.hpp ├── tty │ └── Tces.hpp ├── type │ ├── Size.hpp │ └── TypeTable.hpp ├── typography │ ├── Font.cpp │ ├── Font.hpp │ └── font │ │ ├── Ngc.cpp │ │ ├── Ngc.hpp │ │ └── ngc │ │ ├── .gitignore │ │ ├── NanumGothicCoding-2.5.md │ │ ├── NanumGothicCoding-Bold.ttf │ │ └── NanumGothicCoding.ttf ├── util │ ├── BufferInfo.hpp │ ├── Byte.cpp │ ├── Byte.hpp │ ├── ByteString.cpp │ ├── ByteString.hpp │ ├── ByteStringParser.hpp.inl │ ├── OffsetOf.hpp │ ├── Optimization.hpp │ ├── Runnable.hpp │ ├── SingletonUtils.cpp │ ├── SingletonUtils.hpp │ ├── Structures.hpp │ ├── TerminalProcess.hpp │ ├── TestUtils.cpp │ ├── TestUtils.hpp │ ├── Version.cpp │ ├── Version.hpp │ ├── VersionCompatible.cpp │ └── VersionCompatible.hpp ├── uvpp │ ├── Async.cpp │ ├── Async.hpp │ ├── Check.cpp │ ├── Check.hpp │ ├── Dns.cpp │ ├── Dns.hpp │ ├── FsEvent.cpp │ ├── FsEvent.hpp │ ├── FsPoll.cpp │ ├── FsPoll.hpp │ ├── Handle.cpp │ ├── Handle.hpp │ ├── Idle.cpp │ ├── Idle.hpp │ ├── Loop.cpp │ ├── Loop.hpp │ ├── Native.cpp │ ├── Native.hpp │ ├── Pipe.cpp │ ├── Pipe.hpp │ ├── Poll.cpp │ ├── Poll.hpp │ ├── Prepare.cpp │ ├── Prepare.hpp │ ├── Process.cpp │ ├── Process.hpp │ ├── Request.cpp │ ├── Request.hpp │ ├── Signal.cpp │ ├── Signal.hpp │ ├── Stream.cpp │ ├── Stream.hpp │ ├── Tcp.cpp │ ├── Tcp.hpp │ ├── Timer.cpp │ ├── Timer.hpp │ ├── Tty.cpp │ ├── Tty.hpp │ ├── Udp.cpp │ ├── Udp.hpp │ ├── UvCommon.cpp │ ├── UvCommon.hpp │ ├── UvUtils.cpp │ ├── UvUtils.hpp │ ├── ex │ │ ├── RequestQueue.cpp │ │ ├── RequestQueue.hpp │ │ ├── SafetyAsync.cpp │ │ ├── SafetyAsync.hpp │ │ ├── TlsTcp.cpp │ │ └── TlsTcp.hpp │ ├── func │ │ ├── FunctionalAsync.hpp │ │ ├── FunctionalCheck.hpp │ │ ├── FunctionalFsEvent.hpp │ │ ├── FunctionalFsPoll.hpp │ │ ├── FunctionalHandle.hpp │ │ ├── FunctionalIdle.hpp │ │ ├── FunctionalPipe.hpp │ │ ├── FunctionalPoll.hpp │ │ ├── FunctionalPrepare.hpp │ │ ├── FunctionalProcess.hpp │ │ ├── FunctionalSignal.hpp │ │ ├── FunctionalStream.hpp │ │ ├── FunctionalTcp.hpp │ │ ├── FunctionalTimer.hpp │ │ ├── FunctionalTty.hpp │ │ └── FunctionalUdp.hpp │ └── package-info.md └── uvxx │ ├── UxAsync.cpp │ ├── UxAsync.hpp │ ├── UxCheck.cpp │ ├── UxCheck.hpp │ ├── UxFsEvent.cpp │ ├── UxFsEvent.hpp │ ├── UxFsPoll.cpp │ ├── UxFsPoll.hpp │ ├── UxHandle.cpp │ ├── UxHandle.hpp │ ├── UxIdle.cpp │ ├── UxIdle.hpp │ ├── UxLoop.cpp │ ├── UxLoop.hpp │ ├── UxPipe.cpp │ ├── UxPipe.hpp │ ├── UxPoll.cpp │ ├── UxPoll.hpp │ ├── UxPrepare.cpp │ ├── UxPrepare.hpp │ ├── UxProcess.cpp │ ├── UxProcess.hpp │ ├── UxSignal.cpp │ ├── UxSignal.hpp │ ├── UxStream.cpp │ ├── UxStream.hpp │ ├── UxTcp.cpp │ ├── UxTcp.hpp │ ├── UxTimer.cpp │ ├── UxTimer.hpp │ ├── UxTty.cpp │ ├── UxTty.hpp │ ├── UxUdp.cpp │ └── UxUdp.hpp ├── script ├── luarocks_install.sh └── pytools │ ├── __init__.py │ ├── genclass.py │ ├── genfullclass.py │ ├── genpimplclass.py │ ├── gentest.py │ ├── gentext.py │ └── properties.py ├── tbag.cloc ├── tbag.cloc.sh ├── tbag.loc.sh ├── template ├── Doxyfile.in ├── class.cpp.in ├── class.hpp.in ├── class2.cpp.in ├── class2.hpp.in ├── config-ex.h.in ├── full-class.cpp.in ├── full-class.hpp.in ├── full-class2.cpp.in ├── full-class2.hpp.in ├── pimpl-class.cpp.in ├── pimpl-class.hpp.in ├── pimpl-class2.cpp.in ├── pimpl-class2.hpp.in └── test.cpp.in ├── tester ├── BasicTest.cpp ├── DemoAsset.hpp ├── DemoAssetTest.cpp ├── ErrTest.cpp ├── asset │ └── image │ │ └── lena.png ├── libtbag │ ├── DbgPairTest.cpp │ ├── ErrPairTest.cpp │ ├── TypeTest.cpp │ ├── UnitTest.cpp │ ├── algorithm │ │ ├── ClampTest.cpp │ │ ├── CompareTest.cpp │ │ ├── EqualsTest.cpp │ │ ├── MinMaxTest.cpp │ │ └── SwapTest.cpp │ ├── animation │ │ ├── AlphaAnimationTest.cpp │ │ ├── AnimationTest.cpp │ │ ├── FrameAnimationTest.cpp │ │ ├── FrameNumberAnimationTest.cpp │ │ ├── MoveAnimationTest.cpp │ │ ├── RotateAnimationTest.cpp │ │ └── ScaleAnimationTest.cpp │ ├── archive │ │ ├── ArchiveTest.cpp │ │ ├── ZipTest.cpp │ │ └── ex │ │ │ └── ZipBase64Test.cpp │ ├── auth │ │ └── AuthTest.cpp │ ├── bitwise │ │ ├── BitFlagsTest.cpp │ │ ├── BitHacksTest.cpp │ │ ├── ChecksumTest.cpp │ │ └── EndianTest.cpp │ ├── box │ │ ├── BoxConverterTest.cpp │ │ ├── BoxPacketTest.cpp │ │ ├── BoxTest.cpp │ │ ├── Box_Assign_Test.cpp │ │ ├── Box_At_Test.cpp │ │ ├── Box_Comp_Test.cpp │ │ ├── Box_Comp_Value_Test.cpp │ │ ├── Box_Copy_Test.cpp │ │ ├── Box_Count_Test.cpp │ │ ├── Box_Cursor_Test.cpp │ │ ├── Box_Data_Test.cpp │ │ ├── Box_Encode_Test.cpp │ │ ├── Box_ForEach_Test.cpp │ │ ├── Box_Info_Test.cpp │ │ ├── Box_Init_Test.cpp │ │ ├── Box_Iterator_Test.cpp │ │ ├── Box_Shape_Test.cpp │ │ ├── Box_Stl_Test.cpp │ │ ├── Box_TypeTraits_Test.cpp │ │ └── details │ │ │ ├── box_api_test.cpp │ │ │ ├── box_common_test.cpp │ │ │ ├── box_cursor_rank1_test.cpp │ │ │ ├── box_cursor_rank2_test.cpp │ │ │ ├── box_cursor_rank3_test.cpp │ │ │ └── box_cursor_test.cpp │ ├── codec │ │ └── PercentEncodingTest.cpp │ ├── common │ │ └── ObjectTest.cpp │ ├── container │ │ ├── CircularBufferTest.cpp │ │ ├── DependencyWorkerTest.cpp │ │ ├── GlobalTest.cpp │ │ ├── ManagerTest.cpp │ │ ├── PointerTest.cpp │ │ ├── ReuseMapTest.cpp │ │ ├── ReuseQueueTest.cpp │ │ ├── SafetyQueueTest.cpp │ │ ├── SingleManagerTest.cpp │ │ └── simple │ │ │ └── ListTest.cpp │ ├── crypto │ │ ├── AesTest.cpp │ │ ├── Base64Test.cpp │ │ ├── Md5Test.cpp │ │ ├── Pbkdf2Test.cpp │ │ ├── PseudoRandomTest.cpp │ │ ├── RsaTest.cpp │ │ ├── ShaTest.cpp │ │ ├── TlsReaderTest.cpp │ │ ├── TlsTest.cpp │ │ └── X509Test.cpp │ ├── database │ │ └── SqliteTest.cpp │ ├── debug │ │ ├── DemangleTest.cpp │ │ ├── ProfileTest.cpp │ │ ├── StackTraceTest.cpp │ │ └── st │ │ │ ├── StFrameTest.cpp │ │ │ └── unix │ │ │ └── AddressToLineTest.cpp │ ├── dom │ │ ├── json │ │ │ └── JsonUtilsTest.cpp │ │ └── xml │ │ │ ├── PropertyTest.cpp │ │ │ ├── ResourceTest.cpp │ │ │ └── XmlUtilsTest.cpp │ ├── filesystem │ │ ├── CwdGuardTest.cpp │ │ ├── FileTest.cpp │ │ ├── FindPathTest.cpp │ │ ├── PathTest.cpp │ │ ├── Path_Scan_Test.cpp │ │ ├── RotatePathTest.cpp │ │ └── details │ │ │ ├── FsCanonicalTest.cpp │ │ │ ├── FsCommonTest.cpp │ │ │ ├── FsNodeTest.cpp │ │ │ └── FsProhibitedTest.cpp │ ├── flow │ │ └── FlowChartTest.cpp │ ├── functional │ │ ├── CommanderTest.cpp │ │ ├── HashCombineTest.cpp │ │ └── ReleaseCallbackTest.cpp │ ├── geometry │ │ ├── Arc2Test.cpp │ │ ├── BoundingBoxTest.cpp │ │ ├── Circle2Test.cpp │ │ ├── Ellipse2Test.cpp │ │ ├── Line2Test.cpp │ │ ├── Point2Test.cpp │ │ ├── Rect2Test.cpp │ │ ├── RoundRect2Test.cpp │ │ └── Triangle2Test.cpp │ ├── graph │ │ ├── ModelLayerTest.cpp │ │ ├── ModelNetTest.cpp │ │ └── ModelNet_Sequence_Test.cpp │ ├── graphic │ │ ├── CanvasTest.cpp │ │ ├── ColorTest.cpp │ │ ├── ImageIOTest.cpp │ │ ├── OverlayStateTest.cpp │ │ ├── OverlayTest.cpp │ │ └── TextToImageTest.cpp │ ├── http │ │ ├── HttpCommonTest.cpp │ │ ├── HttpParserTest.cpp │ │ ├── HttpServerClientTest.cpp │ │ ├── WebSocket.html │ │ ├── WsFrameBufferTest.cpp │ │ └── WsFrameTest.cpp │ ├── id │ │ ├── UuidTest.cpp │ │ └── generator │ │ │ └── TimeIdTest.cpp │ ├── io │ │ └── RawTest.cpp │ ├── ipc │ │ └── PipeReaderTest.cpp │ ├── iterator │ │ └── IteratorBypassTest.cpp │ ├── lexer │ │ ├── ComparisonOperatorTest.cpp │ │ └── LogicalOperatorTest.cpp │ ├── lib │ │ ├── DynamicModuleTest.cpp │ │ └── SharedLibraryTest.cpp │ ├── locale │ │ ├── ConvertTest.cpp │ │ ├── LocaleTest.cpp │ │ └── details │ │ │ ├── LcListTest.cpp │ │ │ └── LcUtilsTest.cpp │ ├── lock │ │ ├── FakeLockTest.cpp │ │ ├── RwLockTest.cpp │ │ ├── SpinLockTest.cpp │ │ ├── UvBarrierTest.cpp │ │ ├── UvConditionTest.cpp │ │ ├── UvLockTest.cpp │ │ └── UvSemaphoreTest.cpp │ ├── lockfree │ │ ├── BoundedMpMcQueueTest.cpp │ │ ├── MpMcQueueTest.cpp │ │ └── TripleIoIndexTest.cpp │ ├── log │ │ ├── LogTest.cpp │ │ ├── LoggerManagerTest.cpp │ │ ├── LoggerTest.cpp │ │ ├── RotateFileLogTest.cpp │ │ ├── SeverityTest.cpp │ │ ├── details │ │ │ └── dlogTest.cpp │ │ ├── msg │ │ │ ├── DefaultColorGeneratorTest.cpp │ │ │ ├── DefaultGeneratorTest.cpp │ │ │ ├── RawColorGeneratorTest.cpp │ │ │ └── RawGeneratorTest.cpp │ │ └── sink │ │ │ ├── CallbackSinkTest.cpp │ │ │ ├── ConsoleSinkTest.cpp │ │ │ ├── FileSinkTest.cpp │ │ │ ├── FunctionalSinkTest.cpp │ │ │ ├── NullSinkTest.cpp │ │ │ ├── RotateFileSinkTest.cpp │ │ │ ├── StringQueueSinkTest.cpp │ │ │ └── ThreadSinkTest.cpp │ ├── loop │ │ ├── RenderingLoopTest.cpp │ │ ├── RiseServiceTest.cpp │ │ └── TickLoopTest.cpp │ ├── math │ │ ├── AffineTransformationTest.cpp │ │ ├── AspectRatioTest.cpp │ │ ├── AverageTest.cpp │ │ ├── EquationTest.cpp │ │ ├── EuclideanTest.cpp │ │ ├── JaccardTest.cpp │ │ ├── MatrixTest.cpp │ │ ├── NumberTest.cpp │ │ ├── RoundingTest.cpp │ │ ├── ScaleTest.cpp │ │ ├── TrigonometryTest.cpp │ │ ├── VectorTest.cpp │ │ └── equation │ │ │ └── LinearEquationTest.cpp │ ├── media │ │ └── FourccTest.cpp │ ├── memory │ │ ├── AllocatorTest.cpp │ │ ├── MemoryTest.cpp │ │ └── details │ │ │ └── AlignedMemoryTest.cpp │ ├── mq │ │ └── NngSocketTest.cpp │ ├── net │ │ ├── IpTest.cpp │ │ ├── MimeTest.cpp │ │ ├── SocketAddressTest.cpp │ │ └── UriTest.cpp │ ├── parallel │ │ └── ParallelDeviceTest.cpp │ ├── pattern │ │ ├── ObserverTest.cpp │ │ └── SingletonTest.cpp │ ├── pref │ │ └── details │ │ │ ├── LogPrefTest.cpp │ │ │ └── StoragePrefTest.cpp │ ├── preprocessor │ │ └── PreprocessorTest.cpp │ ├── process │ │ ├── ExecuteTest.cpp │ │ ├── ProcessManagerTest.cpp │ │ └── StdProcessTest.cpp │ ├── random │ │ ├── MaskingDeviceTest.cpp │ │ └── RandomTest.cpp │ ├── res │ │ ├── AssetTest.cpp │ │ ├── DynamicAssetTest.cpp │ │ ├── GetTextTest.cpp │ │ └── StorageTest.cpp │ ├── scene │ │ └── SceneTest.cpp │ ├── science │ │ └── wavelet │ │ │ └── HaarTest.cpp │ ├── script │ │ ├── DynamicPythonTest.cpp │ │ └── LuaMachineTest.cpp │ ├── security │ │ ├── KeyStoreTest.cpp │ │ └── store │ │ │ └── FileKeyStoreTest.cpp │ ├── signal │ │ ├── SignalCatcherTest.cpp │ │ └── SignalHandlerTest.cpp │ ├── string │ │ ├── ArgumentParserTest.cpp │ │ ├── ArgumentsTest.cpp │ │ ├── ArgvTest.cpp │ │ ├── EnvironmentsTest.cpp │ │ ├── FlagsTest.cpp │ │ ├── FormatTest.cpp │ │ ├── ParameterExpansionTest.cpp │ │ ├── StringMapTest.cpp │ │ ├── StringTest.cpp │ │ ├── StringUtilsTest.cpp │ │ └── StringUtils_SplitTest.cpp │ ├── system │ │ ├── CpuIdTest.cpp │ │ ├── ProcessIdTest.cpp │ │ ├── ResourceUsageTest.cpp │ │ ├── SimdTest.cpp │ │ ├── SysInfoTest.cpp │ │ ├── linux │ │ │ └── ProcessStateTest.cpp │ │ └── macox │ │ │ └── TaskInfoTest.cpp │ ├── task │ │ └── TaskManagerTest.cpp │ ├── thread │ │ ├── FunctionalThreadTest.cpp │ │ ├── ThreadGroupTest.cpp │ │ ├── ThreadLocalStorageTest.cpp │ │ ├── ThreadPoolTest.cpp │ │ └── ThreadTest.cpp │ ├── tiled │ │ ├── TiledMapTest.cpp │ │ └── details │ │ │ ├── TmxAnimationTest.cpp │ │ │ ├── TmxChunkTest.cpp │ │ │ ├── TmxDataCommonTest.cpp │ │ │ ├── TmxDataTest.cpp │ │ │ ├── TmxEllipseTest.cpp │ │ │ ├── TmxFrameTest.cpp │ │ │ ├── TmxGridTest.cpp │ │ │ ├── TmxGroupTest.cpp │ │ │ ├── TmxImageLayerTest.cpp │ │ │ ├── TmxImageTest.cpp │ │ │ ├── TmxLayerTest.cpp │ │ │ ├── TmxMapTest.cpp │ │ │ ├── TmxObjectGroupTest.cpp │ │ │ ├── TmxObjectTest.cpp │ │ │ ├── TmxPointTest.cpp │ │ │ ├── TmxPolygonTest.cpp │ │ │ ├── TmxPolylineTest.cpp │ │ │ ├── TmxPropertiesTest.cpp │ │ │ ├── TmxPropertyTest.cpp │ │ │ ├── TmxTemplateTest.cpp │ │ │ ├── TmxTerrainTest.cpp │ │ │ ├── TmxTerrainTypesTest.cpp │ │ │ ├── TmxTextTest.cpp │ │ │ ├── TmxTileOffsetTest.cpp │ │ │ ├── TmxTileSetTest.cpp │ │ │ ├── TmxTileTest.cpp │ │ │ ├── TmxWangCornerColorTest.cpp │ │ │ ├── TmxWangEdgeColorTest.cpp │ │ │ ├── TmxWangSetTest.cpp │ │ │ ├── TmxWangSetsTest.cpp │ │ │ └── TmxWangTileTest.cpp │ ├── time │ │ ├── DurationStringTest.cpp │ │ ├── DurationTest.cpp │ │ ├── ElapsedTimeTest.cpp │ │ ├── NtpClientTest.cpp │ │ ├── SyncedWaitTest.cpp │ │ ├── TimePointTest.cpp │ │ └── TimeTest.cpp │ ├── tmp │ │ ├── BitTest.cpp │ │ ├── NumberOfArgumentsTest.cpp │ │ ├── NumberOfDigitsTest.cpp │ │ └── PowerTest.cpp │ ├── tty │ │ └── TcesTest.cpp │ ├── type │ │ └── TypeTableTest.cpp │ ├── typography │ │ └── FontTest.cpp │ ├── util │ │ ├── BufferInfoTest.cpp │ │ ├── ByteStringTest.cpp │ │ ├── ByteTest.cpp │ │ ├── OffsetOfTest.cpp │ │ ├── TestUtilsTest.cpp │ │ ├── VersionCompatibleTest.cpp │ │ └── VersionTest.cpp │ ├── uvpp │ │ ├── AsyncTest.cpp │ │ ├── DnsTest.cpp │ │ ├── IdleTest.cpp │ │ ├── LoopTest.cpp │ │ ├── NativeTest.cpp │ │ ├── PipeTest.cpp │ │ ├── PollTest.cpp │ │ ├── ProcessTest.cpp │ │ ├── SignalTest.cpp │ │ ├── TimerTest.cpp │ │ ├── UdpTest.cpp │ │ ├── UvCommonTest.cpp │ │ ├── UvUtilsTest.cpp │ │ └── ex │ │ │ ├── RequestQueueTest.cpp │ │ │ ├── SafetyAsyncTest.cpp │ │ │ └── TlsTcpTest.cpp │ └── uvxx │ │ ├── UxAsyncTest.cpp │ │ ├── UxFsEventTest.cpp │ │ ├── UxFsPollTest.cpp │ │ ├── UxIdleTest.cpp │ │ ├── UxPipeTest.cpp │ │ ├── UxPollTest.cpp │ │ ├── UxProcessTest.cpp │ │ ├── UxSignalTest.cpp │ │ ├── UxTimerTest.cpp │ │ └── UxUdpTest.cpp ├── project.cmake └── tester.cpp ├── tlua ├── project.cmake └── tlua.cpp ├── tool ├── tool.py └── tools ├── libtbshare ├── libtbshare.cpp └── project.cmake └── tbproc ├── project.cmake └── tbproc.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # GIT ATTRIBUTES FILE. 2 | 3 | *.bat -crlf 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/HISTORY -------------------------------------------------------------------------------- /INFORMATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/INFORMATION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/_config.yml -------------------------------------------------------------------------------- /cmake/TbagConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagConfig.cmake -------------------------------------------------------------------------------- /cmake/TbagDebug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagDebug.cmake -------------------------------------------------------------------------------- /cmake/TbagFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagFlags.cmake -------------------------------------------------------------------------------- /cmake/TbagInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagInformation.cmake -------------------------------------------------------------------------------- /cmake/TbagModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagModules.cmake -------------------------------------------------------------------------------- /cmake/TbagPreview.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagPreview.cmake -------------------------------------------------------------------------------- /cmake/TbagProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagProject.cmake -------------------------------------------------------------------------------- /cmake/TbagUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/cmake/TbagUtils.cmake -------------------------------------------------------------------------------- /dep/simdpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/.gitignore -------------------------------------------------------------------------------- /dep/simdpp/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/LICENSE_1_0.txt -------------------------------------------------------------------------------- /dep/simdpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/README.md -------------------------------------------------------------------------------- /dep/simdpp/simdpp/core/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/core/cast.h -------------------------------------------------------------------------------- /dep/simdpp/simdpp/core/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/core/load.h -------------------------------------------------------------------------------- /dep/simdpp/simdpp/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/expr.h -------------------------------------------------------------------------------- /dep/simdpp/simdpp/expr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/expr.inl -------------------------------------------------------------------------------- /dep/simdpp/simdpp/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/simd.h -------------------------------------------------------------------------------- /dep/simdpp/simdpp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/types.h -------------------------------------------------------------------------------- /dep/simdpp/simdpp/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/types/any.h -------------------------------------------------------------------------------- /dep/simdpp/simdpp/types/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/types/fwd.h -------------------------------------------------------------------------------- /dep/simdpp/simdpp/types/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/simdpp/simdpp/types/tag.h -------------------------------------------------------------------------------- /dep/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/stb/README.md -------------------------------------------------------------------------------- /dep/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/stb/stb_image.h -------------------------------------------------------------------------------- /dep/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/stb/stb_image_resize.h -------------------------------------------------------------------------------- /dep/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/stb/stb_image_write.h -------------------------------------------------------------------------------- /dep/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/dep/stb/stb_truetype.h -------------------------------------------------------------------------------- /doc/css/c2doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/doc/css/c2doc.css -------------------------------------------------------------------------------- /doc/css/opblock.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/doc/css/opblock.test.html -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/docker-build.sh -------------------------------------------------------------------------------- /docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/docker-run.sh -------------------------------------------------------------------------------- /external/External.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/External.cmake -------------------------------------------------------------------------------- /external/archive/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/archive/COPYING -------------------------------------------------------------------------------- /external/archive/build/version: -------------------------------------------------------------------------------- 1 | 3003003 2 | -------------------------------------------------------------------------------- /external/asmjit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/asmjit/.gitignore -------------------------------------------------------------------------------- /external/asmjit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/asmjit/LICENSE.md -------------------------------------------------------------------------------- /external/asmjit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/asmjit/README -------------------------------------------------------------------------------- /external/asmjit/asmjit.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/asmjit/asmjit.natvis -------------------------------------------------------------------------------- /external/asmjit/test/asmjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/asmjit/test/asmjit.h -------------------------------------------------------------------------------- /external/asmjit/test/broken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/asmjit/test/broken.h -------------------------------------------------------------------------------- /external/asmjit/tools/tablegen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | node ./tablegen-x86.js 4 | -------------------------------------------------------------------------------- /external/blend2d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/blend2d/.gitignore -------------------------------------------------------------------------------- /external/blend2d/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/blend2d/LICENSE.md -------------------------------------------------------------------------------- /external/blend2d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/blend2d/README.md -------------------------------------------------------------------------------- /external/blend2d/src/blend2d/blbitarray.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/bzip2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/CHANGES -------------------------------------------------------------------------------- /external/bzip2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/CMakeLists.txt -------------------------------------------------------------------------------- /external/bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/LICENSE -------------------------------------------------------------------------------- /external/bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/README -------------------------------------------------------------------------------- /external/bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/blocksort.c -------------------------------------------------------------------------------- /external/bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/bzlib.c -------------------------------------------------------------------------------- /external/bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/bzlib.h -------------------------------------------------------------------------------- /external/bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/compress.c -------------------------------------------------------------------------------- /external/bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/crctable.c -------------------------------------------------------------------------------- /external/bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/decompress.c -------------------------------------------------------------------------------- /external/bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/huffman.c -------------------------------------------------------------------------------- /external/bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/bzip2/randtable.c -------------------------------------------------------------------------------- /external/civetweb/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/civetweb/LICENSE.md -------------------------------------------------------------------------------- /external/civetweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/civetweb/README.md -------------------------------------------------------------------------------- /external/civetweb/src/md5.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/civetweb/src/md5.inl -------------------------------------------------------------------------------- /external/date/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/date/.gitignore -------------------------------------------------------------------------------- /external/date/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/date/CMakeLists.txt -------------------------------------------------------------------------------- /external/date/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/date/LICENSE.txt -------------------------------------------------------------------------------- /external/date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/date/README.md -------------------------------------------------------------------------------- /external/date/src/ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/date/src/ios.mm -------------------------------------------------------------------------------- /external/date/src/tz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/date/src/tz.cpp -------------------------------------------------------------------------------- /external/demangle/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/demangle/demangle.h -------------------------------------------------------------------------------- /external/flatbuffers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/flatbuffers/LICENSE -------------------------------------------------------------------------------- /external/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/freetype/README -------------------------------------------------------------------------------- /external/freetype/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/freetype/src/Jamfile -------------------------------------------------------------------------------- /external/gperftools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/gperftools/COPYING -------------------------------------------------------------------------------- /external/gperftools/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/gperftools/INSTALL -------------------------------------------------------------------------------- /external/gperftools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/gperftools/README -------------------------------------------------------------------------------- /external/gperftools/src/pprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/gperftools/src/pprof -------------------------------------------------------------------------------- /external/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /external/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/gtest/LICENSE -------------------------------------------------------------------------------- /external/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/gtest/src/gtest.cc -------------------------------------------------------------------------------- /external/http-parser/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/http-parser/bench.c -------------------------------------------------------------------------------- /external/http-parser/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/http-parser/test.c -------------------------------------------------------------------------------- /external/icu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/CMakeLists.txt -------------------------------------------------------------------------------- /external/icu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/LICENSE -------------------------------------------------------------------------------- /external/icu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/README.md -------------------------------------------------------------------------------- /external/icu/common/bmpset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/bmpset.h -------------------------------------------------------------------------------- /external/icu/common/brkeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/brkeng.h -------------------------------------------------------------------------------- /external/icu/common/charstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/charstr.h -------------------------------------------------------------------------------- /external/icu/common/cmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cmemory.c -------------------------------------------------------------------------------- /external/icu/common/cmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cmemory.h -------------------------------------------------------------------------------- /external/icu/common/cstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cstr.cpp -------------------------------------------------------------------------------- /external/icu/common/cstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cstr.h -------------------------------------------------------------------------------- /external/icu/common/cstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cstring.c -------------------------------------------------------------------------------- /external/icu/common/cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cstring.h -------------------------------------------------------------------------------- /external/icu/common/cwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cwchar.c -------------------------------------------------------------------------------- /external/icu/common/cwchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/cwchar.h -------------------------------------------------------------------------------- /external/icu/common/dictbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/dictbe.h -------------------------------------------------------------------------------- /external/icu/common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/hash.h -------------------------------------------------------------------------------- /external/icu/common/locid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/locid.cpp -------------------------------------------------------------------------------- /external/icu/common/locmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/locmap.c -------------------------------------------------------------------------------- /external/icu/common/locmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/locmap.h -------------------------------------------------------------------------------- /external/icu/common/locutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/locutil.h -------------------------------------------------------------------------------- /external/icu/common/msvcres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/msvcres.h -------------------------------------------------------------------------------- /external/icu/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/mutex.h -------------------------------------------------------------------------------- /external/icu/common/putil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/putil.cpp -------------------------------------------------------------------------------- /external/icu/common/rbbi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/rbbi.cpp -------------------------------------------------------------------------------- /external/icu/common/rbbirb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/rbbirb.h -------------------------------------------------------------------------------- /external/icu/common/rbbirpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/rbbirpt.h -------------------------------------------------------------------------------- /external/icu/common/serv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/serv.cpp -------------------------------------------------------------------------------- /external/icu/common/serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/serv.h -------------------------------------------------------------------------------- /external/icu/common/servloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/servloc.h -------------------------------------------------------------------------------- /external/icu/common/uassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uassert.h -------------------------------------------------------------------------------- /external/icu/common/ubidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ubidi.c -------------------------------------------------------------------------------- /external/icu/common/ubidiln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ubidiln.c -------------------------------------------------------------------------------- /external/icu/common/ubrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ubrk.cpp -------------------------------------------------------------------------------- /external/icu/common/ucase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucase.cpp -------------------------------------------------------------------------------- /external/icu/common/ucase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucase.h -------------------------------------------------------------------------------- /external/icu/common/ucat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucat.c -------------------------------------------------------------------------------- /external/icu/common/uchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uchar.c -------------------------------------------------------------------------------- /external/icu/common/ucln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucln.h -------------------------------------------------------------------------------- /external/icu/common/ucnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucnv.c -------------------------------------------------------------------------------- /external/icu/common/ucnv_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucnv_cb.c -------------------------------------------------------------------------------- /external/icu/common/ucnv_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucnv_ct.c -------------------------------------------------------------------------------- /external/icu/common/ucnv_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucnv_io.h -------------------------------------------------------------------------------- /external/icu/common/ucnv_u7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucnv_u7.c -------------------------------------------------------------------------------- /external/icu/common/ucnv_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucnv_u8.c -------------------------------------------------------------------------------- /external/icu/common/ucnvhz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucnvhz.c -------------------------------------------------------------------------------- /external/icu/common/ucurr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ucurr.cpp -------------------------------------------------------------------------------- /external/icu/common/udata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/udata.cpp -------------------------------------------------------------------------------- /external/icu/common/uenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uenum.c -------------------------------------------------------------------------------- /external/icu/common/uhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uhash.c -------------------------------------------------------------------------------- /external/icu/common/uhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uhash.h -------------------------------------------------------------------------------- /external/icu/common/uidna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uidna.cpp -------------------------------------------------------------------------------- /external/icu/common/uinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uinit.cpp -------------------------------------------------------------------------------- /external/icu/common/uiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uiter.cpp -------------------------------------------------------------------------------- /external/icu/common/ulist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ulist.c -------------------------------------------------------------------------------- /external/icu/common/ulist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ulist.h -------------------------------------------------------------------------------- /external/icu/common/uloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uloc.cpp -------------------------------------------------------------------------------- /external/icu/common/ulocimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ulocimp.h -------------------------------------------------------------------------------- /external/icu/common/umath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/umath.c -------------------------------------------------------------------------------- /external/icu/common/umutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/umutex.h -------------------------------------------------------------------------------- /external/icu/common/unorm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/unorm.cpp -------------------------------------------------------------------------------- /external/icu/common/uprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uprops.h -------------------------------------------------------------------------------- /external/icu/common/uresimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uresimp.h -------------------------------------------------------------------------------- /external/icu/common/uscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uscript.c -------------------------------------------------------------------------------- /external/icu/common/uset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uset.cpp -------------------------------------------------------------------------------- /external/icu/common/ustrfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ustrfmt.c -------------------------------------------------------------------------------- /external/icu/common/ustrfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/ustrfmt.h -------------------------------------------------------------------------------- /external/icu/common/utext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/utext.cpp -------------------------------------------------------------------------------- /external/icu/common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/util.cpp -------------------------------------------------------------------------------- /external/icu/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/util.h -------------------------------------------------------------------------------- /external/icu/common/utrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/utrace.c -------------------------------------------------------------------------------- /external/icu/common/utrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/utrie.cpp -------------------------------------------------------------------------------- /external/icu/common/utrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/utrie.h -------------------------------------------------------------------------------- /external/icu/common/utrie2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/utrie2.h -------------------------------------------------------------------------------- /external/icu/common/uts46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uts46.cpp -------------------------------------------------------------------------------- /external/icu/common/utypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/utypes.c -------------------------------------------------------------------------------- /external/icu/common/uvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/uvector.h -------------------------------------------------------------------------------- /external/icu/common/wintz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/wintz.c -------------------------------------------------------------------------------- /external/icu/common/wintz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/common/wintz.h -------------------------------------------------------------------------------- /external/icu/i18n/anytrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/anytrans.h -------------------------------------------------------------------------------- /external/icu/i18n/astro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/astro.cpp -------------------------------------------------------------------------------- /external/icu/i18n/astro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/astro.h -------------------------------------------------------------------------------- /external/icu/i18n/basictz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/basictz.cpp -------------------------------------------------------------------------------- /external/icu/i18n/bocsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/bocsu.cpp -------------------------------------------------------------------------------- /external/icu/i18n/bocsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/bocsu.h -------------------------------------------------------------------------------- /external/icu/i18n/brktrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/brktrans.h -------------------------------------------------------------------------------- /external/icu/i18n/buddhcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/buddhcal.h -------------------------------------------------------------------------------- /external/icu/i18n/casetrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/casetrn.cpp -------------------------------------------------------------------------------- /external/icu/i18n/casetrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/casetrn.h -------------------------------------------------------------------------------- /external/icu/i18n/cecal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/cecal.cpp -------------------------------------------------------------------------------- /external/icu/i18n/cecal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/cecal.h -------------------------------------------------------------------------------- /external/icu/i18n/chnsecal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/chnsecal.h -------------------------------------------------------------------------------- /external/icu/i18n/coleitr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/coleitr.cpp -------------------------------------------------------------------------------- /external/icu/i18n/coll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/coll.cpp -------------------------------------------------------------------------------- /external/icu/i18n/collation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/collation.h -------------------------------------------------------------------------------- /external/icu/i18n/coptccal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/coptccal.h -------------------------------------------------------------------------------- /external/icu/i18n/cpdtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/cpdtrans.h -------------------------------------------------------------------------------- /external/icu/i18n/csdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csdetect.h -------------------------------------------------------------------------------- /external/icu/i18n/csmatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csmatch.cpp -------------------------------------------------------------------------------- /external/icu/i18n/csmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csmatch.h -------------------------------------------------------------------------------- /external/icu/i18n/csr2022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csr2022.cpp -------------------------------------------------------------------------------- /external/icu/i18n/csr2022.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csr2022.h -------------------------------------------------------------------------------- /external/icu/i18n/csrecog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrecog.cpp -------------------------------------------------------------------------------- /external/icu/i18n/csrecog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrecog.h -------------------------------------------------------------------------------- /external/icu/i18n/csrmbcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrmbcs.cpp -------------------------------------------------------------------------------- /external/icu/i18n/csrmbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrmbcs.h -------------------------------------------------------------------------------- /external/icu/i18n/csrsbcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrsbcs.cpp -------------------------------------------------------------------------------- /external/icu/i18n/csrsbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrsbcs.h -------------------------------------------------------------------------------- /external/icu/i18n/csrucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrucode.h -------------------------------------------------------------------------------- /external/icu/i18n/csrutf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrutf8.cpp -------------------------------------------------------------------------------- /external/icu/i18n/csrutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/csrutf8.h -------------------------------------------------------------------------------- /external/icu/i18n/curramt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/curramt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/currfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/currfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/currfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/currfmt.h -------------------------------------------------------------------------------- /external/icu/i18n/dangical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/dangical.h -------------------------------------------------------------------------------- /external/icu/i18n/datefmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/datefmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/dcfmtimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/dcfmtimp.h -------------------------------------------------------------------------------- /external/icu/i18n/decNumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/decNumber.c -------------------------------------------------------------------------------- /external/icu/i18n/decNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/decNumber.h -------------------------------------------------------------------------------- /external/icu/i18n/decfmtst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/decfmtst.h -------------------------------------------------------------------------------- /external/icu/i18n/digitlst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/digitlst.h -------------------------------------------------------------------------------- /external/icu/i18n/dtrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/dtrule.cpp -------------------------------------------------------------------------------- /external/icu/i18n/esctrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/esctrn.cpp -------------------------------------------------------------------------------- /external/icu/i18n/esctrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/esctrn.h -------------------------------------------------------------------------------- /external/icu/i18n/ethpccal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ethpccal.h -------------------------------------------------------------------------------- /external/icu/i18n/fmtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/fmtable.cpp -------------------------------------------------------------------------------- /external/icu/i18n/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/format.cpp -------------------------------------------------------------------------------- /external/icu/i18n/fphdlimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/fphdlimp.h -------------------------------------------------------------------------------- /external/icu/i18n/funcrepl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/funcrepl.h -------------------------------------------------------------------------------- /external/icu/i18n/gender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/gender.cpp -------------------------------------------------------------------------------- /external/icu/i18n/gregoimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/gregoimp.h -------------------------------------------------------------------------------- /external/icu/i18n/hebrwcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/hebrwcal.h -------------------------------------------------------------------------------- /external/icu/i18n/indiancal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/indiancal.h -------------------------------------------------------------------------------- /external/icu/i18n/inputext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/inputext.h -------------------------------------------------------------------------------- /external/icu/i18n/islamcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/islamcal.h -------------------------------------------------------------------------------- /external/icu/i18n/japancal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/japancal.h -------------------------------------------------------------------------------- /external/icu/i18n/measfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/measfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/measure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/measure.cpp -------------------------------------------------------------------------------- /external/icu/i18n/msgfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/msgfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/name2uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/name2uni.h -------------------------------------------------------------------------------- /external/icu/i18n/nfrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nfrlist.h -------------------------------------------------------------------------------- /external/icu/i18n/nfrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nfrs.cpp -------------------------------------------------------------------------------- /external/icu/i18n/nfrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nfrs.h -------------------------------------------------------------------------------- /external/icu/i18n/nfrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nfrule.cpp -------------------------------------------------------------------------------- /external/icu/i18n/nfrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nfrule.h -------------------------------------------------------------------------------- /external/icu/i18n/nfsubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nfsubs.cpp -------------------------------------------------------------------------------- /external/icu/i18n/nfsubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nfsubs.h -------------------------------------------------------------------------------- /external/icu/i18n/nortrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nortrans.h -------------------------------------------------------------------------------- /external/icu/i18n/nultrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/nultrans.h -------------------------------------------------------------------------------- /external/icu/i18n/numfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/numfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/numsys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/numsys.cpp -------------------------------------------------------------------------------- /external/icu/i18n/olsontz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/olsontz.cpp -------------------------------------------------------------------------------- /external/icu/i18n/olsontz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/olsontz.h -------------------------------------------------------------------------------- /external/icu/i18n/persncal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/persncal.h -------------------------------------------------------------------------------- /external/icu/i18n/plurfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/plurfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/precision.h -------------------------------------------------------------------------------- /external/icu/i18n/quant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/quant.cpp -------------------------------------------------------------------------------- /external/icu/i18n/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/quant.h -------------------------------------------------------------------------------- /external/icu/i18n/rbnf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbnf.cpp -------------------------------------------------------------------------------- /external/icu/i18n/rbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/rbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbt.h -------------------------------------------------------------------------------- /external/icu/i18n/rbt_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbt_data.h -------------------------------------------------------------------------------- /external/icu/i18n/rbt_pars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbt_pars.h -------------------------------------------------------------------------------- /external/icu/i18n/rbt_rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbt_rule.h -------------------------------------------------------------------------------- /external/icu/i18n/rbt_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbt_set.cpp -------------------------------------------------------------------------------- /external/icu/i18n/rbt_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbt_set.h -------------------------------------------------------------------------------- /external/icu/i18n/rbtz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rbtz.cpp -------------------------------------------------------------------------------- /external/icu/i18n/regexcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/regexcmp.h -------------------------------------------------------------------------------- /external/icu/i18n/regexcst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/regexcst.h -------------------------------------------------------------------------------- /external/icu/i18n/regeximp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/regeximp.h -------------------------------------------------------------------------------- /external/icu/i18n/regexst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/regexst.cpp -------------------------------------------------------------------------------- /external/icu/i18n/regexst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/regexst.h -------------------------------------------------------------------------------- /external/icu/i18n/regextxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/regextxt.h -------------------------------------------------------------------------------- /external/icu/i18n/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/region.cpp -------------------------------------------------------------------------------- /external/icu/i18n/reldtfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/reldtfmt.h -------------------------------------------------------------------------------- /external/icu/i18n/rematch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/rematch.cpp -------------------------------------------------------------------------------- /external/icu/i18n/remtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/remtrans.h -------------------------------------------------------------------------------- /external/icu/i18n/scriptset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/scriptset.h -------------------------------------------------------------------------------- /external/icu/i18n/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/search.cpp -------------------------------------------------------------------------------- /external/icu/i18n/selfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/selfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/smpdtfst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/smpdtfst.h -------------------------------------------------------------------------------- /external/icu/i18n/sortkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/sortkey.cpp -------------------------------------------------------------------------------- /external/icu/i18n/strmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/strmatch.h -------------------------------------------------------------------------------- /external/icu/i18n/strrepl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/strrepl.cpp -------------------------------------------------------------------------------- /external/icu/i18n/strrepl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/strrepl.h -------------------------------------------------------------------------------- /external/icu/i18n/taiwncal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/taiwncal.h -------------------------------------------------------------------------------- /external/icu/i18n/titletrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/titletrn.h -------------------------------------------------------------------------------- /external/icu/i18n/tmunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tmunit.cpp -------------------------------------------------------------------------------- /external/icu/i18n/tmutamt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tmutamt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/tmutfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tmutfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/tolowtrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tolowtrn.h -------------------------------------------------------------------------------- /external/icu/i18n/toupptrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/toupptrn.h -------------------------------------------------------------------------------- /external/icu/i18n/transreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/transreg.h -------------------------------------------------------------------------------- /external/icu/i18n/tridpars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tridpars.h -------------------------------------------------------------------------------- /external/icu/i18n/tzfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tzfmt.cpp -------------------------------------------------------------------------------- /external/icu/i18n/tzgnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tzgnames.h -------------------------------------------------------------------------------- /external/icu/i18n/tznames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tznames.cpp -------------------------------------------------------------------------------- /external/icu/i18n/tzrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tzrule.cpp -------------------------------------------------------------------------------- /external/icu/i18n/tztrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/tztrans.cpp -------------------------------------------------------------------------------- /external/icu/i18n/ucal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ucal.cpp -------------------------------------------------------------------------------- /external/icu/i18n/ucln_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ucln_in.cpp -------------------------------------------------------------------------------- /external/icu/i18n/ucln_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ucln_in.h -------------------------------------------------------------------------------- /external/icu/i18n/ucol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ucol.cpp -------------------------------------------------------------------------------- /external/icu/i18n/ucol_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ucol_imp.h -------------------------------------------------------------------------------- /external/icu/i18n/ucsdet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ucsdet.cpp -------------------------------------------------------------------------------- /external/icu/i18n/udat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/udat.cpp -------------------------------------------------------------------------------- /external/icu/i18n/udatpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/udatpg.cpp -------------------------------------------------------------------------------- /external/icu/i18n/ulocdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ulocdata.c -------------------------------------------------------------------------------- /external/icu/i18n/umsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/umsg.cpp -------------------------------------------------------------------------------- /external/icu/i18n/umsg_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/umsg_imp.h -------------------------------------------------------------------------------- /external/icu/i18n/unesctrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/unesctrn.h -------------------------------------------------------------------------------- /external/icu/i18n/uni2name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/uni2name.h -------------------------------------------------------------------------------- /external/icu/i18n/unum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/unum.cpp -------------------------------------------------------------------------------- /external/icu/i18n/unumsys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/unumsys.cpp -------------------------------------------------------------------------------- /external/icu/i18n/uregex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/uregex.cpp -------------------------------------------------------------------------------- /external/icu/i18n/uregexc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/uregexc.cpp -------------------------------------------------------------------------------- /external/icu/i18n/uregion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/uregion.cpp -------------------------------------------------------------------------------- /external/icu/i18n/usearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/usearch.cpp -------------------------------------------------------------------------------- /external/icu/i18n/uspoof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/uspoof.cpp -------------------------------------------------------------------------------- /external/icu/i18n/usrchimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/usrchimp.h -------------------------------------------------------------------------------- /external/icu/i18n/utmscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/utmscale.c -------------------------------------------------------------------------------- /external/icu/i18n/utrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/utrans.cpp -------------------------------------------------------------------------------- /external/icu/i18n/vtzone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/vtzone.cpp -------------------------------------------------------------------------------- /external/icu/i18n/vzone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/vzone.cpp -------------------------------------------------------------------------------- /external/icu/i18n/vzone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/vzone.h -------------------------------------------------------------------------------- /external/icu/i18n/windtfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/windtfmt.h -------------------------------------------------------------------------------- /external/icu/i18n/winnmfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/winnmfmt.h -------------------------------------------------------------------------------- /external/icu/i18n/wintzimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/wintzimpl.h -------------------------------------------------------------------------------- /external/icu/i18n/zonemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/zonemeta.h -------------------------------------------------------------------------------- /external/icu/i18n/zrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/zrule.cpp -------------------------------------------------------------------------------- /external/icu/i18n/zrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/zrule.h -------------------------------------------------------------------------------- /external/icu/i18n/ztrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ztrans.cpp -------------------------------------------------------------------------------- /external/icu/i18n/ztrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/icu/i18n/ztrans.h -------------------------------------------------------------------------------- /external/lemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lemon/CMakeLists.txt -------------------------------------------------------------------------------- /external/lemon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lemon/LICENSE -------------------------------------------------------------------------------- /external/lemon/src/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lemon/src/base.cc -------------------------------------------------------------------------------- /external/lemon/src/color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lemon/src/color.cc -------------------------------------------------------------------------------- /external/lemon/src/lp_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lemon/src/lp_base.cc -------------------------------------------------------------------------------- /external/lemon/src/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lemon/src/random.cc -------------------------------------------------------------------------------- /external/lfds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lfds/CMakeLists.txt -------------------------------------------------------------------------------- /external/lmdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/CMakeLists.txt -------------------------------------------------------------------------------- /external/lmdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/LICENSE -------------------------------------------------------------------------------- /external/lmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/README.md -------------------------------------------------------------------------------- /external/lmdb/lmdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/lmdb.h -------------------------------------------------------------------------------- /external/lmdb/lmdb_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/lmdb_export.h -------------------------------------------------------------------------------- /external/lmdb/mdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/mdb.c -------------------------------------------------------------------------------- /external/lmdb/midl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/midl.c -------------------------------------------------------------------------------- /external/lmdb/midl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lmdb/midl.h -------------------------------------------------------------------------------- /external/luajit/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/COPYRIGHT -------------------------------------------------------------------------------- /external/luajit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/Makefile -------------------------------------------------------------------------------- /external/luajit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/README -------------------------------------------------------------------------------- /external/luajit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/README.md -------------------------------------------------------------------------------- /external/luajit/dist.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/dist.info -------------------------------------------------------------------------------- /external/luajit/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/doc/faq.html -------------------------------------------------------------------------------- /external/luajit/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/etc/luajit.1 -------------------------------------------------------------------------------- /external/luajit/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/etc/luajit.pc -------------------------------------------------------------------------------- /external/luajit/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/Makefile -------------------------------------------------------------------------------- /external/luajit/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /external/luajit/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/jit/v.lua -------------------------------------------------------------------------------- /external/luajit/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lauxlib.h -------------------------------------------------------------------------------- /external/luajit/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lib_aux.c -------------------------------------------------------------------------------- /external/luajit/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lib_bit.c -------------------------------------------------------------------------------- /external/luajit/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lib_ffi.c -------------------------------------------------------------------------------- /external/luajit/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lib_io.c -------------------------------------------------------------------------------- /external/luajit/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lib_jit.c -------------------------------------------------------------------------------- /external/luajit/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lib_os.c -------------------------------------------------------------------------------- /external/luajit/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj.supp -------------------------------------------------------------------------------- /external/luajit/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_api.c -------------------------------------------------------------------------------- /external/luajit/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_arch.h -------------------------------------------------------------------------------- /external/luajit/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_asm.c -------------------------------------------------------------------------------- /external/luajit/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_asm.h -------------------------------------------------------------------------------- /external/luajit/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_bc.c -------------------------------------------------------------------------------- /external/luajit/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_bc.h -------------------------------------------------------------------------------- /external/luajit/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_char.c -------------------------------------------------------------------------------- /external/luajit/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_char.h -------------------------------------------------------------------------------- /external/luajit/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_clib.c -------------------------------------------------------------------------------- /external/luajit/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_clib.h -------------------------------------------------------------------------------- /external/luajit/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_def.h -------------------------------------------------------------------------------- /external/luajit/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_err.c -------------------------------------------------------------------------------- /external/luajit/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_err.h -------------------------------------------------------------------------------- /external/luajit/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_ff.h -------------------------------------------------------------------------------- /external/luajit/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_func.c -------------------------------------------------------------------------------- /external/luajit/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_func.h -------------------------------------------------------------------------------- /external/luajit/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_gc.c -------------------------------------------------------------------------------- /external/luajit/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_gc.h -------------------------------------------------------------------------------- /external/luajit/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_ir.c -------------------------------------------------------------------------------- /external/luajit/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_ir.h -------------------------------------------------------------------------------- /external/luajit/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_jit.h -------------------------------------------------------------------------------- /external/luajit/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_lex.c -------------------------------------------------------------------------------- /external/luajit/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_lex.h -------------------------------------------------------------------------------- /external/luajit/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_lib.c -------------------------------------------------------------------------------- /external/luajit/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_lib.h -------------------------------------------------------------------------------- /external/luajit/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_load.c -------------------------------------------------------------------------------- /external/luajit/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_meta.c -------------------------------------------------------------------------------- /external/luajit/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_meta.h -------------------------------------------------------------------------------- /external/luajit/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_obj.c -------------------------------------------------------------------------------- /external/luajit/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_obj.h -------------------------------------------------------------------------------- /external/luajit/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_snap.c -------------------------------------------------------------------------------- /external/luajit/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_snap.h -------------------------------------------------------------------------------- /external/luajit/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_str.c -------------------------------------------------------------------------------- /external/luajit/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_str.h -------------------------------------------------------------------------------- /external/luajit/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_tab.c -------------------------------------------------------------------------------- /external/luajit/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_tab.h -------------------------------------------------------------------------------- /external/luajit/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lj_vm.h -------------------------------------------------------------------------------- /external/luajit/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/ljamalg.c -------------------------------------------------------------------------------- /external/luajit/src/lua.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lua.def -------------------------------------------------------------------------------- /external/luajit/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lua.h -------------------------------------------------------------------------------- /external/luajit/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lua.hpp -------------------------------------------------------------------------------- /external/luajit/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/luajit.c -------------------------------------------------------------------------------- /external/luajit/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/luajit.h -------------------------------------------------------------------------------- /external/luajit/src/luajit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/luajit.rc -------------------------------------------------------------------------------- /external/luajit/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/lualib.h -------------------------------------------------------------------------------- /external/luajit/src/wmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/luajit/src/wmain.c -------------------------------------------------------------------------------- /external/lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /external/lzma/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lzma/COPYING -------------------------------------------------------------------------------- /external/lzma/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/lzma/config.h.in -------------------------------------------------------------------------------- /external/minizip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/README.md -------------------------------------------------------------------------------- /external/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/crypt.h -------------------------------------------------------------------------------- /external/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/ioapi.c -------------------------------------------------------------------------------- /external/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/ioapi.h -------------------------------------------------------------------------------- /external/minizip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/iowin32.c -------------------------------------------------------------------------------- /external/minizip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/iowin32.h -------------------------------------------------------------------------------- /external/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/unzip.c -------------------------------------------------------------------------------- /external/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/unzip.h -------------------------------------------------------------------------------- /external/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/zip.c -------------------------------------------------------------------------------- /external/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/minizip/zip.h -------------------------------------------------------------------------------- /external/nng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/CMakeLists.txt -------------------------------------------------------------------------------- /external/nng/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/LICENSE.txt -------------------------------------------------------------------------------- /external/nng/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/README.adoc -------------------------------------------------------------------------------- /external/nng/src/core/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/aio.c -------------------------------------------------------------------------------- /external/nng/src/core/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/aio.h -------------------------------------------------------------------------------- /external/nng/src/core/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/clock.c -------------------------------------------------------------------------------- /external/nng/src/core/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/clock.h -------------------------------------------------------------------------------- /external/nng/src/core/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/defs.h -------------------------------------------------------------------------------- /external/nng/src/core/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/file.c -------------------------------------------------------------------------------- /external/nng/src/core/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/file.h -------------------------------------------------------------------------------- /external/nng/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/init.c -------------------------------------------------------------------------------- /external/nng/src/core/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/init.h -------------------------------------------------------------------------------- /external/nng/src/core/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/list.c -------------------------------------------------------------------------------- /external/nng/src/core/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/list.h -------------------------------------------------------------------------------- /external/nng/src/core/lmq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/lmq.c -------------------------------------------------------------------------------- /external/nng/src/core/lmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/lmq.h -------------------------------------------------------------------------------- /external/nng/src/core/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/panic.c -------------------------------------------------------------------------------- /external/nng/src/core/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/panic.h -------------------------------------------------------------------------------- /external/nng/src/core/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/pipe.c -------------------------------------------------------------------------------- /external/nng/src/core/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/pipe.h -------------------------------------------------------------------------------- /external/nng/src/core/reap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/reap.c -------------------------------------------------------------------------------- /external/nng/src/core/reap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/reap.h -------------------------------------------------------------------------------- /external/nng/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/stats.c -------------------------------------------------------------------------------- /external/nng/src/core/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/stats.h -------------------------------------------------------------------------------- /external/nng/src/core/strs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/strs.c -------------------------------------------------------------------------------- /external/nng/src/core/strs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/strs.h -------------------------------------------------------------------------------- /external/nng/src/core/taskq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/taskq.c -------------------------------------------------------------------------------- /external/nng/src/core/taskq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/taskq.h -------------------------------------------------------------------------------- /external/nng/src/core/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/tcp.h -------------------------------------------------------------------------------- /external/nng/src/core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/timer.c -------------------------------------------------------------------------------- /external/nng/src/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/timer.h -------------------------------------------------------------------------------- /external/nng/src/core/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/url.c -------------------------------------------------------------------------------- /external/nng/src/core/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/core/url.h -------------------------------------------------------------------------------- /external/nng/src/nng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/nng/src/nng.c -------------------------------------------------------------------------------- /external/ressl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/CMakeLists.txt -------------------------------------------------------------------------------- /external/ressl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/COPYING -------------------------------------------------------------------------------- /external/ressl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ChangeLog -------------------------------------------------------------------------------- /external/ressl/OPENBSD_BRANCH: -------------------------------------------------------------------------------- 1 | OPENBSD_6_5 2 | -------------------------------------------------------------------------------- /external/ressl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/README.md -------------------------------------------------------------------------------- /external/ressl/README.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/README.windows -------------------------------------------------------------------------------- /external/ressl/VERSION: -------------------------------------------------------------------------------- 1 | 2.9.3 2 | 3 | -------------------------------------------------------------------------------- /external/ressl/crypto/VERSION: -------------------------------------------------------------------------------- 1 | 45:4:0 2 | -------------------------------------------------------------------------------- /external/ressl/crypto/o_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/crypto/o_str.c -------------------------------------------------------------------------------- /external/ressl/include/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/include/tls.h -------------------------------------------------------------------------------- /external/ressl/ssl/VERSION: -------------------------------------------------------------------------------- 1 | 47:5:0 2 | -------------------------------------------------------------------------------- /external/ressl/ssl/bio_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/bio_ssl.c -------------------------------------------------------------------------------- /external/ressl/ssl/bs_ber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/bs_ber.c -------------------------------------------------------------------------------- /external/ressl/ssl/bs_cbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/bs_cbb.c -------------------------------------------------------------------------------- /external/ressl/ssl/bs_cbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/bs_cbs.c -------------------------------------------------------------------------------- /external/ressl/ssl/d1_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/d1_both.c -------------------------------------------------------------------------------- /external/ressl/ssl/d1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/d1_clnt.c -------------------------------------------------------------------------------- /external/ressl/ssl/d1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/d1_enc.c -------------------------------------------------------------------------------- /external/ressl/ssl/d1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/d1_lib.c -------------------------------------------------------------------------------- /external/ressl/ssl/d1_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/d1_pkt.c -------------------------------------------------------------------------------- /external/ressl/ssl/d1_srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/d1_srtp.c -------------------------------------------------------------------------------- /external/ressl/ssl/d1_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/d1_srvr.c -------------------------------------------------------------------------------- /external/ressl/ssl/pqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/pqueue.c -------------------------------------------------------------------------------- /external/ressl/ssl/s3_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/s3_cbc.c -------------------------------------------------------------------------------- /external/ressl/ssl/s3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/s3_lib.c -------------------------------------------------------------------------------- /external/ressl/ssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/srtp.h -------------------------------------------------------------------------------- /external/ressl/ssl/ssl.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/ssl.sym -------------------------------------------------------------------------------- /external/ressl/ssl/ssl_algs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/ssl_algs.c -------------------------------------------------------------------------------- /external/ressl/ssl/ssl_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/ssl_asn1.c -------------------------------------------------------------------------------- /external/ressl/ssl/ssl_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/ssl_both.c -------------------------------------------------------------------------------- /external/ressl/ssl/ssl_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/ssl_cert.c -------------------------------------------------------------------------------- /external/ressl/ssl/ssl_ciph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/ssl_ciph.c -------------------------------------------------------------------------------- /external/ressl/ssl/t1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/t1_enc.c -------------------------------------------------------------------------------- /external/ressl/ssl/t1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/ssl/t1_lib.c -------------------------------------------------------------------------------- /external/ressl/tls/VERSION: -------------------------------------------------------------------------------- 1 | 19:6:0 2 | -------------------------------------------------------------------------------- /external/ressl/tls/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/tls/tls.c -------------------------------------------------------------------------------- /external/ressl/tls/tls.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/ressl/tls/tls.sym -------------------------------------------------------------------------------- /external/sqlite3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/sqlite3/LICENSE -------------------------------------------------------------------------------- /external/sqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/sqlite3/sqlite3.c -------------------------------------------------------------------------------- /external/sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /external/uv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/CMakeLists.txt -------------------------------------------------------------------------------- /external/uv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/LICENSE -------------------------------------------------------------------------------- /external/uv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/README.md -------------------------------------------------------------------------------- /external/uv/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/configure.ac -------------------------------------------------------------------------------- /external/uv/include/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/include/uv.h -------------------------------------------------------------------------------- /external/uv/libuv.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/libuv.pc.in -------------------------------------------------------------------------------- /external/uv/src/fs-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/fs-poll.c -------------------------------------------------------------------------------- /external/uv/src/heap-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/heap-inl.h -------------------------------------------------------------------------------- /external/uv/src/idna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/idna.c -------------------------------------------------------------------------------- /external/uv/src/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/idna.h -------------------------------------------------------------------------------- /external/uv/src/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/inet.c -------------------------------------------------------------------------------- /external/uv/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/queue.h -------------------------------------------------------------------------------- /external/uv/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/random.c -------------------------------------------------------------------------------- /external/uv/src/strscpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/strscpy.c -------------------------------------------------------------------------------- /external/uv/src/strscpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/strscpy.h -------------------------------------------------------------------------------- /external/uv/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/timer.c -------------------------------------------------------------------------------- /external/uv/src/unix/aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/aix.c -------------------------------------------------------------------------------- /external/uv/src/unix/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/core.c -------------------------------------------------------------------------------- /external/uv/src/unix/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/dl.c -------------------------------------------------------------------------------- /external/uv/src/unix/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/fs.c -------------------------------------------------------------------------------- /external/uv/src/unix/ibmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/ibmi.c -------------------------------------------------------------------------------- /external/uv/src/unix/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/loop.c -------------------------------------------------------------------------------- /external/uv/src/unix/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/pipe.c -------------------------------------------------------------------------------- /external/uv/src/unix/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/poll.c -------------------------------------------------------------------------------- /external/uv/src/unix/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/tcp.c -------------------------------------------------------------------------------- /external/uv/src/unix/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/tty.c -------------------------------------------------------------------------------- /external/uv/src/unix/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/unix/udp.c -------------------------------------------------------------------------------- /external/uv/src/uv-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/uv-common.c -------------------------------------------------------------------------------- /external/uv/src/uv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/uv-common.h -------------------------------------------------------------------------------- /external/uv/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/version.c -------------------------------------------------------------------------------- /external/uv/src/win/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/async.c -------------------------------------------------------------------------------- /external/uv/src/win/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/core.c -------------------------------------------------------------------------------- /external/uv/src/win/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/dl.c -------------------------------------------------------------------------------- /external/uv/src/win/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/error.c -------------------------------------------------------------------------------- /external/uv/src/win/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/fs.c -------------------------------------------------------------------------------- /external/uv/src/win/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/pipe.c -------------------------------------------------------------------------------- /external/uv/src/win/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/poll.c -------------------------------------------------------------------------------- /external/uv/src/win/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/tcp.c -------------------------------------------------------------------------------- /external/uv/src/win/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/tty.c -------------------------------------------------------------------------------- /external/uv/src/win/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/udp.c -------------------------------------------------------------------------------- /external/uv/src/win/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/uv/src/win/util.c -------------------------------------------------------------------------------- /external/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/ChangeLog -------------------------------------------------------------------------------- /external/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/INDEX -------------------------------------------------------------------------------- /external/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/README -------------------------------------------------------------------------------- /external/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/adler32.c -------------------------------------------------------------------------------- /external/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/compress.c -------------------------------------------------------------------------------- /external/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/crc32.c -------------------------------------------------------------------------------- /external/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/crc32.h -------------------------------------------------------------------------------- /external/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/deflate.c -------------------------------------------------------------------------------- /external/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/deflate.h -------------------------------------------------------------------------------- /external/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/gzclose.c -------------------------------------------------------------------------------- /external/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/gzguts.h -------------------------------------------------------------------------------- /external/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/gzlib.c -------------------------------------------------------------------------------- /external/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/gzread.c -------------------------------------------------------------------------------- /external/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/gzwrite.c -------------------------------------------------------------------------------- /external/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/infback.c -------------------------------------------------------------------------------- /external/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/inffast.c -------------------------------------------------------------------------------- /external/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/inffast.h -------------------------------------------------------------------------------- /external/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/inffixed.h -------------------------------------------------------------------------------- /external/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/inflate.c -------------------------------------------------------------------------------- /external/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/inflate.h -------------------------------------------------------------------------------- /external/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/inftrees.c -------------------------------------------------------------------------------- /external/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/inftrees.h -------------------------------------------------------------------------------- /external/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/trees.c -------------------------------------------------------------------------------- /external/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/trees.h -------------------------------------------------------------------------------- /external/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/uncompr.c -------------------------------------------------------------------------------- /external/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/zconf.h.in -------------------------------------------------------------------------------- /external/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/zlib.3 -------------------------------------------------------------------------------- /external/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/zlib.h -------------------------------------------------------------------------------- /external/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/zlib.map -------------------------------------------------------------------------------- /external/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/zlib.pc.in -------------------------------------------------------------------------------- /external/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/zutil.c -------------------------------------------------------------------------------- /external/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/external/zlib/zutil.h -------------------------------------------------------------------------------- /libtbag/DbgPair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/DbgPair.hpp -------------------------------------------------------------------------------- /libtbag/Err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/Err.cpp -------------------------------------------------------------------------------- /libtbag/Err.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/Err.hpp -------------------------------------------------------------------------------- /libtbag/ErrPair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/ErrPair.hpp -------------------------------------------------------------------------------- /libtbag/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/Exception.hpp -------------------------------------------------------------------------------- /libtbag/Noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/Noncopyable.hpp -------------------------------------------------------------------------------- /libtbag/Type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/Type.hpp -------------------------------------------------------------------------------- /libtbag/Unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/Unit.hpp -------------------------------------------------------------------------------- /libtbag/algorithm/Clamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/algorithm/Clamp.hpp -------------------------------------------------------------------------------- /libtbag/algorithm/Pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/algorithm/Pack.hpp -------------------------------------------------------------------------------- /libtbag/algorithm/Swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/algorithm/Swap.hpp -------------------------------------------------------------------------------- /libtbag/archive/Archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/archive/Archive.cpp -------------------------------------------------------------------------------- /libtbag/archive/Archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/archive/Archive.hpp -------------------------------------------------------------------------------- /libtbag/archive/Zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/archive/Zip.cpp -------------------------------------------------------------------------------- /libtbag/archive/Zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/archive/Zip.hpp -------------------------------------------------------------------------------- /libtbag/auth/Auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/auth/Auth.cpp -------------------------------------------------------------------------------- /libtbag/auth/Auth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/auth/Auth.hpp -------------------------------------------------------------------------------- /libtbag/bitwise/Endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/bitwise/Endian.cpp -------------------------------------------------------------------------------- /libtbag/bitwise/Endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/bitwise/Endian.hpp -------------------------------------------------------------------------------- /libtbag/box/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/Box.cpp -------------------------------------------------------------------------------- /libtbag/box/Box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/Box.hpp -------------------------------------------------------------------------------- /libtbag/box/BoxBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxBase.cpp -------------------------------------------------------------------------------- /libtbag/box/BoxBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxBase.hpp -------------------------------------------------------------------------------- /libtbag/box/BoxCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxCursor.cpp -------------------------------------------------------------------------------- /libtbag/box/BoxCursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxCursor.hpp -------------------------------------------------------------------------------- /libtbag/box/BoxIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxIterator.hpp -------------------------------------------------------------------------------- /libtbag/box/BoxPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxPacket.cpp -------------------------------------------------------------------------------- /libtbag/box/BoxPacket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxPacket.hpp -------------------------------------------------------------------------------- /libtbag/box/BoxTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/BoxTraits.hpp -------------------------------------------------------------------------------- /libtbag/box/fbs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/fbs/.gitignore -------------------------------------------------------------------------------- /libtbag/box/fbs/box.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/box/fbs/box.fbs -------------------------------------------------------------------------------- /libtbag/common/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/common/Object.hpp -------------------------------------------------------------------------------- /libtbag/crypto/Aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Aes.cpp -------------------------------------------------------------------------------- /libtbag/crypto/Aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Aes.hpp -------------------------------------------------------------------------------- /libtbag/crypto/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Base64.cpp -------------------------------------------------------------------------------- /libtbag/crypto/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Base64.hpp -------------------------------------------------------------------------------- /libtbag/crypto/Md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Md5.cpp -------------------------------------------------------------------------------- /libtbag/crypto/Md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Md5.hpp -------------------------------------------------------------------------------- /libtbag/crypto/Pbkdf2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Pbkdf2.cpp -------------------------------------------------------------------------------- /libtbag/crypto/Pbkdf2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Pbkdf2.hpp -------------------------------------------------------------------------------- /libtbag/crypto/Rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Rsa.cpp -------------------------------------------------------------------------------- /libtbag/crypto/Rsa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Rsa.hpp -------------------------------------------------------------------------------- /libtbag/crypto/Sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Sha.cpp -------------------------------------------------------------------------------- /libtbag/crypto/Sha.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Sha.hpp -------------------------------------------------------------------------------- /libtbag/crypto/SslUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/SslUtils.cpp -------------------------------------------------------------------------------- /libtbag/crypto/SslUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/SslUtils.hpp -------------------------------------------------------------------------------- /libtbag/crypto/Tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Tls.cpp -------------------------------------------------------------------------------- /libtbag/crypto/Tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/Tls.hpp -------------------------------------------------------------------------------- /libtbag/crypto/X509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/X509.cpp -------------------------------------------------------------------------------- /libtbag/crypto/X509.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/crypto/X509.hpp -------------------------------------------------------------------------------- /libtbag/database/Sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/database/Sqlite.cpp -------------------------------------------------------------------------------- /libtbag/database/Sqlite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/database/Sqlite.hpp -------------------------------------------------------------------------------- /libtbag/debug/Assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/debug/Assert.hpp -------------------------------------------------------------------------------- /libtbag/debug/Demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/debug/Demangle.cpp -------------------------------------------------------------------------------- /libtbag/debug/Demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/debug/Demangle.hpp -------------------------------------------------------------------------------- /libtbag/debug/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/debug/Profile.cpp -------------------------------------------------------------------------------- /libtbag/debug/Profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/debug/Profile.hpp -------------------------------------------------------------------------------- /libtbag/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/doxygen.h -------------------------------------------------------------------------------- /libtbag/dummy/Cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/dummy/Cl.hpp -------------------------------------------------------------------------------- /libtbag/dummy/Cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/dummy/Cuda.hpp -------------------------------------------------------------------------------- /libtbag/dummy/Win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/dummy/Win32.hpp -------------------------------------------------------------------------------- /libtbag/filesystem/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/filesystem/File.cpp -------------------------------------------------------------------------------- /libtbag/filesystem/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/filesystem/File.hpp -------------------------------------------------------------------------------- /libtbag/filesystem/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/filesystem/Path.cpp -------------------------------------------------------------------------------- /libtbag/filesystem/Path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/filesystem/Path.hpp -------------------------------------------------------------------------------- /libtbag/flow/FlowChart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/flow/FlowChart.hpp -------------------------------------------------------------------------------- /libtbag/flow/FlowLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/flow/FlowLayer.hpp -------------------------------------------------------------------------------- /libtbag/geometry/Arc2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/geometry/Arc2.hpp -------------------------------------------------------------------------------- /libtbag/geometry/Line2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/geometry/Line2.hpp -------------------------------------------------------------------------------- /libtbag/geometry/Point2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/geometry/Point2.hpp -------------------------------------------------------------------------------- /libtbag/geometry/Point3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/geometry/Point3.hpp -------------------------------------------------------------------------------- /libtbag/geometry/Point4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/geometry/Point4.hpp -------------------------------------------------------------------------------- /libtbag/geometry/Rect2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/geometry/Rect2.hpp -------------------------------------------------------------------------------- /libtbag/graph/ModelNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graph/ModelNet.cpp -------------------------------------------------------------------------------- /libtbag/graph/ModelNet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graph/ModelNet.hpp -------------------------------------------------------------------------------- /libtbag/graphic/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graphic/Canvas.cpp -------------------------------------------------------------------------------- /libtbag/graphic/Canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graphic/Canvas.hpp -------------------------------------------------------------------------------- /libtbag/graphic/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graphic/Color.cpp -------------------------------------------------------------------------------- /libtbag/graphic/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graphic/Color.hpp -------------------------------------------------------------------------------- /libtbag/graphic/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graphic/ImageIO.cpp -------------------------------------------------------------------------------- /libtbag/graphic/ImageIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graphic/ImageIO.hpp -------------------------------------------------------------------------------- /libtbag/graphic/Overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/graphic/Overlay.hpp -------------------------------------------------------------------------------- /libtbag/http/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpClient.cpp -------------------------------------------------------------------------------- /libtbag/http/HttpClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpClient.hpp -------------------------------------------------------------------------------- /libtbag/http/HttpCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpCommon.cpp -------------------------------------------------------------------------------- /libtbag/http/HttpCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpCommon.hpp -------------------------------------------------------------------------------- /libtbag/http/HttpParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpParser.cpp -------------------------------------------------------------------------------- /libtbag/http/HttpParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpParser.hpp -------------------------------------------------------------------------------- /libtbag/http/HttpReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpReader.cpp -------------------------------------------------------------------------------- /libtbag/http/HttpReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpReader.hpp -------------------------------------------------------------------------------- /libtbag/http/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpServer.cpp -------------------------------------------------------------------------------- /libtbag/http/HttpServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/HttpServer.hpp -------------------------------------------------------------------------------- /libtbag/http/WsFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/WsFrame.cpp -------------------------------------------------------------------------------- /libtbag/http/WsFrame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/http/WsFrame.hpp -------------------------------------------------------------------------------- /libtbag/id/Id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/id/Id.hpp -------------------------------------------------------------------------------- /libtbag/id/Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/id/Uuid.cpp -------------------------------------------------------------------------------- /libtbag/id/Uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/id/Uuid.hpp -------------------------------------------------------------------------------- /libtbag/io/InputUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/io/InputUtils.cpp -------------------------------------------------------------------------------- /libtbag/io/InputUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/io/InputUtils.hpp -------------------------------------------------------------------------------- /libtbag/io/Raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/io/Raw.cpp -------------------------------------------------------------------------------- /libtbag/io/Raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/io/Raw.hpp -------------------------------------------------------------------------------- /libtbag/ipc/PipeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/ipc/PipeReader.cpp -------------------------------------------------------------------------------- /libtbag/ipc/PipeReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/ipc/PipeReader.hpp -------------------------------------------------------------------------------- /libtbag/lib/ComHolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lib/ComHolder.hpp -------------------------------------------------------------------------------- /libtbag/libtbag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/libtbag.cpp -------------------------------------------------------------------------------- /libtbag/libtbag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/libtbag.h -------------------------------------------------------------------------------- /libtbag/locale/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/locale/Convert.cpp -------------------------------------------------------------------------------- /libtbag/locale/Convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/locale/Convert.hpp -------------------------------------------------------------------------------- /libtbag/locale/Locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/locale/Locale.cpp -------------------------------------------------------------------------------- /libtbag/locale/Locale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/locale/Locale.hpp -------------------------------------------------------------------------------- /libtbag/lock/FakeLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/FakeLock.hpp -------------------------------------------------------------------------------- /libtbag/lock/RwLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/RwLock.cpp -------------------------------------------------------------------------------- /libtbag/lock/RwLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/RwLock.hpp -------------------------------------------------------------------------------- /libtbag/lock/SpinLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/SpinLock.hpp -------------------------------------------------------------------------------- /libtbag/lock/UvBarrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/UvBarrier.cpp -------------------------------------------------------------------------------- /libtbag/lock/UvBarrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/UvBarrier.hpp -------------------------------------------------------------------------------- /libtbag/lock/UvLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/UvLock.cpp -------------------------------------------------------------------------------- /libtbag/lock/UvLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/lock/UvLock.hpp -------------------------------------------------------------------------------- /libtbag/log/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/Log.cpp -------------------------------------------------------------------------------- /libtbag/log/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/Log.hpp -------------------------------------------------------------------------------- /libtbag/log/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/Logger.cpp -------------------------------------------------------------------------------- /libtbag/log/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/Logger.hpp -------------------------------------------------------------------------------- /libtbag/log/Severity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/Severity.cpp -------------------------------------------------------------------------------- /libtbag/log/Severity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/Severity.hpp -------------------------------------------------------------------------------- /libtbag/log/sink/Sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/sink/Sink.cpp -------------------------------------------------------------------------------- /libtbag/log/sink/Sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/log/sink/Sink.hpp -------------------------------------------------------------------------------- /libtbag/loop/TickLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/loop/TickLoop.hpp -------------------------------------------------------------------------------- /libtbag/macro/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/macro/compiler.hpp -------------------------------------------------------------------------------- /libtbag/macro/features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/macro/features.hpp -------------------------------------------------------------------------------- /libtbag/macro/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/macro/function.hpp -------------------------------------------------------------------------------- /libtbag/macro/language.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/macro/language.hpp -------------------------------------------------------------------------------- /libtbag/macro/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/macro/platform.hpp -------------------------------------------------------------------------------- /libtbag/macro/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/macro/types.hpp -------------------------------------------------------------------------------- /libtbag/macro/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/macro/utils.hpp -------------------------------------------------------------------------------- /libtbag/math/Average.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Average.hpp -------------------------------------------------------------------------------- /libtbag/math/Constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Constant.hpp -------------------------------------------------------------------------------- /libtbag/math/Equation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Equation.hpp -------------------------------------------------------------------------------- /libtbag/math/Euclidean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Euclidean.hpp -------------------------------------------------------------------------------- /libtbag/math/Jaccard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Jaccard.hpp -------------------------------------------------------------------------------- /libtbag/math/Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Matrix.hpp -------------------------------------------------------------------------------- /libtbag/math/Number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Number.hpp -------------------------------------------------------------------------------- /libtbag/math/Rounding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Rounding.hpp -------------------------------------------------------------------------------- /libtbag/math/Scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Scale.hpp -------------------------------------------------------------------------------- /libtbag/math/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/math/Vector.hpp -------------------------------------------------------------------------------- /libtbag/media/Fourcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/media/Fourcc.cpp -------------------------------------------------------------------------------- /libtbag/media/Fourcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/media/Fourcc.hpp -------------------------------------------------------------------------------- /libtbag/memory/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/memory/Memory.cpp -------------------------------------------------------------------------------- /libtbag/memory/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/memory/Memory.hpp -------------------------------------------------------------------------------- /libtbag/mq/NngBypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/mq/NngBypass.cpp -------------------------------------------------------------------------------- /libtbag/mq/NngBypass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/mq/NngBypass.hpp -------------------------------------------------------------------------------- /libtbag/mq/NngSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/mq/NngSocket.cpp -------------------------------------------------------------------------------- /libtbag/mq/NngSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/mq/NngSocket.hpp -------------------------------------------------------------------------------- /libtbag/mq/nng/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/mq/nng/migration.py -------------------------------------------------------------------------------- /libtbag/mq/nng/nng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/mq/nng/nng.h -------------------------------------------------------------------------------- /libtbag/net/Ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/net/Ip.cpp -------------------------------------------------------------------------------- /libtbag/net/Ip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/net/Ip.hpp -------------------------------------------------------------------------------- /libtbag/net/Mime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/net/Mime.cpp -------------------------------------------------------------------------------- /libtbag/net/Mime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/net/Mime.hpp -------------------------------------------------------------------------------- /libtbag/net/Uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/net/Uri.cpp -------------------------------------------------------------------------------- /libtbag/net/Uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/net/Uri.hpp -------------------------------------------------------------------------------- /libtbag/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/pch.h -------------------------------------------------------------------------------- /libtbag/predef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/predef.hpp -------------------------------------------------------------------------------- /libtbag/pref/GlobalPref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/pref/GlobalPref.cpp -------------------------------------------------------------------------------- /libtbag/pref/GlobalPref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/pref/GlobalPref.hpp -------------------------------------------------------------------------------- /libtbag/process/Execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/process/Execute.cpp -------------------------------------------------------------------------------- /libtbag/process/Execute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/process/Execute.hpp -------------------------------------------------------------------------------- /libtbag/project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/project.cmake -------------------------------------------------------------------------------- /libtbag/random/Random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/random/Random.hpp -------------------------------------------------------------------------------- /libtbag/res/Asset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/res/Asset.hpp -------------------------------------------------------------------------------- /libtbag/res/GetText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/res/GetText.cpp -------------------------------------------------------------------------------- /libtbag/res/GetText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/res/GetText.hpp -------------------------------------------------------------------------------- /libtbag/res/Storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/res/Storage.cpp -------------------------------------------------------------------------------- /libtbag/res/Storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/res/Storage.hpp -------------------------------------------------------------------------------- /libtbag/scene/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/scene/Scene.cpp -------------------------------------------------------------------------------- /libtbag/scene/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/scene/Scene.hpp -------------------------------------------------------------------------------- /libtbag/script/LuaMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/script/LuaMain.cpp -------------------------------------------------------------------------------- /libtbag/script/LuaMain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/script/LuaMain.hpp -------------------------------------------------------------------------------- /libtbag/script/luajit-2.0.5/.gitignore: -------------------------------------------------------------------------------- 1 | luaconf.h -------------------------------------------------------------------------------- /libtbag/service/Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/service/Service.cpp -------------------------------------------------------------------------------- /libtbag/service/Service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/service/Service.hpp -------------------------------------------------------------------------------- /libtbag/string/Argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/Argv.cpp -------------------------------------------------------------------------------- /libtbag/string/Argv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/Argv.hpp -------------------------------------------------------------------------------- /libtbag/string/Flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/Flags.cpp -------------------------------------------------------------------------------- /libtbag/string/Flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/Flags.hpp -------------------------------------------------------------------------------- /libtbag/string/Format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/Format.cpp -------------------------------------------------------------------------------- /libtbag/string/Format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/Format.hpp -------------------------------------------------------------------------------- /libtbag/string/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/String.cpp -------------------------------------------------------------------------------- /libtbag/string/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/String.hpp -------------------------------------------------------------------------------- /libtbag/string/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/chrono.h -------------------------------------------------------------------------------- /libtbag/string/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/color.h -------------------------------------------------------------------------------- /libtbag/string/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/core.h -------------------------------------------------------------------------------- /libtbag/string/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/format.h -------------------------------------------------------------------------------- /libtbag/string/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/locale.h -------------------------------------------------------------------------------- /libtbag/string/fmt/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/os.cc -------------------------------------------------------------------------------- /libtbag/string/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/os.h -------------------------------------------------------------------------------- /libtbag/string/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/posix.h -------------------------------------------------------------------------------- /libtbag/string/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/printf.h -------------------------------------------------------------------------------- /libtbag/string/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/string/fmt/ranges.h -------------------------------------------------------------------------------- /libtbag/system/CpuId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/system/CpuId.cpp -------------------------------------------------------------------------------- /libtbag/system/CpuId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/system/CpuId.hpp -------------------------------------------------------------------------------- /libtbag/system/Simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/system/Simd.cpp -------------------------------------------------------------------------------- /libtbag/system/Simd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/system/Simd.hpp -------------------------------------------------------------------------------- /libtbag/system/SysInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/system/SysInfo.cpp -------------------------------------------------------------------------------- /libtbag/system/SysInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/system/SysInfo.hpp -------------------------------------------------------------------------------- /libtbag/thread/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/thread/Thread.cpp -------------------------------------------------------------------------------- /libtbag/thread/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/thread/Thread.hpp -------------------------------------------------------------------------------- /libtbag/tiled/TiledMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/tiled/TiledMap.cpp -------------------------------------------------------------------------------- /libtbag/tiled/TiledMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/tiled/TiledMap.hpp -------------------------------------------------------------------------------- /libtbag/time/Duration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/Duration.cpp -------------------------------------------------------------------------------- /libtbag/time/Duration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/Duration.hpp -------------------------------------------------------------------------------- /libtbag/time/NtpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/NtpClient.cpp -------------------------------------------------------------------------------- /libtbag/time/NtpClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/NtpClient.hpp -------------------------------------------------------------------------------- /libtbag/time/SyncedWait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/SyncedWait.cpp -------------------------------------------------------------------------------- /libtbag/time/SyncedWait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/SyncedWait.hpp -------------------------------------------------------------------------------- /libtbag/time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/Time.cpp -------------------------------------------------------------------------------- /libtbag/time/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/Time.hpp -------------------------------------------------------------------------------- /libtbag/time/TimePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/TimePoint.cpp -------------------------------------------------------------------------------- /libtbag/time/TimePoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/time/TimePoint.hpp -------------------------------------------------------------------------------- /libtbag/tmp/ArraySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/tmp/ArraySize.hpp -------------------------------------------------------------------------------- /libtbag/tmp/Bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/tmp/Bit.hpp -------------------------------------------------------------------------------- /libtbag/tmp/Power.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/tmp/Power.hpp -------------------------------------------------------------------------------- /libtbag/tty/Tces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/tty/Tces.hpp -------------------------------------------------------------------------------- /libtbag/type/Size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/type/Size.hpp -------------------------------------------------------------------------------- /libtbag/type/TypeTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/type/TypeTable.hpp -------------------------------------------------------------------------------- /libtbag/typography/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/typography/Font.cpp -------------------------------------------------------------------------------- /libtbag/typography/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/typography/Font.hpp -------------------------------------------------------------------------------- /libtbag/typography/font/ngc/.gitignore: -------------------------------------------------------------------------------- 1 | *.h.inl 2 | -------------------------------------------------------------------------------- /libtbag/util/BufferInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/BufferInfo.hpp -------------------------------------------------------------------------------- /libtbag/util/Byte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/Byte.cpp -------------------------------------------------------------------------------- /libtbag/util/Byte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/Byte.hpp -------------------------------------------------------------------------------- /libtbag/util/ByteString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/ByteString.cpp -------------------------------------------------------------------------------- /libtbag/util/ByteString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/ByteString.hpp -------------------------------------------------------------------------------- /libtbag/util/OffsetOf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/OffsetOf.hpp -------------------------------------------------------------------------------- /libtbag/util/Runnable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/Runnable.hpp -------------------------------------------------------------------------------- /libtbag/util/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/Structures.hpp -------------------------------------------------------------------------------- /libtbag/util/TestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/TestUtils.cpp -------------------------------------------------------------------------------- /libtbag/util/TestUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/TestUtils.hpp -------------------------------------------------------------------------------- /libtbag/util/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/Version.cpp -------------------------------------------------------------------------------- /libtbag/util/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/util/Version.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Async.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Async.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Check.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Check.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Dns.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Dns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Dns.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/FsEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/FsEvent.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/FsEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/FsEvent.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/FsPoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/FsPoll.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/FsPoll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/FsPoll.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Handle.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Handle.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Idle.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Idle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Idle.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Loop.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Loop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Loop.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Native.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Native.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Native.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Pipe.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Pipe.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Poll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Poll.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Poll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Poll.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Prepare.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Prepare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Prepare.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Process.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Process.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Request.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Request.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Signal.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Signal.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Stream.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Stream.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Tcp.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Tcp.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Timer.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Timer.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Tty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Tty.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Tty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Tty.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/Udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Udp.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/Udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/Udp.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/UvCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/UvCommon.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/UvCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/UvCommon.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/UvUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/UvUtils.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/UvUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/UvUtils.hpp -------------------------------------------------------------------------------- /libtbag/uvpp/ex/TlsTcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/ex/TlsTcp.cpp -------------------------------------------------------------------------------- /libtbag/uvpp/ex/TlsTcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvpp/ex/TlsTcp.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxAsync.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxAsync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxAsync.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxCheck.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxCheck.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxFsEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxFsEvent.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxFsEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxFsEvent.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxFsPoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxFsPoll.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxFsPoll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxFsPoll.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxHandle.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxHandle.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxIdle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxIdle.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxIdle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxIdle.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxLoop.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxLoop.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxPipe.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxPipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxPipe.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxPoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxPoll.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxPoll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxPoll.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxPrepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxPrepare.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxPrepare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxPrepare.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxProcess.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxProcess.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxSignal.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxSignal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxSignal.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxStream.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxStream.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxTcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxTcp.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxTcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxTcp.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxTimer.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxTimer.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxTty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxTty.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxTty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxTty.hpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxUdp.cpp -------------------------------------------------------------------------------- /libtbag/uvxx/UxUdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/libtbag/uvxx/UxUdp.hpp -------------------------------------------------------------------------------- /script/luarocks_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/script/luarocks_install.sh -------------------------------------------------------------------------------- /script/pytools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/script/pytools/__init__.py -------------------------------------------------------------------------------- /script/pytools/genclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/script/pytools/genclass.py -------------------------------------------------------------------------------- /script/pytools/gentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/script/pytools/gentest.py -------------------------------------------------------------------------------- /script/pytools/gentext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/script/pytools/gentext.py -------------------------------------------------------------------------------- /tbag.cloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tbag.cloc -------------------------------------------------------------------------------- /tbag.cloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tbag.cloc.sh -------------------------------------------------------------------------------- /tbag.loc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tbag.loc.sh -------------------------------------------------------------------------------- /template/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/Doxyfile.in -------------------------------------------------------------------------------- /template/class.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/class.cpp.in -------------------------------------------------------------------------------- /template/class.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/class.hpp.in -------------------------------------------------------------------------------- /template/class2.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/class2.cpp.in -------------------------------------------------------------------------------- /template/class2.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/class2.hpp.in -------------------------------------------------------------------------------- /template/config-ex.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/config-ex.h.in -------------------------------------------------------------------------------- /template/full-class.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/full-class.cpp.in -------------------------------------------------------------------------------- /template/full-class.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/full-class.hpp.in -------------------------------------------------------------------------------- /template/full-class2.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/full-class2.cpp.in -------------------------------------------------------------------------------- /template/full-class2.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/full-class2.hpp.in -------------------------------------------------------------------------------- /template/pimpl-class.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/pimpl-class.cpp.in -------------------------------------------------------------------------------- /template/pimpl-class.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/pimpl-class.hpp.in -------------------------------------------------------------------------------- /template/test.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/template/test.cpp.in -------------------------------------------------------------------------------- /tester/BasicTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/BasicTest.cpp -------------------------------------------------------------------------------- /tester/DemoAsset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/DemoAsset.hpp -------------------------------------------------------------------------------- /tester/DemoAssetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/DemoAssetTest.cpp -------------------------------------------------------------------------------- /tester/ErrTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/ErrTest.cpp -------------------------------------------------------------------------------- /tester/asset/image/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/asset/image/lena.png -------------------------------------------------------------------------------- /tester/libtbag/TypeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/libtbag/TypeTest.cpp -------------------------------------------------------------------------------- /tester/libtbag/UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/libtbag/UnitTest.cpp -------------------------------------------------------------------------------- /tester/project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/project.cmake -------------------------------------------------------------------------------- /tester/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tester/tester.cpp -------------------------------------------------------------------------------- /tlua/project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tlua/project.cmake -------------------------------------------------------------------------------- /tlua/tlua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tlua/tlua.cpp -------------------------------------------------------------------------------- /tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tool -------------------------------------------------------------------------------- /tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tool.py -------------------------------------------------------------------------------- /tools/tbproc/project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tools/tbproc/project.cmake -------------------------------------------------------------------------------- /tools/tbproc/tbproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osom8979/tbag/HEAD/tools/tbproc/tbproc.cpp --------------------------------------------------------------------------------