/third_party/rust/crates/minimal-lexical/src/ |
D | libm.rs | 1088 use core::num::Wrapping; in sqrtd() 1093 let sign: Wrapping<u32> = Wrapping(0x80000000); in sqrtd() 1100 let mut r: Wrapping<u32>; in sqrtd() 1101 let mut t1: Wrapping<u32>; in sqrtd() 1102 let mut s1: Wrapping<u32>; in sqrtd() 1103 let mut ix1: Wrapping<u32>; in sqrtd() 1104 let mut q1: Wrapping<u32>; in sqrtd() 1107 ix1 = Wrapping(x.to_bits() as u32); in sqrtd() 1153 q1 = Wrapping(0); in sqrtd() 1155 s1 = Wrapping(0); in sqrtd() [all …]
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
D | var.rs | 16 use std::num::Wrapping; 255 EvalResult::Int(Wrapping(value)) => { in parse() 400 Ok((_, EvalResult::Int(Wrapping(val)))) => Some(val), in parse_int_literal_tokens()
|
/third_party/rust/crates/rust-cexpr/src/ |
D | expr.rs | 23 use std::num::Wrapping; 53 Int(Wrapping<i64>), 75 result_opt!(fn as_int: Int -> Wrapping<i64>); 273 …(b'-', Int(i)) => Some(Int(Wrapping(i.0.wrapping_neg()))), // impl Neg for Wrapping not until rust… in unary_op()
|
D | literal.rs | 348 map(full(c_int), |i| EvalResult::Int(::std::num::Wrapping(i))), in one_literal()
|
/third_party/mesa3d/.gitlab-ci/windows/ |
D | Dockerfile_vs | 7 # Wrapping the following command in cmd.exe
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | CORBA | 21 Wrapping the GStreamer objects in CORBA objects doesn't look
|
/third_party/rust/crates/serde/serde/src/ |
D | lib.rs | 172 pub use self::core::num::Wrapping;
|
/third_party/vk-gl-cts/doc/testspecs/GLES31/ |
D | functional.texture.border_clamp.txt | 61 directions. Wrapping is tested for 2D and 3D textures with multiple formats
|
/third_party/rust/crates/serde/test_suite/tests/ |
D | test_ser.rs | 8 use std::num::Wrapping; 594 assert_ser_tokens(&Wrapping(1usize), &[Token::U64(1)]); in test_wrapping()
|
D | test_de_error.rs | 11 NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8, NonZeroUsize, Wrapping, 1447 assert_de_tokens_error::<Wrapping<u16>>( in test_wrapping_overflow()
|
D | test_de.rs | 18 NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8, NonZeroUsize, Wrapping, 1989 test(Wrapping(1usize), &[Token::U32(1)]); in test_wrapping() 1990 test(Wrapping(1usize), &[Token::U64(1)]); in test_wrapping()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_texture_mirror_clamp_to_edge.txt | 91 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
|
D | EXT_texture_filter_minmax.txt | 109 Modify Section 8.14.2, Coordinate Wrapping and Texel Selection (p. 254)
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_texture_mirror_clamp_to_edge.txt | 91 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
|
D | EXT_texture_filter_minmax.txt | 109 Modify Section 8.14.2, Coordinate Wrapping and Texel Selection (p. 254)
|
/third_party/rust/crates/rust-cexpr/tests/ |
D | clang.rs | 34 .map(::std::num::Wrapping) in test_definition()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_texture_mirror_clamp_to_edge.txt | 102 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
|
D | ARB_texture_gather.txt | 102 Add to subsection Coordinate Wrapping and Texel Selection
|
D | ARB_texture_filter_minmax.txt | 106 Modify Section 8.14.2, Coordinate Wrapping and Texel Selection
|
/third_party/skia/experimental/sktext/include/ |
D | SkText.md | 28 * <u>Wrapping the text</u> into a list of lines (by a given width) and formatting it on the lines (…
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_texture_mirror_clamp_to_edge.txt | 112 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
|
D | ARB_texture_gather.txt | 112 Add to subsection Coordinate Wrapping and Texel Selection
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | README.txt | 109 Find a clean way to fix the problem which leads to the Shrink Wrapping pass
|
/third_party/skia/third_party/externals/dawn/src/tests/ |
D | BUILD.gn | 93 # Wrapping of Chromium targets
|
/third_party/rust/crates/serde/serde/src/ser/ |
D | impls.rs | 880 impl<T> Serialize for Wrapping<T> implementation
|