• bellperson 0.24.1/src/groth16/tests/mod.rs
    438
    #[test]
    439
    #[allow(clippy::manual_swap)]
    440
    fn test_verify_random_single() {
    515
    #[test]
    516
    #[allow(clippy::manual_swap)]
    517
    fn test_verify_random_batch() {
  • colorspace 0.1.0/src/math.rs
    164
                if pivot != i {
    165
                    #[allow(clippy::manual_swap)]
    166
                    for j in 0..3 {
  • const-str 0.5.3/src/__ctfe/net.rs
    238
                let mut j = 7;
    239
                #[allow(clippy::manual_swap)]
    240
                while i < j {
  • ezhook 0.2.2/src/local/swap.rs
    41
        #[inline(always)]
    42
        #[allow(clippy::manual_swap)]
    43
        pub unsafe fn toggle_inline(&mut self) {
  • ezhook 0.2.2/src/local/trampoline.rs
    70
        #[inline(always)]
    71
        #[allow(clippy::manual_swap)]
    72
        pub unsafe fn toggle_inline(&mut self) {
  • gptman 1.0.0/src/lib.rs
    1636
        #[test]
    1637
        #[allow(clippy::manual_swap)]
    1638
        fn write_invalid_boundaries() {
  • maikor-vm-core 0.1.15/src/ops/mem.rs
    12
        #[allow(clippy::manual_swap)] //manual is 2x faster
    13
        pub fn swap_mem(&mut self, dst: u16, src: u16, count: usize) {
  • pbrt 0.1.5/src/core/transform.rs
    192
                    // Can't figure out how to make swap work here.
    193
                    #[allow(clippy::manual_swap)]
    194
                    for k in 0..4 {
  • softposit 0.4.0/src/p16e1/ops.rs
    39
        #[allow(clippy::manual_swap)]
    40
        const fn sub_mags(mut ui_a: u16, mut ui_b: u16) -> Self {
    116
        #[allow(clippy::manual_swap)]
    117
        const fn add_mags(mut ui_a: u16, mut ui_b: u16) -> Self {
  • softposit 0.4.0/src/p32e2/ops.rs
    252
        #[allow(clippy::manual_swap)]
    253
        const fn add_mags(mut ui_a: u32, mut ui_b: u32) -> Self {
    314
        #[allow(clippy::manual_swap)]
    315
        const fn sub_mags(mut ui_a: u32, mut ui_b: u32) -> Self {
  • softposit 0.4.0/src/p8e0/ops.rs
    188
        #[allow(clippy::manual_swap)]
    189
        const fn add_mags(mut ui_a: u8, mut ui_b: u8) -> Self {
    224
        #[allow(clippy::manual_swap)]
    225
        const fn sub_mags(mut ui_a: u8, mut ui_b: u8) -> Self {
  • boost-rs 0.0.4/src/bit/opt.rs
    1
    #![allow(clippy::manual_swap)]
  • compiler_builtins 0.1.86/src/lib.rs
    21
    // `mem::swap` cannot be used because it may generate references to memcpy in unoptimized code.
    22
    #![allow(clippy::manual_swap)]
    23
    // Support compiling on both stage0 and stage1 which may differ in supported stable features.
  • unsafe-libyaml 0.2.5/src/lib.rs
    23
        clippy::manual_range_contains,
    24
        clippy::manual_swap,
    25
        clippy::missing_panics_doc,
  • ux-dx 0.2.1/src/lib.rs
    18
        clippy::comparison_to_empty,
    19
        clippy::manual_swap,
    20
        clippy::new_ret_no_self,