| /linux/lib/crypto/arm/ |
| H A D | sha1-armv7-neon.S | 87 #define _R_F1(a,b,c,d,e,i,pre1,pre2,pre3,i16,\ argument 90 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 94 pre2(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 98 pre3(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 101 #define _R_F2(a,b,c,d,e,i,pre1,pre2,pre3,i16,\ argument 104 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 108 pre2(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 111 pre3(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 114 #define _R_F3(a,b,c,d,e,i,pre1,pre2,pre3,i16,\ argument 117 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ [all …]
|
| /linux/rust/kernel/ |
| H A D | module_param.rs | 99 impl_int_module_param!(i16); 196 make_param_ops!(PARAM_OPS_I16, i16);
|
| H A D | error.rs | 613 // which always fits in an `i16`, as per the invariant above. 614 // And an `i16` always fits in an `i32`. So casting `err` to 630 /// `T` should be convertible from an `i16` via `From<i16>`. 649 T: From<i16>, 655 // `-bindings::MAX_ERRNO` fits in an `i16` as per invariant above, 656 // therefore a negative `errno` always fits in an `i16` and will not overflow. 657 Err(e) => T::from(e.to_errno() as i16), 511 from_result<T, F>(f: F) -> T where T: From<i16>, F: FnOnce() -> Result<T>, from_result() argument
|
| H A D | num.rs | 76 i16: Signed,
|
| H A D | fmt.rs | 199 i16,
|
| /linux/samples/rust/ |
| H A D | rust_driver_platform.rs | 159 let name = c"test,i16-array"; in properties_parse() 160 let prop: [i16; 4] = fwnode.property_read(name).required_by(dev)?; in properties_parse() 165 let name = c"test,i16-array"; in properties_parse() 166 let prop: KVec<i16> = fwnode.property_read_array_vec(name, 4)?.required_by(dev)?; in properties_parse()
|
| /linux/rust/ |
| H A D | ffi.rs | 33 c_short = i16;
|
| /linux/arch/mips/include/asm/octeon/ |
| H A D | cvmx-fau.h | 284 uint64_t i16; in cvmx_fau_tagwait_fetch_and_add16() member 288 result.i16 = in cvmx_fau_tagwait_fetch_and_add16()
|
| /linux/drivers/of/unittest-data/ |
| H A D | tests-platform.dtsi | 42 test,i16-array = /bits/ 16 <1 2 (-3) (-4)>;
|
| /linux/rust/kernel/str/ |
| H A D | parse_int.rs | 148 impl_parse_int![i8, u8, i16, u16, i32, u32, i64, u64, isize, usize];
|
| /linux/rust/kernel/num/ |
| H A D | bounded.rs | 281 i8 i16 i32 i64 isize 1042 i8 i16 i32 i64 isize 1119 i8 i16 i32 i64 isize
|
| /linux/rust/zerocopy/src/ |
| H A D | byteorder.rs | 824 i16, 827 i16::from_be_bytes, 828 i16::to_be_bytes, 829 i16::from_le_bytes, 830 i16::to_le_bytes, 1234 impl_traits!(I16, i16, signed);
|
| H A D | impls.rs | 72 unsafe_impl!(i16: Immutable, TryFromBytes, FromZeros, FromBytes, IntoBytes); 244 NonZeroI16[i16], 527 impl_traits_for_atomics!(AtomicU16[u16], AtomicI16[i16]); 543 unsafe_impl_transmute_from_for_atomic!(=> AtomicU16 [u16], => AtomicI16 [i16]) 1947 i16: KnownLayout, in test_impls()
|
| H A D | macros.rs | 1632 let array_of_i16s: &mut [i16] = &mut [0i16, 1, 2]; in test_transmute_mut() 1633 let x: &mut [i16] = transmute_mut!(array_of_u16s); in test_transmute_mut()
|
| H A D | lib.rs | 1105 u8, i8, u16, i16, u32, i32, u64, i64, u128, i128, usize, isize, f32, f64,
|
| /linux/rust/quote/ |
| H A D | to_tokens.rs | 132 impl ToTokens for i16 { implementation
|
| /linux/rust/zerocopy-derive/ |
| H A D | repr.rs | 236 I16 => ts.append_all(quote_spanned! { self.span => #[repr(i16)] }), in to_tokens() 781 i16 => Primitive(I16), in test() 841 …test!(@error #[repr(i16)] => StructUnionRepr => FromRawReprs(Single(UnsupportedReprError)).into()); in test()
|
| /linux/rust/proc-macro2/ |
| H A D | lib.rs | 1131 i16_suffixed => i16, 1146 i16_unsuffixed => i16,
|
| H A D | fallback.rs | 993 i16_suffixed => i16, 1011 i16_unsuffixed => i16,
|
| H A D | wrapper.rs | 816 i16_suffixed => i16, 834 i16_unsuffixed => i16,
|
| /linux/rust/pin-init/src/ |
| H A D | lib.rs | 1638 i8, i16, i32, i64, i128, isize, 1747 NonZero<i8>, NonZero<i16>, NonZero<i32>, NonZero<i64>, NonZero<i128>, NonZero<isize>,
|
| /linux/rust/zerocopy/src/pointer/ |
| H A D | ptr.rs | 1503 test!(i8, i16, i32, i64, isize);
|