Home
last modified time | relevance | path

Searched refs:Wrapping (Results 1 – 25 of 49) sorted by relevance

12

/third_party/rust/crates/minimal-lexical/src/
Dlibm.rs1088 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/
Dvar.rs16 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/
Dexpr.rs23 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()
Dliteral.rs348 map(full(c_int), |i| EvalResult::Int(::std::num::Wrapping(i))), in one_literal()
/third_party/mesa3d/.gitlab-ci/windows/
DDockerfile_vs7 # Wrapping the following command in cmd.exe
/third_party/gstreamer/gstreamer/docs/random/wtay/
DCORBA21 Wrapping the GStreamer objects in CORBA objects doesn't look
/third_party/rust/crates/serde/serde/src/
Dlib.rs172 pub use self::core::num::Wrapping;
/third_party/vk-gl-cts/doc/testspecs/GLES31/
Dfunctional.texture.border_clamp.txt61 directions. Wrapping is tested for 2D and 3D textures with multiple formats
/third_party/rust/crates/serde/test_suite/tests/
Dtest_ser.rs8 use std::num::Wrapping;
594 assert_ser_tokens(&Wrapping(1usize), &[Token::U64(1)]); in test_wrapping()
Dtest_de_error.rs11 NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8, NonZeroUsize, Wrapping,
1447 assert_de_tokens_error::<Wrapping<u16>>( in test_wrapping_overflow()
Dtest_de.rs18 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/
DEXT_texture_mirror_clamp_to_edge.txt91 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
DEXT_texture_filter_minmax.txt109 Modify Section 8.14.2, Coordinate Wrapping and Texel Selection (p. 254)
/third_party/openGLES/extensions/EXT/
DEXT_texture_mirror_clamp_to_edge.txt91 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
DEXT_texture_filter_minmax.txt109 Modify Section 8.14.2, Coordinate Wrapping and Texel Selection (p. 254)
/third_party/rust/crates/rust-cexpr/tests/
Dclang.rs34 .map(::std::num::Wrapping) in test_definition()
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_texture_mirror_clamp_to_edge.txt102 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
DARB_texture_gather.txt102 Add to subsection Coordinate Wrapping and Texel Selection
DARB_texture_filter_minmax.txt106 Modify Section 8.14.2, Coordinate Wrapping and Texel Selection
/third_party/skia/experimental/sktext/include/
DSkText.md28 * <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/
DARB_texture_mirror_clamp_to_edge.txt112 In section 8.14.2 (Coordinate Wrapping and Texel Selection) add the
DARB_texture_gather.txt112 Add to subsection Coordinate Wrapping and Texel Selection
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DREADME.txt109 Find a clean way to fix the problem which leads to the Shrink Wrapping pass
/third_party/skia/third_party/externals/dawn/src/tests/
DBUILD.gn93 # Wrapping of Chromium targets
/third_party/rust/crates/serde/serde/src/ser/
Dimpls.rs880 impl<T> Serialize for Wrapping<T> implementation

12