Home
last modified time | relevance | path

Searched full:raw (Results 1 – 25 of 3594) sorted by relevance

12345678910>>...144

/third_party/libsnd/tests/
Dbenchmark-latest-coltrane6 Raw write PCM_16 : 31022959 samples per sec
7 Raw read PCM_16 : 63471874 samples per sec
10 Write short to PCM_16 : 83.19% of raw write
11 Read short from PCM_16 : 82.28% of raw read
12 Write int to PCM_24 : 30.81% of raw write
13 Read int from PCM_24 : 32.92% of raw read
14 Write float to PCM_16 : 17.70% of raw write
15 Read float from PCM_16 : 43.64% of raw read
16 Write float to PCM_24 : 15.09% of raw write
17 Read float from PCM_24 : 27.79% of raw read
[all …]
Dbenchmark-0.0.286 Raw write PCM_16 : 30660117 samples per sec
7 Raw read PCM_16 : 62788982 samples per sec
10 Write short to PCM_16 : 83.37% of raw write
11 Read short from PCM_16 : 83.17% of raw read
12 Write int to PCM_24 : 30.78% of raw write
13 Read int from PCM_24 : 32.96% of raw read
14 Write int to PCM_32 : 42.05% of raw write
15 Read int from PCM_32 : 41.11% of raw read
16 Write float to PCM_16 : 17.75% of raw write
17 Read float from PCM_16 : 43.27% of raw read
[all …]
Dbenchmark-1.0.6pre10-miles5 Raw write PCM_16 : 40092612 samples per sec
6 Raw read PCM_16 : 42382563 samples per sec
9 Write short to PCM_16 : 61.90% of raw write
10 Read short from PCM_16 : 100.20% of raw read
11 Write int to PCM_24 : 28.69% of raw write
12 Read int from PCM_24 : 33.62% of raw read
13 Write int to PCM_32 : 31.14% of raw write
14 Read int from PCM_32 : 51.04% of raw read
15 Write float to PCM_16 : 25.57% of raw write
16 Read float from PCM_16 : 28.17% of raw read
[all …]
Dbenchmark-1.0.6pre10-coltrane5 Raw write PCM_16 : 28845961 samples per sec
6 Raw read PCM_16 : 63471874 samples per sec
9 Write short to PCM_16 : 86.21% of raw write
10 Read short from PCM_16 : 82.60% of raw read
11 Write int to PCM_24 : 34.89% of raw write
12 Read int from PCM_24 : 37.26% of raw read
13 Write int to PCM_32 : 43.36% of raw write
14 Read int from PCM_32 : 41.30% of raw read
15 Write float to PCM_16 : 43.02% of raw write
16 Read float from PCM_16 : 43.99% of raw read
[all …]
Dbenchmark-1.0.18pre16-hendrix5 Raw write PCM_16 : 103189885 samples per sec
6 Raw read PCM_16 : 660854036 samples per sec
9 Write short to PCM_16 : 95.08% of raw write
10 Read short from PCM_16 : 96.39% of raw read
11 Write int to PCM_24 : 54.55% of raw write
12 Read int from PCM_24 : 28.50% of raw read
13 Write int to PCM_32 : 46.97% of raw write
14 Read int from PCM_32 : 39.98% of raw read
15 Write float to PCM_16 : 60.85% of raw write
16 Read float from PCM_16 : 27.79% of raw read
[all …]
Dbenchmark-1.0.18pre16-mingus5 Raw write PCM_16 : 178237074 samples per sec
6 Raw read PCM_16 : 368885269 samples per sec
9 Write short to PCM_16 : 98.84% of raw write
10 Read short from PCM_16 : 147.10% of raw read
11 Write int to PCM_24 : 33.74% of raw write
12 Read int from PCM_24 : 30.82% of raw read
13 Write int to PCM_32 : 48.34% of raw write
14 Read int from PCM_32 : 62.43% of raw read
15 Write float to PCM_16 : 41.86% of raw write
16 Read float from PCM_16 : 36.73% of raw read
[all …]
Dbenchmark-1.0.05 Raw write PCM_16 : 31084269 samples per sec
6 Raw read PCM_16 : 63597065 samples per sec
9 Write short to PCM_16 : 83.19% of raw write
10 Read short from PCM_16 : 82.93% of raw read
11 Write int to PCM_24 : 31.12% of raw write
12 Read int from PCM_24 : 37.90% of raw read
13 Write float to PCM_16 : 37.00% of raw write
14 Read float from PCM_16 : 45.53% of raw read
15 Write float to PCM_24 : 29.08% of raw write
16 Read float from PCM_24 : 28.48% of raw read
[all …]
Dbenchmark-1.0.0rc25 Raw write PCM_16 : 31638069 samples per sec
6 Raw read PCM_16 : 62788982 samples per sec
9 Write short to PCM_16 : 82.37% of raw write
10 Read short from PCM_16 : 82.17% of raw read
11 Write int to PCM_24 : 30.80% of raw write
12 Read int from PCM_24 : 37.95% of raw read
13 Write float to PCM_16 : 36.22% of raw write
14 Read float from PCM_16 : 23.32% of raw read
15 Write float to PCM_24 : 28.41% of raw write
16 Read float from PCM_24 : 28.41% of raw read
[all …]
/third_party/rust/crates/clap/clap_lex/tests/
Dparsed.rs5 let raw = clap_lex::RawArgs::new(["bin", "-"]); in to_long_stdio() localVariable
6 let mut cursor = raw.cursor(); in to_long_stdio()
7 assert_eq!(raw.next_os(&mut cursor), Some(std::ffi::OsStr::new("bin"))); in to_long_stdio()
8 let next = raw.next(&mut cursor).unwrap(); in to_long_stdio()
17 let raw = clap_lex::RawArgs::new(["bin", "--"]); in to_long_no_escape() localVariable
18 let mut cursor = raw.cursor(); in to_long_no_escape()
19 assert_eq!(raw.next_os(&mut cursor), Some(std::ffi::OsStr::new("bin"))); in to_long_no_escape()
20 let next = raw.next(&mut cursor).unwrap(); in to_long_no_escape()
29 let raw = clap_lex::RawArgs::new(["bin", "--long"]); in to_long_no_value() localVariable
30 let mut cursor = raw.cursor(); in to_long_no_value()
[all …]
Dshorts.rs3 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in iter() localVariable
4 let mut cursor = raw.cursor(); in iter()
5 assert_eq!(raw.next_os(&mut cursor), Some(std::ffi::OsStr::new("bin"))); in iter()
6 let next = raw.next(&mut cursor).unwrap(); in iter()
15 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in next_flag() localVariable
16 let mut cursor = raw.cursor(); in next_flag()
17 assert_eq!(raw.next_os(&mut cursor), Some(std::ffi::OsStr::new("bin"))); in next_flag()
18 let next = raw.next(&mut cursor).unwrap(); in next_flag()
34 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in next_value_os() localVariable
35 let mut cursor = raw.cursor(); in next_value_os()
[all …]
/third_party/elfutils/tests/
Drun-peel-type.sh25 c raw type base_type
26 i raw type base_type
27 l raw type base_type
28 v raw type pointer_type
29 s raw type structure_type
30 ca raw type array_type
31 ia raw type array_type
32 va raw type array_type
33 sa raw type array_type
37 c raw type base_type
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_psa_crypto_util.data1 ECDSA Raw -> DER, 256bit, Success
5 ECDSA Raw -> DER, 256bit, DER buffer too small
9 ECDSA Raw -> DER, very large input (544-bit)
12 ECDSA Raw -> DER, 256bit, Null r
16 ECDSA Raw -> DER, 256bit, Null s
20 ECDSA Raw -> DER, 256bit, r with MSb set
24 ECDSA Raw -> DER, 256bit, s with MSb set
28 ECDSA Raw -> DER, 256bit, both r and s with MSb set
32 ECDSA Raw -> DER, 256bit, r and s only 1 byte of data
36 ECDSA Raw -> DER, 256bit, r and s only 1 byte of data with MSb set
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dkeywords.rs10 pub static mut u8_: ::std::os::raw::c_int;
14 pub static mut u16_: ::std::os::raw::c_int;
18 pub static mut u32_: ::std::os::raw::c_int;
22 pub static mut u64_: ::std::os::raw::c_int;
26 pub static mut i8_: ::std::os::raw::c_int;
30 pub static mut i16_: ::std::os::raw::c_int;
34 pub static mut i32_: ::std::os::raw::c_int;
38 pub static mut i64_: ::std::os::raw::c_int;
42 pub static mut f32_: ::std::os::raw::c_int;
46 pub static mut f64_: ::std::os::raw::c_int;
[all …]
Dderive-fn-ptr.rs10 arg1: ::std::os::raw::c_int,
11 arg2: ::std::os::raw::c_int,
12 arg3: ::std::os::raw::c_int,
13 arg4: ::std::os::raw::c_int,
14 arg5: ::std::os::raw::c_int,
15 arg6: ::std::os::raw::c_int,
16 arg7: ::std::os::raw::c_int,
17 arg8: ::std::os::raw::c_int,
18 arg9: ::std::os::raw::c_int,
19 arg10: ::std::os::raw::c_int,
[all …]
Dissue-816.rs116 pub fn bit_1(&self) -> ::std::os::raw::c_uint { in bit_1()
122 pub fn set_bit_1(&mut self, val: ::std::os::raw::c_uint) { in set_bit_1()
129 pub fn bit_2(&self) -> ::std::os::raw::c_uint { in bit_2()
135 pub fn set_bit_2(&mut self, val: ::std::os::raw::c_uint) { in set_bit_2()
142 pub fn bit_3(&self) -> ::std::os::raw::c_uint { in bit_3()
148 pub fn set_bit_3(&mut self, val: ::std::os::raw::c_uint) { in set_bit_3()
155 pub fn bit_4(&self) -> ::std::os::raw::c_uint { in bit_4()
161 pub fn set_bit_4(&mut self, val: ::std::os::raw::c_uint) { in set_bit_4()
168 pub fn bit_5(&self) -> ::std::os::raw::c_uint { in bit_5()
174 pub fn set_bit_5(&mut self, val: ::std::os::raw::c_uint) { in set_bit_5()
[all …]
Dbitfield-32bit-overflow.rs115 pub fn m0(&self) -> ::std::os::raw::c_char { in m0()
121 pub fn set_m0(&mut self, val: ::std::os::raw::c_char) { in set_m0()
128 pub fn m1(&self) -> ::std::os::raw::c_char { in m1()
134 pub fn set_m1(&mut self, val: ::std::os::raw::c_char) { in set_m1()
141 pub fn m2(&self) -> ::std::os::raw::c_char { in m2()
147 pub fn set_m2(&mut self, val: ::std::os::raw::c_char) { in set_m2()
154 pub fn m3(&self) -> ::std::os::raw::c_char { in m3()
160 pub fn set_m3(&mut self, val: ::std::os::raw::c_char) { in set_m3()
167 pub fn m4(&self) -> ::std::os::raw::c_char { in m4()
173 pub fn set_m4(&mut self, val: ::std::os::raw::c_char) { in set_m4()
[all …]
Dbitfield_align.rs98 pub x: ::std::os::raw::c_uchar,
101 pub y: ::std::os::raw::c_uchar,
131 pub fn b1(&self) -> ::std::os::raw::c_uint { in b1()
137 pub fn set_b1(&mut self, val: ::std::os::raw::c_uint) { in set_b1()
144 pub fn b2(&self) -> ::std::os::raw::c_uint { in b2()
150 pub fn set_b2(&mut self, val: ::std::os::raw::c_uint) { in set_b2()
157 pub fn b3(&self) -> ::std::os::raw::c_uint { in b3()
163 pub fn set_b3(&mut self, val: ::std::os::raw::c_uint) { in set_b3()
170 pub fn b4(&self) -> ::std::os::raw::c_uint { in b4()
176 pub fn set_b4(&mut self, val: ::std::os::raw::c_uint) { in set_b4()
[all …]
/third_party/rust/crates/rustix/src/backend/libc/
Dconv.rs41 pub(super) fn ret(raw: c::c_int) -> io::Result<()> { in ret()
42 if raw == 0 { in ret()
50 pub(super) fn syscall_ret(raw: c::c_long) -> io::Result<()> { in syscall_ret()
51 if raw == 0 { in syscall_ret()
59 pub(super) fn nonnegative_ret(raw: c::c_int) -> io::Result<()> { in nonnegative_ret()
60 if raw >= 0 { in nonnegative_ret()
68 pub(super) unsafe fn ret_infallible(raw: c::c_int) { in ret_infallible()
69 debug_assert_eq!(raw, 0, "unexpected error: {:?}", io::Errno::last_os_error()); in ret_infallible()
73 pub(super) fn ret_c_int(raw: c::c_int) -> io::Result<c::c_int> { in ret_c_int()
74 if raw == -1 { in ret_c_int()
[all …]
/third_party/mesa3d/bin/
Dkhronos-update.py50 …clude/KHR/khrplatform.h', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/KHR/khrpla…
58 …rc/egl/generate/egl.xml', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/egl.xml'),
59 …clude/EGL/egl.h', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/EGL/egl.h'…
60 …clude/EGL/eglplatform.h', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/EGL/eglpla…
61 …clude/EGL/eglext.h', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/EGL/eglext…
72 …api/glapi/registry/gl.xml', 'https://github.com/KhronosGroup/OpenGL-Registry/raw/main/xml/gl.xml'),
73 …/GL/glcorearb.h', 'https://github.com/KhronosGroup/OpenGL-Registry/raw/main/api/GL/glcorea…
74 …/GL/glext.h', 'https://github.com/KhronosGroup/OpenGL-Registry/raw/main/api/GL/glext.h…
75 …/GL/glxext.h', 'https://github.com/KhronosGroup/OpenGL-Registry/raw/main/api/GL/glxext.…
76 …/GL/wglext.h', 'https://github.com/KhronosGroup/OpenGL-Registry/raw/main/api/GL/wglext.…
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dstring-raw.js29 // https://www.ecma-international.org/ecma-262/6.0/#sec-string.raw 21.1.2.4
33 ["{ get raw() { throw '5'; } }", '5'],
34 ["{ raw : undefined }", TypeError], // 5.toObject
35 ["{ raw : { get length() { throw '7.1'; } } }", '7.1'],
36 ["{ raw : { length : { toString() { throw '7.2'; } } } }", '7.2'],
37 ["{ raw : { length: 2, get '0'() { throw '12.b.1'} } }", '12.b.1'],
38 ["{ raw : { length: 2, '0' : { toString() { throw '12.b.2';} } } }", '12.b.2'],
39 ["{ raw : { length: 2, '0' : 1 } }, { toString() { throw '12.h';} }", '12.h'],
43 assertThrows("String.raw(" + e[0] + ")", e[1]);
46 // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/raw
[all …]
/third_party/openssl/test/recipes/30-test_evp_data/
Devppkey_ecx.txt43 #Raw versions of the same keys as above
45 PrivateKeyRaw=Alice-25519-Raw:X25519:77076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c…
47 PublicKeyRaw=Alice-25519-PUBLIC-Raw:X25519:8520f0098930a754748b7ddcb43ef75a0dbf3a0d26381af4eba4a98e…
49 PrivPubKeyPair = Alice-25519-Raw:Alice-25519-PUBLIC-Raw
51 PrivateKeyRaw=Bob-25519-Raw:X25519:5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb
53 PublicKeyRaw=Bob-25519-PUBLIC-Raw:X25519:de9edb7d7b7dc1b4d35b61c2ece435373f8343c85b78674dadfc7e146f…
57 PrivPubKeyPair = Bob-25519-Raw:Bob-25519-PUBLIC-Raw
67 Derive=Alice-25519-Raw
68 PeerKey=Bob-25519-PUBLIC-Raw
71 Derive=Bob-25519-Raw
[all …]
/third_party/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DPerfActivity.java16 R.raw.star, R.raw.movie_loading, R.raw.uk, R.raw.white_material_wave_loading,
17 R.raw.check_animation, R.raw.confetti, R.raw.gears,
18 R.raw.hand_sanitizer, R.raw.heart_preloader, R.raw.i_was_scared_after_that_brouhaha,
19 R.raw.im_thirsty, R.raw.true_will, R.raw.workout_monkey_stay_healthy,
20 R.raw.ripple_loading_animation, R.raw.signature, R.raw.asdasd, R.raw.celebration,
21 R.raw.check
/third_party/rust/crates/io-lifetimes/src/
Draw.rs1 //! Portability abstractions over `Raw*`.
17 /// A raw filelike object.
24 /// A raw filelike object.
31 /// A raw socketlike object.
38 /// A raw socketlike object.
45 /// A portable trait to obtain the raw value of an underlying filelike object.
51 /// Returns the raw value.
67 /// Returns the raw value.
83 /// Returns the raw value.
99 /// Returns the raw value.
[all …]
/third_party/rust/crates/os_str_bytes/src/
Draw_str.rs28 use super::imp::raw;
155 /// let raw = RawOsStr::from_str(string);
156 /// assert_eq!(string, raw);
183 /// let raw = RawOsStr::new(&os_string);
184 /// let raw_bytes = raw.as_raw_bytes();
185 /// assert_eq!(&*raw, RawOsStr::assert_from_raw_bytes(raw_bytes));
195 expect_encoded!(raw::validate_bytes(string)); in assert_from_raw_bytes()
219 /// let raw = RawOsStr::new(&os_string);
220 /// assert_eq!(Ok(&*raw), RawOsStr::from_raw_bytes(raw.as_raw_bytes()));
232 raw::validate_bytes(string)
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
Derrno.rs40 io_err.raw_os_error().and_then(|raw| { in from_io_error()
43 if (1..4096).contains(&raw) { in from_io_error()
44 Some(Self::from_errno(raw as u32)) in from_io_error()
51 /// Extract the raw OS error number from this error.
57 /// Construct an `Errno` from a raw OS error number.
59 pub const fn from_raw_os_error(raw: i32) -> Self { in from_raw_os_error()
60 Self::from_errno(raw as u32) in from_raw_os_error()
64 const fn from_errno(raw: u32) -> Self { in from_errno()
67 let encoded = raw.wrapping_neg() as u16; in from_errno()
82 raw: RetReg<Num>, in try_decode_c_int()
[all …]

12345678910>>...144