Lines Matching defs:DROPS
3127 static mut DROPS: i32 = 0;
3134 DROPS += 1;
3155 assert_eq!(unsafe { DROPS }, 8);
3161 static mut DROPS: i32 = 0;
3169 DROPS += 1;
3189 assert_eq!(unsafe { DROPS }, 2); // 0 and 1
3195 static mut DROPS: i32 = 0;
3200 DROPS += 1;
3212 assert_eq!(unsafe { DROPS }, 4);
3217 static mut DROPS: i32 = 0;
3222 DROPS += 1;
3235 assert_eq!(unsafe { DROPS }, 2);
3238 assert_eq!(unsafe { DROPS }, 4);
3243 static mut DROPS: i32 = 0;
3248 DROPS += 1;
3259 assert_eq!(unsafe { DROPS }, 4);
3262 assert_eq!(unsafe { DROPS }, 4);
3267 static mut DROPS: i32 = 0;
3274 DROPS += 1;
3295 assert_eq!(unsafe { DROPS }, 8);
7022 static mut DROPS: u32 = 0;
7027 DROPS += 1;
7033 assert_eq!(unsafe { DROPS }, 0);
7035 assert_eq!(unsafe { DROPS }, 2);
7037 assert_eq!(unsafe { DROPS }, 5);
7285 static mut DROPS: i32 = 0;
7293 DROPS += 1;
7317 assert_eq!(unsafe { DROPS }, 4);
7478 static mut DROPS: i32 = 0;
7485 DROPS += 1;
7498 assert_eq!(unsafe { DROPS }, 3);
11861 static mut DROPS: i32 = 0;
11866 DROPS += 1;
11878 assert_eq!(unsafe { DROPS }, 4);
11883 static mut DROPS: i32 = 0;
11888 DROPS += 1;
11901 assert_eq!(unsafe { DROPS }, 2);
11904 assert_eq!(unsafe { DROPS }, 4);
11909 static mut DROPS: i32 = 0;
11914 DROPS += 1;
11925 assert_eq!(unsafe { DROPS }, 4);
11928 assert_eq!(unsafe { DROPS }, 4);
11933 static mut DROPS: i32 = 0;
11940 DROPS += 1;
11961 assert_eq!(unsafe { DROPS }, 8);
12797 static mut DROPS: i32 = 0;
12804 DROPS += 1;
12825 assert_eq!(unsafe { DROPS }, 7);
12830 static mut DROPS: i32 = 0;
12838 DROPS += 1;
12861 assert_eq!(unsafe { DROPS }, 4);
12864 assert_eq!(unsafe { DROPS }, 7);
13576 static DROPS: AtomicU32 = AtomicU32::new(0);
13583 DROPS.fetch_add(1, Ordering::SeqCst);
13602 assert_eq!(DROPS.load(Ordering::SeqCst), 6);
44029 static mut DROPS: u32 = 0;
44035 DROPS += 1;
44051 assert_eq!(unsafe { DROPS }, 0);
44053 assert_eq!(unsafe { DROPS }, 2);
44055 assert_eq!(unsafe { DROPS }, 5);
44057 DROPS = 0;