Home
last modified time | relevance | path

Searched refs:isize (Results 1 – 25 of 227) sorted by relevance

12345678910

/external/rust/crates/cast/src/
Dlib.rs182 fns!(f32, f64, i8, i16, i32, i64, isize, u8, u16, u32, u64, usize);
366 i8 => f32, f64, i8, i16, i32, isize, i64;
367 i16 => f32, f64, i16, i32, isize, i64;
368 i32 => f32, f64, i32, isize, i64;
369 isize => f32, f64, i32, isize, i64;
377 isize => u32, usize, u64;
385 isize => i8, i16, u8, u16;
386 i64 => i8, i16, i32, isize, u8, u16, u32, usize;
391 u8 => f32, f64, i16, i32, isize, i64, u8, u16, u32, usize, u64;
392 u16 => f32, f64, i32, isize, i64, u16, u32, usize, u64;
[all …]
Dtest.rs27 i8 => f32, f64, i16, i32, isize, i64 ;
28 i16 => f32, f64, i32, isize, i64 ;
30 isize => f32, f64, i64 ;
32 u8 => f32, f64, i16, i32, isize, i64, u16, u32, usize, u64;
33 u16 => f32, f64, i32, isize, i64, u32, usize, u64;
41 i8 => f32, f64, i16, i32, i64, isize ;
42 i16 => f32, f64, i32, i64, isize ;
43 i32 => f32, f64, i64, isize ;
45 isize => f32, f64 ;
46 u8 => f32, f64, i16, i32, i64, isize, u16, u32, u64, usize;
[all …]
/external/rust/crates/flate2/src/ffi/
Drust.rs10 pub const MZ_NO_FLUSH: isize = MZFlush::None as isize;
11 pub const MZ_PARTIAL_FLUSH: isize = MZFlush::Partial as isize;
12 pub const MZ_SYNC_FLUSH: isize = MZFlush::Sync as isize;
13 pub const MZ_FULL_FLUSH: isize = MZFlush::Full as isize;
14 pub const MZ_FINISH: isize = MZFlush::Finish as isize;
/external/rust/crates/itoa/src/
Dlib.rs203 let mut curr = buf.len() as isize;
212 let rem = (n % 10000) as isize;
224 let mut n = n as isize; // possibly reduce 64bit math
278 impl_Integer!(I16_MAX_LEN => isize, U16_MAX_LEN => usize as u16);
281 impl_Integer!(I32_MAX_LEN => isize, U32_MAX_LEN => usize as u32);
284 impl_Integer!(I64_MAX_LEN => isize, U64_MAX_LEN => usize as u64);
302 let mut curr = buf.len() as isize;
308 … let buf1 = buf_ptr.offset(curr - U64_MAX_LEN as isize) as *mut [u8; U64_MAX_LEN];
309 curr -= rem.write_to(&mut *buf1).len() as isize;
313 let target = buf.len() as isize - 19;
[all …]
/external/adhd/cros_alsa/src/
Dcontrol_primitive.rs114 Card = SND_CTL_ELEM_IFACE_CARD as isize,
115 Hwdep = SND_CTL_ELEM_IFACE_HWDEP as isize,
116 Mixer = SND_CTL_ELEM_IFACE_MIXER as isize,
117 PCM = SND_CTL_ELEM_IFACE_PCM as isize,
118 Rawmidi = SND_CTL_ELEM_IFACE_RAWMIDI as isize,
119 Timer = SND_CTL_ELEM_IFACE_TIMER as isize,
120 Sequencer = SND_CTL_ELEM_IFACE_SEQUENCER as isize,
126 None = SND_CTL_ELEM_TYPE_NONE as isize,
127 Boolean = SND_CTL_ELEM_TYPE_BOOLEAN as isize,
128 Integer = SND_CTL_ELEM_TYPE_INTEGER as isize,
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dmap_stage_op_test.py371 isize = stager.incomplete_size()
377 self.assertTrue(sess.run([size, isize]) == [0, 0])
380 self.assertTrue(sess.run([size, isize]) == [0, 1])
383 self.assertTrue(sess.run([size, isize]) == [0, 2])
388 self.assertTrue(sess.run([size, isize]) == [1, 1])
400 self.assertTrue(sess.run([size, isize]) == [0, 1])
429 isize = stager.incomplete_size()
435 self.assertTrue(sess.run([size, isize]) == [0, 0])
438 self.assertTrue(sess.run([size, isize]) == [0, 1])
441 self.assertTrue(sess.run([size, isize]) == [0, 2])
[all …]
/external/rust/crates/num-traits/src/ops/
Dchecked.rs34 checked_impl!(CheckedAdd, checked_add, isize);
57 checked_impl!(CheckedSub, checked_sub, isize);
81 checked_impl!(CheckedMul, checked_mul, isize);
105 checked_impl!(CheckedDiv, checked_div, isize);
146 checked_impl!(CheckedRem, checked_rem, isize);
194 checked_impl_unary!(CheckedNeg, checked_neg, isize);
240 checked_shift_impl!(CheckedShl, checked_shl, isize);
275 checked_shift_impl!(CheckedShr, checked_shr, isize);
Doverflowing.rs4 use core::{i16, i32, i64, i8, isize};
37 overflowing_impl!(OverflowingAdd, overflowing_add, isize);
60 overflowing_impl!(OverflowingSub, overflowing_sub, isize);
83 overflowing_impl!(OverflowingMul, overflowing_mul, isize);
Dsaturating.rs31 deprecated_saturating_impl!(Saturating for isize usize i8 u8 i16 u16 i32 u32 i64 u64);
65 saturating_impl!(SaturatingAdd, saturating_add, isize);
88 saturating_impl!(SaturatingSub, saturating_sub, isize);
111 saturating_impl!(SaturatingMul, saturating_mul, isize);
/external/rust/crates/libc/src/
Dsgx.rs17 pub type ptrdiff_t = isize;
18 pub type intptr_t = isize;
20 pub type ssize_t = isize;
Dswitch.rs17 pub type ptrdiff_t = isize;
18 pub type intptr_t = isize;
20 pub type ssize_t = isize;
/external/rust/crates/num-traits/tests/
Dcast.rs17 use core::{i16, i32, i64, i8, isize};
59 test_wrapping_to_primitive!(usize u8 u16 u32 u64 isize i8 i16 i32 i64); in wrapping_to_primitive()
106 assert_eq!(None, cast::<f64, isize>(big_f)); in cast_to_int_checks_overflow()
112 assert_eq!(Some(normal_f as isize), cast::<f64, isize>(normal_f)); in cast_to_int_checks_overflow()
118 assert_eq!(None, cast::<f64, isize>(small_f)); in cast_to_int_checks_overflow()
239 float_test_edge!(f32 -> isize i8 i16 i32 i64); in cast_float_to_int_edge_cases()
241 float_test_edge!(f64 -> isize i8 i16 i32 i64); in cast_float_to_int_edge_cases()
295 int_test_edge!($from -> { isize i8 i16 i32 i64 } with i64 u64); in cast_int_to_int_edge_cases()
300 test_edge!(isize i8 i16 i32 i64); in cast_int_to_int_edge_cases()
319 test_edge!(isize i8 i16 i32 i64 i128); in cast_int_to_128_edge_cases()
[all …]
/external/rust/crates/num-traits/src/
Dbounds.rs5 use core::{i16, i32, i64, i8, isize};
41 bounded_impl!(isize, isize::MIN, isize::MAX);
104 test_wrapping_bounded!(usize u8 u16 u32 u64 isize i8 i16 i32 i64); in wrapping_bounded()
Dcast.rs6 use core::{i16, i32, i64, i8, isize};
23 fn to_isize(&self) -> Option<isize> { in to_isize() argument
171 fn to_isize -> isize;
202 impl_to_primitive_int!(isize);
244 fn to_isize -> isize;
371 fn to_isize -> isize;
415 fn from_isize(n: isize) -> Option<Self> { in from_isize()
529 fn from_isize(n: isize) -> Option<$T> {
592 impl_from_primitive!(isize, to_isize);
621 fn to_isize -> isize;
[all …]
Dpow.rs124 pow_impl!(isize, u8, u32, isize::pow);
125 pow_impl!(isize, u16, u32, isize::pow);
126 pow_impl!(isize, u32, u32, isize::pow);
127 pow_impl!(isize, usize);
141 pow_impl!(Wrapping<isize>);
/external/rust/crates/libc/src/hermit/
Dmod.rs20 pub type ptrdiff_t = isize;
21 pub type intptr_t = isize;
23 pub type ssize_t = isize;
/external/rust/crates/flate2/src/
Dmem.rs50 None = ffi::MZ_NO_FLUSH as isize,
59 Sync = ffi::MZ_SYNC_FLUSH as isize,
69 Partial = ffi::MZ_PARTIAL_FLUSH as isize,
76 Full = ffi::MZ_FULL_FLUSH as isize,
82 Finish = ffi::MZ_FINISH as isize,
95 None = ffi::MZ_NO_FLUSH as isize,
104 Sync = ffi::MZ_SYNC_FLUSH as isize,
110 Finish = ffi::MZ_FINISH as isize,
352 let ptr = output.as_mut_ptr().offset(len as isize); in compress_vec()
493 let ptr = output.as_mut_ptr().offset(len as isize); in decompress_vec()
/external/rust/crates/pin-project/tests/
Dlint.rs477 pub p: Box<isize>,
478 pub u: Box<isize>,
484 pub struct TupleStruct(#[pin] pub Box<isize>, pub Box<isize>);
496 p: Box<isize>,
497 u: Box<isize>,
499 Tuple(#[pin] Box<isize>, Box<isize>),
514 pub p: Box<isize>,
515 pub u: Box<isize>,
521 pub struct TupleStruct(#[pin] pub Box<isize>, pub Box<isize>);
533 p: Box<isize>,
[all …]
/external/vboot_reference/utility/
Dbmpblk_util.c100 uint32_t isize; in do_efi_decompress() local
106 isize = img->compressed_size; in do_efi_decompress()
108 r = EfiGetInfo(ibuf, isize, &osize, &ssize); in do_efi_decompress()
132 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize); in do_efi_decompress()
149 uint32_t isize; in do_lzma_decompress() local
155 isize = img->compressed_size; in do_lzma_decompress()
174 stream.avail_in = isize; in do_lzma_decompress()
Defidecompress.c1040 uint32_t isize = (uint32_t)istat.st_size; in main() local
1042 printf("%s is %d bytes\n", infile, isize); in main()
1055 uint8_t *ibuf = malloc(isize); in main()
1059 isize, in main()
1063 if (1 != fread(ibuf, isize, 1, ifp)) { in main()
1066 isize, in main()
1074 EFI_STATUS r = GetInfo(ibuf, isize, &osize, &ssize); in main()
1103 r = TianoDecompress(ibuf, isize, obuf, osize, sbuf, ssize); in main()
1110 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize); in main()
1119 printf("Uncompressed %d bytes to %d bytes\n", isize, osize); in main()
/external/rust/crates/gdbstub/src/connection/impls/
Dunixstream.rs21 type ssize_t = isize; in peek()
28 pub fn cvt(t: isize) -> io::Result<isize> { in peek() argument
/external/rust/crates/libm/src/math/
Dexp10.rs15 return P10[((n as isize) + 15) as usize]; in exp10()
18 return y * P10[((n as isize) + 15) as usize]; in exp10()
Dexp10f.rs15 return P10[((n as isize) + 7) as usize]; in exp10f()
18 return y * P10[((n as isize) + 7) as usize]; in exp10f()
/external/lz4/lib/
Dlz4.h171 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) +… argument
695 …int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize…
/external/rust/crates/pin-project-lite/tests/
Dlint.rs54 pub p: Box<isize>,
55 pub u: Box<isize>,
66 p: Box<isize>,
67 u: Box<isize>,

12345678910