├── .github └── workflows │ └── nix.yaml ├── .gitignore ├── .ocamlformat ├── .ocamlformat-ignore ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── bin ├── dune └── main.ml ├── cremepat ├── Lex.ml ├── Parse.mly ├── ParseTree.ml ├── README.md ├── cremepat.ml └── dune ├── dune ├── dune-project ├── eurydice.opam ├── flake.lock ├── flake.nix ├── include ├── eurydice │ └── int128.h └── eurydice_glue.h ├── lib ├── AstOfLlbc.ml ├── Builtin.ml ├── Bundles.ml ├── Cleanup1.ml ├── Cleanup2.ml ├── Cleanup3.ml ├── LoadLlbc.ml ├── Logging.ml ├── Options.ml ├── PreCleanup.ml ├── Utf8.ml ├── charon ├── dune └── krml ├── libcrux-Cargo.lock ├── out ├── test-array │ ├── array.c │ └── array.h ├── test-array2d │ ├── array2d.c │ └── array2d.h ├── test-castunsize │ ├── castunsize.c │ └── castunsize.h ├── test-closure │ ├── closure.c │ └── closure.h ├── test-closure_fn_cast │ ├── closure_fn_cast.c │ └── closure_fn_cast.h ├── test-collision │ ├── collision.c │ └── collision.h ├── test-const_generics │ ├── const_generics.c │ └── const_generics.h ├── test-core_num │ ├── core_num.c │ └── core_num.h ├── test-dst │ ├── dst.c │ └── dst.h ├── test-dyn_trait_struct_type │ ├── dyn_trait_struct_type.c │ └── dyn_trait_struct_type.h ├── test-floating_points │ ├── floating_points.c │ └── floating_points.h ├── test-fn_cast │ ├── fn_cast.c │ └── fn_cast.h ├── test-fn_higher_order │ ├── fn_higher_order.c │ └── fn_higher_order.h ├── test-for │ ├── for.c │ └── for.h ├── test-global_ref │ ├── global_ref.c │ └── global_ref.h ├── test-inline_attributes │ ├── inline_attributes.c │ └── inline_attributes.h ├── test-int_switch │ ├── int_switch.c │ └── int_switch.h ├── test-issue_102 │ ├── issue_102.c │ └── issue_102.h ├── test-issue_104 │ ├── issue_104.c │ └── issue_104.h ├── test-issue_105 │ ├── issue_105.c │ └── issue_105.h ├── test-issue_106 │ ├── issue_106.c │ └── issue_106.h ├── test-issue_107 │ ├── issue_107.c │ └── issue_107.h ├── test-issue_123 │ ├── issue_123.c │ └── issue_123.h ├── test-issue_128 │ ├── issue_128.c │ └── issue_128.h ├── test-issue_212 │ ├── issue_212.c │ └── issue_212.h ├── test-issue_37 │ ├── issue_37.c │ └── issue_37.h ├── test-issue_49 │ ├── issue_49.c │ └── issue_49.h ├── test-issue_96 │ ├── issue_96.c │ └── issue_96.h ├── test-issue_k630 │ ├── issue_k630.c │ └── issue_k630.h ├── test-libcrux-no-const │ ├── internal │ │ ├── libcrux_core.h │ │ ├── libcrux_mlkem1024_avx2.h │ │ ├── libcrux_mlkem1024_portable.h │ │ ├── libcrux_mlkem512_avx2.h │ │ ├── libcrux_mlkem512_portable.h │ │ ├── libcrux_mlkem768_avx2.h │ │ ├── libcrux_mlkem768_portable.h │ │ ├── libcrux_mlkem_avx2.h │ │ ├── libcrux_mlkem_portable.h │ │ └── libcrux_sha3_internal.h │ ├── libcrux_core.c │ ├── libcrux_core.h │ ├── libcrux_mlkem1024.h │ ├── libcrux_mlkem1024_avx2.c │ ├── libcrux_mlkem1024_avx2.h │ ├── libcrux_mlkem1024_portable.c │ ├── libcrux_mlkem1024_portable.h │ ├── libcrux_mlkem512.h │ ├── libcrux_mlkem512_avx2.c │ ├── libcrux_mlkem512_avx2.h │ ├── libcrux_mlkem512_portable.c │ ├── libcrux_mlkem512_portable.h │ ├── libcrux_mlkem768.h │ ├── libcrux_mlkem768_avx2.c │ ├── libcrux_mlkem768_avx2.h │ ├── libcrux_mlkem768_portable.c │ ├── libcrux_mlkem768_portable.h │ ├── libcrux_mlkem_avx2.c │ ├── libcrux_mlkem_avx2.h │ ├── libcrux_mlkem_portable.c │ ├── libcrux_mlkem_portable.h │ ├── libcrux_sha3_avx2.c │ ├── libcrux_sha3_avx2.h │ ├── libcrux_sha3_internal.h │ ├── libcrux_sha3_portable.c │ └── libcrux_sha3_portable.h ├── test-libcrux │ ├── internal │ │ ├── libcrux_core.h │ │ ├── libcrux_mlkem1024_avx2.h │ │ ├── libcrux_mlkem1024_portable.h │ │ ├── libcrux_mlkem512_avx2.h │ │ ├── libcrux_mlkem512_portable.h │ │ ├── libcrux_mlkem768_avx2.h │ │ ├── libcrux_mlkem768_portable.h │ │ ├── libcrux_mlkem_avx2.h │ │ ├── libcrux_mlkem_portable.h │ │ └── libcrux_sha3_internal.h │ ├── libcrux_core.c │ ├── libcrux_core.h │ ├── libcrux_mlkem1024.h │ ├── libcrux_mlkem1024_avx2.c │ ├── libcrux_mlkem1024_avx2.h │ ├── libcrux_mlkem1024_portable.c │ ├── libcrux_mlkem1024_portable.h │ ├── libcrux_mlkem512.h │ ├── libcrux_mlkem512_avx2.c │ ├── libcrux_mlkem512_avx2.h │ ├── libcrux_mlkem512_portable.c │ ├── libcrux_mlkem512_portable.h │ ├── libcrux_mlkem768.h │ ├── libcrux_mlkem768_avx2.c │ ├── libcrux_mlkem768_avx2.h │ ├── libcrux_mlkem768_portable.c │ ├── libcrux_mlkem768_portable.h │ ├── libcrux_mlkem_avx2.c │ ├── libcrux_mlkem_avx2.h │ ├── libcrux_mlkem_portable.c │ ├── libcrux_mlkem_portable.h │ ├── libcrux_sha3_avx2.c │ ├── libcrux_sha3_avx2.h │ ├── libcrux_sha3_internal.h │ ├── libcrux_sha3_portable.c │ └── libcrux_sha3_portable.h ├── test-lvalue │ ├── lvalue.c │ └── lvalue.h ├── test-mismatch │ ├── mismatch.c │ └── mismatch.h ├── test-more_dst │ ├── more_dst.c │ └── more_dst.h ├── test-more_primitive_types │ ├── more_primitive_types.c │ └── more_primitive_types.h ├── test-more_str │ ├── more_str.c │ └── more_str.h ├── test-names │ ├── names.c │ └── names.h ├── test-nested_arrays │ ├── nested_arrays.c │ └── nested_arrays.h ├── test-nested_arrays2 │ ├── nested_arrays2.c │ └── nested_arrays2.h ├── test-option │ ├── option.c │ └── option.h ├── test-parentparent │ ├── parentparent.c │ └── parentparent.h ├── test-partial_eq │ ├── partial_eq.c │ └── partial_eq.h ├── test-raw_pointers │ ├── raw_pointers.c │ └── raw_pointers.h ├── test-reborrow │ ├── reborrow.c │ └── reborrow.h ├── test-recursion │ ├── recursion.c │ └── recursion.h ├── test-repeat │ ├── repeat.c │ └── repeat.h ├── test-result │ ├── result.c │ └── result.h ├── test-slice_array │ ├── slice_array.c │ └── slice_array.h ├── test-step_by │ ├── step_by.c │ └── step_by.h ├── test-substr │ ├── substr.c │ └── substr.h ├── test-symcrust │ ├── internal │ │ └── Eurydice.h │ ├── symcrust.c │ └── symcrust.h ├── test-trait_generics │ ├── trait_generics.c │ └── trait_generics.h ├── test-traits │ ├── traits.c │ └── traits.h ├── test-traits2 │ ├── traits2.c │ └── traits2.h ├── test-traits3 │ ├── traits3.c │ └── traits3.h ├── test-we_need_charon_monomorphization │ ├── we_need_charon_monomorphization.c │ └── we_need_charon_monomorphization.h ├── test-where_clauses_closures │ ├── where_clauses_closures.c │ └── where_clauses_closures.h ├── test-where_clauses_fncg │ ├── where_clauses_fncg.c │ └── where_clauses_fncg.h ├── test-where_clauses_simple │ ├── where_clauses_simple.c │ └── where_clauses_simple.h └── testxx-result │ ├── result.cc │ └── result.h ├── scripts ├── check-dependency.sh ├── ci-check-charon-pin-is-forward.sh ├── ci-check-charon-pin-is-merged.sh ├── format.sh └── update-charon-pin.sh ├── static └── poussin.jpg └── test ├── array.rs ├── array2d.rs ├── castunsize.rs ├── chunks.rs ├── closure.rs ├── closure_fn_cast.rs ├── collision.rs ├── const_generics.rs ├── core_cmp_lib.c ├── core_num.rs ├── core_str_lib.c ├── dst.rs ├── dyn_trait_struct_type.rs ├── floating_points.rs ├── fn_cast.rs ├── fn_higher_order.rs ├── for.rs ├── global_ref.rs ├── inline_attributes.rs ├── int_switch.rs ├── issue_102.rs ├── issue_104.rs ├── issue_105.rs ├── issue_106.rs ├── issue_107.rs ├── issue_123.rs ├── issue_128.rs ├── issue_14.rs ├── issue_212.rs ├── issue_37.rs ├── issue_49.rs ├── issue_96.rs ├── issue_99.rs ├── issue_k630.rs ├── libcrux ├── CMakeLists.txt ├── c.yaml ├── intrinsics │ └── libcrux_intrinsics_avx2.h └── tests │ ├── mlkem768.cc │ ├── mlkem768_nistkats.json │ └── sha3.cc ├── lvalue.rs ├── main.c ├── mismatch.rs ├── more_dst.rs ├── more_primitive_types.rs ├── more_primitive_types.yaml ├── more_str.rs ├── mutable_slice_range.rs ├── names.rs ├── nested_arrays.rs ├── nested_arrays2.rs ├── option.rs ├── parentparent.rs ├── partial_eq.rs ├── partial_eq_stubs.c ├── println.rs ├── raw_pointers.rs ├── reborrow.rs ├── recursion.rs ├── repeat.rs ├── result.rs ├── slice_array.rs ├── step_by.rs ├── substr.rs ├── substr.yaml ├── substr_impl.c ├── substr_stubs.h ├── symcrust.rs ├── trait_generics.rs ├── traits.rs ├── traits2.rs ├── traits3.rs ├── we_need_charon_monomorphization.rs ├── where_clauses.rs ├── where_clauses_closures.rs ├── where_clauses_fncg.rs └── where_clauses_simple.rs /.github/workflows/nix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/.github/workflows/nix.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/.ocamlformat -------------------------------------------------------------------------------- /.ocamlformat-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/.ocamlformat-ignore -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/README.md -------------------------------------------------------------------------------- /bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/bin/dune -------------------------------------------------------------------------------- /bin/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/bin/main.ml -------------------------------------------------------------------------------- /cremepat/Lex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/cremepat/Lex.ml -------------------------------------------------------------------------------- /cremepat/Parse.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/cremepat/Parse.mly -------------------------------------------------------------------------------- /cremepat/ParseTree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/cremepat/ParseTree.ml -------------------------------------------------------------------------------- /cremepat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/cremepat/README.md -------------------------------------------------------------------------------- /cremepat/cremepat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/cremepat/cremepat.ml -------------------------------------------------------------------------------- /cremepat/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/cremepat/dune -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- 1 | (data_only_dirs charon karamel libcrux) 2 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/dune-project -------------------------------------------------------------------------------- /eurydice.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/eurydice.opam -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/flake.nix -------------------------------------------------------------------------------- /include/eurydice/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/include/eurydice/int128.h -------------------------------------------------------------------------------- /include/eurydice_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/include/eurydice_glue.h -------------------------------------------------------------------------------- /lib/AstOfLlbc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/AstOfLlbc.ml -------------------------------------------------------------------------------- /lib/Builtin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Builtin.ml -------------------------------------------------------------------------------- /lib/Bundles.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Bundles.ml -------------------------------------------------------------------------------- /lib/Cleanup1.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Cleanup1.ml -------------------------------------------------------------------------------- /lib/Cleanup2.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Cleanup2.ml -------------------------------------------------------------------------------- /lib/Cleanup3.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Cleanup3.ml -------------------------------------------------------------------------------- /lib/LoadLlbc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/LoadLlbc.ml -------------------------------------------------------------------------------- /lib/Logging.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Logging.ml -------------------------------------------------------------------------------- /lib/Options.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Options.ml -------------------------------------------------------------------------------- /lib/PreCleanup.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/PreCleanup.ml -------------------------------------------------------------------------------- /lib/Utf8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/Utf8.ml -------------------------------------------------------------------------------- /lib/charon: -------------------------------------------------------------------------------- 1 | ../charon -------------------------------------------------------------------------------- /lib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/lib/dune -------------------------------------------------------------------------------- /lib/krml: -------------------------------------------------------------------------------- 1 | ../karamel/lib -------------------------------------------------------------------------------- /libcrux-Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/libcrux-Cargo.lock -------------------------------------------------------------------------------- /out/test-array/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-array/array.c -------------------------------------------------------------------------------- /out/test-array/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-array/array.h -------------------------------------------------------------------------------- /out/test-array2d/array2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-array2d/array2d.c -------------------------------------------------------------------------------- /out/test-array2d/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-array2d/array2d.h -------------------------------------------------------------------------------- /out/test-castunsize/castunsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-castunsize/castunsize.c -------------------------------------------------------------------------------- /out/test-castunsize/castunsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-castunsize/castunsize.h -------------------------------------------------------------------------------- /out/test-closure/closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-closure/closure.c -------------------------------------------------------------------------------- /out/test-closure/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-closure/closure.h -------------------------------------------------------------------------------- /out/test-closure_fn_cast/closure_fn_cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-closure_fn_cast/closure_fn_cast.c -------------------------------------------------------------------------------- /out/test-closure_fn_cast/closure_fn_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-closure_fn_cast/closure_fn_cast.h -------------------------------------------------------------------------------- /out/test-collision/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-collision/collision.c -------------------------------------------------------------------------------- /out/test-collision/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-collision/collision.h -------------------------------------------------------------------------------- /out/test-const_generics/const_generics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-const_generics/const_generics.c -------------------------------------------------------------------------------- /out/test-const_generics/const_generics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-const_generics/const_generics.h -------------------------------------------------------------------------------- /out/test-core_num/core_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-core_num/core_num.c -------------------------------------------------------------------------------- /out/test-core_num/core_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-core_num/core_num.h -------------------------------------------------------------------------------- /out/test-dst/dst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-dst/dst.c -------------------------------------------------------------------------------- /out/test-dst/dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-dst/dst.h -------------------------------------------------------------------------------- /out/test-dyn_trait_struct_type/dyn_trait_struct_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-dyn_trait_struct_type/dyn_trait_struct_type.c -------------------------------------------------------------------------------- /out/test-dyn_trait_struct_type/dyn_trait_struct_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-dyn_trait_struct_type/dyn_trait_struct_type.h -------------------------------------------------------------------------------- /out/test-floating_points/floating_points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-floating_points/floating_points.c -------------------------------------------------------------------------------- /out/test-floating_points/floating_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-floating_points/floating_points.h -------------------------------------------------------------------------------- /out/test-fn_cast/fn_cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-fn_cast/fn_cast.c -------------------------------------------------------------------------------- /out/test-fn_cast/fn_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-fn_cast/fn_cast.h -------------------------------------------------------------------------------- /out/test-fn_higher_order/fn_higher_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-fn_higher_order/fn_higher_order.c -------------------------------------------------------------------------------- /out/test-fn_higher_order/fn_higher_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-fn_higher_order/fn_higher_order.h -------------------------------------------------------------------------------- /out/test-for/for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-for/for.c -------------------------------------------------------------------------------- /out/test-for/for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-for/for.h -------------------------------------------------------------------------------- /out/test-global_ref/global_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-global_ref/global_ref.c -------------------------------------------------------------------------------- /out/test-global_ref/global_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-global_ref/global_ref.h -------------------------------------------------------------------------------- /out/test-inline_attributes/inline_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-inline_attributes/inline_attributes.c -------------------------------------------------------------------------------- /out/test-inline_attributes/inline_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-inline_attributes/inline_attributes.h -------------------------------------------------------------------------------- /out/test-int_switch/int_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-int_switch/int_switch.c -------------------------------------------------------------------------------- /out/test-int_switch/int_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-int_switch/int_switch.h -------------------------------------------------------------------------------- /out/test-issue_102/issue_102.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_102/issue_102.c -------------------------------------------------------------------------------- /out/test-issue_102/issue_102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_102/issue_102.h -------------------------------------------------------------------------------- /out/test-issue_104/issue_104.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_104/issue_104.c -------------------------------------------------------------------------------- /out/test-issue_104/issue_104.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_104/issue_104.h -------------------------------------------------------------------------------- /out/test-issue_105/issue_105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_105/issue_105.c -------------------------------------------------------------------------------- /out/test-issue_105/issue_105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_105/issue_105.h -------------------------------------------------------------------------------- /out/test-issue_106/issue_106.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_106/issue_106.c -------------------------------------------------------------------------------- /out/test-issue_106/issue_106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_106/issue_106.h -------------------------------------------------------------------------------- /out/test-issue_107/issue_107.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_107/issue_107.c -------------------------------------------------------------------------------- /out/test-issue_107/issue_107.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_107/issue_107.h -------------------------------------------------------------------------------- /out/test-issue_123/issue_123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_123/issue_123.c -------------------------------------------------------------------------------- /out/test-issue_123/issue_123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_123/issue_123.h -------------------------------------------------------------------------------- /out/test-issue_128/issue_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_128/issue_128.c -------------------------------------------------------------------------------- /out/test-issue_128/issue_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_128/issue_128.h -------------------------------------------------------------------------------- /out/test-issue_212/issue_212.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_212/issue_212.c -------------------------------------------------------------------------------- /out/test-issue_212/issue_212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_212/issue_212.h -------------------------------------------------------------------------------- /out/test-issue_37/issue_37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_37/issue_37.c -------------------------------------------------------------------------------- /out/test-issue_37/issue_37.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_37/issue_37.h -------------------------------------------------------------------------------- /out/test-issue_49/issue_49.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_49/issue_49.c -------------------------------------------------------------------------------- /out/test-issue_49/issue_49.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_49/issue_49.h -------------------------------------------------------------------------------- /out/test-issue_96/issue_96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_96/issue_96.c -------------------------------------------------------------------------------- /out/test-issue_96/issue_96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_96/issue_96.h -------------------------------------------------------------------------------- /out/test-issue_k630/issue_k630.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_k630/issue_k630.c -------------------------------------------------------------------------------- /out/test-issue_k630/issue_k630.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-issue_k630/issue_k630.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_core.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem1024_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem1024_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem1024_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem1024_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem512_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem512_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem512_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem512_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem768_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem768_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem768_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem768_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_mlkem_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_mlkem_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/internal/libcrux_sha3_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/internal/libcrux_sha3_internal.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_core.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_core.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem1024.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem1024.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem1024_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem1024_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem1024_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem1024_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem1024_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem1024_portable.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem1024_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem1024_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem512.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem512_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem512_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem512_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem512_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem512_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem512_portable.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem512_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem512_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem768.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem768.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem768_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem768_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem768_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem768_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem768_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem768_portable.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem768_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem768_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem_portable.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_mlkem_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_mlkem_portable.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_sha3_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_sha3_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_sha3_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_sha3_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_sha3_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_sha3_internal.h -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_sha3_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_sha3_portable.c -------------------------------------------------------------------------------- /out/test-libcrux-no-const/libcrux_sha3_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux-no-const/libcrux_sha3_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_core.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem1024_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem1024_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem1024_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem1024_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem512_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem512_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem512_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem512_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem768_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem768_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem768_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem768_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_mlkem_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_mlkem_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/internal/libcrux_sha3_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/internal/libcrux_sha3_internal.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_core.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_core.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem1024.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem1024.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem1024_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem1024_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem1024_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem1024_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem1024_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem1024_portable.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem1024_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem1024_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem512.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem512_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem512_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem512_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem512_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem512_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem512_portable.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem512_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem512_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem768.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem768.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem768_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem768_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem768_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem768_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem768_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem768_portable.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem768_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem768_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem_portable.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_mlkem_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_mlkem_portable.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_sha3_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_sha3_avx2.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_sha3_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_sha3_avx2.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_sha3_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_sha3_internal.h -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_sha3_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_sha3_portable.c -------------------------------------------------------------------------------- /out/test-libcrux/libcrux_sha3_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-libcrux/libcrux_sha3_portable.h -------------------------------------------------------------------------------- /out/test-lvalue/lvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-lvalue/lvalue.c -------------------------------------------------------------------------------- /out/test-lvalue/lvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-lvalue/lvalue.h -------------------------------------------------------------------------------- /out/test-mismatch/mismatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-mismatch/mismatch.c -------------------------------------------------------------------------------- /out/test-mismatch/mismatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-mismatch/mismatch.h -------------------------------------------------------------------------------- /out/test-more_dst/more_dst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-more_dst/more_dst.c -------------------------------------------------------------------------------- /out/test-more_dst/more_dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-more_dst/more_dst.h -------------------------------------------------------------------------------- /out/test-more_primitive_types/more_primitive_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-more_primitive_types/more_primitive_types.c -------------------------------------------------------------------------------- /out/test-more_primitive_types/more_primitive_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-more_primitive_types/more_primitive_types.h -------------------------------------------------------------------------------- /out/test-more_str/more_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-more_str/more_str.c -------------------------------------------------------------------------------- /out/test-more_str/more_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-more_str/more_str.h -------------------------------------------------------------------------------- /out/test-names/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-names/names.c -------------------------------------------------------------------------------- /out/test-names/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-names/names.h -------------------------------------------------------------------------------- /out/test-nested_arrays/nested_arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-nested_arrays/nested_arrays.c -------------------------------------------------------------------------------- /out/test-nested_arrays/nested_arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-nested_arrays/nested_arrays.h -------------------------------------------------------------------------------- /out/test-nested_arrays2/nested_arrays2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-nested_arrays2/nested_arrays2.c -------------------------------------------------------------------------------- /out/test-nested_arrays2/nested_arrays2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-nested_arrays2/nested_arrays2.h -------------------------------------------------------------------------------- /out/test-option/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-option/option.c -------------------------------------------------------------------------------- /out/test-option/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-option/option.h -------------------------------------------------------------------------------- /out/test-parentparent/parentparent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-parentparent/parentparent.c -------------------------------------------------------------------------------- /out/test-parentparent/parentparent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-parentparent/parentparent.h -------------------------------------------------------------------------------- /out/test-partial_eq/partial_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-partial_eq/partial_eq.c -------------------------------------------------------------------------------- /out/test-partial_eq/partial_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-partial_eq/partial_eq.h -------------------------------------------------------------------------------- /out/test-raw_pointers/raw_pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-raw_pointers/raw_pointers.c -------------------------------------------------------------------------------- /out/test-raw_pointers/raw_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-raw_pointers/raw_pointers.h -------------------------------------------------------------------------------- /out/test-reborrow/reborrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-reborrow/reborrow.c -------------------------------------------------------------------------------- /out/test-reborrow/reborrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-reborrow/reborrow.h -------------------------------------------------------------------------------- /out/test-recursion/recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-recursion/recursion.c -------------------------------------------------------------------------------- /out/test-recursion/recursion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-recursion/recursion.h -------------------------------------------------------------------------------- /out/test-repeat/repeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-repeat/repeat.c -------------------------------------------------------------------------------- /out/test-repeat/repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-repeat/repeat.h -------------------------------------------------------------------------------- /out/test-result/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-result/result.c -------------------------------------------------------------------------------- /out/test-result/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-result/result.h -------------------------------------------------------------------------------- /out/test-slice_array/slice_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-slice_array/slice_array.c -------------------------------------------------------------------------------- /out/test-slice_array/slice_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-slice_array/slice_array.h -------------------------------------------------------------------------------- /out/test-step_by/step_by.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-step_by/step_by.c -------------------------------------------------------------------------------- /out/test-step_by/step_by.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-step_by/step_by.h -------------------------------------------------------------------------------- /out/test-substr/substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-substr/substr.c -------------------------------------------------------------------------------- /out/test-substr/substr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-substr/substr.h -------------------------------------------------------------------------------- /out/test-symcrust/internal/Eurydice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-symcrust/internal/Eurydice.h -------------------------------------------------------------------------------- /out/test-symcrust/symcrust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-symcrust/symcrust.c -------------------------------------------------------------------------------- /out/test-symcrust/symcrust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-symcrust/symcrust.h -------------------------------------------------------------------------------- /out/test-trait_generics/trait_generics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-trait_generics/trait_generics.c -------------------------------------------------------------------------------- /out/test-trait_generics/trait_generics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-trait_generics/trait_generics.h -------------------------------------------------------------------------------- /out/test-traits/traits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-traits/traits.c -------------------------------------------------------------------------------- /out/test-traits/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-traits/traits.h -------------------------------------------------------------------------------- /out/test-traits2/traits2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-traits2/traits2.c -------------------------------------------------------------------------------- /out/test-traits2/traits2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-traits2/traits2.h -------------------------------------------------------------------------------- /out/test-traits3/traits3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-traits3/traits3.c -------------------------------------------------------------------------------- /out/test-traits3/traits3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-traits3/traits3.h -------------------------------------------------------------------------------- /out/test-we_need_charon_monomorphization/we_need_charon_monomorphization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-we_need_charon_monomorphization/we_need_charon_monomorphization.c -------------------------------------------------------------------------------- /out/test-we_need_charon_monomorphization/we_need_charon_monomorphization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-we_need_charon_monomorphization/we_need_charon_monomorphization.h -------------------------------------------------------------------------------- /out/test-where_clauses_closures/where_clauses_closures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-where_clauses_closures/where_clauses_closures.c -------------------------------------------------------------------------------- /out/test-where_clauses_closures/where_clauses_closures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-where_clauses_closures/where_clauses_closures.h -------------------------------------------------------------------------------- /out/test-where_clauses_fncg/where_clauses_fncg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-where_clauses_fncg/where_clauses_fncg.c -------------------------------------------------------------------------------- /out/test-where_clauses_fncg/where_clauses_fncg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-where_clauses_fncg/where_clauses_fncg.h -------------------------------------------------------------------------------- /out/test-where_clauses_simple/where_clauses_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-where_clauses_simple/where_clauses_simple.c -------------------------------------------------------------------------------- /out/test-where_clauses_simple/where_clauses_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/test-where_clauses_simple/where_clauses_simple.h -------------------------------------------------------------------------------- /out/testxx-result/result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/testxx-result/result.cc -------------------------------------------------------------------------------- /out/testxx-result/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/out/testxx-result/result.h -------------------------------------------------------------------------------- /scripts/check-dependency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/scripts/check-dependency.sh -------------------------------------------------------------------------------- /scripts/ci-check-charon-pin-is-forward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/scripts/ci-check-charon-pin-is-forward.sh -------------------------------------------------------------------------------- /scripts/ci-check-charon-pin-is-merged.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/scripts/ci-check-charon-pin-is-merged.sh -------------------------------------------------------------------------------- /scripts/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/scripts/format.sh -------------------------------------------------------------------------------- /scripts/update-charon-pin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/scripts/update-charon-pin.sh -------------------------------------------------------------------------------- /static/poussin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/static/poussin.jpg -------------------------------------------------------------------------------- /test/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/array.rs -------------------------------------------------------------------------------- /test/array2d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/array2d.rs -------------------------------------------------------------------------------- /test/castunsize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/castunsize.rs -------------------------------------------------------------------------------- /test/chunks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/chunks.rs -------------------------------------------------------------------------------- /test/closure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/closure.rs -------------------------------------------------------------------------------- /test/closure_fn_cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/closure_fn_cast.rs -------------------------------------------------------------------------------- /test/collision.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/collision.rs -------------------------------------------------------------------------------- /test/const_generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/const_generics.rs -------------------------------------------------------------------------------- /test/core_cmp_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/core_cmp_lib.c -------------------------------------------------------------------------------- /test/core_num.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/core_num.rs -------------------------------------------------------------------------------- /test/core_str_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/core_str_lib.c -------------------------------------------------------------------------------- /test/dst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/dst.rs -------------------------------------------------------------------------------- /test/dyn_trait_struct_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/dyn_trait_struct_type.rs -------------------------------------------------------------------------------- /test/floating_points.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/floating_points.rs -------------------------------------------------------------------------------- /test/fn_cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/fn_cast.rs -------------------------------------------------------------------------------- /test/fn_higher_order.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/fn_higher_order.rs -------------------------------------------------------------------------------- /test/for.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/for.rs -------------------------------------------------------------------------------- /test/global_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/global_ref.rs -------------------------------------------------------------------------------- /test/inline_attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/inline_attributes.rs -------------------------------------------------------------------------------- /test/int_switch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/int_switch.rs -------------------------------------------------------------------------------- /test/issue_102.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_102.rs -------------------------------------------------------------------------------- /test/issue_104.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_104.rs -------------------------------------------------------------------------------- /test/issue_105.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_105.rs -------------------------------------------------------------------------------- /test/issue_106.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_106.rs -------------------------------------------------------------------------------- /test/issue_107.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_107.rs -------------------------------------------------------------------------------- /test/issue_123.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_123.rs -------------------------------------------------------------------------------- /test/issue_128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_128.rs -------------------------------------------------------------------------------- /test/issue_14.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_14.rs -------------------------------------------------------------------------------- /test/issue_212.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_212.rs -------------------------------------------------------------------------------- /test/issue_37.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_37.rs -------------------------------------------------------------------------------- /test/issue_49.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_49.rs -------------------------------------------------------------------------------- /test/issue_96.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_96.rs -------------------------------------------------------------------------------- /test/issue_99.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_99.rs -------------------------------------------------------------------------------- /test/issue_k630.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/issue_k630.rs -------------------------------------------------------------------------------- /test/libcrux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/libcrux/CMakeLists.txt -------------------------------------------------------------------------------- /test/libcrux/c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/libcrux/c.yaml -------------------------------------------------------------------------------- /test/libcrux/intrinsics/libcrux_intrinsics_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/libcrux/intrinsics/libcrux_intrinsics_avx2.h -------------------------------------------------------------------------------- /test/libcrux/tests/mlkem768.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/libcrux/tests/mlkem768.cc -------------------------------------------------------------------------------- /test/libcrux/tests/mlkem768_nistkats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/libcrux/tests/mlkem768_nistkats.json -------------------------------------------------------------------------------- /test/libcrux/tests/sha3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/libcrux/tests/sha3.cc -------------------------------------------------------------------------------- /test/lvalue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/lvalue.rs -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/main.c -------------------------------------------------------------------------------- /test/mismatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/mismatch.rs -------------------------------------------------------------------------------- /test/more_dst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/more_dst.rs -------------------------------------------------------------------------------- /test/more_primitive_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/more_primitive_types.rs -------------------------------------------------------------------------------- /test/more_primitive_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/more_primitive_types.yaml -------------------------------------------------------------------------------- /test/more_str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/more_str.rs -------------------------------------------------------------------------------- /test/mutable_slice_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/mutable_slice_range.rs -------------------------------------------------------------------------------- /test/names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/names.rs -------------------------------------------------------------------------------- /test/nested_arrays.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/nested_arrays.rs -------------------------------------------------------------------------------- /test/nested_arrays2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/nested_arrays2.rs -------------------------------------------------------------------------------- /test/option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/option.rs -------------------------------------------------------------------------------- /test/parentparent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/parentparent.rs -------------------------------------------------------------------------------- /test/partial_eq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/partial_eq.rs -------------------------------------------------------------------------------- /test/partial_eq_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/partial_eq_stubs.c -------------------------------------------------------------------------------- /test/println.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/println.rs -------------------------------------------------------------------------------- /test/raw_pointers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/raw_pointers.rs -------------------------------------------------------------------------------- /test/reborrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/reborrow.rs -------------------------------------------------------------------------------- /test/recursion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/recursion.rs -------------------------------------------------------------------------------- /test/repeat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/repeat.rs -------------------------------------------------------------------------------- /test/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/result.rs -------------------------------------------------------------------------------- /test/slice_array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/slice_array.rs -------------------------------------------------------------------------------- /test/step_by.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/step_by.rs -------------------------------------------------------------------------------- /test/substr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/substr.rs -------------------------------------------------------------------------------- /test/substr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/substr.yaml -------------------------------------------------------------------------------- /test/substr_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/substr_impl.c -------------------------------------------------------------------------------- /test/substr_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/substr_stubs.h -------------------------------------------------------------------------------- /test/symcrust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/symcrust.rs -------------------------------------------------------------------------------- /test/trait_generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/trait_generics.rs -------------------------------------------------------------------------------- /test/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/traits.rs -------------------------------------------------------------------------------- /test/traits2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/traits2.rs -------------------------------------------------------------------------------- /test/traits3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/traits3.rs -------------------------------------------------------------------------------- /test/we_need_charon_monomorphization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/we_need_charon_monomorphization.rs -------------------------------------------------------------------------------- /test/where_clauses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/where_clauses.rs -------------------------------------------------------------------------------- /test/where_clauses_closures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/where_clauses_closures.rs -------------------------------------------------------------------------------- /test/where_clauses_fncg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/where_clauses_fncg.rs -------------------------------------------------------------------------------- /test/where_clauses_simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeneasVerif/eurydice/HEAD/test/where_clauses_simple.rs --------------------------------------------------------------------------------