Home
last modified time | relevance | path

Searched refs:u24 (Results 1 - 4 of 4) sorted by relevance

/third_party/elfutils/tests/
H A Dread_unaligned.c52 union u24 union
217 /* u24 */
293 /* u24 */
438 union u24 u24; in main() local
440 printf (" /* u24 */\n"); in main()
445 u24.v = u24_nums[i]; in main()
446 printf (" 0x%02" PRIx8 ", ", u24.c[0]); in main()
447 printf ("0x%02" PRIx8 ", ", u24.c[1]); in main()
448 printf ("0x%02" PRIx8 ",\n", u24 in main()
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Ddisasm-a3xx.c229 OPC(2, OPC_MUL_U24, mul.u24),
251 OPC(3, OPC_MAD_U24, mad.u24),
/third_party/rust/crates/nom/src/number/
H A Dstreaming.rs747 /// If the parameter is `nom::number::Endianness::Big`, parse a big endian u24 integer,
748 /// otherwise if `nom::number::Endianness::Little` parse a little endian u24 integer.
753 /// use nom::number::streaming::u24;
756 /// u24::<_,(_, ErrorKind)>(nom::number::Endianness::Big)(s)
763 /// u24::<_, (_, ErrorKind)>(nom::number::Endianness::Little)(s)
770 pub fn u24<I, E: ParseError<I>>(endian: crate::number::Endianness) -> fn(I) -> IResult<I, u32, E> in u24() functions
H A Dcomplete.rs773 /// If the parameter is `nom::number::Endianness::Big`, parse a big endian u24 integer,
774 /// otherwise if `nom::number::Endianness::Little` parse a little endian u24 integer.
779 /// use nom::number::complete::u24;
782 /// u24(nom::number::Endianness::Big)(s)
789 /// u24(nom::number::Endianness::Little)(s)
796 pub fn u24<I, E: ParseError<I>>(endian: crate::number::Endianness) -> fn(I) -> IResult<I, u32, E> in u24() functions

Completed in 6 milliseconds