├── .gitignore ├── README.md ├── archives ├── README.md ├── libjansi.tar.xz └── llvm-3.9.tar.xz ├── docs ├── .gitignore ├── BuildSystemMaintainers.md ├── Building.md ├── ClangMigration.md ├── ContinuousBuilds.md ├── HardFloatAbi.md ├── Makefile ├── NdkGdbTesting.md ├── PlatformApis.md ├── README.md ├── Roadmap.md ├── Testing.md ├── Toolchains.md ├── UnifiedHeaders.md ├── UnifiedHeadersMigration.md ├── UpdatingDocumentation.md ├── changelogs │ ├── Changelog-r19.md │ ├── Changelog-r20.md │ ├── Changelog-r21.md │ ├── Changelog-r22.md │ └── Changelog-r23.md └── user │ ├── common_problems.md │ └── middleware_vendors.md ├── openjdk-build ├── README.md ├── android-elf-tls.md ├── img │ ├── bionic-tls-layout-in-p.png │ ├── java.jpg │ ├── jshell_error.jpg │ ├── tls-variant1.png │ ├── tls-variant2.png │ ├── tls_test1.jpg │ └── tls_test2.jpg ├── patches │ ├── XToolkit.c.patch │ ├── elfFile.hpp.patch │ ├── jni_util_md.c.patch │ ├── net_util_md.h.patch │ ├── os_linux.cpp.patch │ ├── os_posix.cpp.patch │ └── ps_core.c.patch └── tls-test │ ├── CMakeLists.txt │ ├── JavaThread.h │ ├── build.sh │ ├── main.cpp │ ├── thread.cpp │ ├── thread.h │ └── threadLS_linux_aarch64.s ├── patches ├── android.toolchain.cmake.patch ├── base_builders.py.patch ├── build-binary.mk.patch ├── builders.py.patch ├── configs.py.patch ├── crypt.h ├── default.xml.patch ├── do_build.py.patch ├── ndk-build.patch ├── paths.py.patch ├── sFILE.h ├── toolchains.py.patch └── vis.c.patch └── renderscript ├── CMakeLists.txt ├── build.sh ├── libbcc ├── Android.bp ├── CMakeLists.txt ├── CleanSpec.mk ├── NOTICE ├── OWNERS ├── README.html ├── README.rst ├── bcinfo │ ├── Android.bp │ ├── BitReader_2_7 │ │ ├── Android.bp │ │ ├── BitReader.cpp │ │ ├── BitReader_2_7.h │ │ ├── BitcodeReader.cpp │ │ ├── CMakeLists.txt │ │ └── Makefile │ ├── BitReader_3_0 │ │ ├── Android.bp │ │ ├── BitReader.cpp │ │ ├── BitReader_3_0.h │ │ ├── BitcodeReader.cpp │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ └── Makefile │ ├── BitcodeTranslator.cpp │ ├── BitcodeWrapper.cpp │ ├── CMakeLists.txt │ ├── MetadataExtractor.cpp │ ├── Wrap │ │ ├── Android.bp │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── Makefile │ │ ├── bitcode_wrapperer.cpp │ │ ├── file_wrapper_input.cpp │ │ ├── file_wrapper_output.cpp │ │ ├── in_memory_wrapper_input.cpp │ │ └── wrapper_output.cpp │ ├── include │ │ └── bcinfo │ │ │ ├── BitcodeTranslator.h │ │ │ ├── BitcodeWrapper.h │ │ │ ├── MetadataExtractor.h │ │ │ └── Wrap │ │ │ ├── BCHeaderField.h │ │ │ ├── bitcode_wrapperer.h │ │ │ ├── file_wrapper_input.h │ │ │ ├── file_wrapper_output.h │ │ │ ├── in_memory_wrapper_input.h │ │ │ ├── support_macros.h │ │ │ ├── wrapper_input.h │ │ │ └── wrapper_output.h │ ├── libbcinfo.map │ └── tools │ │ ├── Android.bp │ │ ├── CMakeLists.txt │ │ └── main.cpp ├── gdb_plugin │ └── android-commands.py ├── include │ └── bcc │ │ ├── BCCContext.h │ │ ├── Compiler.h │ │ ├── CompilerConfig.h │ │ ├── Config.h │ │ ├── Initialization.h │ │ ├── RSCompilerDriver.h │ │ ├── Script.h │ │ └── Source.h ├── lib │ ├── Android.bp │ ├── Assert.h │ ├── BCCContext.cpp │ ├── BCCContextImpl.cpp │ ├── BCCContextImpl.h │ ├── CMakeLists.txt │ ├── Compiler.cpp │ ├── CompilerConfig.cpp │ ├── FileBase.cpp │ ├── FileBase.h │ ├── FileMutex.h │ ├── Initialization.cpp │ ├── Log.h │ ├── Properties.h │ ├── RSAddDebugInfoPass.cpp │ ├── RSCompilerDriver.cpp │ ├── RSEmbedInfo.cpp │ ├── RSFunctionsList.cpp │ ├── RSFunctionsList.h │ ├── RSGlobalInfoPass.cpp │ ├── RSInvariant.cpp │ ├── RSInvokeHelperPass.cpp │ ├── RSIsThreadablePass.cpp │ ├── RSKernelExpand.cpp │ ├── RSScreenFunctionsPass.cpp │ ├── RSScriptGroupFusion.cpp │ ├── RSScriptGroupFusion.h │ ├── RSTransforms.h │ ├── RSUtils.h │ ├── RSX86CallConvPass.cpp │ ├── RSX86TranslateGEPPass.cpp │ ├── Script.cpp │ └── Source.cpp ├── libbcc-targets.mk ├── tests │ ├── README.lit │ ├── debuginfo │ │ ├── README │ │ ├── build_test_apk.sh │ │ ├── host-tests │ │ │ ├── aggregate-indirect-arg.cpp │ │ │ ├── forward-declare-class.cpp │ │ │ ├── func_invoke_and_crash.cpp │ │ │ ├── global_struct.c │ │ │ ├── globals.c │ │ │ ├── jit.cpp │ │ │ ├── lit.cfg │ │ │ ├── locals.cpp │ │ │ ├── nested-struct.cpp │ │ │ ├── parameters.cpp │ │ │ ├── pass-function.c │ │ │ ├── pass-struct.c │ │ │ ├── simple_func_invoke_and_crash.cpp │ │ │ └── test_info_sources.cpp │ │ ├── lit.site.cfg │ │ ├── llvm-lit │ │ ├── target-tests │ │ │ ├── breakpoint_function.rs │ │ │ ├── breakpoint_inlined_function.rs │ │ │ ├── breakpoint_inlined_sourceline.rs │ │ │ ├── breakpoint_sourceline.rs │ │ │ ├── crash.rs │ │ │ ├── driver-common │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── SRC │ │ │ │ │ ├── DriverRS.java.template │ │ │ │ │ └── DriverView.java.template │ │ │ ├── driver-int-param │ │ │ │ ├── ACTIVITY.java.template │ │ │ │ └── DriverRS.java.template │ │ │ ├── driver-simple-exit │ │ │ │ └── ACTIVITY.java.template │ │ │ ├── driver-simple │ │ │ │ └── ACTIVITY.java.template │ │ │ ├── global_int.rs │ │ │ ├── info_sources.rs │ │ │ ├── lit.cfg │ │ │ └── locals.rs │ │ └── test_bcc_debuginfo.pl │ ├── libbcc │ │ ├── debug_info_static_const_fp.bc │ │ ├── debug_info_static_const_fp.ll │ │ ├── getelementptr.ll │ │ ├── lit.cfg │ │ ├── tbaa-through-alloca.ll │ │ ├── tbaa.ll │ │ ├── test_reduce_general_cleanup.ll │ │ ├── test_reduce_general_metadata.ll │ │ └── test_slang_version_info.ll │ └── run-lit-tests.sh └── tools │ ├── Android.bp │ ├── CMakeLists.txt │ ├── bcc │ ├── Android.bp │ └── Main.cpp │ ├── bcc_compat │ ├── Android.bp │ ├── CMakeLists.txt │ └── Main.cpp │ └── bcc_strip_attr │ ├── Android.bp │ └── bcc_strip_attr.cpp ├── liblog ├── .clang-format ├── Android.bp ├── CMakeLists.txt ├── NOTICE ├── OWNERS ├── README.md ├── README.protocol.md ├── event.logtags ├── event_tag_map.cpp ├── include │ ├── android-base │ │ ├── errno_restorer.h │ │ └── macros.h │ ├── android │ │ └── log.h │ ├── cutils │ │ └── list.h │ ├── log │ │ ├── event_tag_map.h │ │ ├── log.h │ │ ├── log_event_list.h │ │ ├── log_id.h │ │ ├── log_main.h │ │ ├── log_properties.h │ │ ├── log_radio.h │ │ ├── log_read.h │ │ ├── log_safetynet.h │ │ ├── log_system.h │ │ ├── log_time.h │ │ └── logprint.h │ ├── private │ │ ├── android_filesystem_config.h │ │ └── android_logger.h │ ├── system │ │ ├── graphics.h │ │ └── thread_defs.h │ └── utils │ │ ├── Errors.h │ │ ├── FastStrcmp.h │ │ ├── RWLock.h │ │ └── ThreadDefs.h ├── include_vndk │ ├── android │ └── log │ │ ├── log.h │ │ ├── log_event_list.h │ │ ├── log_id.h │ │ ├── log_main.h │ │ ├── log_properties.h │ │ ├── log_radio.h │ │ ├── log_read.h │ │ ├── log_safetynet.h │ │ ├── log_system.h │ │ └── log_time.h ├── liblog.map.txt ├── log_event_list.cpp ├── log_event_write.cpp ├── log_time.cpp ├── logd_reader.cpp ├── logd_reader.h ├── logd_writer.cpp ├── logd_writer.h ├── logger.h ├── logger_name.cpp ├── logger_read.cpp ├── logger_write.cpp ├── logger_write.h ├── logprint.cpp ├── pmsg_reader.cpp ├── pmsg_reader.h ├── pmsg_writer.cpp ├── pmsg_writer.h ├── properties.cpp ├── tests │ ├── Android.bp │ ├── AndroidTest.xml │ ├── libc_test.cpp │ ├── liblog_benchmark.cpp │ ├── liblog_default_tag.cpp │ ├── liblog_global_state.cpp │ ├── liblog_host_test.cpp │ ├── liblog_test.cpp │ ├── log_id_test.cpp │ ├── log_radio_test.cpp │ ├── log_read_test.cpp │ ├── log_system_test.cpp │ ├── log_time_test.cpp │ ├── log_wrap_test.cpp │ ├── logd_writer_test.cpp │ └── logprint_test.cpp └── uio.h ├── rs ├── Android.bp └── rsDefines.h └── slang ├── .clang-format ├── Android.bp ├── BitWriter_2_9 ├── Android.bp ├── BitcodeWriter.cpp ├── BitcodeWriterPass.cpp ├── CMakeLists.txt ├── Makefile ├── ReaderWriter_2_9.h ├── ValueEnumerator.cpp └── ValueEnumerator.h ├── BitWriter_2_9_func ├── Android.bp ├── BitcodeWriter.cpp ├── BitcodeWriterPass.cpp ├── CMakeLists.txt ├── ReaderWriter_2_9_func.h ├── ValueEnumerator.cpp └── ValueEnumerator.h ├── BitWriter_3_2 ├── Android.bp ├── BitcodeWriter.cpp ├── BitcodeWriterPass.cpp ├── CMakeLists.txt ├── ReaderWriter_3_2.h ├── ValueEnumerator.cpp └── ValueEnumerator.h ├── CMakeLists.txt ├── METADATA ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── OWNERS ├── README.html ├── README.rst ├── RSCCOptions.inc ├── RSCCOptions.td ├── StripUnkAttr ├── Android.bp ├── CMakeLists.txt ├── strip_unknown_attributes.cpp ├── strip_unknown_attributes.h ├── strip_unknown_attributes_pass.cpp └── strip_unknown_attributes_pass.h ├── legacy_bitcode.h ├── lit-tests ├── P_alloc_in_struct │ └── alloc_in_struct.rscript ├── P_array_init │ └── array_init.rscript ├── P_compute │ └── compute.rscript ├── P_ref_count │ ├── func_params.rscript │ ├── ref_count.rscript │ └── ref_count2.rscript ├── README ├── bitcode_wrapper │ └── bitcode_wrapper_test.ll ├── debug │ ├── debug_disabled.rscript │ └── debug_enabled.rscript ├── lit.cfg ├── opt │ ├── locals_opt_0.rscript │ ├── locals_opt_3.rscript │ └── locals_opt_default.rscript ├── padding │ ├── bitfield.rscript │ ├── more_structs.rscript │ ├── small_struct.rscript │ └── small_struct_2.rscript ├── rs-filecheck-wrapper.sh ├── run-lit-tests.sh └── scriptc-filecheck-wrapper.sh ├── lld_main.cpp ├── llvm-rs-as.cpp ├── llvm-rs-cc.cpp ├── os_sep.h ├── rs_cc_options.cpp ├── rs_cc_options.h ├── rs_cc_options_orig.cpp ├── rs_version.mk ├── slang.cpp ├── slang.h ├── slang_assert.h ├── slang_backend.cpp ├── slang_backend.h ├── slang_bitcode_gen.cpp ├── slang_bitcode_gen.h ├── slang_diagnostic_buffer.cpp ├── slang_diagnostic_buffer.h ├── slang_pragma_list.h ├── slang_rs_ast_replace.cpp ├── slang_rs_ast_replace.h ├── slang_rs_check_ast.cpp ├── slang_rs_check_ast.h ├── slang_rs_context.cpp ├── slang_rs_context.h ├── slang_rs_export_element.cpp ├── slang_rs_export_element.h ├── slang_rs_export_foreach.cpp ├── slang_rs_export_foreach.h ├── slang_rs_export_func.cpp ├── slang_rs_export_func.h ├── slang_rs_export_reduce.cpp ├── slang_rs_export_reduce.h ├── slang_rs_export_type.cpp ├── slang_rs_export_type.h ├── slang_rs_export_var.cpp ├── slang_rs_export_var.h ├── slang_rs_exportable.cpp ├── slang_rs_exportable.h ├── slang_rs_foreach_lowering.cpp ├── slang_rs_foreach_lowering.h ├── slang_rs_metadata.h ├── slang_rs_object_ref_count.cpp ├── slang_rs_object_ref_count.h ├── slang_rs_pragma_handler.cpp ├── slang_rs_pragma_handler.h ├── slang_rs_reflect_utils.cpp ├── slang_rs_reflect_utils.h ├── slang_rs_reflection.cpp ├── slang_rs_reflection.h ├── slang_rs_reflection_cpp.cpp ├── slang_rs_reflection_cpp.h ├── slang_rs_reflection_state.cpp ├── slang_rs_reflection_state.h ├── slang_rs_special_func.cpp ├── slang_rs_special_func.h ├── slang_rs_special_kernel_param.cpp ├── slang_rs_special_kernel_param.h ├── slang_version.h └── tests ├── F_Werror ├── Werror.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_anon_struct ├── anon_struct.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_anon_struct_kernel_sig ├── anon_struct_kernel_sig.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_anon_struct_typedef ├── anon_struct_typedef.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_anon_struct_usrdata ├── anon_struct_usrdata.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_bad_pragmas ├── bad_pragmas.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_bad_version_pragma ├── bad_version_pragma.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_const_array_arg ├── const_array_arg.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ctxt_wrong_api ├── ctxt_wrong_api.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ctxt_wrong_name ├── context.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ctxt_wrong_place ├── ctxt_wrong_place.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ctxt_wrong_type ├── ctxt_wrong_type.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_extern_const ├── extern_const.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_float3_array ├── float3_array.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_float3_v13 ├── float3_v13.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_foreach_forward_reference ├── foreach_forward_reference.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_foreach_from_kernel ├── foreach_from_kernel.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_foreach_non_kernel ├── foreach_non_kernel.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_foreach_unexpected_allocs ├── foreach_unexpected_allocs.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_foreach_unexpected_kernel_arg ├── foreach_unexpected_kernel_arg.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_fp16_wrong_api ├── fp16_wrong_api.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_fs_oldkernel ├── fs_oldkernel.fs ├── stderr.txt.expect └── stdout.txt.expect ├── F_fs_ptr ├── fs_ptr.fs ├── stderr.txt.expect └── stdout.txt.expect ├── F_fs_types ├── fs_types.fs ├── stderr.txt.expect └── stdout.txt.expect ├── F_global_init ├── global_init.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_incompatible_handles ├── incompatible_handles.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_init_nonvoid ├── init_nonvoid.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_init_params ├── init_params.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_int_ptr_ptr ├── int_ptr_ptr.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_invoke_return ├── invoke_return.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_kernel_16 ├── kernel_16.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_kernel_badattr ├── kernel_badattr.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_kernel_badsig ├── kernel_badsig.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_kernel_noattr ├── kernel_noattr.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_kernel_ptr_param ├── kernel_ptr_param.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_kernel_ptr_ret_val ├── kernel_ptr_ret_val.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_kernel_static ├── kernel_static.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_large_array ├── large_array.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_mix_vector ├── mix_vector.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_multi_export_errors ├── multi_export_errors.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_multi_in_target_version ├── multi_in_target_version.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_multidim_array ├── multidim_array.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_no_java_package_name ├── no_java_package_name.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_no_pragma ├── first.rscript ├── second.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_no_version_pragma ├── no_version_pragma.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_1 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_2 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_3 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_4 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_5 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_6 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_7 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_8 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_odr_nested_records_9 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule1 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule2 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule3 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule4 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule5 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule6 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule7 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_one_definition_rule8 ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ptr_in_struct ├── ptr_in_struct.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ptr_in_struct_for_call ├── ptr_in_struct_for_call.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ptr_to_array ├── ptr_to_array.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ptr_to_fn_noproto ├── ptr_to_fn_noproto.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_ptr_to_fn_proto ├── ptr_to_fn_proto.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reduce_general_bad_accumulator ├── reduce_general_bad_accumulator.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reduce_general_bad_function ├── reduce_general_bad_function.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reduce_general_bad_halter ├── reduce_general_bad_halter.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reduce_general_bad_result ├── reduce_general_bad_result.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reduce_general_parse ├── reduce_general_parse.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reduce_general_void ├── reduce_general_void.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reduce_general_wrong_api ├── reduce_general_wrong_api.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_refcount_15 ├── refcount_15.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_foreach_mismatch ├── reflection3264_foreach_mismatch.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_foreach_mismatch_extra32 ├── reflection3264_foreach_mismatch_extra32.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_foreach_mismatch_extra64 ├── reflection3264_foreach_mismatch_extra64.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_foreach_mismatch_name32 ├── reflection3264_foreach_mismatch_name32.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_foreach_mismatch_name64 ├── reflection3264_foreach_mismatch_name64.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_invokable_extra32 ├── reflection3264_invokable_extra32.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_invokable_extra64 ├── reflection3264_invokable_extra64.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_invokable_mismatch ├── reflection3264_invokable_mismatch.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_multifile ├── reflection3264_multifile_1.rscript ├── reflection3264_multifile_2.rscript ├── reflection3264_multifile_3.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_package_mismatch ├── reflection3264_package_mismatch.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_reduce_extra32 ├── reflection3264_reduce_extra32.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_reduce_extra64 ├── reflection3264_reduce_extra64.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_reduce_mismatch ├── reflection3264_reduce_mismatch.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_reduce_mismatch_name_exp ├── reflection3264_reduce_mismatch_name_exp.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_reduce_mismatch_name_noexp ├── reflection3264_reduce_mismatch_name_noexp.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_struct_mismatch ├── reflection3264_struct_mismatch.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_variable_extra32 ├── reflection3264_variable_extra32.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_variable_extra64 ├── reflection3264_variable_extra64.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_variable_mismatch ├── reflection3264_variable_mismatch.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_reflection3264_variable_mismatch_init ├── reflection3264_variable_mismatch_init.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_11_ox ├── root_11_ox.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_int_in ├── root_compute_int_in.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_non_const_usrData ├── root_compute_non_const_usrData.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_non_ptr_usrData ├── root_compute_non_ptr_usrData.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_non_uint32_t_xyzar ├── root_compute_non_uint32_t_xyzar.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_non_uint32_t_xyzwar ├── root_compute_non_uint32_t_xyzwar.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_non_void_ret ├── root_compute_non_void_ret.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_really_bad ├── root_compute_really_bad.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_compute_too_many_args ├── root_compute_too_many_args.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_graphics ├── root_graphics.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_root_graphics_13 ├── root_graphics_13.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_rs_fp_two_pragmas ├── rs_fp_two_pragmas.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_rs_prefix ├── rs_prefix.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_set_target_api_10 ├── set_target_api_10.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_set_target_api_9000 ├── set_target_api_9000.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_set_target_api_foo ├── set_target_api_foo.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_struct_array_copy ├── stderr.txt.expect ├── stdout.txt.expect └── struct_array_copy.rscript ├── F_struct_bitfield ├── stderr.txt.expect ├── stdout.txt.expect └── struct_bitfield.rscript ├── F_struct_field_ptr_to_array ├── stderr.txt.expect ├── stdout.txt.expect └── struct_field_ptr_to_array.rscript ├── F_struct_field_ptr_to_fn_noproto ├── stderr.txt.expect ├── stdout.txt.expect └── struct_field_ptr_to_fn_noproto.rscript ├── F_struct_field_ptr_to_fn_proto ├── stderr.txt.expect ├── stdout.txt.expect └── struct_field_ptr_to_fn_proto.rscript ├── F_struct_float3_array ├── stderr.txt.expect ├── stdout.txt.expect └── struct_float3_array.rscript ├── F_struct_ptr ├── stderr.txt.expect ├── stdout.txt.expect └── struct_ptr.rscript ├── F_too_many_inputs ├── stderr.txt.expect ├── stdout.txt.expect └── too_many_inputs.rscript ├── F_union ├── stderr.txt.expect ├── stdout.txt.expect └── union.rscript ├── F_unknown_function ├── stderr.txt.expect ├── stdout.txt.expect ├── unknown_function.rscript └── zzz.rscript ├── F_v15_non_root_kernel ├── stderr.txt.expect ├── stdout.txt.expect └── v15_non_root_kernel.rscript ├── F_vector_cast ├── stderr.txt.expect ├── stdout.txt.expect └── vector_cast.rscript ├── F_void_ptr ├── stderr.txt.expect ├── stdout.txt.expect └── void_ptr.rscript ├── F_warnings_as_error ├── deprecated.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── F_z_wrong_api ├── stderr.txt.expect ├── stdout.txt.expect └── z_wrong_api.rscript ├── P_all_api_11 ├── all11.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_12 ├── all12.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_13 ├── all13.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_14 ├── all14.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_15 ├── all15.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_16 ├── all16.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_17 ├── all17.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_18 ├── all18.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_19 ├── all19.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_20 ├── all20.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_21 ├── all21.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_22 ├── all22.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_23 ├── all23.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_all_api_24 ├── all24.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_alloc_in_struct ├── alloc_in_struct.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_array_cpp ├── array.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_array_init ├── array_init.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_compute ├── compute.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_constant ├── constant.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_debug ├── debug.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_dummy_root ├── dummy_root.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_export_types ├── export_types.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_export_types_v20 ├── export_types.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_extern_const ├── extern_const.rscript ├── rs_core.rsh ├── stderr.txt.expect └── stdout.txt.expect ├── P_float3 ├── float3.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_foreach ├── foreach.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_foreach_multi ├── foreach_multi.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_foreach_options ├── foreach_options.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_fp16 ├── fp16.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_fs_kernel ├── fs_kernel.fs ├── stderr.txt.expect └── stdout.txt.expect ├── P_ignore_warnings ├── ignore_warnings.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_invoke_half_parameter ├── invoke_half_parameter.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_kernel ├── kernel.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_kernel_cpp ├── kernel_cpp.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_kernel_multi_in ├── kernel_multi_in.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_kernel_noalloc ├── kernel_noalloc.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_kernel_noalloc_noarg ├── kernel_noalloc_noarg.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_license ├── license.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_local_ref_after_return ├── local_ref_after_return.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_long64 ├── long64.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_math_fp ├── math_fp.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_math_int ├── math_int.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_matrix_cpp ├── matrix.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_multi_in_target_version ├── multi_in_target_version.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_odr_array ├── def1.rscript ├── def2.rscript ├── inc.rsh ├── stderr.txt.expect └── stdout.txt.expect ├── P_odr_nested_records_1 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_odr_nested_records_2 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_odr_nested_records_3 ├── odr1.rscript ├── odr2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_one_definition_rule ├── def1.rscript ├── def2.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_ooo_compute ├── ooo_compute.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_overload ├── overload.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_redefine_RS_VERSION ├── redefine_RS_VERSION.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_accumulator ├── ScriptC_reduce_general_accumulator.java.expect ├── gen-accumulator.pl ├── reduce_general_accumulator.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_duplicate_array ├── ScriptC_reduce_general_duplicate_array.java.expect ├── reduce_general_duplicate_array.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_examples ├── ScriptC_reduce_general_examples.java.expect ├── reduce_general_examples.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_examples_backward ├── ScriptC_reduce_general_examples_backward.java.expect ├── reduce_general_examples_backward.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_examples_explicit ├── ScriptC_reduce_general_examples_explicit.java.expect ├── reduce_general_examples_explicit.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_examples_halter ├── ScriptC_reduce_general_examples_halter.java.expect ├── reduce_general_examples_halter.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_input ├── ScriptC_reduce_general_input.java.expect ├── ScriptField_MyStruct.java.expect ├── gen-input.pl ├── reduce_general_input.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_inputs ├── ScriptC_reduce_general_inputs.java.expect ├── ScriptField_MyStruct.java.expect ├── gen-inputs.pl ├── reduce_general_inputs.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_reflect ├── reduce_general_reflect.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_result ├── ScriptC_reduce_general_result.java.expect ├── ScriptField_MyStruct.java.expect ├── gen-result.pl ├── reduce_general_result.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reduce_general_struct ├── ScriptC_reduce_general_struct.java.expect ├── reduce_general_struct.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_refcount ├── refcount.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reflection3264_divergent ├── ScriptC_reflection3264_divergent.java.expect ├── ScriptField_Divergent.java.expect ├── ScriptField_DivergentNest.java.expect ├── ScriptField_NonDivergent.java.expect ├── reflection3264_divergent.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reflection3264_divergent_support ├── ScriptC_reflection3264_divergent.java.expect ├── ScriptField_Divergent.java.expect ├── ScriptField_DivergentNest.java.expect ├── ScriptField_NonDivergent.java.expect ├── reflection3264_divergent.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_reflection3264_multifile ├── ScriptC_reflection3264_multifile_1.java.expect ├── ScriptC_reflection3264_multifile_2.java.expect ├── ScriptC_reflection3264_multifile_3.java.expect ├── reflection3264_multifile_1.rscript ├── reflection3264_multifile_2.rscript ├── reflection3264_multifile_3.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_11_i ├── root_11_i.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_11_iouxy ├── root_11_iouxy.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_compute ├── root_compute.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_compute_int32_xy ├── root_compute_int32_xy.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_compute_non_void_ptr_usrData ├── root_compute_non_void_ptr_usrData.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_graphics ├── root_graphics.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_graphics_13 ├── root_graphics_13.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_root_void ├── root_void.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_rs_fp_full ├── rs_fp_full.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_rs_fp_imprecise ├── rs_fp_imprecise.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_rs_fp_relaxed ├── rs_fp_relaxed.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_rs_package_name ├── rs_package_name.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_11 ├── IN_CTS ├── set_target_api_11.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_12 ├── IN_CTS ├── set_target_api_12.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_13 ├── IN_CTS ├── set_target_api_13.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_14 ├── IN_CTS ├── set_target_api_14.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_15 ├── IN_CTS ├── set_target_api_15.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_16 ├── IN_CTS ├── set_target_api_16.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_17 ├── IN_CTS ├── set_target_api_17.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_18 ├── IN_CTS ├── set_target_api_18.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_19 ├── IN_CTS ├── set_target_api_19.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_set_target_api_development ├── set_target_api_development.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_static_struct ├── static_struct.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_str_escape ├── stderr.txt.expect ├── stdout.txt.expect └── str\\escape.rscript ├── P_struct_field ├── ScriptC_struct_field.java.expect ├── ScriptField_InnerOne.java.expect ├── ScriptField_InnerTwo.java.expect ├── ScriptField_Outer.java.expect ├── stderr.txt.expect ├── stdout.txt.expect └── struct_field.rscript ├── P_struct_matrix ├── stderr.txt.expect ├── stdout.txt.expect └── struct_matrix.rscript ├── P_use_RS_VERSION ├── stderr.txt.expect ├── stdout.txt.expect └── use_RS_VERSION.rscript ├── P_verbose ├── stderr.txt.expect ├── stdout.txt.expect └── verbose.rscript ├── P_warnings ├── stderr.txt.expect ├── stdout.txt.expect └── warnings.rscript ├── P_warnings_deprecated ├── deprecated.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── P_warnings_rsSetElementAt ├── setelementat.rscript ├── stderr.txt.expect └── stdout.txt.expect ├── run_slang_tests.sh └── slang_test.py /.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | /build 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/README.md -------------------------------------------------------------------------------- /archives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/archives/README.md -------------------------------------------------------------------------------- /archives/libjansi.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/archives/libjansi.tar.xz -------------------------------------------------------------------------------- /archives/llvm-3.9.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/archives/llvm-3.9.tar.xz -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | -------------------------------------------------------------------------------- /docs/BuildSystemMaintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/BuildSystemMaintainers.md -------------------------------------------------------------------------------- /docs/Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/Building.md -------------------------------------------------------------------------------- /docs/ClangMigration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/ClangMigration.md -------------------------------------------------------------------------------- /docs/ContinuousBuilds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/ContinuousBuilds.md -------------------------------------------------------------------------------- /docs/HardFloatAbi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/HardFloatAbi.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/NdkGdbTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/NdkGdbTesting.md -------------------------------------------------------------------------------- /docs/PlatformApis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/PlatformApis.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/Roadmap.md -------------------------------------------------------------------------------- /docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/Testing.md -------------------------------------------------------------------------------- /docs/Toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/Toolchains.md -------------------------------------------------------------------------------- /docs/UnifiedHeaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/UnifiedHeaders.md -------------------------------------------------------------------------------- /docs/UnifiedHeadersMigration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/UnifiedHeadersMigration.md -------------------------------------------------------------------------------- /docs/UpdatingDocumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/UpdatingDocumentation.md -------------------------------------------------------------------------------- /docs/changelogs/Changelog-r19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/changelogs/Changelog-r19.md -------------------------------------------------------------------------------- /docs/changelogs/Changelog-r20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/changelogs/Changelog-r20.md -------------------------------------------------------------------------------- /docs/changelogs/Changelog-r21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/changelogs/Changelog-r21.md -------------------------------------------------------------------------------- /docs/changelogs/Changelog-r22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/changelogs/Changelog-r22.md -------------------------------------------------------------------------------- /docs/changelogs/Changelog-r23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/changelogs/Changelog-r23.md -------------------------------------------------------------------------------- /docs/user/common_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/user/common_problems.md -------------------------------------------------------------------------------- /docs/user/middleware_vendors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/docs/user/middleware_vendors.md -------------------------------------------------------------------------------- /openjdk-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/README.md -------------------------------------------------------------------------------- /openjdk-build/android-elf-tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/android-elf-tls.md -------------------------------------------------------------------------------- /openjdk-build/img/bionic-tls-layout-in-p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/img/bionic-tls-layout-in-p.png -------------------------------------------------------------------------------- /openjdk-build/img/java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/img/java.jpg -------------------------------------------------------------------------------- /openjdk-build/img/jshell_error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/img/jshell_error.jpg -------------------------------------------------------------------------------- /openjdk-build/img/tls-variant1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/img/tls-variant1.png -------------------------------------------------------------------------------- /openjdk-build/img/tls-variant2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/img/tls-variant2.png -------------------------------------------------------------------------------- /openjdk-build/img/tls_test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/img/tls_test1.jpg -------------------------------------------------------------------------------- /openjdk-build/img/tls_test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/img/tls_test2.jpg -------------------------------------------------------------------------------- /openjdk-build/patches/XToolkit.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/patches/XToolkit.c.patch -------------------------------------------------------------------------------- /openjdk-build/patches/elfFile.hpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/patches/elfFile.hpp.patch -------------------------------------------------------------------------------- /openjdk-build/patches/jni_util_md.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/patches/jni_util_md.c.patch -------------------------------------------------------------------------------- /openjdk-build/patches/net_util_md.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/patches/net_util_md.h.patch -------------------------------------------------------------------------------- /openjdk-build/patches/os_linux.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/patches/os_linux.cpp.patch -------------------------------------------------------------------------------- /openjdk-build/patches/os_posix.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/patches/os_posix.cpp.patch -------------------------------------------------------------------------------- /openjdk-build/patches/ps_core.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/patches/ps_core.c.patch -------------------------------------------------------------------------------- /openjdk-build/tls-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/tls-test/CMakeLists.txt -------------------------------------------------------------------------------- /openjdk-build/tls-test/JavaThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/tls-test/JavaThread.h -------------------------------------------------------------------------------- /openjdk-build/tls-test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/tls-test/build.sh -------------------------------------------------------------------------------- /openjdk-build/tls-test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/tls-test/main.cpp -------------------------------------------------------------------------------- /openjdk-build/tls-test/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/tls-test/thread.cpp -------------------------------------------------------------------------------- /openjdk-build/tls-test/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/tls-test/thread.h -------------------------------------------------------------------------------- /openjdk-build/tls-test/threadLS_linux_aarch64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/openjdk-build/tls-test/threadLS_linux_aarch64.s -------------------------------------------------------------------------------- /patches/android.toolchain.cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/android.toolchain.cmake.patch -------------------------------------------------------------------------------- /patches/base_builders.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/base_builders.py.patch -------------------------------------------------------------------------------- /patches/build-binary.mk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/build-binary.mk.patch -------------------------------------------------------------------------------- /patches/builders.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/builders.py.patch -------------------------------------------------------------------------------- /patches/configs.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/configs.py.patch -------------------------------------------------------------------------------- /patches/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/crypt.h -------------------------------------------------------------------------------- /patches/default.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/default.xml.patch -------------------------------------------------------------------------------- /patches/do_build.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/do_build.py.patch -------------------------------------------------------------------------------- /patches/ndk-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/ndk-build.patch -------------------------------------------------------------------------------- /patches/paths.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/paths.py.patch -------------------------------------------------------------------------------- /patches/sFILE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/sFILE.h -------------------------------------------------------------------------------- /patches/toolchains.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/toolchains.py.patch -------------------------------------------------------------------------------- /patches/vis.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/patches/vis.c.patch -------------------------------------------------------------------------------- /renderscript/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/build.sh -------------------------------------------------------------------------------- /renderscript/libbcc/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/CleanSpec.mk -------------------------------------------------------------------------------- /renderscript/libbcc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/NOTICE -------------------------------------------------------------------------------- /renderscript/libbcc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/OWNERS -------------------------------------------------------------------------------- /renderscript/libbcc/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/README.html -------------------------------------------------------------------------------- /renderscript/libbcc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/README.rst -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_2_7/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_2_7/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_2_7/BitReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_2_7/BitReader.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_2_7/BitReader_2_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_2_7/BitReader_2_7.h -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_2_7/BitcodeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_2_7/BitcodeReader.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_2_7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_2_7/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_2_7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_2_7/Makefile -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_3_0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_3_0/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_3_0/BitReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_3_0/BitReader.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_3_0/BitReader_3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_3_0/BitReader_3_0.h -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_3_0/BitcodeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_3_0/BitcodeReader.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_3_0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_3_0/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_3_0/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_3_0/LLVMBuild.txt -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitReader_3_0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitReader_3_0/Makefile -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitcodeTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitcodeTranslator.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/BitcodeWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/BitcodeWrapper.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/MetadataExtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/MetadataExtractor.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/LLVMBuild.txt -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/Makefile -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/bitcode_wrapperer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/bitcode_wrapperer.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/file_wrapper_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/file_wrapper_input.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/file_wrapper_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/file_wrapper_output.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/in_memory_wrapper_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/in_memory_wrapper_input.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/Wrap/wrapper_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/Wrap/wrapper_output.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/include/bcinfo/BitcodeWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/include/bcinfo/BitcodeWrapper.h -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/libbcinfo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/libbcinfo.map -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/tools/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/tools/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/tools/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/bcinfo/tools/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/bcinfo/tools/main.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/gdb_plugin/android-commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/gdb_plugin/android-commands.py -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/BCCContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/BCCContext.h -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/Compiler.h -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/CompilerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/CompilerConfig.h -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/Config.h -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/Initialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/Initialization.h -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/RSCompilerDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/RSCompilerDriver.h -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/Script.h -------------------------------------------------------------------------------- /renderscript/libbcc/include/bcc/Source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/include/bcc/Source.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Assert.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/BCCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/BCCContext.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/BCCContextImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/BCCContextImpl.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/BCCContextImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/BCCContextImpl.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Compiler.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/CompilerConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/CompilerConfig.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/FileBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/FileBase.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/FileBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/FileBase.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/FileMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/FileMutex.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Initialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Initialization.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Log.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Properties.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSAddDebugInfoPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSAddDebugInfoPass.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSCompilerDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSCompilerDriver.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSEmbedInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSEmbedInfo.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSFunctionsList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSFunctionsList.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSFunctionsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSFunctionsList.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSGlobalInfoPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSGlobalInfoPass.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSInvariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSInvariant.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSInvokeHelperPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSInvokeHelperPass.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSIsThreadablePass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSIsThreadablePass.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSKernelExpand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSKernelExpand.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSScreenFunctionsPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSScreenFunctionsPass.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSScriptGroupFusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSScriptGroupFusion.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSScriptGroupFusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSScriptGroupFusion.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSTransforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSTransforms.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSUtils.h -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSX86CallConvPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSX86CallConvPass.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/RSX86TranslateGEPPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/RSX86TranslateGEPPass.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Script.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/lib/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/lib/Source.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/libbcc-targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/libbcc-targets.mk -------------------------------------------------------------------------------- /renderscript/libbcc/tests/README.lit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/README.lit -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/README -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/build_test_apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/build_test_apk.sh -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/host-tests/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/host-tests/globals.c -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/host-tests/jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/host-tests/jit.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/host-tests/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/host-tests/lit.cfg -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/host-tests/locals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/host-tests/locals.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/host-tests/pass-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/host-tests/pass-struct.c -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/lit.site.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/lit.site.cfg -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/llvm-lit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/llvm-lit -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/target-tests/crash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/target-tests/crash.rs -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/target-tests/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/target-tests/lit.cfg -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/target-tests/locals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/target-tests/locals.rs -------------------------------------------------------------------------------- /renderscript/libbcc/tests/debuginfo/test_bcc_debuginfo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/debuginfo/test_bcc_debuginfo.pl -------------------------------------------------------------------------------- /renderscript/libbcc/tests/libbcc/getelementptr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/libbcc/getelementptr.ll -------------------------------------------------------------------------------- /renderscript/libbcc/tests/libbcc/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/libbcc/lit.cfg -------------------------------------------------------------------------------- /renderscript/libbcc/tests/libbcc/tbaa-through-alloca.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/libbcc/tbaa-through-alloca.ll -------------------------------------------------------------------------------- /renderscript/libbcc/tests/libbcc/tbaa.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/libbcc/tbaa.ll -------------------------------------------------------------------------------- /renderscript/libbcc/tests/libbcc/test_slang_version_info.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/libbcc/test_slang_version_info.ll -------------------------------------------------------------------------------- /renderscript/libbcc/tests/run-lit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tests/run-lit-tests.sh -------------------------------------------------------------------------------- /renderscript/libbcc/tools/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/tools/bcc/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/bcc/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/tools/bcc/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/bcc/Main.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/tools/bcc_compat/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/bcc_compat/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/tools/bcc_compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/bcc_compat/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/libbcc/tools/bcc_compat/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/bcc_compat/Main.cpp -------------------------------------------------------------------------------- /renderscript/libbcc/tools/bcc_strip_attr/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/bcc_strip_attr/Android.bp -------------------------------------------------------------------------------- /renderscript/libbcc/tools/bcc_strip_attr/bcc_strip_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/libbcc/tools/bcc_strip_attr/bcc_strip_attr.cpp -------------------------------------------------------------------------------- /renderscript/liblog/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /renderscript/liblog/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/Android.bp -------------------------------------------------------------------------------- /renderscript/liblog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/liblog/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/NOTICE -------------------------------------------------------------------------------- /renderscript/liblog/OWNERS: -------------------------------------------------------------------------------- 1 | tomcherry@google.com 2 | -------------------------------------------------------------------------------- /renderscript/liblog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/README.md -------------------------------------------------------------------------------- /renderscript/liblog/README.protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/README.protocol.md -------------------------------------------------------------------------------- /renderscript/liblog/event.logtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/event.logtags -------------------------------------------------------------------------------- /renderscript/liblog/event_tag_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/event_tag_map.cpp -------------------------------------------------------------------------------- /renderscript/liblog/include/android-base/errno_restorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/android-base/errno_restorer.h -------------------------------------------------------------------------------- /renderscript/liblog/include/android-base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/android-base/macros.h -------------------------------------------------------------------------------- /renderscript/liblog/include/android/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/android/log.h -------------------------------------------------------------------------------- /renderscript/liblog/include/cutils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/cutils/list.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/event_tag_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/event_tag_map.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_event_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_event_list.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_id.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_main.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_properties.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_radio.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_read.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_safetynet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_safetynet.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_system.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/log_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/log_time.h -------------------------------------------------------------------------------- /renderscript/liblog/include/log/logprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/log/logprint.h -------------------------------------------------------------------------------- /renderscript/liblog/include/private/android_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/private/android_logger.h -------------------------------------------------------------------------------- /renderscript/liblog/include/system/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/system/graphics.h -------------------------------------------------------------------------------- /renderscript/liblog/include/system/thread_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/system/thread_defs.h -------------------------------------------------------------------------------- /renderscript/liblog/include/utils/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/utils/Errors.h -------------------------------------------------------------------------------- /renderscript/liblog/include/utils/FastStrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/utils/FastStrcmp.h -------------------------------------------------------------------------------- /renderscript/liblog/include/utils/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/utils/RWLock.h -------------------------------------------------------------------------------- /renderscript/liblog/include/utils/ThreadDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include/utils/ThreadDefs.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/android: -------------------------------------------------------------------------------- 1 | ../include/android -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include_vndk/log/log.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_event_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include_vndk/log/log_event_list.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_id.h: -------------------------------------------------------------------------------- 1 | ../../include/log/log_id.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_main.h: -------------------------------------------------------------------------------- 1 | ../../include/log/log_main.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_properties.h: -------------------------------------------------------------------------------- 1 | ../../include/log/log_properties.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_radio.h: -------------------------------------------------------------------------------- 1 | ../../include/log/log_radio.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_read.h: -------------------------------------------------------------------------------- 1 | ../../include/log/log_read.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_safetynet.h: -------------------------------------------------------------------------------- 1 | ../../include/log/log_safetynet.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_system.h: -------------------------------------------------------------------------------- 1 | ../../include/log/log_system.h -------------------------------------------------------------------------------- /renderscript/liblog/include_vndk/log/log_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/include_vndk/log/log_time.h -------------------------------------------------------------------------------- /renderscript/liblog/liblog.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/liblog.map.txt -------------------------------------------------------------------------------- /renderscript/liblog/log_event_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/log_event_list.cpp -------------------------------------------------------------------------------- /renderscript/liblog/log_event_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/log_event_write.cpp -------------------------------------------------------------------------------- /renderscript/liblog/log_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/log_time.cpp -------------------------------------------------------------------------------- /renderscript/liblog/logd_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logd_reader.cpp -------------------------------------------------------------------------------- /renderscript/liblog/logd_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logd_reader.h -------------------------------------------------------------------------------- /renderscript/liblog/logd_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logd_writer.cpp -------------------------------------------------------------------------------- /renderscript/liblog/logd_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logd_writer.h -------------------------------------------------------------------------------- /renderscript/liblog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logger.h -------------------------------------------------------------------------------- /renderscript/liblog/logger_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logger_name.cpp -------------------------------------------------------------------------------- /renderscript/liblog/logger_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logger_read.cpp -------------------------------------------------------------------------------- /renderscript/liblog/logger_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logger_write.cpp -------------------------------------------------------------------------------- /renderscript/liblog/logger_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logger_write.h -------------------------------------------------------------------------------- /renderscript/liblog/logprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/logprint.cpp -------------------------------------------------------------------------------- /renderscript/liblog/pmsg_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/pmsg_reader.cpp -------------------------------------------------------------------------------- /renderscript/liblog/pmsg_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/pmsg_reader.h -------------------------------------------------------------------------------- /renderscript/liblog/pmsg_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/pmsg_writer.cpp -------------------------------------------------------------------------------- /renderscript/liblog/pmsg_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/pmsg_writer.h -------------------------------------------------------------------------------- /renderscript/liblog/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/properties.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/Android.bp -------------------------------------------------------------------------------- /renderscript/liblog/tests/AndroidTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/AndroidTest.xml -------------------------------------------------------------------------------- /renderscript/liblog/tests/libc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/libc_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/liblog_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/liblog_benchmark.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/liblog_default_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/liblog_default_tag.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/liblog_global_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/liblog_global_state.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/liblog_host_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/liblog_host_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/liblog_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/liblog_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/log_id_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/log_id_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/log_radio_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/log_radio_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/log_read_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/log_read_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/log_system_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/log_system_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/log_time_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/log_time_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/log_wrap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/log_wrap_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/logd_writer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/logd_writer_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/tests/logprint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/tests/logprint_test.cpp -------------------------------------------------------------------------------- /renderscript/liblog/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/liblog/uio.h -------------------------------------------------------------------------------- /renderscript/rs/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/rs/Android.bp -------------------------------------------------------------------------------- /renderscript/rs/rsDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/rs/rsDefines.h -------------------------------------------------------------------------------- /renderscript/slang/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/.clang-format -------------------------------------------------------------------------------- /renderscript/slang/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/Android.bp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/Android.bp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/BitcodeWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/BitcodeWriter.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/BitcodeWriterPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/BitcodeWriterPass.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/Makefile -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/ReaderWriter_2_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/ReaderWriter_2_9.h -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/ValueEnumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/ValueEnumerator.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9/ValueEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9/ValueEnumerator.h -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9_func/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9_func/Android.bp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9_func/BitcodeWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9_func/BitcodeWriter.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9_func/BitcodeWriterPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9_func/BitcodeWriterPass.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9_func/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9_func/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9_func/ValueEnumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9_func/ValueEnumerator.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_2_9_func/ValueEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_2_9_func/ValueEnumerator.h -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_3_2/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_3_2/Android.bp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_3_2/BitcodeWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_3_2/BitcodeWriter.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_3_2/BitcodeWriterPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_3_2/BitcodeWriterPass.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_3_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_3_2/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_3_2/ReaderWriter_3_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_3_2/ReaderWriter_3_2.h -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_3_2/ValueEnumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_3_2/ValueEnumerator.cpp -------------------------------------------------------------------------------- /renderscript/slang/BitWriter_3_2/ValueEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/BitWriter_3_2/ValueEnumerator.h -------------------------------------------------------------------------------- /renderscript/slang/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/slang/METADATA: -------------------------------------------------------------------------------- 1 | third_party { 2 | license_type: NOTICE 3 | } 4 | -------------------------------------------------------------------------------- /renderscript/slang/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/NOTICE -------------------------------------------------------------------------------- /renderscript/slang/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/OWNERS -------------------------------------------------------------------------------- /renderscript/slang/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/README.html -------------------------------------------------------------------------------- /renderscript/slang/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/README.rst -------------------------------------------------------------------------------- /renderscript/slang/RSCCOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/RSCCOptions.inc -------------------------------------------------------------------------------- /renderscript/slang/RSCCOptions.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/RSCCOptions.td -------------------------------------------------------------------------------- /renderscript/slang/StripUnkAttr/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/StripUnkAttr/Android.bp -------------------------------------------------------------------------------- /renderscript/slang/StripUnkAttr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/StripUnkAttr/CMakeLists.txt -------------------------------------------------------------------------------- /renderscript/slang/StripUnkAttr/strip_unknown_attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/StripUnkAttr/strip_unknown_attributes.cpp -------------------------------------------------------------------------------- /renderscript/slang/StripUnkAttr/strip_unknown_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/StripUnkAttr/strip_unknown_attributes.h -------------------------------------------------------------------------------- /renderscript/slang/legacy_bitcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/legacy_bitcode.h -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/P_array_init/array_init.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/P_array_init/array_init.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/P_compute/compute.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/P_compute/compute.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/P_ref_count/func_params.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/P_ref_count/func_params.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/P_ref_count/ref_count.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/P_ref_count/ref_count.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/P_ref_count/ref_count2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/P_ref_count/ref_count2.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/README -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/debug/debug_disabled.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/debug/debug_disabled.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/debug/debug_enabled.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/debug/debug_enabled.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/lit.cfg -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/opt/locals_opt_0.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/opt/locals_opt_0.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/opt/locals_opt_3.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/opt/locals_opt_3.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/opt/locals_opt_default.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/opt/locals_opt_default.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/padding/bitfield.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/padding/bitfield.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/padding/more_structs.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/padding/more_structs.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/padding/small_struct.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/padding/small_struct.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/padding/small_struct_2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/padding/small_struct_2.rscript -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/rs-filecheck-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/rs-filecheck-wrapper.sh -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/run-lit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/run-lit-tests.sh -------------------------------------------------------------------------------- /renderscript/slang/lit-tests/scriptc-filecheck-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lit-tests/scriptc-filecheck-wrapper.sh -------------------------------------------------------------------------------- /renderscript/slang/lld_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/lld_main.cpp -------------------------------------------------------------------------------- /renderscript/slang/llvm-rs-as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/llvm-rs-as.cpp -------------------------------------------------------------------------------- /renderscript/slang/llvm-rs-cc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/llvm-rs-cc.cpp -------------------------------------------------------------------------------- /renderscript/slang/os_sep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/os_sep.h -------------------------------------------------------------------------------- /renderscript/slang/rs_cc_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/rs_cc_options.cpp -------------------------------------------------------------------------------- /renderscript/slang/rs_cc_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/rs_cc_options.h -------------------------------------------------------------------------------- /renderscript/slang/rs_cc_options_orig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/rs_cc_options_orig.cpp -------------------------------------------------------------------------------- /renderscript/slang/rs_version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/rs_version.mk -------------------------------------------------------------------------------- /renderscript/slang/slang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang.h -------------------------------------------------------------------------------- /renderscript/slang/slang_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_assert.h -------------------------------------------------------------------------------- /renderscript/slang/slang_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_backend.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_backend.h -------------------------------------------------------------------------------- /renderscript/slang/slang_bitcode_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_bitcode_gen.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_bitcode_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_bitcode_gen.h -------------------------------------------------------------------------------- /renderscript/slang/slang_diagnostic_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_diagnostic_buffer.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_diagnostic_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_diagnostic_buffer.h -------------------------------------------------------------------------------- /renderscript/slang/slang_pragma_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_pragma_list.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_ast_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_ast_replace.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_ast_replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_ast_replace.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_check_ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_check_ast.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_check_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_check_ast.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_context.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_context.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_element.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_element.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_foreach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_foreach.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_foreach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_foreach.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_func.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_func.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_reduce.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_reduce.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_type.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_type.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_var.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_export_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_export_var.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_exportable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_exportable.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_exportable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_exportable.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_foreach_lowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_foreach_lowering.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_foreach_lowering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_foreach_lowering.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_metadata.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_object_ref_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_object_ref_count.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_object_ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_object_ref_count.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_pragma_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_pragma_handler.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_pragma_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_pragma_handler.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflect_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflect_utils.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflect_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflect_utils.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflection.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflection.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflection_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflection_cpp.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflection_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflection_cpp.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflection_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflection_state.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_reflection_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_reflection_state.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_special_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_special_func.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_special_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_special_func.h -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_special_kernel_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_special_kernel_param.cpp -------------------------------------------------------------------------------- /renderscript/slang/slang_rs_special_kernel_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_rs_special_kernel_param.h -------------------------------------------------------------------------------- /renderscript/slang/slang_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/slang_version.h -------------------------------------------------------------------------------- /renderscript/slang/tests/F_Werror/Werror.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_Werror/Werror.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_Werror/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_Werror/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_Werror/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_anon_struct/anon_struct.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_anon_struct/anon_struct.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_anon_struct/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_anon_struct/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_anon_struct/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_anon_struct_kernel_sig/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_anon_struct_typedef/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_anon_struct_usrdata/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_bad_pragmas/bad_pragmas.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_bad_pragmas/bad_pragmas.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_bad_pragmas/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_bad_pragmas/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_bad_pragmas/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_bad_version_pragma/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_const_array_arg/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_const_array_arg/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_const_array_arg/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_api/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ctxt_wrong_api/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_api/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_name/context.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ctxt_wrong_name/context.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_name/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ctxt_wrong_name/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_name/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_place/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_type/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ctxt_wrong_type/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ctxt_wrong_type/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_extern_const/extern_const.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_extern_const/extern_const.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_extern_const/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_extern_const/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_extern_const/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_float3_array/float3_array.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_float3_array/float3_array.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_float3_array/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_float3_array/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_float3_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_float3_v13/float3_v13.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_float3_v13/float3_v13.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_float3_v13/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_float3_v13/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_float3_v13/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_foreach_forward_reference/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_foreach_from_kernel/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_foreach_non_kernel/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_foreach_unexpected_allocs/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_foreach_unexpected_kernel_arg/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fp16_wrong_api/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_fp16_wrong_api/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fp16_wrong_api/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_oldkernel/fs_oldkernel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_fs_oldkernel/fs_oldkernel.fs -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_oldkernel/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_fs_oldkernel/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_oldkernel/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_ptr/fs_ptr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_fs_ptr/fs_ptr.fs -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_ptr/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_fs_ptr/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_ptr/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_types/fs_types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_fs_types/fs_types.fs -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_types/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_fs_types/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_fs_types/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_global_init/global_init.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_global_init/global_init.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_global_init/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_global_init/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_global_init/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_incompatible_handles/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_init_nonvoid/init_nonvoid.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_init_nonvoid/init_nonvoid.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_init_nonvoid/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_init_nonvoid/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_init_nonvoid/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_init_params/init_params.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_init_params/init_params.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_init_params/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_init_params/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_init_params/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_int_ptr_ptr/int_ptr_ptr.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_int_ptr_ptr/int_ptr_ptr.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_int_ptr_ptr/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_int_ptr_ptr/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_int_ptr_ptr/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_invoke_return/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_invoke_return/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_invoke_return/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_16/kernel_16.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_kernel_16/kernel_16.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_16/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_kernel_16/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_16/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_badattr/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_kernel_badattr/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_badattr/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_badsig/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_kernel_badsig/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_badsig/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_noattr/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_kernel_noattr/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_noattr/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_ptr_param/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_ptr_ret_val/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_static/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_kernel_static/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_kernel_static/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_large_array/large_array.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_large_array/large_array.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_large_array/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_large_array/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_large_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_mix_vector/mix_vector.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_mix_vector/mix_vector.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_mix_vector/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_mix_vector/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_mix_vector/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_multi_export_errors/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_multi_in_target_version/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_multidim_array/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_multidim_array/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_multidim_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_java_package_name/no_java_package_name.rscript: -------------------------------------------------------------------------------- 1 | #pragma version(1) 2 | 3 | int root(void) { 4 | return 10; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_java_package_name/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_pragma/first.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_no_pragma/first.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_pragma/second.rscript: -------------------------------------------------------------------------------- 1 | #pragma version(1) 2 | 3 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_pragma/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_no_pragma/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_pragma/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_version_pragma/no_version_pragma.rscript: -------------------------------------------------------------------------------- 1 | #pragma rs java_package_name(foo) 2 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_no_version_pragma/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_1/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_1/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_1/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_1/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_1/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_2/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_2/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_2/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_2/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_2/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_3/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_3/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_3/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_3/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_3/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_4/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_4/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_4/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_4/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_4/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_5/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_5/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_5/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_5/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_5/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_6/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_6/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_6/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_6/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_6/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_7/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_7/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_7/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_7/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_7/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_8/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_8/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_8/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_8/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_8/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_9/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_9/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_9/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_odr_nested_records_9/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_odr_nested_records_9/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule1/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule1/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule1/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule1/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule1/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule2/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule2/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule2/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule2/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule2/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule3/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule3/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule3/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule3/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule3/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule4/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule4/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule4/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule4/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule4/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule5/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule5/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule5/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule5/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule5/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule6/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule6/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule6/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule6/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule6/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule7/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule7/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule7/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule7/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule7/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule8/def1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule8/def1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule8/def2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_one_definition_rule8/def2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_one_definition_rule8/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_in_struct/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ptr_in_struct/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_in_struct/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_in_struct_for_call/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_to_array/ptr_to_array.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ptr_to_array/ptr_to_array.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_to_array/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ptr_to_array/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_to_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_to_fn_noproto/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_to_fn_proto/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_ptr_to_fn_proto/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_ptr_to_fn_proto/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reduce_general_bad_accumulator/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reduce_general_bad_function/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reduce_general_bad_halter/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reduce_general_bad_result/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reduce_general_parse/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reduce_general_void/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reduce_general_wrong_api/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_refcount_15/refcount_15.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_refcount_15/refcount_15.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_refcount_15/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_refcount_15/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_refcount_15/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_foreach_mismatch/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_foreach_mismatch_extra32/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_foreach_mismatch_extra64/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_foreach_mismatch_name32/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_foreach_mismatch_name64/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_invokable_extra32/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_invokable_extra64/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_invokable_mismatch/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_multifile/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_package_mismatch/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_reduce_extra32/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_reduce_extra64/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_reduce_mismatch/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_reduce_mismatch_name_exp/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_reduce_mismatch_name_noexp/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_struct_mismatch/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_variable_extra32/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_variable_extra64/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_variable_mismatch/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_reflection3264_variable_mismatch_init/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_11_ox/root_11_ox.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_root_11_ox/root_11_ox.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_11_ox/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_root_11_ox/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_11_ox/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_int_in/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_non_const_usrData/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_non_ptr_usrData/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_non_uint32_t_xyzar/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_non_uint32_t_xyzwar/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_non_void_ret/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_really_bad/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_compute_too_many_args/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_graphics/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_root_graphics/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_graphics/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_root_graphics_13/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_rs_fp_two_pragmas/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_rs_prefix/rs_prefix.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_rs_prefix/rs_prefix.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_rs_prefix/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_rs_prefix/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_rs_prefix/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_set_target_api_10/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | error: target API level '10' is out of range ('11' - '24') 2 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_set_target_api_10/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_set_target_api_9000/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | error: target API level '9000' is out of range ('11' - '24') 2 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_set_target_api_9000/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_set_target_api_foo/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_array_copy/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_bitfield/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_struct_bitfield/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_bitfield/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_field_ptr_to_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_field_ptr_to_fn_noproto/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_field_ptr_to_fn_proto/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_float3_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_ptr/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_struct_ptr/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_ptr/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_struct_ptr/struct_ptr.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_struct_ptr/struct_ptr.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_too_many_inputs/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_too_many_inputs/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_too_many_inputs/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_union/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_union/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_union/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_union/union.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_union/union.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_unknown_function/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_unknown_function/zzz.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_unknown_function/zzz.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_v15_non_root_kernel/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_vector_cast/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_vector_cast/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_vector_cast/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_vector_cast/vector_cast.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_vector_cast/vector_cast.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_void_ptr/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_void_ptr/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_void_ptr/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_void_ptr/void_ptr.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_void_ptr/void_ptr.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/F_warnings_as_error/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_z_wrong_api/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_z_wrong_api/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/F_z_wrong_api/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/F_z_wrong_api/z_wrong_api.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/F_z_wrong_api/z_wrong_api.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_11/all11.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_11/all11.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_11/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_11/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_12/all12.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_12/all12.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_12/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_12/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_13/all13.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_13/all13.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_13/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_13/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_14/all14.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_14/all14.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_14/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_14/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_15/all15.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_15/all15.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_15/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_15/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_16/all16.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_16/all16.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_16/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_16/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_17/all17.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_17/all17.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_17/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_17/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_18/all18.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_18/all18.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_18/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_18/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_19/all19.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_19/all19.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_19/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_19/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_20/all20.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_20/all20.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_20/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_20/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_21/all21.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_21/all21.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_21/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_21/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_22/all22.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_22/all22.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_22/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_22/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_23/all23.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_23/all23.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_23/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_23/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_24/all24.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_all_api_24/all24.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_24/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_all_api_24/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_alloc_in_struct/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_alloc_in_struct/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_array_cpp/array.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_array_cpp/array.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_array_cpp/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_array_cpp/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_array_init/array_init.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_array_init/array_init.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_array_init/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_array_init/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/P_array_init/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_compute/compute.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_compute/compute.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_compute/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_compute/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_constant/constant.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_constant/constant.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_constant/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_constant/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/P_constant/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_debug/debug.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_debug/debug.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_debug/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_debug/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_dummy_root/dummy_root.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_dummy_root/dummy_root.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_dummy_root/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_dummy_root/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_export_types/export_types.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_export_types/export_types.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_export_types/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_export_types/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_export_types_v20/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_export_types_v20/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_extern_const/extern_const.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_extern_const/extern_const.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_extern_const/rs_core.rsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_extern_const/rs_core.rsh -------------------------------------------------------------------------------- /renderscript/slang/tests/P_extern_const/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_extern_const/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_float3/float3.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_float3/float3.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_float3/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_float3/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_foreach/foreach.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_foreach/foreach.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_foreach/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_foreach/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_foreach_multi/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_foreach_multi/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_foreach_options/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_foreach_options/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_fp16/fp16.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_fp16/fp16.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_fp16/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_fp16/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_fs_kernel/fs_kernel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_fs_kernel/fs_kernel.fs -------------------------------------------------------------------------------- /renderscript/slang/tests/P_fs_kernel/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_fs_kernel/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_ignore_warnings/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_ignore_warnings/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_invoke_half_parameter/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_invoke_half_parameter/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel/kernel.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_kernel/kernel.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_cpp/kernel_cpp.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_kernel_cpp/kernel_cpp.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_cpp/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_cpp/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_multi_in/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_multi_in/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_noalloc/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_noalloc/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_noalloc_noarg/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_kernel_noalloc_noarg/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_license/license.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_license/license.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_license/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_license/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_local_ref_after_return/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_local_ref_after_return/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_long64/long64.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_long64/long64.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_long64/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_long64/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_math_fp/math_fp.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_math_fp/math_fp.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_math_fp/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_math_fp/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_math_int/math_int.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_math_int/math_int.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_math_int/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_math_int/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_matrix_cpp/matrix.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_matrix_cpp/matrix.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_matrix_cpp/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_matrix_cpp/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_multi_in_target_version/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_multi_in_target_version/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_array/def1.rscript: -------------------------------------------------------------------------------- 1 | #include "inc.rsh" 2 | 3 | SameDefinition1 o1; 4 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_array/def2.rscript: -------------------------------------------------------------------------------- 1 | #include "inc.rsh" 2 | 3 | SameDefinition1 o1; 4 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_array/inc.rsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_odr_array/inc.rsh -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_array/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_1/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_odr_nested_records_1/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_1/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_odr_nested_records_1/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_1/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_1/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_2/odr1.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_odr_nested_records_2/odr1.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_2/odr2.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_odr_nested_records_2/odr2.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_2/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_2/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_3/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_odr_nested_records_3/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_one_definition_rule/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_one_definition_rule/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_ooo_compute/ooo_compute.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_ooo_compute/ooo_compute.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_ooo_compute/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_ooo_compute/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_overload/overload.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_overload/overload.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_overload/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_overload/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_redefine_RS_VERSION/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_accumulator/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_accumulator/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_duplicate_array/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_duplicate_array/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples_backward/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples_backward/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples_explicit/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples_explicit/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples_halter/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_examples_halter/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_input/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_input/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_inputs/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_inputs/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_reflect/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_reflect/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_result/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_result/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_struct/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reduce_general_struct/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_refcount/refcount.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_refcount/refcount.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_refcount/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_refcount/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reflection3264_divergent/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reflection3264_divergent/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reflection3264_divergent_support/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reflection3264_divergent_support/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reflection3264_multifile/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_reflection3264_multifile/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_11_i/root_11_i.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_root_11_i/root_11_i.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_11_i/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_11_i/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_11_iouxy/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_11_iouxy/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_compute/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_compute/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_compute_int32_xy/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_compute_int32_xy/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_compute_non_void_ptr_usrData/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_compute_non_void_ptr_usrData/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_graphics/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_graphics/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_graphics_13/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_graphics_13/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_void/root_void.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_root_void/root_void.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_void/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_root_void/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_fp_full/rs_fp_full.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_rs_fp_full/rs_fp_full.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_fp_full/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_fp_full/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_fp_imprecise/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_fp_relaxed/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_fp_relaxed/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_package_name/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_rs_package_name/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_11/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_11/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_11/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_12/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_12/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_12/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_13/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_13/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_13/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_14/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_14/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_14/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_15/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_15/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_15/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_16/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_16/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_16/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_17/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_17/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_17/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_18/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_18/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_18/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_19/IN_CTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_19/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_19/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_development/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_set_target_api_development/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_static_struct/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_static_struct/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_str_escape/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_str_escape/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_str_escape/str\\escape.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_str_escape/str\\escape.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_struct_field/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_struct_field/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_struct_matrix/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_struct_matrix/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_use_RS_VERSION/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_use_RS_VERSION/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_verbose/stderr.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_verbose/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | Generating ScriptC_verbose.java 2 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_verbose/verbose.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_verbose/verbose.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_warnings/stderr.txt.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_warnings/stderr.txt.expect -------------------------------------------------------------------------------- /renderscript/slang/tests/P_warnings/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_warnings/warnings.rscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/P_warnings/warnings.rscript -------------------------------------------------------------------------------- /renderscript/slang/tests/P_warnings_deprecated/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/P_warnings_rsSetElementAt/stdout.txt.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renderscript/slang/tests/run_slang_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/run_slang_tests.sh -------------------------------------------------------------------------------- /renderscript/slang/tests/slang_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnostic-apollo/termux-ndk/HEAD/renderscript/slang/tests/slang_test.py --------------------------------------------------------------------------------