├── .bazelrc ├── .bazelversion ├── .cargo └── config.toml ├── .clang-format ├── .github ├── pull_request_template.md └── workflows │ ├── release.yml │ ├── stale.yml │ └── test-check-lint.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── MODULE.bazel.lock ├── README.md ├── STYLE.md ├── WORKSPACE ├── app └── blitzar │ ├── BUILD │ └── main.cc ├── bazel ├── BUILD ├── libbacktrace │ ├── BUILD │ ├── backtrace-supported.h │ ├── config.h │ └── libbacktrace.BUILD ├── spdlog.BUILD ├── stacktrace.patch ├── sxt_benchmark.bzl └── sxt_build_system.bzl ├── benchmark ├── README.md ├── inner_product_proof │ ├── BUILD │ ├── benchmark.m.cc │ ├── params.cc │ └── params.h ├── memory │ ├── BUILD │ └── copy.m.cc ├── multi_commitment │ ├── BUILD │ └── benchmark.m.cc ├── multi_exp1 │ ├── BUILD │ ├── README.md │ ├── benchmark.m.cc │ ├── multi_exp_cpu.cc │ ├── multi_exp_cpu.h │ ├── multi_exp_gpu.cu │ ├── multi_exp_gpu.h │ ├── multiply_add.cc │ └── multiply_add.h ├── multi_exp_pip │ ├── BUILD │ ├── README.md │ └── benchmark.m.cc ├── multi_exp_triangle │ ├── BUILD │ ├── README.md │ └── benchmark.m.cc ├── multiprod1 │ ├── BUILD │ ├── README.md │ ├── benchmark.m.cc │ └── benchmark.sh ├── primitives │ ├── BUILD │ ├── README.md │ ├── benchmark.m.cc │ ├── curve_ops_bls12_381.cu │ ├── curve_ops_bls12_381.h │ ├── curve_ops_bn254.cu │ ├── curve_ops_bn254.h │ ├── field_ops_bls12_381.cu │ ├── field_ops_bls12_381.h │ ├── field_ops_bn254.cu │ ├── field_ops_bn254.h │ ├── stats.cc │ └── stats.h ├── reduce2 │ ├── BUILD │ ├── README.md │ ├── benchmark.m.cc │ ├── reduce_cpu.cc │ ├── reduce_cpu.h │ ├── reduce_gpu.cu │ └── reduce_gpu.h ├── scripts │ └── run_benchmarks.py └── sumcheck │ ├── BUILD │ └── benchmark.m.cc ├── cbindings ├── BUILD ├── backend.cc ├── backend.h ├── backend.t.cc ├── blitzar_api.cc ├── blitzar_api.h ├── fixed_pedersen.cc ├── fixed_pedersen.h ├── fixed_pedersen.t.cc ├── get_generators.cc ├── get_generators.h ├── get_generators.t.cc ├── get_one_commit.cc ├── get_one_commit.h ├── get_one_commit.t.cc ├── inner_product_proof.cc ├── inner_product_proof.h ├── inner_product_proof.t.cc ├── libblitzar-export-map.ld ├── pedersen.cc ├── pedersen.h ├── pedersen.t.cc ├── sumcheck.cc ├── sumcheck.h └── sumcheck.t.cc ├── ci ├── build.sh ├── lsan.supp └── lsan_hack.sh ├── example ├── cbindings1 │ ├── BUILD │ └── main.cc ├── exponentiation1 │ ├── BUILD │ ├── exponentiate_cpu.cc │ ├── exponentiate_cpu.h │ ├── exponentiate_gpu.cu │ ├── exponentiate_gpu.h │ └── main.cc ├── field_arithmetic │ ├── BUILD │ ├── reduce.cc │ ├── reduce1.cu │ └── reduce1.h └── multiproduct1 │ ├── BUILD │ └── main.cc ├── flake.lock ├── flake.nix ├── nix ├── bazel.nix ├── clang.nix ├── clang_driver.patch ├── compiler_rt.patch ├── cuda.nix ├── cuda_host_defines.patch └── shell.nix ├── package.json ├── rust ├── blitzar-sys │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ │ └── lib.rs └── tests │ ├── .gitignore │ ├── Cargo.toml │ └── src │ └── main.rs ├── sxt ├── algorithm │ ├── base │ │ ├── BUILD │ │ ├── gather_mapper.cc │ │ ├── gather_mapper.h │ │ ├── gather_mapper.t.cc │ │ ├── identity_mapper.cc │ │ ├── identity_mapper.h │ │ ├── identity_mapper.t.cc │ │ ├── index_functor.cc │ │ ├── index_functor.h │ │ ├── mapper.cc │ │ ├── mapper.h │ │ ├── reducer.cc │ │ ├── reducer.h │ │ ├── reducer_utility.cc │ │ ├── reducer_utility.h │ │ ├── transform_functor.cc │ │ └── transform_functor.h │ ├── block │ │ ├── BUILD │ │ ├── runlength_count.cc │ │ ├── runlength_count.h │ │ └── runlength_count.t.cc │ ├── iteration │ │ ├── BUILD │ │ ├── for_each.cc │ │ ├── for_each.h │ │ ├── for_each.t.cc │ │ ├── kernel_fit.cc │ │ ├── kernel_fit.h │ │ ├── kernel_fit.t.cc │ │ ├── transform.cc │ │ ├── transform.h │ │ └── transform.t.cc │ └── reduction │ │ ├── BUILD │ │ ├── kernel_fit.cc │ │ ├── kernel_fit.h │ │ ├── kernel_fit.t.cc │ │ ├── reduction.cc │ │ ├── reduction.h │ │ ├── reduction.t.cc │ │ ├── test_reducer.cc │ │ ├── test_reducer.h │ │ ├── thread_reduction.cc │ │ ├── thread_reduction.h │ │ ├── warp_reduction.cc │ │ └── warp_reduction.h ├── base │ ├── bit │ │ ├── BUILD │ │ ├── count.cc │ │ ├── count.h │ │ ├── count.t.cc │ │ ├── iteration.cc │ │ ├── iteration.h │ │ ├── iteration.t.cc │ │ ├── load.cc │ │ ├── load.h │ │ ├── permutation.cc │ │ ├── permutation.h │ │ ├── permutation.t.cc │ │ ├── span_op.cc │ │ ├── span_op.h │ │ ├── span_op.t.cc │ │ ├── store.cc │ │ ├── store.h │ │ ├── zero_equality.cc │ │ ├── zero_equality.h │ │ └── zero_equality.t.cc │ ├── concept │ │ ├── BUILD │ │ ├── field.cc │ │ ├── field.h │ │ ├── memcpyable_ranges.cc │ │ ├── memcpyable_ranges.h │ │ └── memcpyable_ranges.t.cc │ ├── container │ │ ├── BUILD │ │ ├── blob_array.cc │ │ ├── blob_array.h │ │ ├── blob_array.t.cc │ │ ├── span.cc │ │ ├── span.h │ │ ├── span.t.cc │ │ ├── span_iterator.cc │ │ ├── span_iterator.h │ │ ├── span_iterator.t.cc │ │ ├── span_utility.cc │ │ ├── span_utility.h │ │ ├── span_utility.t.cc │ │ ├── span_void.cc │ │ ├── span_void.h │ │ ├── span_void.t.cc │ │ ├── stack_array.cc │ │ ├── stack_array.h │ │ └── stack_array.t.cc │ ├── curve │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ ├── example_element.cc │ │ ├── example_element.h │ │ └── example_element.t.cc │ ├── device │ │ ├── BUILD │ │ ├── active_device_guard.cc │ │ ├── active_device_guard.h │ │ ├── active_device_guard.t.cc │ │ ├── device_map.cc │ │ ├── device_map.h │ │ ├── device_map.t.cc │ │ ├── event.cc │ │ ├── event.h │ │ ├── event.t.cc │ │ ├── event_utility.cc │ │ ├── event_utility.h │ │ ├── memory_utility.cc │ │ ├── memory_utility.h │ │ ├── memory_utility.t.cc │ │ ├── pinned_buffer.cc │ │ ├── pinned_buffer.h │ │ ├── pinned_buffer.t.cc │ │ ├── pinned_buffer_handle.cc │ │ ├── pinned_buffer_handle.h │ │ ├── pinned_buffer_pool.cc │ │ ├── pinned_buffer_pool.h │ │ ├── pinned_buffer_pool.t.cc │ │ ├── pointer_attributes.cc │ │ ├── pointer_attributes.h │ │ ├── pointer_kind.cc │ │ ├── pointer_kind.h │ │ ├── property.cc │ │ ├── property.h │ │ ├── property.t.cc │ │ ├── split.cc │ │ ├── split.h │ │ ├── split.t.cc │ │ ├── state.cc │ │ ├── state.h │ │ ├── state.t.cc │ │ ├── stream.cc │ │ ├── stream.h │ │ ├── stream.t.cc │ │ ├── stream_handle.cc │ │ ├── stream_handle.h │ │ ├── stream_pool.cc │ │ ├── stream_pool.h │ │ ├── stream_pool.t.cc │ │ ├── synchronization.cc │ │ └── synchronization.h │ ├── error │ │ ├── BUILD │ │ ├── assert.cc │ │ ├── assert.h │ │ ├── assert.t.cc │ │ ├── panic.cc │ │ ├── panic.h │ │ ├── stacktrace.cc │ │ └── stacktrace.h │ ├── field │ │ ├── BUILD │ │ ├── accumulator.cc │ │ ├── accumulator.h │ │ ├── arithmetic_utility.cc │ │ ├── arithmetic_utility.h │ │ ├── arithmetic_utility.t.cc │ │ ├── element.cc │ │ └── element.h │ ├── functional │ │ ├── BUILD │ │ ├── function_ref.cc │ │ ├── function_ref.h │ │ ├── function_ref.t.cc │ │ ├── move_only_function.cc │ │ ├── move_only_function.h │ │ ├── move_only_function.t.cc │ │ ├── move_only_function_handle.cc │ │ ├── move_only_function_handle.h │ │ ├── move_only_function_handle_impl.cc │ │ └── move_only_function_handle_impl.h │ ├── iterator │ │ ├── BUILD │ │ ├── counting_iterator.cc │ │ ├── counting_iterator.h │ │ ├── counting_iterator.t.cc │ │ ├── index_range.cc │ │ ├── index_range.h │ │ ├── index_range_iterator.cc │ │ ├── index_range_iterator.h │ │ ├── index_range_iterator.t.cc │ │ ├── iterator_facade.cc │ │ ├── iterator_facade.h │ │ ├── iterator_facade.t.cc │ │ ├── split.cc │ │ ├── split.h │ │ └── split.t.cc │ ├── log │ │ ├── BUILD │ │ ├── log.cc │ │ ├── log.h │ │ ├── log_impl.cc │ │ ├── log_impl.h │ │ ├── setup.cc │ │ └── setup.h │ ├── macro │ │ ├── BUILD │ │ ├── cuda_callable.cc │ │ ├── cuda_callable.h │ │ ├── cuda_warning.cc │ │ ├── cuda_warning.h │ │ ├── max_devices.cc │ │ └── max_devices.h │ ├── memory │ │ ├── BUILD │ │ ├── alloc.cc │ │ ├── alloc.h │ │ ├── alloc_utility.cc │ │ ├── alloc_utility.h │ │ └── alloc_utility.t.cc │ ├── num │ │ ├── BUILD │ │ ├── abs.cc │ │ ├── abs.h │ │ ├── abs.t.cc │ │ ├── ceil_log2.cc │ │ ├── ceil_log2.h │ │ ├── ceil_log2.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── constexpr_switch.cc │ │ ├── constexpr_switch.h │ │ ├── constexpr_switch.t.cc │ │ ├── divide_up.cc │ │ ├── divide_up.h │ │ ├── divide_up.t.cc │ │ ├── fast_random_number_generator.cc │ │ ├── fast_random_number_generator.h │ │ ├── fast_random_number_generator.t.cc │ │ ├── hex.cc │ │ ├── hex.h │ │ ├── hex.t.cc │ │ ├── log2p1.cc │ │ ├── log2p1.h │ │ ├── log2p1.t.cc │ │ ├── power2_equality.cc │ │ ├── power2_equality.h │ │ ├── power2_equality.t.cc │ │ ├── round_up.cc │ │ ├── round_up.h │ │ └── round_up.t.cc │ ├── profile │ │ ├── BUILD │ │ ├── callgrind.cc │ │ └── callgrind.h │ ├── system │ │ ├── BUILD │ │ ├── directory_recorder.cc │ │ ├── directory_recorder.h │ │ ├── directory_recorder.t.cc │ │ ├── file_io.cc │ │ ├── file_io.h │ │ └── file_io.t.cc │ ├── test │ │ ├── BUILD │ │ ├── allocator_aware.cc │ │ ├── allocator_aware.h │ │ ├── temp_directory.cc │ │ ├── temp_directory.h │ │ ├── temp_file.cc │ │ ├── temp_file.h │ │ ├── unit_test.cc │ │ └── unit_test.h │ └── type │ │ ├── BUILD │ │ ├── int.cc │ │ ├── int.h │ │ ├── literal.cc │ │ ├── literal.h │ │ ├── literal.t.cc │ │ ├── narrow_cast.cc │ │ ├── narrow_cast.h │ │ ├── narrow_cast.t.cc │ │ ├── raw_cuda_event.cc │ │ ├── raw_cuda_event.h │ │ ├── raw_stream.cc │ │ ├── raw_stream.h │ │ ├── remove_cvref.cc │ │ ├── remove_cvref.h │ │ ├── value_type.cc │ │ ├── value_type.h │ │ └── value_type.t.cc ├── cbindings │ ├── backend │ │ ├── BUILD │ │ ├── callback_sumcheck_transcript.cc │ │ ├── callback_sumcheck_transcript.h │ │ ├── computational_backend.cc │ │ ├── computational_backend.h │ │ ├── computational_backend_utility.cc │ │ ├── computational_backend_utility.h │ │ ├── computational_backend_utility.t.cc │ │ ├── cpu_backend.cc │ │ ├── cpu_backend.h │ │ ├── gpu_backend.cc │ │ └── gpu_backend.h │ └── base │ │ ├── BUILD │ │ ├── curve_id.cc │ │ ├── curve_id.h │ │ ├── curve_id_utility.cc │ │ ├── curve_id_utility.h │ │ ├── curve_id_utility.t.cc │ │ ├── field_id.cc │ │ ├── field_id.h │ │ ├── field_id_utility.cc │ │ ├── field_id_utility.h │ │ ├── field_id_utility.t.cc │ │ ├── multiexp_handle.cc │ │ ├── multiexp_handle.h │ │ ├── sumcheck_descriptor.cc │ │ └── sumcheck_descriptor.h ├── curve21 │ ├── base │ │ ├── BUILD │ │ ├── elligate.cc │ │ ├── elligate.h │ │ ├── elligate.t.cc │ │ ├── mont_ed_conversion.cc │ │ └── mont_ed_conversion.h │ ├── constant │ │ ├── BUILD │ │ ├── identity.cc │ │ └── identity.h │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── double.cc │ │ ├── double.h │ │ ├── double.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── overload.cc │ │ ├── overload.h │ │ ├── overload.t.cc │ │ ├── reduce_exponent.t.cc │ │ ├── scalar_multiply.cc │ │ ├── scalar_multiply.h │ │ └── scalar_multiply.t.cc │ ├── property │ │ ├── BUILD │ │ ├── curve.cc │ │ ├── curve.h │ │ └── curve.t.cc │ ├── random │ │ ├── BUILD │ │ ├── exponent.cc │ │ └── exponent.h │ └── type │ │ ├── BUILD │ │ ├── byte_conversion.cc │ │ ├── byte_conversion.h │ │ ├── cofactor_utility.cc │ │ ├── cofactor_utility.h │ │ ├── compact_element.cc │ │ ├── compact_element.h │ │ ├── conversion_utility.cc │ │ ├── conversion_utility.h │ │ ├── conversion_utility.t.cc │ │ ├── double_impl.cc │ │ ├── double_impl.h │ │ ├── element_cached.cc │ │ ├── element_cached.h │ │ ├── element_p1p1.cc │ │ ├── element_p1p1.h │ │ ├── element_p2.cc │ │ ├── element_p2.h │ │ ├── element_p3.cc │ │ ├── element_p3.h │ │ ├── element_p3.t.cc │ │ ├── literal.cc │ │ ├── literal.h │ │ ├── operation_adl_stub.cc │ │ ├── operation_adl_stub.h │ │ ├── point_formation.cc │ │ └── point_formation.h ├── curve_bng1 │ ├── constant │ │ ├── BUILD │ │ ├── b.cc │ │ ├── b.h │ │ ├── b.t.cc │ │ ├── generator.cc │ │ ├── generator.h │ │ └── generator.t.cc │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── double.cc │ │ ├── double.h │ │ ├── double.t.cc │ │ ├── mul_by_3b.cc │ │ ├── mul_by_3b.h │ │ ├── mul_by_3b.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── scalar_multiply.cc │ │ ├── scalar_multiply.h │ │ └── scalar_multiply.t.cc │ ├── property │ │ ├── BUILD │ │ ├── curve.cc │ │ ├── curve.h │ │ ├── curve.t.cc │ │ ├── identity.cc │ │ ├── identity.h │ │ └── identity.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element_affine.cc │ │ ├── element_affine.h │ │ ├── element_affine.t.cc │ │ ├── element_p2.cc │ │ ├── element_p2.h │ │ └── element_p2.t.cc │ └── type │ │ ├── BUILD │ │ ├── compact_element.cc │ │ ├── compact_element.h │ │ ├── compressed_element.cc │ │ ├── compressed_element.h │ │ ├── compressed_element.t.cc │ │ ├── conversion_utility.cc │ │ ├── conversion_utility.h │ │ ├── conversion_utility.t.cc │ │ ├── element_affine.cc │ │ ├── element_affine.h │ │ ├── element_affine.t.cc │ │ ├── element_p2.cc │ │ ├── element_p2.h │ │ ├── element_p2.t.cc │ │ ├── operation_adl_stub.cc │ │ └── operation_adl_stub.h ├── curve_g1 │ ├── constant │ │ ├── BUILD │ │ ├── b.cc │ │ ├── b.h │ │ ├── b.t.cc │ │ ├── beta.cc │ │ ├── beta.h │ │ ├── beta.t.cc │ │ ├── generator.cc │ │ └── generator.h │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── compression.cc │ │ ├── compression.h │ │ ├── compression.t.cc │ │ ├── double.cc │ │ ├── double.h │ │ ├── double.t.cc │ │ ├── mul_by_3b.cc │ │ ├── mul_by_3b.h │ │ ├── mul_by_3b.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── scalar_multiply.cc │ │ ├── scalar_multiply.h │ │ ├── scalar_multiply.t.cc │ │ ├── sub.cc │ │ ├── sub.h │ │ └── sub.t.cc │ ├── property │ │ ├── BUILD │ │ ├── curve.cc │ │ ├── curve.h │ │ ├── curve.t.cc │ │ ├── identity.cc │ │ ├── identity.h │ │ └── identity.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element_affine.cc │ │ ├── element_affine.h │ │ ├── element_affine.t.cc │ │ ├── element_p2.cc │ │ ├── element_p2.h │ │ └── element_p2.t.cc │ └── type │ │ ├── BUILD │ │ ├── compact_element.cc │ │ ├── compact_element.h │ │ ├── compressed_element.cc │ │ ├── compressed_element.h │ │ ├── compressed_element.t.cc │ │ ├── conversion_utility.cc │ │ ├── conversion_utility.h │ │ ├── conversion_utility.t.cc │ │ ├── element_affine.cc │ │ ├── element_affine.h │ │ ├── element_affine.t.cc │ │ ├── element_p2.cc │ │ ├── element_p2.h │ │ ├── element_p2.t.cc │ │ ├── operation_adl_stub.cc │ │ └── operation_adl_stub.h ├── curve_gk │ ├── constant │ │ ├── BUILD │ │ ├── b.cc │ │ ├── b.h │ │ ├── b.t.cc │ │ ├── generator.cc │ │ ├── generator.h │ │ └── generator.t.cc │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── double.cc │ │ ├── double.h │ │ ├── double.t.cc │ │ ├── mul_by_3b.cc │ │ ├── mul_by_3b.h │ │ ├── mul_by_3b.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── scalar_multiply.cc │ │ ├── scalar_multiply.h │ │ └── scalar_multiply.t.cc │ ├── property │ │ ├── BUILD │ │ ├── curve.cc │ │ ├── curve.h │ │ ├── curve.t.cc │ │ ├── identity.cc │ │ ├── identity.h │ │ └── identity.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element_affine.cc │ │ ├── element_affine.h │ │ ├── element_affine.t.cc │ │ ├── element_p2.cc │ │ ├── element_p2.h │ │ └── element_p2.t.cc │ └── type │ │ ├── BUILD │ │ ├── compact_element.cc │ │ ├── compact_element.h │ │ ├── compressed_element.cc │ │ ├── compressed_element.h │ │ ├── compressed_element.t.cc │ │ ├── conversion_utility.cc │ │ ├── conversion_utility.h │ │ ├── conversion_utility.t.cc │ │ ├── element_affine.cc │ │ ├── element_affine.h │ │ ├── element_affine.t.cc │ │ ├── element_p2.cc │ │ ├── element_p2.h │ │ ├── element_p2.t.cc │ │ ├── operation_adl_stub.cc │ │ └── operation_adl_stub.h ├── execution │ ├── async │ │ ├── BUILD │ │ ├── awaiter.cc │ │ ├── awaiter.h │ │ ├── continuation.cc │ │ ├── continuation.h │ │ ├── continuation_fn.cc │ │ ├── continuation_fn.h │ │ ├── continuation_fn.t.cc │ │ ├── continuation_fn_utility.cc │ │ ├── continuation_fn_utility.h │ │ ├── coroutine.cc │ │ ├── coroutine.h │ │ ├── coroutine.t.cc │ │ ├── coroutine_promise.cc │ │ ├── coroutine_promise.h │ │ ├── future.cc │ │ ├── future.h │ │ ├── future.t.cc │ │ ├── future_fwd.cc │ │ ├── future_fwd.h │ │ ├── future_state.cc │ │ ├── future_state.h │ │ ├── future_state_utility.cc │ │ ├── future_state_utility.h │ │ ├── future_utility.cc │ │ ├── future_utility.h │ │ ├── future_utility.t.cc │ │ ├── leaf_continuation.cc │ │ ├── leaf_continuation.h │ │ ├── promise.cc │ │ ├── promise.h │ │ ├── promise_future_base.cc │ │ ├── promise_future_base.h │ │ ├── promise_future_base.t.cc │ │ ├── shared_future.cc │ │ ├── shared_future.h │ │ ├── shared_future.t.cc │ │ ├── shared_future_state.cc │ │ ├── shared_future_state.h │ │ ├── shared_future_state.t.cc │ │ ├── task.cc │ │ └── task.h │ ├── device │ │ ├── BUILD │ │ ├── available_device.cc │ │ ├── available_device.h │ │ ├── available_device.t.cc │ │ ├── chunk_context.cc │ │ ├── chunk_context.h │ │ ├── computation_event.cc │ │ ├── computation_event.h │ │ ├── computation_event.t.cc │ │ ├── computation_handle.cc │ │ ├── computation_handle.h │ │ ├── computation_handle.t.cc │ │ ├── copy.cc │ │ ├── copy.h │ │ ├── copy.t.cc │ │ ├── device_copy.cc │ │ ├── device_copy.h │ │ ├── device_copy.t.cc │ │ ├── device_viewable.cc │ │ ├── device_viewable.h │ │ ├── device_viewable.t.cc │ │ ├── event_future.cc │ │ ├── event_future.h │ │ ├── event_future.t.cc │ │ ├── for_each.cc │ │ ├── for_each.h │ │ ├── for_each.t.cc │ │ ├── generate.cc │ │ ├── generate.h │ │ ├── generate.t.cc │ │ ├── synchronization.cc │ │ ├── synchronization.h │ │ ├── synchronization.t.cc │ │ ├── test_kernel.cc │ │ ├── test_kernel.h │ │ ├── to_device_copier.cc │ │ ├── to_device_copier.h │ │ └── to_device_copier.t.cc │ ├── kernel │ │ ├── BUILD │ │ ├── block_size.cc │ │ ├── block_size.h │ │ ├── kernel_dims.cc │ │ ├── kernel_dims.h │ │ ├── launch.cc │ │ └── launch.h │ └── schedule │ │ ├── BUILD │ │ ├── active_scheduler.cc │ │ ├── active_scheduler.h │ │ ├── active_scheduler.t.cc │ │ ├── pending_event.cc │ │ ├── pending_event.h │ │ ├── pending_scheduler.cc │ │ ├── pending_scheduler.h │ │ ├── pending_scheduler.t.cc │ │ ├── pollable_event.cc │ │ ├── pollable_event.h │ │ ├── scheduler.cc │ │ ├── scheduler.h │ │ ├── scheduler.t.cc │ │ ├── test_pending_event.cc │ │ ├── test_pending_event.h │ │ ├── test_pollable_event.cc │ │ └── test_pollable_event.h ├── field12 │ ├── base │ │ ├── BUILD │ │ ├── byte_conversion.cc │ │ ├── byte_conversion.h │ │ ├── byte_conversion.t.cc │ │ ├── constants.cc │ │ ├── constants.h │ │ ├── montgomery.cc │ │ ├── montgomery.h │ │ ├── montgomery.t.cc │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── reduce.t.cc │ │ ├── subtract_p.cc │ │ ├── subtract_p.h │ │ └── subtract_p.t.cc │ ├── constant │ │ ├── BUILD │ │ ├── one.cc │ │ ├── one.h │ │ ├── zero.cc │ │ └── zero.h │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── invert.cc │ │ ├── invert.h │ │ ├── invert.t.cc │ │ ├── mul.cc │ │ ├── mul.h │ │ ├── mul.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── pow_vartime.cc │ │ ├── pow_vartime.h │ │ ├── pow_vartime.t.cc │ │ ├── sqrt.cc │ │ ├── sqrt.h │ │ ├── sqrt.t.cc │ │ ├── square.cc │ │ ├── square.h │ │ ├── square.t.cc │ │ ├── sub.cc │ │ ├── sub.h │ │ └── sub.t.cc │ ├── property │ │ ├── BUILD │ │ ├── lexicographically_largest.cc │ │ ├── lexicographically_largest.h │ │ ├── lexicographically_largest.t.cc │ │ ├── zero.cc │ │ ├── zero.h │ │ └── zero.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ └── element.t.cc │ └── type │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ ├── element.t.cc │ │ ├── literal.cc │ │ ├── literal.h │ │ └── literal.t.cc ├── field25 │ ├── base │ │ ├── BUILD │ │ ├── byte_conversion.cc │ │ ├── byte_conversion.h │ │ ├── byte_conversion.t.cc │ │ ├── constants.cc │ │ ├── constants.h │ │ ├── montgomery.cc │ │ ├── montgomery.h │ │ ├── montgomery.t.cc │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── reduce.t.cc │ │ ├── subtract_p.cc │ │ ├── subtract_p.h │ │ └── subtract_p.t.cc │ ├── constant │ │ ├── BUILD │ │ ├── one.cc │ │ ├── one.h │ │ ├── zero.cc │ │ └── zero.h │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── invert.cc │ │ ├── invert.h │ │ ├── invert.t.cc │ │ ├── mul.cc │ │ ├── mul.h │ │ ├── mul.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── pow_vartime.cc │ │ ├── pow_vartime.h │ │ ├── pow_vartime.t.cc │ │ ├── square.cc │ │ ├── square.h │ │ ├── square.t.cc │ │ ├── sub.cc │ │ ├── sub.h │ │ └── sub.t.cc │ ├── property │ │ ├── BUILD │ │ ├── lexicographically_largest.cc │ │ ├── lexicographically_largest.h │ │ ├── lexicographically_largest.t.cc │ │ ├── zero.cc │ │ ├── zero.h │ │ └── zero.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ └── element.t.cc │ └── type │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ ├── element.t.cc │ │ ├── literal.cc │ │ ├── literal.h │ │ └── literal.t.cc ├── field51 │ ├── base │ │ ├── BUILD │ │ ├── byte_conversion.cc │ │ ├── byte_conversion.h │ │ ├── byte_conversion.t.cc │ │ ├── reduce.cc │ │ ├── reduce.h │ │ └── reduce.t.cc │ ├── constant │ │ ├── BUILD │ │ ├── d.cc │ │ ├── d.h │ │ ├── invsqrtamd.cc │ │ ├── invsqrtamd.h │ │ ├── one.cc │ │ ├── one.h │ │ ├── sqrtm1.cc │ │ ├── sqrtm1.h │ │ ├── zero.cc │ │ └── zero.h │ ├── operation │ │ ├── BUILD │ │ ├── abs.cc │ │ ├── abs.h │ │ ├── add.cc │ │ ├── add.h │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cneg.cc │ │ ├── cneg.h │ │ ├── invert.cc │ │ ├── invert.h │ │ ├── invert.t.cc │ │ ├── mul.cc │ │ ├── mul.h │ │ ├── mul.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── notsquare.cc │ │ ├── notsquare.h │ │ ├── notsquare.t.cc │ │ ├── pow22523.cc │ │ ├── pow22523.h │ │ ├── sq.cc │ │ ├── sq.h │ │ ├── sqmul.cc │ │ ├── sqmul.h │ │ ├── sqrt.cc │ │ ├── sqrt.h │ │ ├── sqrt.t.cc │ │ ├── sub.cc │ │ └── sub.h │ ├── property │ │ ├── BUILD │ │ ├── sign.cc │ │ ├── sign.h │ │ ├── zero.cc │ │ ├── zero.h │ │ └── zero.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ └── element.t.cc │ └── type │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ ├── element.t.cc │ │ ├── literal.cc │ │ ├── literal.h │ │ └── literal.t.cc ├── fieldgk │ ├── base │ │ ├── BUILD │ │ ├── byte_conversion.cc │ │ ├── byte_conversion.h │ │ ├── byte_conversion.t.cc │ │ ├── constants.cc │ │ ├── constants.h │ │ ├── montgomery.cc │ │ ├── montgomery.h │ │ ├── montgomery.t.cc │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── reduce.t.cc │ │ ├── subtract_p.cc │ │ ├── subtract_p.h │ │ └── subtract_p.t.cc │ ├── constant │ │ ├── BUILD │ │ ├── one.cc │ │ ├── one.h │ │ ├── zero.cc │ │ └── zero.h │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── cmov.cc │ │ ├── cmov.h │ │ ├── cmov.t.cc │ │ ├── invert.cc │ │ ├── invert.h │ │ ├── invert.t.cc │ │ ├── mul.cc │ │ ├── mul.h │ │ ├── mul.t.cc │ │ ├── muladd.cc │ │ ├── muladd.h │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── pow_vartime.cc │ │ ├── pow_vartime.h │ │ ├── square.cc │ │ ├── square.h │ │ ├── square.t.cc │ │ ├── sub.cc │ │ ├── sub.h │ │ └── sub.t.cc │ ├── property │ │ ├── BUILD │ │ ├── lexicographically_largest.cc │ │ ├── lexicographically_largest.h │ │ ├── lexicographically_largest.t.cc │ │ ├── zero.cc │ │ ├── zero.h │ │ └── zero.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ └── element.t.cc │ ├── realization │ │ ├── BUILD │ │ ├── field.cc │ │ └── field.h │ └── type │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ ├── element.t.cc │ │ ├── literal.cc │ │ ├── literal.h │ │ ├── literal.t.cc │ │ ├── operation_adl_stub.cc │ │ └── operation_adl_stub.h ├── memory │ ├── management │ │ ├── BUILD │ │ ├── managed_array.cc │ │ ├── managed_array.h │ │ ├── managed_array.t.cc │ │ ├── managed_array_fwd.cc │ │ └── managed_array_fwd.h │ └── resource │ │ ├── BUILD │ │ ├── async_device_resource.cc │ │ ├── async_device_resource.h │ │ ├── chained_resource.cc │ │ ├── chained_resource.h │ │ ├── chained_resource.t.cc │ │ ├── counting_resource.cc │ │ ├── counting_resource.h │ │ ├── device_resource.cc │ │ ├── device_resource.h │ │ ├── managed_device_resource.cc │ │ ├── managed_device_resource.h │ │ ├── pinned_resource.cc │ │ └── pinned_resource.h ├── multiexp │ ├── base │ │ ├── BUILD │ │ ├── digit_utility.cc │ │ ├── digit_utility.h │ │ ├── digit_utility.t.cc │ │ ├── exponent_sequence.cc │ │ ├── exponent_sequence.h │ │ ├── exponent_sequence_utility.cc │ │ ├── exponent_sequence_utility.h │ │ ├── generator_utility.cc │ │ ├── generator_utility.h │ │ ├── generator_utility.t.cc │ │ ├── scalar_array.cc │ │ ├── scalar_array.h │ │ └── scalar_array.t.cc │ ├── bitset_multiprod │ │ ├── BUILD │ │ ├── multiproduct.cc │ │ ├── multiproduct.h │ │ ├── multiproduct.t.cc │ │ ├── test_operator.cc │ │ ├── test_operator.h │ │ ├── value_cache.cc │ │ ├── value_cache.h │ │ ├── value_cache_utility.cc │ │ └── value_cache_utility.h │ ├── bucket_method │ │ ├── BUILD │ │ ├── accumulation.cc │ │ ├── accumulation.h │ │ ├── accumulation.t.cc │ │ ├── accumulation_kernel.cc │ │ ├── accumulation_kernel.h │ │ ├── accumulation_kernel.t.cc │ │ ├── combination.cc │ │ ├── combination.h │ │ ├── combination.t.cc │ │ ├── combination_kernel.cc │ │ ├── combination_kernel.h │ │ ├── combination_kernel.t.cc │ │ ├── fold_kernel.cc │ │ ├── fold_kernel.h │ │ ├── fold_kernel.t.cc │ │ ├── multiexponentiation.cc │ │ ├── multiexponentiation.h │ │ └── multiexponentiation.t.cc │ ├── bucket_method2 │ │ ├── BUILD │ │ ├── constants.cc │ │ ├── constants.h │ │ ├── multiexponentiation.cc │ │ ├── multiexponentiation.h │ │ ├── multiexponentiation.t.cc │ │ ├── multiproduct_table.cc │ │ ├── multiproduct_table.h │ │ ├── multiproduct_table.t.cc │ │ ├── multiproduct_table_kernel.cc │ │ ├── multiproduct_table_kernel.h │ │ ├── multiproduct_table_kernel.t.cc │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── reduce.t.cc │ │ ├── sum.cc │ │ ├── sum.h │ │ └── sum.t.cc │ ├── curve │ │ ├── BUILD │ │ ├── accumulator.cc │ │ ├── accumulator.h │ │ ├── accumulator.t.cc │ │ ├── doubling_reduction.cc │ │ ├── doubling_reduction.h │ │ ├── doubling_reduction.t.cc │ │ ├── multiexponentiation.cc │ │ ├── multiexponentiation.h │ │ ├── multiexponentiation.t.cc │ │ ├── multiexponentiation_cpu_driver.cc │ │ ├── multiexponentiation_cpu_driver.h │ │ ├── multiexponentiation_cpu_driver.t.cc │ │ ├── multiproduct.cc │ │ ├── multiproduct.h │ │ ├── multiproduct_bitset_operator.cc │ │ ├── multiproduct_bitset_operator.h │ │ ├── multiproduct_cpu_driver.cc │ │ ├── multiproduct_cpu_driver.h │ │ ├── multiproduct_cpu_driver.t.cc │ │ ├── multiproduct_solver.cc │ │ ├── multiproduct_solver.h │ │ ├── multiproducts_combination.cc │ │ ├── multiproducts_combination.h │ │ ├── naive_multiproduct_solver.cc │ │ ├── naive_multiproduct_solver.h │ │ ├── pippenger_multiproduct_solver.cc │ │ ├── pippenger_multiproduct_solver.h │ │ └── pippenger_multiproduct_solver.t.cc │ ├── index │ │ ├── BUILD │ │ ├── clump2_descriptor.cc │ │ ├── clump2_descriptor.h │ │ ├── clump2_descriptor_utility.cc │ │ ├── clump2_descriptor_utility.h │ │ ├── clump2_descriptor_utility.t.cc │ │ ├── clump2_marker_utility.cc │ │ ├── clump2_marker_utility.h │ │ ├── clump2_marker_utility.t.cc │ │ ├── index_table.cc │ │ ├── index_table.h │ │ ├── index_table.t.cc │ │ ├── index_table_utility.cc │ │ ├── index_table_utility.h │ │ ├── marker_transformation.cc │ │ ├── marker_transformation.h │ │ ├── marker_transformation.t.cc │ │ ├── partition_marker_utility.cc │ │ ├── partition_marker_utility.h │ │ ├── partition_marker_utility.t.cc │ │ ├── random_clump2.cc │ │ ├── random_clump2.h │ │ ├── reindex.cc │ │ ├── reindex.h │ │ ├── reindex.t.cc │ │ ├── transpose.cc │ │ ├── transpose.h │ │ └── transpose.t.cc │ ├── multiproduct_gpu │ │ ├── BUILD │ │ ├── block_computation_descriptor.cc │ │ ├── block_computation_descriptor.h │ │ ├── completion.cc │ │ ├── completion.h │ │ ├── completion.t.cc │ │ ├── computation_setup.cc │ │ ├── computation_setup.h │ │ ├── computation_setup.t.cc │ │ ├── kernel.cc │ │ ├── kernel.h │ │ ├── kernel.t.cc │ │ ├── multiproduct.cc │ │ ├── multiproduct.h │ │ ├── multiproduct.t.cc │ │ ├── multiproduct_computation_descriptor.cc │ │ └── multiproduct_computation_descriptor.h │ ├── pippenger │ │ ├── BUILD │ │ ├── driver.cc │ │ ├── driver.h │ │ ├── exponent_aggregates.cc │ │ ├── exponent_aggregates.h │ │ ├── exponent_aggregates_computation.cc │ │ ├── exponent_aggregates_computation.h │ │ ├── multiexponentiation.cc │ │ ├── multiexponentiation.h │ │ ├── multiexponentiation.t.cc │ │ ├── multiproduct_decomposition_gpu.cc │ │ ├── multiproduct_decomposition_gpu.h │ │ ├── multiproduct_decomposition_gpu.t.cc │ │ ├── multiproduct_decomposition_kernel.cc │ │ ├── multiproduct_decomposition_kernel.h │ │ ├── multiproduct_decomposition_kernel.t.cc │ │ ├── multiproduct_table.cc │ │ ├── multiproduct_table.h │ │ ├── multiproduct_table.t.cc │ │ ├── test_driver.cc │ │ └── test_driver.h │ ├── pippenger2 │ │ ├── BUILD │ │ ├── combine_reduce.cc │ │ ├── combine_reduce.h │ │ ├── combine_reduce.t.cc │ │ ├── in_memory_partition_table_accessor.cc │ │ ├── in_memory_partition_table_accessor.h │ │ ├── in_memory_partition_table_accessor.t.cc │ │ ├── in_memory_partition_table_accessor_utility.cc │ │ ├── in_memory_partition_table_accessor_utility.h │ │ ├── in_memory_partition_table_accessor_utility.t.cc │ │ ├── multiexponentiation.cc │ │ ├── multiexponentiation.h │ │ ├── multiexponentiation.t.cc │ │ ├── multiexponentiation_serialization.cc │ │ ├── multiexponentiation_serialization.h │ │ ├── multiexponentiation_serialization.t.cc │ │ ├── partition_product.cc │ │ ├── partition_product.h │ │ ├── partition_product.t.cc │ │ ├── partition_table.cc │ │ ├── partition_table.h │ │ ├── partition_table.t.cc │ │ ├── partition_table_accessor.cc │ │ ├── partition_table_accessor.h │ │ ├── partition_table_accessor_base.cc │ │ ├── partition_table_accessor_base.h │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── reduce.t.cc │ │ ├── variable_length_computation.cc │ │ ├── variable_length_computation.h │ │ ├── variable_length_computation.t.cc │ │ ├── variable_length_multiexponentiation.cc │ │ ├── variable_length_multiexponentiation.h │ │ ├── variable_length_multiexponentiation.t.cc │ │ ├── variable_length_partition_product.cc │ │ ├── variable_length_partition_product.h │ │ ├── variable_length_partition_product.t.cc │ │ ├── window_width.cc │ │ ├── window_width.h │ │ └── window_width.t.cc │ ├── pippenger_multiprod │ │ ├── BUILD │ │ ├── active_count.cc │ │ ├── active_count.h │ │ ├── active_offset.cc │ │ ├── active_offset.h │ │ ├── active_offset.t.cc │ │ ├── clump_inputs.cc │ │ ├── clump_inputs.h │ │ ├── clump_inputs.t.cc │ │ ├── clump_outputs.cc │ │ ├── clump_outputs.h │ │ ├── clump_outputs.t.cc │ │ ├── driver.cc │ │ ├── driver.h │ │ ├── multiproduct.cc │ │ ├── multiproduct.h │ │ ├── multiproduct.t.cc │ │ ├── multiproduct_params.cc │ │ ├── multiproduct_params.h │ │ ├── multiproduct_params_computation.cc │ │ ├── multiproduct_params_computation.h │ │ ├── partition_inputs.cc │ │ ├── partition_inputs.h │ │ ├── partition_inputs.t.cc │ │ ├── product_table_normalization.cc │ │ ├── product_table_normalization.h │ │ ├── product_table_normalization.t.cc │ │ ├── prune.cc │ │ ├── prune.h │ │ ├── prune.t.cc │ │ ├── reduction_stats.cc │ │ ├── reduction_stats.h │ │ ├── test_driver.cc │ │ ├── test_driver.h │ │ └── test_driver.t.cc │ ├── random │ │ ├── BUILD │ │ ├── int_generation.cc │ │ ├── int_generation.h │ │ ├── random_multiexponentiation_descriptor.cc │ │ ├── random_multiexponentiation_descriptor.h │ │ ├── random_multiexponentiation_generation.cc │ │ ├── random_multiexponentiation_generation.h │ │ ├── random_multiproduct_descriptor.cc │ │ ├── random_multiproduct_descriptor.h │ │ ├── random_multiproduct_generation.cc │ │ └── random_multiproduct_generation.h │ └── test │ │ ├── BUILD │ │ ├── add_ints.cc │ │ ├── add_ints.h │ │ ├── compute_uint64_muladd.cc │ │ ├── compute_uint64_muladd.h │ │ ├── curve21_arithmetic.cc │ │ ├── curve21_arithmetic.h │ │ ├── multiexponentiation.cc │ │ └── multiexponentiation.h ├── proof │ ├── inner_product │ │ ├── BUILD │ │ ├── cpu_driver.cc │ │ ├── cpu_driver.h │ │ ├── cpu_driver.t.cc │ │ ├── driver.cc │ │ ├── driver.h │ │ ├── driver_test.cc │ │ ├── driver_test.h │ │ ├── fold.cc │ │ ├── fold.h │ │ ├── fold.t.cc │ │ ├── generator_fold.cc │ │ ├── generator_fold.h │ │ ├── generator_fold.t.cc │ │ ├── generator_fold_kernel.cc │ │ ├── generator_fold_kernel.h │ │ ├── generator_fold_kernel.t.cc │ │ ├── gpu_driver.cc │ │ ├── gpu_driver.h │ │ ├── gpu_driver.t.cc │ │ ├── proof_computation.cc │ │ ├── proof_computation.h │ │ ├── proof_computation.t.cc │ │ ├── proof_descriptor.cc │ │ ├── proof_descriptor.h │ │ ├── random_product_generation.cc │ │ ├── random_product_generation.h │ │ ├── scalar_fold_kernel.cc │ │ ├── scalar_fold_kernel.h │ │ ├── scalar_fold_kernel.t.cc │ │ ├── verification_computation.cc │ │ ├── verification_computation.h │ │ ├── verification_computation.t.cc │ │ ├── verification_computation_gpu.cc │ │ ├── verification_computation_gpu.h │ │ ├── verification_computation_gpu.t.cc │ │ ├── verification_kernel.cc │ │ ├── verification_kernel.h │ │ ├── verification_kernel.t.cc │ │ ├── workspace.cc │ │ └── workspace.h │ ├── sumcheck │ │ ├── BUILD │ │ ├── chunked_gpu_driver.cc │ │ ├── chunked_gpu_driver.h │ │ ├── chunked_gpu_driver.t.cc │ │ ├── constant.cc │ │ ├── constant.h │ │ ├── cpu_driver.cc │ │ ├── cpu_driver.h │ │ ├── cpu_driver.t.cc │ │ ├── device_cache.cc │ │ ├── device_cache.h │ │ ├── device_cache.t.cc │ │ ├── driver.cc │ │ ├── driver.h │ │ ├── driver_test.cc │ │ ├── driver_test.h │ │ ├── fold_gpu.cc │ │ ├── fold_gpu.h │ │ ├── fold_gpu.t.cc │ │ ├── gpu_driver.cc │ │ ├── gpu_driver.h │ │ ├── gpu_driver.t.cc │ │ ├── mle_utility.cc │ │ ├── mle_utility.h │ │ ├── mle_utility.t.cc │ │ ├── polynomial_mapper.cc │ │ ├── polynomial_mapper.h │ │ ├── polynomial_mapper.t.cc │ │ ├── polynomial_reducer.cc │ │ ├── polynomial_reducer.h │ │ ├── polynomial_utility.cc │ │ ├── polynomial_utility.h │ │ ├── polynomial_utility.t.cc │ │ ├── proof_computation.cc │ │ ├── proof_computation.h │ │ ├── proof_computation.t.cc │ │ ├── reduction_gpu.cc │ │ ├── reduction_gpu.h │ │ ├── reduction_gpu.t.cc │ │ ├── reference_transcript.cc │ │ ├── reference_transcript.h │ │ ├── reference_transcript.t.cc │ │ ├── sum_gpu.cc │ │ ├── sum_gpu.h │ │ ├── sum_gpu.t.cc │ │ ├── sumcheck_random.cc │ │ ├── sumcheck_random.h │ │ ├── sumcheck_transcript.cc │ │ ├── sumcheck_transcript.h │ │ ├── verification.cc │ │ ├── verification.h │ │ ├── verification.t.cc │ │ ├── workspace.cc │ │ └── workspace.h │ └── transcript │ │ ├── BUILD │ │ ├── keccakf.cc │ │ ├── keccakf.h │ │ ├── strobe128.cc │ │ ├── strobe128.h │ │ ├── strobe128.t.cc │ │ ├── transcript.cc │ │ ├── transcript.h │ │ ├── transcript.t.cc │ │ ├── transcript_primitive.cc │ │ ├── transcript_primitive.h │ │ ├── transcript_utility.cc │ │ ├── transcript_utility.h │ │ └── transcript_utility.t.cc ├── ristretto │ ├── base │ │ ├── BUILD │ │ ├── byte_conversion.cc │ │ ├── byte_conversion.h │ │ ├── byte_conversion.t.cc │ │ ├── elligator.cc │ │ ├── elligator.h │ │ ├── point_formation.cc │ │ ├── point_formation.h │ │ ├── point_formation.t.cc │ │ ├── sqrt_ratio_m1.cc │ │ └── sqrt_ratio_m1.h │ ├── operation │ │ ├── BUILD │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── compression.cc │ │ ├── compression.h │ │ ├── overload.cc │ │ ├── overload.h │ │ ├── overload.t.cc │ │ ├── scalar_multiply.cc │ │ ├── scalar_multiply.h │ │ └── scalar_multiply.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ └── element.t.cc │ └── type │ │ ├── BUILD │ │ ├── compressed_element.cc │ │ ├── compressed_element.h │ │ ├── compressed_element.t.cc │ │ ├── literal.cc │ │ ├── literal.h │ │ └── literal.t.cc ├── scalar25 │ ├── base │ │ ├── BUILD │ │ ├── reduce.cc │ │ └── reduce.h │ ├── constant │ │ ├── BUILD │ │ ├── max_bits.cc │ │ └── max_bits.h │ ├── operation │ │ ├── BUILD │ │ ├── accumulator.cc │ │ ├── accumulator.h │ │ ├── add.cc │ │ ├── add.h │ │ ├── add.t.cc │ │ ├── complement.cc │ │ ├── complement.h │ │ ├── complement.t.cc │ │ ├── inner_product.cc │ │ ├── inner_product.h │ │ ├── inner_product.t.cc │ │ ├── inv.cc │ │ ├── inv.h │ │ ├── inv.t.cc │ │ ├── mul.cc │ │ ├── mul.h │ │ ├── mul.t.cc │ │ ├── muladd.cc │ │ ├── muladd.h │ │ ├── muladd.t.cc │ │ ├── neg.cc │ │ ├── neg.h │ │ ├── neg.t.cc │ │ ├── overload.cc │ │ ├── overload.h │ │ ├── overload.t.cc │ │ ├── product_mapper.cc │ │ ├── product_mapper.h │ │ ├── product_mapper.t.cc │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── reduce.t.cc │ │ ├── sq.cc │ │ ├── sq.h │ │ ├── sq.t.cc │ │ ├── sqmul.cc │ │ ├── sqmul.h │ │ ├── sqmul.t.cc │ │ ├── sub.cc │ │ ├── sub.h │ │ └── sub.t.cc │ ├── property │ │ ├── BUILD │ │ ├── zero.cc │ │ ├── zero.h │ │ └── zero.t.cc │ ├── random │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ └── element.t.cc │ ├── realization │ │ ├── BUILD │ │ ├── field.cc │ │ └── field.h │ └── type │ │ ├── BUILD │ │ ├── element.cc │ │ ├── element.h │ │ ├── element.t.cc │ │ ├── literal.cc │ │ ├── literal.h │ │ ├── literal.t.cc │ │ ├── operation_adl_stub.cc │ │ └── operation_adl_stub.h └── seqcommit │ ├── generator │ ├── BUILD │ ├── base_element.cc │ ├── base_element.h │ ├── base_element.t.cc │ ├── cpu_generator.cc │ ├── cpu_generator.h │ ├── cpu_generator.t.cc │ ├── cpu_one_commitments.cc │ ├── cpu_one_commitments.h │ ├── cpu_one_commitments.t.cc │ ├── gpu_generator.cc │ ├── gpu_generator.h │ ├── gpu_generator.t.cc │ ├── precomputed_generators.cc │ ├── precomputed_generators.h │ ├── precomputed_generators.t.cc │ ├── precomputed_initializer.cc │ ├── precomputed_initializer.h │ ├── precomputed_one_commitments.cc │ ├── precomputed_one_commitments.h │ └── precomputed_one_commitments.t.cc │ └── test │ ├── BUILD │ ├── test_generators.cc │ └── test_generators.h ├── third_party └── license │ ├── envoy.LICENSE │ ├── keccak-tiny.LICENSE │ ├── libsodium.LICENSE │ ├── zcash.LICENSE │ └── zkcrypto.LICENSE └── tools ├── benchmark ├── BUILD └── bench_profile.sh ├── code_format ├── build_fixer.py ├── check_format.py ├── common.py ├── copyright_fixer.py ├── header_order.py └── paths.py └── cuda └── compute_sanitizer_wrapper.sh /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 7.1.2 2 | -------------------------------------------------------------------------------- /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/MODULE.bazel.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/README.md -------------------------------------------------------------------------------- /STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/STYLE.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/WORKSPACE -------------------------------------------------------------------------------- /app/blitzar/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/app/blitzar/BUILD -------------------------------------------------------------------------------- /app/blitzar/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/app/blitzar/main.cc -------------------------------------------------------------------------------- /bazel/BUILD: -------------------------------------------------------------------------------- 1 | exports_files(["stacktrace.patch"]) 2 | -------------------------------------------------------------------------------- /bazel/libbacktrace/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/bazel/libbacktrace/BUILD -------------------------------------------------------------------------------- /bazel/libbacktrace/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/bazel/libbacktrace/config.h -------------------------------------------------------------------------------- /bazel/spdlog.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/bazel/spdlog.BUILD -------------------------------------------------------------------------------- /bazel/stacktrace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/bazel/stacktrace.patch -------------------------------------------------------------------------------- /bazel/sxt_benchmark.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/bazel/sxt_benchmark.bzl -------------------------------------------------------------------------------- /bazel/sxt_build_system.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/bazel/sxt_build_system.bzl -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/memory/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/memory/BUILD -------------------------------------------------------------------------------- /benchmark/memory/copy.m.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/memory/copy.m.cc -------------------------------------------------------------------------------- /benchmark/multi_commitment/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multi_commitment/BUILD -------------------------------------------------------------------------------- /benchmark/multi_exp1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multi_exp1/BUILD -------------------------------------------------------------------------------- /benchmark/multi_exp1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multi_exp1/README.md -------------------------------------------------------------------------------- /benchmark/multi_exp_pip/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multi_exp_pip/BUILD -------------------------------------------------------------------------------- /benchmark/multi_exp_pip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multi_exp_pip/README.md -------------------------------------------------------------------------------- /benchmark/multi_exp_triangle/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multi_exp_triangle/BUILD -------------------------------------------------------------------------------- /benchmark/multiprod1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multiprod1/BUILD -------------------------------------------------------------------------------- /benchmark/multiprod1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multiprod1/README.md -------------------------------------------------------------------------------- /benchmark/multiprod1/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/multiprod1/benchmark.sh -------------------------------------------------------------------------------- /benchmark/primitives/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/primitives/BUILD -------------------------------------------------------------------------------- /benchmark/primitives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/primitives/README.md -------------------------------------------------------------------------------- /benchmark/primitives/stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/primitives/stats.cc -------------------------------------------------------------------------------- /benchmark/primitives/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/primitives/stats.h -------------------------------------------------------------------------------- /benchmark/reduce2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/reduce2/BUILD -------------------------------------------------------------------------------- /benchmark/reduce2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/reduce2/README.md -------------------------------------------------------------------------------- /benchmark/reduce2/benchmark.m.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/reduce2/benchmark.m.cc -------------------------------------------------------------------------------- /benchmark/reduce2/reduce_cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/reduce2/reduce_cpu.cc -------------------------------------------------------------------------------- /benchmark/reduce2/reduce_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/reduce2/reduce_cpu.h -------------------------------------------------------------------------------- /benchmark/reduce2/reduce_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/reduce2/reduce_gpu.cu -------------------------------------------------------------------------------- /benchmark/reduce2/reduce_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/reduce2/reduce_gpu.h -------------------------------------------------------------------------------- /benchmark/sumcheck/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/sumcheck/BUILD -------------------------------------------------------------------------------- /benchmark/sumcheck/benchmark.m.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/benchmark/sumcheck/benchmark.m.cc -------------------------------------------------------------------------------- /cbindings/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/BUILD -------------------------------------------------------------------------------- /cbindings/backend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/backend.cc -------------------------------------------------------------------------------- /cbindings/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/backend.h -------------------------------------------------------------------------------- /cbindings/backend.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/backend.t.cc -------------------------------------------------------------------------------- /cbindings/blitzar_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/blitzar_api.cc -------------------------------------------------------------------------------- /cbindings/blitzar_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/blitzar_api.h -------------------------------------------------------------------------------- /cbindings/fixed_pedersen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/fixed_pedersen.cc -------------------------------------------------------------------------------- /cbindings/fixed_pedersen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/fixed_pedersen.h -------------------------------------------------------------------------------- /cbindings/fixed_pedersen.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/fixed_pedersen.t.cc -------------------------------------------------------------------------------- /cbindings/get_generators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/get_generators.cc -------------------------------------------------------------------------------- /cbindings/get_generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/get_generators.h -------------------------------------------------------------------------------- /cbindings/get_generators.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/get_generators.t.cc -------------------------------------------------------------------------------- /cbindings/get_one_commit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/get_one_commit.cc -------------------------------------------------------------------------------- /cbindings/get_one_commit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/get_one_commit.h -------------------------------------------------------------------------------- /cbindings/get_one_commit.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/get_one_commit.t.cc -------------------------------------------------------------------------------- /cbindings/inner_product_proof.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/inner_product_proof.cc -------------------------------------------------------------------------------- /cbindings/inner_product_proof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/inner_product_proof.h -------------------------------------------------------------------------------- /cbindings/inner_product_proof.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/inner_product_proof.t.cc -------------------------------------------------------------------------------- /cbindings/libblitzar-export-map.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/libblitzar-export-map.ld -------------------------------------------------------------------------------- /cbindings/pedersen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/pedersen.cc -------------------------------------------------------------------------------- /cbindings/pedersen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/pedersen.h -------------------------------------------------------------------------------- /cbindings/pedersen.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/pedersen.t.cc -------------------------------------------------------------------------------- /cbindings/sumcheck.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/sumcheck.cc -------------------------------------------------------------------------------- /cbindings/sumcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/sumcheck.h -------------------------------------------------------------------------------- /cbindings/sumcheck.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/cbindings/sumcheck.t.cc -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/lsan.supp: -------------------------------------------------------------------------------- 1 | leak:libcuda 2 | -------------------------------------------------------------------------------- /ci/lsan_hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/ci/lsan_hack.sh -------------------------------------------------------------------------------- /example/cbindings1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/cbindings1/BUILD -------------------------------------------------------------------------------- /example/cbindings1/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/cbindings1/main.cc -------------------------------------------------------------------------------- /example/exponentiation1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/exponentiation1/BUILD -------------------------------------------------------------------------------- /example/exponentiation1/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/exponentiation1/main.cc -------------------------------------------------------------------------------- /example/field_arithmetic/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/field_arithmetic/BUILD -------------------------------------------------------------------------------- /example/field_arithmetic/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/field_arithmetic/reduce.cc -------------------------------------------------------------------------------- /example/field_arithmetic/reduce1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/field_arithmetic/reduce1.h -------------------------------------------------------------------------------- /example/multiproduct1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/multiproduct1/BUILD -------------------------------------------------------------------------------- /example/multiproduct1/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/example/multiproduct1/main.cc -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/flake.nix -------------------------------------------------------------------------------- /nix/bazel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/nix/bazel.nix -------------------------------------------------------------------------------- /nix/clang.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/nix/clang.nix -------------------------------------------------------------------------------- /nix/clang_driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/nix/clang_driver.patch -------------------------------------------------------------------------------- /nix/compiler_rt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/nix/compiler_rt.patch -------------------------------------------------------------------------------- /nix/cuda.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/nix/cuda.nix -------------------------------------------------------------------------------- /nix/cuda_host_defines.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/nix/cuda_host_defines.patch -------------------------------------------------------------------------------- /nix/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/nix/shell.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/package.json -------------------------------------------------------------------------------- /rust/blitzar-sys/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore rust files 2 | /target 3 | /Cargo.lock 4 | -------------------------------------------------------------------------------- /rust/blitzar-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/rust/blitzar-sys/Cargo.toml -------------------------------------------------------------------------------- /rust/blitzar-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/rust/blitzar-sys/README.md -------------------------------------------------------------------------------- /rust/blitzar-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/rust/blitzar-sys/build.rs -------------------------------------------------------------------------------- /rust/blitzar-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/rust/blitzar-sys/src/lib.rs -------------------------------------------------------------------------------- /rust/tests/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore rust files 2 | /target 3 | /Cargo.lock 4 | 5 | *.so 6 | -------------------------------------------------------------------------------- /rust/tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/rust/tests/Cargo.toml -------------------------------------------------------------------------------- /rust/tests/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/rust/tests/src/main.rs -------------------------------------------------------------------------------- /sxt/algorithm/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/base/BUILD -------------------------------------------------------------------------------- /sxt/algorithm/base/gather_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/base/gather_mapper.h -------------------------------------------------------------------------------- /sxt/algorithm/base/index_functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/base/index_functor.h -------------------------------------------------------------------------------- /sxt/algorithm/base/mapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/base/mapper.cc -------------------------------------------------------------------------------- /sxt/algorithm/base/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/base/mapper.h -------------------------------------------------------------------------------- /sxt/algorithm/base/reducer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/base/reducer.cc -------------------------------------------------------------------------------- /sxt/algorithm/base/reducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/base/reducer.h -------------------------------------------------------------------------------- /sxt/algorithm/block/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/block/BUILD -------------------------------------------------------------------------------- /sxt/algorithm/iteration/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/iteration/BUILD -------------------------------------------------------------------------------- /sxt/algorithm/iteration/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/iteration/for_each.h -------------------------------------------------------------------------------- /sxt/algorithm/reduction/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/algorithm/reduction/BUILD -------------------------------------------------------------------------------- /sxt/base/bit/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/BUILD -------------------------------------------------------------------------------- /sxt/base/bit/count.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/count.cc -------------------------------------------------------------------------------- /sxt/base/bit/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/count.h -------------------------------------------------------------------------------- /sxt/base/bit/count.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/count.t.cc -------------------------------------------------------------------------------- /sxt/base/bit/iteration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/iteration.cc -------------------------------------------------------------------------------- /sxt/base/bit/iteration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/iteration.h -------------------------------------------------------------------------------- /sxt/base/bit/iteration.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/iteration.t.cc -------------------------------------------------------------------------------- /sxt/base/bit/load.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/load.cc -------------------------------------------------------------------------------- /sxt/base/bit/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/load.h -------------------------------------------------------------------------------- /sxt/base/bit/permutation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/permutation.cc -------------------------------------------------------------------------------- /sxt/base/bit/permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/permutation.h -------------------------------------------------------------------------------- /sxt/base/bit/permutation.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/permutation.t.cc -------------------------------------------------------------------------------- /sxt/base/bit/span_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/span_op.cc -------------------------------------------------------------------------------- /sxt/base/bit/span_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/span_op.h -------------------------------------------------------------------------------- /sxt/base/bit/span_op.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/span_op.t.cc -------------------------------------------------------------------------------- /sxt/base/bit/store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/store.cc -------------------------------------------------------------------------------- /sxt/base/bit/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/store.h -------------------------------------------------------------------------------- /sxt/base/bit/zero_equality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/zero_equality.cc -------------------------------------------------------------------------------- /sxt/base/bit/zero_equality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/zero_equality.h -------------------------------------------------------------------------------- /sxt/base/bit/zero_equality.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/bit/zero_equality.t.cc -------------------------------------------------------------------------------- /sxt/base/concept/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/concept/BUILD -------------------------------------------------------------------------------- /sxt/base/concept/field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/concept/field.cc -------------------------------------------------------------------------------- /sxt/base/concept/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/concept/field.h -------------------------------------------------------------------------------- /sxt/base/container/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/BUILD -------------------------------------------------------------------------------- /sxt/base/container/blob_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/blob_array.cc -------------------------------------------------------------------------------- /sxt/base/container/blob_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/blob_array.h -------------------------------------------------------------------------------- /sxt/base/container/blob_array.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/blob_array.t.cc -------------------------------------------------------------------------------- /sxt/base/container/span.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span.cc -------------------------------------------------------------------------------- /sxt/base/container/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span.h -------------------------------------------------------------------------------- /sxt/base/container/span.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span.t.cc -------------------------------------------------------------------------------- /sxt/base/container/span_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span_iterator.h -------------------------------------------------------------------------------- /sxt/base/container/span_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span_utility.cc -------------------------------------------------------------------------------- /sxt/base/container/span_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span_utility.h -------------------------------------------------------------------------------- /sxt/base/container/span_void.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span_void.cc -------------------------------------------------------------------------------- /sxt/base/container/span_void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span_void.h -------------------------------------------------------------------------------- /sxt/base/container/span_void.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/span_void.t.cc -------------------------------------------------------------------------------- /sxt/base/container/stack_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/stack_array.cc -------------------------------------------------------------------------------- /sxt/base/container/stack_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/container/stack_array.h -------------------------------------------------------------------------------- /sxt/base/curve/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/curve/BUILD -------------------------------------------------------------------------------- /sxt/base/curve/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/curve/element.cc -------------------------------------------------------------------------------- /sxt/base/curve/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/curve/element.h -------------------------------------------------------------------------------- /sxt/base/curve/example_element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/curve/example_element.cc -------------------------------------------------------------------------------- /sxt/base/curve/example_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/curve/example_element.h -------------------------------------------------------------------------------- /sxt/base/device/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/BUILD -------------------------------------------------------------------------------- /sxt/base/device/device_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/device_map.cc -------------------------------------------------------------------------------- /sxt/base/device/device_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/device_map.h -------------------------------------------------------------------------------- /sxt/base/device/device_map.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/device_map.t.cc -------------------------------------------------------------------------------- /sxt/base/device/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/event.cc -------------------------------------------------------------------------------- /sxt/base/device/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/event.h -------------------------------------------------------------------------------- /sxt/base/device/event.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/event.t.cc -------------------------------------------------------------------------------- /sxt/base/device/event_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/event_utility.cc -------------------------------------------------------------------------------- /sxt/base/device/event_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/event_utility.h -------------------------------------------------------------------------------- /sxt/base/device/memory_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/memory_utility.cc -------------------------------------------------------------------------------- /sxt/base/device/memory_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/memory_utility.h -------------------------------------------------------------------------------- /sxt/base/device/pinned_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/pinned_buffer.cc -------------------------------------------------------------------------------- /sxt/base/device/pinned_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/pinned_buffer.h -------------------------------------------------------------------------------- /sxt/base/device/pinned_buffer.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/pinned_buffer.t.cc -------------------------------------------------------------------------------- /sxt/base/device/pointer_kind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/pointer_kind.cc -------------------------------------------------------------------------------- /sxt/base/device/pointer_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/pointer_kind.h -------------------------------------------------------------------------------- /sxt/base/device/property.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/property.cc -------------------------------------------------------------------------------- /sxt/base/device/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/property.h -------------------------------------------------------------------------------- /sxt/base/device/property.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/property.t.cc -------------------------------------------------------------------------------- /sxt/base/device/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/split.cc -------------------------------------------------------------------------------- /sxt/base/device/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/split.h -------------------------------------------------------------------------------- /sxt/base/device/split.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/split.t.cc -------------------------------------------------------------------------------- /sxt/base/device/state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/state.cc -------------------------------------------------------------------------------- /sxt/base/device/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/state.h -------------------------------------------------------------------------------- /sxt/base/device/state.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/state.t.cc -------------------------------------------------------------------------------- /sxt/base/device/stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream.cc -------------------------------------------------------------------------------- /sxt/base/device/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream.h -------------------------------------------------------------------------------- /sxt/base/device/stream.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream.t.cc -------------------------------------------------------------------------------- /sxt/base/device/stream_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream_handle.cc -------------------------------------------------------------------------------- /sxt/base/device/stream_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream_handle.h -------------------------------------------------------------------------------- /sxt/base/device/stream_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream_pool.cc -------------------------------------------------------------------------------- /sxt/base/device/stream_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream_pool.h -------------------------------------------------------------------------------- /sxt/base/device/stream_pool.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/stream_pool.t.cc -------------------------------------------------------------------------------- /sxt/base/device/synchronization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/synchronization.cc -------------------------------------------------------------------------------- /sxt/base/device/synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/device/synchronization.h -------------------------------------------------------------------------------- /sxt/base/error/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/BUILD -------------------------------------------------------------------------------- /sxt/base/error/assert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/assert.cc -------------------------------------------------------------------------------- /sxt/base/error/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/assert.h -------------------------------------------------------------------------------- /sxt/base/error/assert.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/assert.t.cc -------------------------------------------------------------------------------- /sxt/base/error/panic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/panic.cc -------------------------------------------------------------------------------- /sxt/base/error/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/panic.h -------------------------------------------------------------------------------- /sxt/base/error/stacktrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/stacktrace.cc -------------------------------------------------------------------------------- /sxt/base/error/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/error/stacktrace.h -------------------------------------------------------------------------------- /sxt/base/field/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/field/BUILD -------------------------------------------------------------------------------- /sxt/base/field/accumulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/field/accumulator.cc -------------------------------------------------------------------------------- /sxt/base/field/accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/field/accumulator.h -------------------------------------------------------------------------------- /sxt/base/field/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/field/element.cc -------------------------------------------------------------------------------- /sxt/base/field/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/field/element.h -------------------------------------------------------------------------------- /sxt/base/functional/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/functional/BUILD -------------------------------------------------------------------------------- /sxt/base/functional/function_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/functional/function_ref.h -------------------------------------------------------------------------------- /sxt/base/iterator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/iterator/BUILD -------------------------------------------------------------------------------- /sxt/base/iterator/index_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/iterator/index_range.cc -------------------------------------------------------------------------------- /sxt/base/iterator/index_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/iterator/index_range.h -------------------------------------------------------------------------------- /sxt/base/iterator/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/iterator/split.cc -------------------------------------------------------------------------------- /sxt/base/iterator/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/iterator/split.h -------------------------------------------------------------------------------- /sxt/base/iterator/split.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/iterator/split.t.cc -------------------------------------------------------------------------------- /sxt/base/log/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/log/BUILD -------------------------------------------------------------------------------- /sxt/base/log/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/log/log.cc -------------------------------------------------------------------------------- /sxt/base/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/log/log.h -------------------------------------------------------------------------------- /sxt/base/log/log_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/log/log_impl.cc -------------------------------------------------------------------------------- /sxt/base/log/log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/log/log_impl.h -------------------------------------------------------------------------------- /sxt/base/log/setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/log/setup.cc -------------------------------------------------------------------------------- /sxt/base/log/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/log/setup.h -------------------------------------------------------------------------------- /sxt/base/macro/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/macro/BUILD -------------------------------------------------------------------------------- /sxt/base/macro/cuda_callable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/macro/cuda_callable.cc -------------------------------------------------------------------------------- /sxt/base/macro/cuda_callable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/macro/cuda_callable.h -------------------------------------------------------------------------------- /sxt/base/macro/cuda_warning.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/macro/cuda_warning.cc -------------------------------------------------------------------------------- /sxt/base/macro/cuda_warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/macro/cuda_warning.h -------------------------------------------------------------------------------- /sxt/base/macro/max_devices.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/macro/max_devices.cc -------------------------------------------------------------------------------- /sxt/base/macro/max_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/macro/max_devices.h -------------------------------------------------------------------------------- /sxt/base/memory/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/memory/BUILD -------------------------------------------------------------------------------- /sxt/base/memory/alloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/memory/alloc.cc -------------------------------------------------------------------------------- /sxt/base/memory/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/memory/alloc.h -------------------------------------------------------------------------------- /sxt/base/memory/alloc_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/memory/alloc_utility.cc -------------------------------------------------------------------------------- /sxt/base/memory/alloc_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/memory/alloc_utility.h -------------------------------------------------------------------------------- /sxt/base/memory/alloc_utility.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/memory/alloc_utility.t.cc -------------------------------------------------------------------------------- /sxt/base/num/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/BUILD -------------------------------------------------------------------------------- /sxt/base/num/abs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/abs.cc -------------------------------------------------------------------------------- /sxt/base/num/abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/abs.h -------------------------------------------------------------------------------- /sxt/base/num/abs.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/abs.t.cc -------------------------------------------------------------------------------- /sxt/base/num/ceil_log2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/ceil_log2.cc -------------------------------------------------------------------------------- /sxt/base/num/ceil_log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/ceil_log2.h -------------------------------------------------------------------------------- /sxt/base/num/ceil_log2.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/ceil_log2.t.cc -------------------------------------------------------------------------------- /sxt/base/num/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/cmov.cc -------------------------------------------------------------------------------- /sxt/base/num/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/cmov.h -------------------------------------------------------------------------------- /sxt/base/num/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/cmov.t.cc -------------------------------------------------------------------------------- /sxt/base/num/constexpr_switch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/constexpr_switch.cc -------------------------------------------------------------------------------- /sxt/base/num/constexpr_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/constexpr_switch.h -------------------------------------------------------------------------------- /sxt/base/num/constexpr_switch.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/constexpr_switch.t.cc -------------------------------------------------------------------------------- /sxt/base/num/divide_up.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/divide_up.cc -------------------------------------------------------------------------------- /sxt/base/num/divide_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/divide_up.h -------------------------------------------------------------------------------- /sxt/base/num/divide_up.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/divide_up.t.cc -------------------------------------------------------------------------------- /sxt/base/num/hex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/hex.cc -------------------------------------------------------------------------------- /sxt/base/num/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/hex.h -------------------------------------------------------------------------------- /sxt/base/num/hex.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/hex.t.cc -------------------------------------------------------------------------------- /sxt/base/num/log2p1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/log2p1.cc -------------------------------------------------------------------------------- /sxt/base/num/log2p1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/log2p1.h -------------------------------------------------------------------------------- /sxt/base/num/log2p1.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/log2p1.t.cc -------------------------------------------------------------------------------- /sxt/base/num/power2_equality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/power2_equality.cc -------------------------------------------------------------------------------- /sxt/base/num/power2_equality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/power2_equality.h -------------------------------------------------------------------------------- /sxt/base/num/power2_equality.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/power2_equality.t.cc -------------------------------------------------------------------------------- /sxt/base/num/round_up.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/round_up.cc -------------------------------------------------------------------------------- /sxt/base/num/round_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/round_up.h -------------------------------------------------------------------------------- /sxt/base/num/round_up.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/num/round_up.t.cc -------------------------------------------------------------------------------- /sxt/base/profile/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/profile/BUILD -------------------------------------------------------------------------------- /sxt/base/profile/callgrind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/profile/callgrind.cc -------------------------------------------------------------------------------- /sxt/base/profile/callgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/profile/callgrind.h -------------------------------------------------------------------------------- /sxt/base/system/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/system/BUILD -------------------------------------------------------------------------------- /sxt/base/system/file_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/system/file_io.cc -------------------------------------------------------------------------------- /sxt/base/system/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/system/file_io.h -------------------------------------------------------------------------------- /sxt/base/system/file_io.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/system/file_io.t.cc -------------------------------------------------------------------------------- /sxt/base/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/BUILD -------------------------------------------------------------------------------- /sxt/base/test/allocator_aware.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/allocator_aware.cc -------------------------------------------------------------------------------- /sxt/base/test/allocator_aware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/allocator_aware.h -------------------------------------------------------------------------------- /sxt/base/test/temp_directory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/temp_directory.cc -------------------------------------------------------------------------------- /sxt/base/test/temp_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/temp_directory.h -------------------------------------------------------------------------------- /sxt/base/test/temp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/temp_file.cc -------------------------------------------------------------------------------- /sxt/base/test/temp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/temp_file.h -------------------------------------------------------------------------------- /sxt/base/test/unit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/unit_test.cc -------------------------------------------------------------------------------- /sxt/base/test/unit_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/test/unit_test.h -------------------------------------------------------------------------------- /sxt/base/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/BUILD -------------------------------------------------------------------------------- /sxt/base/type/int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/int.cc -------------------------------------------------------------------------------- /sxt/base/type/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/int.h -------------------------------------------------------------------------------- /sxt/base/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/literal.cc -------------------------------------------------------------------------------- /sxt/base/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/literal.h -------------------------------------------------------------------------------- /sxt/base/type/literal.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/literal.t.cc -------------------------------------------------------------------------------- /sxt/base/type/narrow_cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/narrow_cast.cc -------------------------------------------------------------------------------- /sxt/base/type/narrow_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/narrow_cast.h -------------------------------------------------------------------------------- /sxt/base/type/narrow_cast.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/narrow_cast.t.cc -------------------------------------------------------------------------------- /sxt/base/type/raw_cuda_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/raw_cuda_event.cc -------------------------------------------------------------------------------- /sxt/base/type/raw_cuda_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/raw_cuda_event.h -------------------------------------------------------------------------------- /sxt/base/type/raw_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/raw_stream.cc -------------------------------------------------------------------------------- /sxt/base/type/raw_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/raw_stream.h -------------------------------------------------------------------------------- /sxt/base/type/remove_cvref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/remove_cvref.cc -------------------------------------------------------------------------------- /sxt/base/type/remove_cvref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/remove_cvref.h -------------------------------------------------------------------------------- /sxt/base/type/value_type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/value_type.cc -------------------------------------------------------------------------------- /sxt/base/type/value_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/value_type.h -------------------------------------------------------------------------------- /sxt/base/type/value_type.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/base/type/value_type.t.cc -------------------------------------------------------------------------------- /sxt/cbindings/backend/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/cbindings/backend/BUILD -------------------------------------------------------------------------------- /sxt/cbindings/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/cbindings/base/BUILD -------------------------------------------------------------------------------- /sxt/cbindings/base/curve_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/cbindings/base/curve_id.cc -------------------------------------------------------------------------------- /sxt/cbindings/base/curve_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/cbindings/base/curve_id.h -------------------------------------------------------------------------------- /sxt/cbindings/base/field_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/cbindings/base/field_id.cc -------------------------------------------------------------------------------- /sxt/cbindings/base/field_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/cbindings/base/field_id.h -------------------------------------------------------------------------------- /sxt/curve21/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/base/BUILD -------------------------------------------------------------------------------- /sxt/curve21/base/elligate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/base/elligate.cc -------------------------------------------------------------------------------- /sxt/curve21/base/elligate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/base/elligate.h -------------------------------------------------------------------------------- /sxt/curve21/base/elligate.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/base/elligate.t.cc -------------------------------------------------------------------------------- /sxt/curve21/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/constant/BUILD -------------------------------------------------------------------------------- /sxt/curve21/constant/identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/constant/identity.cc -------------------------------------------------------------------------------- /sxt/curve21/constant/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/constant/identity.h -------------------------------------------------------------------------------- /sxt/curve21/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/BUILD -------------------------------------------------------------------------------- /sxt/curve21/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/add.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/add.h -------------------------------------------------------------------------------- /sxt/curve21/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/cmov.h -------------------------------------------------------------------------------- /sxt/curve21/operation/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/cmov.t.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/double.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/double.h -------------------------------------------------------------------------------- /sxt/curve21/operation/double.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/double.t.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/neg.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/neg.h -------------------------------------------------------------------------------- /sxt/curve21/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/overload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/overload.cc -------------------------------------------------------------------------------- /sxt/curve21/operation/overload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/operation/overload.h -------------------------------------------------------------------------------- /sxt/curve21/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/property/BUILD -------------------------------------------------------------------------------- /sxt/curve21/property/curve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/property/curve.cc -------------------------------------------------------------------------------- /sxt/curve21/property/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/property/curve.h -------------------------------------------------------------------------------- /sxt/curve21/property/curve.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/property/curve.t.cc -------------------------------------------------------------------------------- /sxt/curve21/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/random/BUILD -------------------------------------------------------------------------------- /sxt/curve21/random/exponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/random/exponent.cc -------------------------------------------------------------------------------- /sxt/curve21/random/exponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/random/exponent.h -------------------------------------------------------------------------------- /sxt/curve21/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/BUILD -------------------------------------------------------------------------------- /sxt/curve21/type/byte_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/byte_conversion.h -------------------------------------------------------------------------------- /sxt/curve21/type/compact_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/compact_element.h -------------------------------------------------------------------------------- /sxt/curve21/type/double_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/double_impl.cc -------------------------------------------------------------------------------- /sxt/curve21/type/double_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/double_impl.h -------------------------------------------------------------------------------- /sxt/curve21/type/element_cached.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_cached.cc -------------------------------------------------------------------------------- /sxt/curve21/type/element_cached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_cached.h -------------------------------------------------------------------------------- /sxt/curve21/type/element_p1p1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_p1p1.cc -------------------------------------------------------------------------------- /sxt/curve21/type/element_p1p1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_p1p1.h -------------------------------------------------------------------------------- /sxt/curve21/type/element_p2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_p2.cc -------------------------------------------------------------------------------- /sxt/curve21/type/element_p2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_p2.h -------------------------------------------------------------------------------- /sxt/curve21/type/element_p3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_p3.cc -------------------------------------------------------------------------------- /sxt/curve21/type/element_p3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_p3.h -------------------------------------------------------------------------------- /sxt/curve21/type/element_p3.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/element_p3.t.cc -------------------------------------------------------------------------------- /sxt/curve21/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/literal.cc -------------------------------------------------------------------------------- /sxt/curve21/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/literal.h -------------------------------------------------------------------------------- /sxt/curve21/type/point_formation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve21/type/point_formation.h -------------------------------------------------------------------------------- /sxt/curve_bng1/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/constant/BUILD -------------------------------------------------------------------------------- /sxt/curve_bng1/constant/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/constant/b.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/constant/b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/constant/b.h -------------------------------------------------------------------------------- /sxt/curve_bng1/constant/b.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/constant/b.t.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/BUILD -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/add.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/add.h -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/cmov.h -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/cmov.t.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/double.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/double.h -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/neg.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/neg.h -------------------------------------------------------------------------------- /sxt/curve_bng1/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/property/BUILD -------------------------------------------------------------------------------- /sxt/curve_bng1/property/curve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/property/curve.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/property/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/property/curve.h -------------------------------------------------------------------------------- /sxt/curve_bng1/property/curve.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/property/curve.t.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/property/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/property/identity.h -------------------------------------------------------------------------------- /sxt/curve_bng1/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/random/BUILD -------------------------------------------------------------------------------- /sxt/curve_bng1/random/element_p2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/random/element_p2.h -------------------------------------------------------------------------------- /sxt/curve_bng1/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/type/BUILD -------------------------------------------------------------------------------- /sxt/curve_bng1/type/element_p2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/type/element_p2.cc -------------------------------------------------------------------------------- /sxt/curve_bng1/type/element_p2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_bng1/type/element_p2.h -------------------------------------------------------------------------------- /sxt/curve_g1/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/BUILD -------------------------------------------------------------------------------- /sxt/curve_g1/constant/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/b.cc -------------------------------------------------------------------------------- /sxt/curve_g1/constant/b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/b.h -------------------------------------------------------------------------------- /sxt/curve_g1/constant/b.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/b.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/constant/beta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/beta.cc -------------------------------------------------------------------------------- /sxt/curve_g1/constant/beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/beta.h -------------------------------------------------------------------------------- /sxt/curve_g1/constant/beta.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/beta.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/constant/generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/generator.cc -------------------------------------------------------------------------------- /sxt/curve_g1/constant/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/constant/generator.h -------------------------------------------------------------------------------- /sxt/curve_g1/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/BUILD -------------------------------------------------------------------------------- /sxt/curve_g1/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/add.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/add.h -------------------------------------------------------------------------------- /sxt/curve_g1/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/cmov.h -------------------------------------------------------------------------------- /sxt/curve_g1/operation/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/cmov.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/double.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/double.h -------------------------------------------------------------------------------- /sxt/curve_g1/operation/double.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/double.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/mul_by_3b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/mul_by_3b.h -------------------------------------------------------------------------------- /sxt/curve_g1/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/neg.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/neg.h -------------------------------------------------------------------------------- /sxt/curve_g1/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/sub.cc -------------------------------------------------------------------------------- /sxt/curve_g1/operation/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/sub.h -------------------------------------------------------------------------------- /sxt/curve_g1/operation/sub.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/operation/sub.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/property/BUILD -------------------------------------------------------------------------------- /sxt/curve_g1/property/curve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/property/curve.cc -------------------------------------------------------------------------------- /sxt/curve_g1/property/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/property/curve.h -------------------------------------------------------------------------------- /sxt/curve_g1/property/curve.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/property/curve.t.cc -------------------------------------------------------------------------------- /sxt/curve_g1/property/identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/property/identity.cc -------------------------------------------------------------------------------- /sxt/curve_g1/property/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/property/identity.h -------------------------------------------------------------------------------- /sxt/curve_g1/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/random/BUILD -------------------------------------------------------------------------------- /sxt/curve_g1/random/element_p2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/random/element_p2.cc -------------------------------------------------------------------------------- /sxt/curve_g1/random/element_p2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/random/element_p2.h -------------------------------------------------------------------------------- /sxt/curve_g1/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/type/BUILD -------------------------------------------------------------------------------- /sxt/curve_g1/type/element_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/type/element_affine.h -------------------------------------------------------------------------------- /sxt/curve_g1/type/element_p2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/type/element_p2.cc -------------------------------------------------------------------------------- /sxt/curve_g1/type/element_p2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/type/element_p2.h -------------------------------------------------------------------------------- /sxt/curve_g1/type/element_p2.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_g1/type/element_p2.t.cc -------------------------------------------------------------------------------- /sxt/curve_gk/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/constant/BUILD -------------------------------------------------------------------------------- /sxt/curve_gk/constant/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/constant/b.cc -------------------------------------------------------------------------------- /sxt/curve_gk/constant/b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/constant/b.h -------------------------------------------------------------------------------- /sxt/curve_gk/constant/b.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/constant/b.t.cc -------------------------------------------------------------------------------- /sxt/curve_gk/constant/generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/constant/generator.cc -------------------------------------------------------------------------------- /sxt/curve_gk/constant/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/constant/generator.h -------------------------------------------------------------------------------- /sxt/curve_gk/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/BUILD -------------------------------------------------------------------------------- /sxt/curve_gk/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/add.cc -------------------------------------------------------------------------------- /sxt/curve_gk/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/add.h -------------------------------------------------------------------------------- /sxt/curve_gk/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/curve_gk/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/curve_gk/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/cmov.h -------------------------------------------------------------------------------- /sxt/curve_gk/operation/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/cmov.t.cc -------------------------------------------------------------------------------- /sxt/curve_gk/operation/double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/double.cc -------------------------------------------------------------------------------- /sxt/curve_gk/operation/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/double.h -------------------------------------------------------------------------------- /sxt/curve_gk/operation/double.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/double.t.cc -------------------------------------------------------------------------------- /sxt/curve_gk/operation/mul_by_3b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/mul_by_3b.h -------------------------------------------------------------------------------- /sxt/curve_gk/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/neg.cc -------------------------------------------------------------------------------- /sxt/curve_gk/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/neg.h -------------------------------------------------------------------------------- /sxt/curve_gk/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/curve_gk/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/property/BUILD -------------------------------------------------------------------------------- /sxt/curve_gk/property/curve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/property/curve.cc -------------------------------------------------------------------------------- /sxt/curve_gk/property/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/property/curve.h -------------------------------------------------------------------------------- /sxt/curve_gk/property/curve.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/property/curve.t.cc -------------------------------------------------------------------------------- /sxt/curve_gk/property/identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/property/identity.cc -------------------------------------------------------------------------------- /sxt/curve_gk/property/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/property/identity.h -------------------------------------------------------------------------------- /sxt/curve_gk/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/random/BUILD -------------------------------------------------------------------------------- /sxt/curve_gk/random/element_p2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/random/element_p2.cc -------------------------------------------------------------------------------- /sxt/curve_gk/random/element_p2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/random/element_p2.h -------------------------------------------------------------------------------- /sxt/curve_gk/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/type/BUILD -------------------------------------------------------------------------------- /sxt/curve_gk/type/element_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/type/element_affine.h -------------------------------------------------------------------------------- /sxt/curve_gk/type/element_p2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/type/element_p2.cc -------------------------------------------------------------------------------- /sxt/curve_gk/type/element_p2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/type/element_p2.h -------------------------------------------------------------------------------- /sxt/curve_gk/type/element_p2.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/curve_gk/type/element_p2.t.cc -------------------------------------------------------------------------------- /sxt/execution/async/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/BUILD -------------------------------------------------------------------------------- /sxt/execution/async/awaiter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/awaiter.cc -------------------------------------------------------------------------------- /sxt/execution/async/awaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/awaiter.h -------------------------------------------------------------------------------- /sxt/execution/async/continuation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/continuation.h -------------------------------------------------------------------------------- /sxt/execution/async/coroutine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/coroutine.cc -------------------------------------------------------------------------------- /sxt/execution/async/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/coroutine.h -------------------------------------------------------------------------------- /sxt/execution/async/coroutine.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/coroutine.t.cc -------------------------------------------------------------------------------- /sxt/execution/async/future.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/future.cc -------------------------------------------------------------------------------- /sxt/execution/async/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/future.h -------------------------------------------------------------------------------- /sxt/execution/async/future.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/future.t.cc -------------------------------------------------------------------------------- /sxt/execution/async/future_fwd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/future_fwd.cc -------------------------------------------------------------------------------- /sxt/execution/async/future_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/future_fwd.h -------------------------------------------------------------------------------- /sxt/execution/async/future_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/future_state.h -------------------------------------------------------------------------------- /sxt/execution/async/promise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/promise.cc -------------------------------------------------------------------------------- /sxt/execution/async/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/promise.h -------------------------------------------------------------------------------- /sxt/execution/async/task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/task.cc -------------------------------------------------------------------------------- /sxt/execution/async/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/async/task.h -------------------------------------------------------------------------------- /sxt/execution/device/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/BUILD -------------------------------------------------------------------------------- /sxt/execution/device/copy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/copy.cc -------------------------------------------------------------------------------- /sxt/execution/device/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/copy.h -------------------------------------------------------------------------------- /sxt/execution/device/copy.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/copy.t.cc -------------------------------------------------------------------------------- /sxt/execution/device/device_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/device_copy.h -------------------------------------------------------------------------------- /sxt/execution/device/for_each.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/for_each.cc -------------------------------------------------------------------------------- /sxt/execution/device/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/for_each.h -------------------------------------------------------------------------------- /sxt/execution/device/for_each.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/for_each.t.cc -------------------------------------------------------------------------------- /sxt/execution/device/generate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/generate.cc -------------------------------------------------------------------------------- /sxt/execution/device/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/generate.h -------------------------------------------------------------------------------- /sxt/execution/device/generate.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/generate.t.cc -------------------------------------------------------------------------------- /sxt/execution/device/test_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/device/test_kernel.h -------------------------------------------------------------------------------- /sxt/execution/kernel/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/kernel/BUILD -------------------------------------------------------------------------------- /sxt/execution/kernel/block_size.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/kernel/block_size.cc -------------------------------------------------------------------------------- /sxt/execution/kernel/block_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/kernel/block_size.h -------------------------------------------------------------------------------- /sxt/execution/kernel/kernel_dims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/kernel/kernel_dims.h -------------------------------------------------------------------------------- /sxt/execution/kernel/launch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/kernel/launch.cc -------------------------------------------------------------------------------- /sxt/execution/kernel/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/kernel/launch.h -------------------------------------------------------------------------------- /sxt/execution/schedule/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/schedule/BUILD -------------------------------------------------------------------------------- /sxt/execution/schedule/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/execution/schedule/scheduler.h -------------------------------------------------------------------------------- /sxt/field12/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/BUILD -------------------------------------------------------------------------------- /sxt/field12/base/byte_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/byte_conversion.h -------------------------------------------------------------------------------- /sxt/field12/base/constants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/constants.cc -------------------------------------------------------------------------------- /sxt/field12/base/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/constants.h -------------------------------------------------------------------------------- /sxt/field12/base/montgomery.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/montgomery.cc -------------------------------------------------------------------------------- /sxt/field12/base/montgomery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/montgomery.h -------------------------------------------------------------------------------- /sxt/field12/base/montgomery.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/montgomery.t.cc -------------------------------------------------------------------------------- /sxt/field12/base/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/reduce.cc -------------------------------------------------------------------------------- /sxt/field12/base/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/reduce.h -------------------------------------------------------------------------------- /sxt/field12/base/reduce.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/reduce.t.cc -------------------------------------------------------------------------------- /sxt/field12/base/subtract_p.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/subtract_p.cc -------------------------------------------------------------------------------- /sxt/field12/base/subtract_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/subtract_p.h -------------------------------------------------------------------------------- /sxt/field12/base/subtract_p.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/base/subtract_p.t.cc -------------------------------------------------------------------------------- /sxt/field12/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/constant/BUILD -------------------------------------------------------------------------------- /sxt/field12/constant/one.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/constant/one.cc -------------------------------------------------------------------------------- /sxt/field12/constant/one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/constant/one.h -------------------------------------------------------------------------------- /sxt/field12/constant/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/constant/zero.cc -------------------------------------------------------------------------------- /sxt/field12/constant/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/constant/zero.h -------------------------------------------------------------------------------- /sxt/field12/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/BUILD -------------------------------------------------------------------------------- /sxt/field12/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/add.cc -------------------------------------------------------------------------------- /sxt/field12/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/add.h -------------------------------------------------------------------------------- /sxt/field12/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/field12/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/field12/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/cmov.h -------------------------------------------------------------------------------- /sxt/field12/operation/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/cmov.t.cc -------------------------------------------------------------------------------- /sxt/field12/operation/invert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/invert.cc -------------------------------------------------------------------------------- /sxt/field12/operation/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/invert.h -------------------------------------------------------------------------------- /sxt/field12/operation/invert.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/invert.t.cc -------------------------------------------------------------------------------- /sxt/field12/operation/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/mul.cc -------------------------------------------------------------------------------- /sxt/field12/operation/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/mul.h -------------------------------------------------------------------------------- /sxt/field12/operation/mul.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/mul.t.cc -------------------------------------------------------------------------------- /sxt/field12/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/neg.cc -------------------------------------------------------------------------------- /sxt/field12/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/neg.h -------------------------------------------------------------------------------- /sxt/field12/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/field12/operation/sqrt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/sqrt.cc -------------------------------------------------------------------------------- /sxt/field12/operation/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/sqrt.h -------------------------------------------------------------------------------- /sxt/field12/operation/sqrt.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/sqrt.t.cc -------------------------------------------------------------------------------- /sxt/field12/operation/square.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/square.cc -------------------------------------------------------------------------------- /sxt/field12/operation/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/square.h -------------------------------------------------------------------------------- /sxt/field12/operation/square.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/square.t.cc -------------------------------------------------------------------------------- /sxt/field12/operation/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/sub.cc -------------------------------------------------------------------------------- /sxt/field12/operation/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/sub.h -------------------------------------------------------------------------------- /sxt/field12/operation/sub.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/operation/sub.t.cc -------------------------------------------------------------------------------- /sxt/field12/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/property/BUILD -------------------------------------------------------------------------------- /sxt/field12/property/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/property/zero.cc -------------------------------------------------------------------------------- /sxt/field12/property/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/property/zero.h -------------------------------------------------------------------------------- /sxt/field12/property/zero.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/property/zero.t.cc -------------------------------------------------------------------------------- /sxt/field12/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/random/BUILD -------------------------------------------------------------------------------- /sxt/field12/random/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/random/element.cc -------------------------------------------------------------------------------- /sxt/field12/random/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/random/element.h -------------------------------------------------------------------------------- /sxt/field12/random/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/random/element.t.cc -------------------------------------------------------------------------------- /sxt/field12/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/type/BUILD -------------------------------------------------------------------------------- /sxt/field12/type/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/type/element.cc -------------------------------------------------------------------------------- /sxt/field12/type/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/type/element.h -------------------------------------------------------------------------------- /sxt/field12/type/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/type/element.t.cc -------------------------------------------------------------------------------- /sxt/field12/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/type/literal.cc -------------------------------------------------------------------------------- /sxt/field12/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/type/literal.h -------------------------------------------------------------------------------- /sxt/field12/type/literal.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field12/type/literal.t.cc -------------------------------------------------------------------------------- /sxt/field25/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/BUILD -------------------------------------------------------------------------------- /sxt/field25/base/byte_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/byte_conversion.h -------------------------------------------------------------------------------- /sxt/field25/base/constants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/constants.cc -------------------------------------------------------------------------------- /sxt/field25/base/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/constants.h -------------------------------------------------------------------------------- /sxt/field25/base/montgomery.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/montgomery.cc -------------------------------------------------------------------------------- /sxt/field25/base/montgomery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/montgomery.h -------------------------------------------------------------------------------- /sxt/field25/base/montgomery.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/montgomery.t.cc -------------------------------------------------------------------------------- /sxt/field25/base/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/reduce.cc -------------------------------------------------------------------------------- /sxt/field25/base/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/reduce.h -------------------------------------------------------------------------------- /sxt/field25/base/reduce.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/reduce.t.cc -------------------------------------------------------------------------------- /sxt/field25/base/subtract_p.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/subtract_p.cc -------------------------------------------------------------------------------- /sxt/field25/base/subtract_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/subtract_p.h -------------------------------------------------------------------------------- /sxt/field25/base/subtract_p.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/base/subtract_p.t.cc -------------------------------------------------------------------------------- /sxt/field25/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/constant/BUILD -------------------------------------------------------------------------------- /sxt/field25/constant/one.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/constant/one.cc -------------------------------------------------------------------------------- /sxt/field25/constant/one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/constant/one.h -------------------------------------------------------------------------------- /sxt/field25/constant/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/constant/zero.cc -------------------------------------------------------------------------------- /sxt/field25/constant/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/constant/zero.h -------------------------------------------------------------------------------- /sxt/field25/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/BUILD -------------------------------------------------------------------------------- /sxt/field25/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/add.cc -------------------------------------------------------------------------------- /sxt/field25/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/add.h -------------------------------------------------------------------------------- /sxt/field25/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/field25/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/field25/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/cmov.h -------------------------------------------------------------------------------- /sxt/field25/operation/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/cmov.t.cc -------------------------------------------------------------------------------- /sxt/field25/operation/invert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/invert.cc -------------------------------------------------------------------------------- /sxt/field25/operation/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/invert.h -------------------------------------------------------------------------------- /sxt/field25/operation/invert.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/invert.t.cc -------------------------------------------------------------------------------- /sxt/field25/operation/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/mul.cc -------------------------------------------------------------------------------- /sxt/field25/operation/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/mul.h -------------------------------------------------------------------------------- /sxt/field25/operation/mul.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/mul.t.cc -------------------------------------------------------------------------------- /sxt/field25/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/neg.cc -------------------------------------------------------------------------------- /sxt/field25/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/neg.h -------------------------------------------------------------------------------- /sxt/field25/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/field25/operation/square.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/square.cc -------------------------------------------------------------------------------- /sxt/field25/operation/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/square.h -------------------------------------------------------------------------------- /sxt/field25/operation/square.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/square.t.cc -------------------------------------------------------------------------------- /sxt/field25/operation/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/sub.cc -------------------------------------------------------------------------------- /sxt/field25/operation/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/sub.h -------------------------------------------------------------------------------- /sxt/field25/operation/sub.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/operation/sub.t.cc -------------------------------------------------------------------------------- /sxt/field25/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/property/BUILD -------------------------------------------------------------------------------- /sxt/field25/property/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/property/zero.cc -------------------------------------------------------------------------------- /sxt/field25/property/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/property/zero.h -------------------------------------------------------------------------------- /sxt/field25/property/zero.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/property/zero.t.cc -------------------------------------------------------------------------------- /sxt/field25/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/random/BUILD -------------------------------------------------------------------------------- /sxt/field25/random/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/random/element.cc -------------------------------------------------------------------------------- /sxt/field25/random/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/random/element.h -------------------------------------------------------------------------------- /sxt/field25/random/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/random/element.t.cc -------------------------------------------------------------------------------- /sxt/field25/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/type/BUILD -------------------------------------------------------------------------------- /sxt/field25/type/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/type/element.cc -------------------------------------------------------------------------------- /sxt/field25/type/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/type/element.h -------------------------------------------------------------------------------- /sxt/field25/type/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/type/element.t.cc -------------------------------------------------------------------------------- /sxt/field25/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/type/literal.cc -------------------------------------------------------------------------------- /sxt/field25/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/type/literal.h -------------------------------------------------------------------------------- /sxt/field25/type/literal.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field25/type/literal.t.cc -------------------------------------------------------------------------------- /sxt/field51/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/base/BUILD -------------------------------------------------------------------------------- /sxt/field51/base/byte_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/base/byte_conversion.h -------------------------------------------------------------------------------- /sxt/field51/base/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/base/reduce.cc -------------------------------------------------------------------------------- /sxt/field51/base/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/base/reduce.h -------------------------------------------------------------------------------- /sxt/field51/base/reduce.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/base/reduce.t.cc -------------------------------------------------------------------------------- /sxt/field51/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/BUILD -------------------------------------------------------------------------------- /sxt/field51/constant/d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/d.cc -------------------------------------------------------------------------------- /sxt/field51/constant/d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/d.h -------------------------------------------------------------------------------- /sxt/field51/constant/invsqrtamd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/invsqrtamd.cc -------------------------------------------------------------------------------- /sxt/field51/constant/invsqrtamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/invsqrtamd.h -------------------------------------------------------------------------------- /sxt/field51/constant/one.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/one.cc -------------------------------------------------------------------------------- /sxt/field51/constant/one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/one.h -------------------------------------------------------------------------------- /sxt/field51/constant/sqrtm1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/sqrtm1.cc -------------------------------------------------------------------------------- /sxt/field51/constant/sqrtm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/sqrtm1.h -------------------------------------------------------------------------------- /sxt/field51/constant/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/zero.cc -------------------------------------------------------------------------------- /sxt/field51/constant/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/constant/zero.h -------------------------------------------------------------------------------- /sxt/field51/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/BUILD -------------------------------------------------------------------------------- /sxt/field51/operation/abs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/abs.cc -------------------------------------------------------------------------------- /sxt/field51/operation/abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/abs.h -------------------------------------------------------------------------------- /sxt/field51/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/add.cc -------------------------------------------------------------------------------- /sxt/field51/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/add.h -------------------------------------------------------------------------------- /sxt/field51/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/field51/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/cmov.h -------------------------------------------------------------------------------- /sxt/field51/operation/cneg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/cneg.cc -------------------------------------------------------------------------------- /sxt/field51/operation/cneg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/cneg.h -------------------------------------------------------------------------------- /sxt/field51/operation/invert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/invert.cc -------------------------------------------------------------------------------- /sxt/field51/operation/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/invert.h -------------------------------------------------------------------------------- /sxt/field51/operation/invert.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/invert.t.cc -------------------------------------------------------------------------------- /sxt/field51/operation/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/mul.cc -------------------------------------------------------------------------------- /sxt/field51/operation/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/mul.h -------------------------------------------------------------------------------- /sxt/field51/operation/mul.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/mul.t.cc -------------------------------------------------------------------------------- /sxt/field51/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/neg.cc -------------------------------------------------------------------------------- /sxt/field51/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/neg.h -------------------------------------------------------------------------------- /sxt/field51/operation/notsquare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/notsquare.cc -------------------------------------------------------------------------------- /sxt/field51/operation/notsquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/notsquare.h -------------------------------------------------------------------------------- /sxt/field51/operation/pow22523.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/pow22523.cc -------------------------------------------------------------------------------- /sxt/field51/operation/pow22523.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/pow22523.h -------------------------------------------------------------------------------- /sxt/field51/operation/sq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sq.cc -------------------------------------------------------------------------------- /sxt/field51/operation/sq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sq.h -------------------------------------------------------------------------------- /sxt/field51/operation/sqmul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sqmul.cc -------------------------------------------------------------------------------- /sxt/field51/operation/sqmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sqmul.h -------------------------------------------------------------------------------- /sxt/field51/operation/sqrt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sqrt.cc -------------------------------------------------------------------------------- /sxt/field51/operation/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sqrt.h -------------------------------------------------------------------------------- /sxt/field51/operation/sqrt.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sqrt.t.cc -------------------------------------------------------------------------------- /sxt/field51/operation/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sub.cc -------------------------------------------------------------------------------- /sxt/field51/operation/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/operation/sub.h -------------------------------------------------------------------------------- /sxt/field51/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/property/BUILD -------------------------------------------------------------------------------- /sxt/field51/property/sign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/property/sign.cc -------------------------------------------------------------------------------- /sxt/field51/property/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/property/sign.h -------------------------------------------------------------------------------- /sxt/field51/property/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/property/zero.cc -------------------------------------------------------------------------------- /sxt/field51/property/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/property/zero.h -------------------------------------------------------------------------------- /sxt/field51/property/zero.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/property/zero.t.cc -------------------------------------------------------------------------------- /sxt/field51/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/random/BUILD -------------------------------------------------------------------------------- /sxt/field51/random/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/random/element.cc -------------------------------------------------------------------------------- /sxt/field51/random/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/random/element.h -------------------------------------------------------------------------------- /sxt/field51/random/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/random/element.t.cc -------------------------------------------------------------------------------- /sxt/field51/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/type/BUILD -------------------------------------------------------------------------------- /sxt/field51/type/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/type/element.cc -------------------------------------------------------------------------------- /sxt/field51/type/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/type/element.h -------------------------------------------------------------------------------- /sxt/field51/type/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/type/element.t.cc -------------------------------------------------------------------------------- /sxt/field51/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/type/literal.cc -------------------------------------------------------------------------------- /sxt/field51/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/type/literal.h -------------------------------------------------------------------------------- /sxt/field51/type/literal.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/field51/type/literal.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/BUILD -------------------------------------------------------------------------------- /sxt/fieldgk/base/byte_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/byte_conversion.h -------------------------------------------------------------------------------- /sxt/fieldgk/base/constants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/constants.cc -------------------------------------------------------------------------------- /sxt/fieldgk/base/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/constants.h -------------------------------------------------------------------------------- /sxt/fieldgk/base/montgomery.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/montgomery.cc -------------------------------------------------------------------------------- /sxt/fieldgk/base/montgomery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/montgomery.h -------------------------------------------------------------------------------- /sxt/fieldgk/base/montgomery.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/montgomery.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/base/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/reduce.cc -------------------------------------------------------------------------------- /sxt/fieldgk/base/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/reduce.h -------------------------------------------------------------------------------- /sxt/fieldgk/base/reduce.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/reduce.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/base/subtract_p.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/subtract_p.cc -------------------------------------------------------------------------------- /sxt/fieldgk/base/subtract_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/subtract_p.h -------------------------------------------------------------------------------- /sxt/fieldgk/base/subtract_p.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/base/subtract_p.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/constant/BUILD -------------------------------------------------------------------------------- /sxt/fieldgk/constant/one.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/constant/one.cc -------------------------------------------------------------------------------- /sxt/fieldgk/constant/one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/constant/one.h -------------------------------------------------------------------------------- /sxt/fieldgk/constant/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/constant/zero.cc -------------------------------------------------------------------------------- /sxt/fieldgk/constant/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/constant/zero.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/BUILD -------------------------------------------------------------------------------- /sxt/fieldgk/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/add.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/add.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/cmov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/cmov.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/cmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/cmov.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/cmov.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/cmov.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/invert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/invert.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/invert.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/invert.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/invert.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/mul.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/mul.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/mul.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/mul.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/muladd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/muladd.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/muladd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/muladd.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/neg.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/neg.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/square.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/square.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/square.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/square.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/square.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/sub.cc -------------------------------------------------------------------------------- /sxt/fieldgk/operation/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/sub.h -------------------------------------------------------------------------------- /sxt/fieldgk/operation/sub.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/operation/sub.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/property/BUILD -------------------------------------------------------------------------------- /sxt/fieldgk/property/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/property/zero.cc -------------------------------------------------------------------------------- /sxt/fieldgk/property/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/property/zero.h -------------------------------------------------------------------------------- /sxt/fieldgk/property/zero.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/property/zero.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/random/BUILD -------------------------------------------------------------------------------- /sxt/fieldgk/random/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/random/element.cc -------------------------------------------------------------------------------- /sxt/fieldgk/random/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/random/element.h -------------------------------------------------------------------------------- /sxt/fieldgk/random/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/random/element.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/realization/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/realization/BUILD -------------------------------------------------------------------------------- /sxt/fieldgk/realization/field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/realization/field.cc -------------------------------------------------------------------------------- /sxt/fieldgk/realization/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/realization/field.h -------------------------------------------------------------------------------- /sxt/fieldgk/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/type/BUILD -------------------------------------------------------------------------------- /sxt/fieldgk/type/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/type/element.cc -------------------------------------------------------------------------------- /sxt/fieldgk/type/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/type/element.h -------------------------------------------------------------------------------- /sxt/fieldgk/type/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/type/element.t.cc -------------------------------------------------------------------------------- /sxt/fieldgk/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/type/literal.cc -------------------------------------------------------------------------------- /sxt/fieldgk/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/type/literal.h -------------------------------------------------------------------------------- /sxt/fieldgk/type/literal.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/fieldgk/type/literal.t.cc -------------------------------------------------------------------------------- /sxt/memory/management/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/memory/management/BUILD -------------------------------------------------------------------------------- /sxt/memory/resource/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/memory/resource/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/base/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/base/digit_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/base/digit_utility.cc -------------------------------------------------------------------------------- /sxt/multiexp/base/digit_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/base/digit_utility.h -------------------------------------------------------------------------------- /sxt/multiexp/base/scalar_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/base/scalar_array.cc -------------------------------------------------------------------------------- /sxt/multiexp/base/scalar_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/base/scalar_array.h -------------------------------------------------------------------------------- /sxt/multiexp/bucket_method/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/bucket_method/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/bucket_method2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/bucket_method2/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/bucket_method2/sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/bucket_method2/sum.cc -------------------------------------------------------------------------------- /sxt/multiexp/bucket_method2/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/bucket_method2/sum.h -------------------------------------------------------------------------------- /sxt/multiexp/curve/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/curve/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/curve/accumulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/curve/accumulator.cc -------------------------------------------------------------------------------- /sxt/multiexp/curve/accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/curve/accumulator.h -------------------------------------------------------------------------------- /sxt/multiexp/curve/multiproduct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/curve/multiproduct.cc -------------------------------------------------------------------------------- /sxt/multiexp/curve/multiproduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/curve/multiproduct.h -------------------------------------------------------------------------------- /sxt/multiexp/index/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/index/index_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/index_table.cc -------------------------------------------------------------------------------- /sxt/multiexp/index/index_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/index_table.h -------------------------------------------------------------------------------- /sxt/multiexp/index/random_clump2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/random_clump2.h -------------------------------------------------------------------------------- /sxt/multiexp/index/reindex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/reindex.cc -------------------------------------------------------------------------------- /sxt/multiexp/index/reindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/reindex.h -------------------------------------------------------------------------------- /sxt/multiexp/index/reindex.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/reindex.t.cc -------------------------------------------------------------------------------- /sxt/multiexp/index/transpose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/transpose.cc -------------------------------------------------------------------------------- /sxt/multiexp/index/transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/transpose.h -------------------------------------------------------------------------------- /sxt/multiexp/index/transpose.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/index/transpose.t.cc -------------------------------------------------------------------------------- /sxt/multiexp/pippenger/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/pippenger/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/pippenger/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/pippenger/driver.cc -------------------------------------------------------------------------------- /sxt/multiexp/pippenger/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/pippenger/driver.h -------------------------------------------------------------------------------- /sxt/multiexp/pippenger2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/pippenger2/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/pippenger2/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/pippenger2/reduce.cc -------------------------------------------------------------------------------- /sxt/multiexp/pippenger2/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/pippenger2/reduce.h -------------------------------------------------------------------------------- /sxt/multiexp/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/random/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/test/BUILD -------------------------------------------------------------------------------- /sxt/multiexp/test/add_ints.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/test/add_ints.cc -------------------------------------------------------------------------------- /sxt/multiexp/test/add_ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/multiexp/test/add_ints.h -------------------------------------------------------------------------------- /sxt/proof/inner_product/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/inner_product/BUILD -------------------------------------------------------------------------------- /sxt/proof/inner_product/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/inner_product/driver.cc -------------------------------------------------------------------------------- /sxt/proof/inner_product/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/inner_product/driver.h -------------------------------------------------------------------------------- /sxt/proof/inner_product/fold.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/inner_product/fold.cc -------------------------------------------------------------------------------- /sxt/proof/inner_product/fold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/inner_product/fold.h -------------------------------------------------------------------------------- /sxt/proof/inner_product/fold.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/inner_product/fold.t.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/BUILD -------------------------------------------------------------------------------- /sxt/proof/sumcheck/constant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/constant.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/constant.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/cpu_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/cpu_driver.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/cpu_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/cpu_driver.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/cpu_driver.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/cpu_driver.t.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/device_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/device_cache.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/device_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/device_cache.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/driver.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/driver.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/driver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/driver_test.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/driver_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/driver_test.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/fold_gpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/fold_gpu.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/fold_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/fold_gpu.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/fold_gpu.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/fold_gpu.t.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/gpu_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/gpu_driver.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/gpu_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/gpu_driver.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/gpu_driver.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/gpu_driver.t.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/mle_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/mle_utility.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/mle_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/mle_utility.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/reduction_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/reduction_gpu.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/sum_gpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/sum_gpu.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/sum_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/sum_gpu.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/sum_gpu.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/sum_gpu.t.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/verification.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/verification.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/verification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/verification.h -------------------------------------------------------------------------------- /sxt/proof/sumcheck/workspace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/workspace.cc -------------------------------------------------------------------------------- /sxt/proof/sumcheck/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/sumcheck/workspace.h -------------------------------------------------------------------------------- /sxt/proof/transcript/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/transcript/BUILD -------------------------------------------------------------------------------- /sxt/proof/transcript/keccakf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/transcript/keccakf.cc -------------------------------------------------------------------------------- /sxt/proof/transcript/keccakf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/transcript/keccakf.h -------------------------------------------------------------------------------- /sxt/proof/transcript/strobe128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/transcript/strobe128.cc -------------------------------------------------------------------------------- /sxt/proof/transcript/strobe128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/transcript/strobe128.h -------------------------------------------------------------------------------- /sxt/proof/transcript/transcript.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/transcript/transcript.cc -------------------------------------------------------------------------------- /sxt/proof/transcript/transcript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/proof/transcript/transcript.h -------------------------------------------------------------------------------- /sxt/ristretto/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/base/BUILD -------------------------------------------------------------------------------- /sxt/ristretto/base/elligator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/base/elligator.cc -------------------------------------------------------------------------------- /sxt/ristretto/base/elligator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/base/elligator.h -------------------------------------------------------------------------------- /sxt/ristretto/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/operation/BUILD -------------------------------------------------------------------------------- /sxt/ristretto/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/operation/add.cc -------------------------------------------------------------------------------- /sxt/ristretto/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/operation/add.h -------------------------------------------------------------------------------- /sxt/ristretto/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/ristretto/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/random/BUILD -------------------------------------------------------------------------------- /sxt/ristretto/random/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/random/element.cc -------------------------------------------------------------------------------- /sxt/ristretto/random/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/random/element.h -------------------------------------------------------------------------------- /sxt/ristretto/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/type/BUILD -------------------------------------------------------------------------------- /sxt/ristretto/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/type/literal.cc -------------------------------------------------------------------------------- /sxt/ristretto/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/type/literal.h -------------------------------------------------------------------------------- /sxt/ristretto/type/literal.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/ristretto/type/literal.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/base/BUILD -------------------------------------------------------------------------------- /sxt/scalar25/base/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/base/reduce.cc -------------------------------------------------------------------------------- /sxt/scalar25/base/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/base/reduce.h -------------------------------------------------------------------------------- /sxt/scalar25/constant/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/constant/BUILD -------------------------------------------------------------------------------- /sxt/scalar25/constant/max_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/constant/max_bits.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/BUILD -------------------------------------------------------------------------------- /sxt/scalar25/operation/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/add.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/add.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/add.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/add.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/inv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/inv.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/inv.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/inv.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/inv.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/mul.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/mul.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/mul.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/mul.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/muladd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/muladd.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/muladd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/muladd.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/neg.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/neg.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/neg.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/neg.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/reduce.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/reduce.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/sq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sq.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/sq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sq.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/sq.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sq.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/sqmul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sqmul.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/sqmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sqmul.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sub.cc -------------------------------------------------------------------------------- /sxt/scalar25/operation/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sub.h -------------------------------------------------------------------------------- /sxt/scalar25/operation/sub.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/operation/sub.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/property/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/property/BUILD -------------------------------------------------------------------------------- /sxt/scalar25/property/zero.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/property/zero.cc -------------------------------------------------------------------------------- /sxt/scalar25/property/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/property/zero.h -------------------------------------------------------------------------------- /sxt/scalar25/property/zero.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/property/zero.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/random/BUILD -------------------------------------------------------------------------------- /sxt/scalar25/random/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/random/element.cc -------------------------------------------------------------------------------- /sxt/scalar25/random/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/random/element.h -------------------------------------------------------------------------------- /sxt/scalar25/random/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/random/element.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/realization/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/realization/BUILD -------------------------------------------------------------------------------- /sxt/scalar25/realization/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/realization/field.h -------------------------------------------------------------------------------- /sxt/scalar25/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/type/BUILD -------------------------------------------------------------------------------- /sxt/scalar25/type/element.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/type/element.cc -------------------------------------------------------------------------------- /sxt/scalar25/type/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/type/element.h -------------------------------------------------------------------------------- /sxt/scalar25/type/element.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/type/element.t.cc -------------------------------------------------------------------------------- /sxt/scalar25/type/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/type/literal.cc -------------------------------------------------------------------------------- /sxt/scalar25/type/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/type/literal.h -------------------------------------------------------------------------------- /sxt/scalar25/type/literal.t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/scalar25/type/literal.t.cc -------------------------------------------------------------------------------- /sxt/seqcommit/generator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/seqcommit/generator/BUILD -------------------------------------------------------------------------------- /sxt/seqcommit/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/sxt/seqcommit/test/BUILD -------------------------------------------------------------------------------- /tools/benchmark/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/tools/benchmark/BUILD -------------------------------------------------------------------------------- /tools/benchmark/bench_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/tools/benchmark/bench_profile.sh -------------------------------------------------------------------------------- /tools/code_format/build_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/tools/code_format/build_fixer.py -------------------------------------------------------------------------------- /tools/code_format/common.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | def include_dir_order(): 4 | return (".") 5 | -------------------------------------------------------------------------------- /tools/code_format/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaceandtimefdn/blitzar/HEAD/tools/code_format/paths.py --------------------------------------------------------------------------------