Lines Matching refs:stringify
2650 [`", stringify!($int_type), "`].
2652 If the compiler and the platform support atomic loads and stores of [`", stringify!($int_type),
2653 "`], this type is a wrapper for the standard library's `", stringify!($atomic_type),
2656 You can call [`", stringify!($atomic_type), "::is_lock_free()`] to check whether
2698 use portable_atomic::", stringify!($atomic_type), ";
2700 let atomic_forty_two = ", stringify!($atomic_type), "::new(42);
2717 * `ptr` must be aligned to `align_of::<", stringify!($atomic_type), ">()` (note that on some platfo…
2718 can be bigger than `align_of::<", stringify!($int_type), ">()`).
2758 use portable_atomic::", stringify!($atomic_type), ";
2760 let is_lock_free = ", stringify!($atomic_type), "::is_lock_free();
2782 use portable_atomic::", stringify!($atomic_type), ";
2784 const IS_ALWAYS_LOCK_FREE: bool = ", stringify!($atomic_type), "::is_always_lock_free();
2803 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
2805 let mut some_var = ", stringify!($atomic_type), "::new(10);
2831 use portable_atomic::", stringify!($atomic_type), ";
2833 let some_var = ", stringify!($atomic_type), "::new(5);
2856 use portable_atomic::", stringify!($atomic_type), ";
2858 let some_var = ", stringify!($atomic_type), "::new(5);
2883 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
2885 let some_var = ", stringify!($atomic_type), "::new(5);
2912 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
2914 let some_var = ", stringify!($atomic_type), "::new(5);
2942 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
2944 let some_var = ", stringify!($atomic_type), "::new(5);
2980 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
2982 let some_var = ", stringify!($atomic_type), "::new(5);
3037 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3039 let val = ", stringify!($atomic_type), "::new(4);
3082 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3084 let foo = ", stringify!($atomic_type), "::new(0);
3114 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3116 let foo = ", stringify!($atomic_type), "::new(0);
3140 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3142 let foo = ", stringify!($atomic_type), "::new(20);
3172 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3174 let foo = ", stringify!($atomic_type), "::new(20);
3202 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3204 let foo = ", stringify!($atomic_type), "::new(0b101101);
3240 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3242 let foo = ", stringify!($atomic_type), "::new(0b101101);
3270 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3272 let foo = ", stringify!($atomic_type), "::new(0x13);
3300 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3302 let foo = ", stringify!($atomic_type), "::new(0b101101);
3338 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3340 let foo = ", stringify!($atomic_type), "::new(0b101101);
3367 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3369 let foo = ", stringify!($atomic_type), "::new(0b101101);
3405 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3407 let foo = ", stringify!($atomic_type), "::new(0b101101);
3453 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3455 let x = ", stringify!($atomic_type), "::new(7);
3504 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3506 let foo = ", stringify!($atomic_type), "::new(23);
3514 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3516 let foo = ", stringify!($atomic_type), "::new(23);
3544 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3546 let foo = ", stringify!($atomic_type), "::new(23);
3556 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3558 let foo = ", stringify!($atomic_type), "::new(23);
3586 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3588 let foo = ", stringify!($atomic_type), "::new(0b0000);
3616 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3618 let foo = ", stringify!($atomic_type), "::new(0b0001);
3644 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3646 let foo = ", stringify!($atomic_type), "::new(0b0000);
3672 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3674 let foo = ", stringify!($atomic_type), "::new(0);
3703 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3705 let foo = ", stringify!($atomic_type), "::new(0);
3730 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3732 let foo = ", stringify!($atomic_type), "::new(5);
3734 assert_eq!(foo.load(Ordering::Relaxed), 5_", stringify!($int_type), ".wrapping_neg());
3735 assert_eq!(foo.fetch_neg(Ordering::Relaxed), 5_", stringify!($int_type), ".wrapping_neg());
3762 use portable_atomic::{", stringify!($atomic_type), ", Ordering};
3764 let foo = ", stringify!($atomic_type), "::new(5);
3766 assert_eq!(foo.load(Ordering::Relaxed), 5_", stringify!($int_type), ".wrapping_neg());
4025 [`", stringify!($float_type), "`].
4074 * `ptr` must be aligned to `align_of::<", stringify!($atomic_type), ">()` (note that on some platfo…
4075 can be bigger than `align_of::<", stringify!($float_type), ">()`).
4426 concat!("Raw transmutation to `&", stringify!($atomic_int_type), "`.
4428 See [`", stringify!($float_type) ,"::from_bits`] for some discussion of the
4439 concat!("Raw transmutation to `&", stringify!($atomic_int_type), "`.
4441 See [`", stringify!($float_type) ,"::from_bits`] for some discussion of the