Home | History | Annotate | Download | only in util

Lines Matching refs:native_type

150 def native_type(format):
412 src_native_type = native_type(format)
518 dst_native_type = native_type(format)
683 native_type = 'unsigned'
687 generate_format_unpack(format, channel, native_type, suffix)
688 generate_format_pack(format, channel, native_type, suffix)
689 generate_format_fetch(format, channel, native_type, suffix)
692 native_type = 'int'
694 generate_format_unpack(format, channel, native_type, suffix)
695 generate_format_pack(format, channel, native_type, suffix)
697 native_type = 'int'
701 generate_format_unpack(format, channel, native_type, suffix)
702 generate_format_pack(format, channel, native_type, suffix)
703 generate_format_fetch(format, channel, native_type, suffix)
705 native_type = 'unsigned'
708 generate_format_unpack(format, channel, native_type, suffix)
709 generate_format_pack(format, channel, native_type, suffix)
712 native_type = 'float'
715 generate_format_unpack(format, channel, native_type, suffix)
716 generate_format_pack(format, channel, native_type, suffix)
717 generate_format_fetch(format, channel, native_type, suffix)
720 native_type = 'uint8_t'
723 generate_format_unpack(format, channel, native_type, suffix)
724 generate_format_pack(format, channel, native_type, suffix)