Home
last modified time | relevance | path

Searched refs:WireTypeFixed32 (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/protobuf/src/
Dwire_format.rs27 WireTypeFixed32 = 5, enumerator
41 5 => Some(WireTypeFixed32), in new()
Dtypes.rs125 WireType::WireTypeFixed32 in wire_type()
363 WireType::WireTypeFixed32 in wire_type()
419 WireType::WireTypeFixed32 in wire_type()
Drt.rs191 WireType::WireTypeFixed32 => 4, in value_size_no_tag()
363 WireType::WireTypeFixed32 => { in read_repeated_fixed32_into()
395 WireType::WireTypeFixed32 => { in read_repeated_sfixed32_into()
443 WireType::WireTypeFixed32 => { in read_repeated_float_into()
Dcoded_output_stream.rs280 self.write_tag(field_number, wire_format::WireTypeFixed32)?; in write_float()
421 self.write_tag(field_number, wire_format::WireTypeFixed32)?; in write_fixed32()
435 self.write_tag(field_number, wire_format::WireTypeFixed32)?; in write_sfixed32()
Dunknown.rs73 UnknownValueRef::Fixed32(_) => wire_format::WireTypeFixed32, in wire_type()
Dcoded_input_stream.rs579 wire_format::WireTypeFixed32 => self.read_fixed32().map(|v| UnknownValue::Fixed32(v)), in read_unknown()
/external/rust/crates/protobuf-codegen/src/field/
Dmod.rs76 FieldDescriptorProto_Type::TYPE_FIXED32 => WireTypeFixed32, in field_type_wire_type()
78 FieldDescriptorProto_Type::TYPE_SFIXED32 => WireTypeFixed32, in field_type_wire_type()
80 FieldDescriptorProto_Type::TYPE_FLOAT => WireTypeFixed32, in field_type_wire_type()
124 t if field_type_wire_type(t) == wire_format::WireTypeFixed32 => Some(4), in field_type_size()
/external/rust/crates/protobuf/src/well_known_types/
Dwrappers.rs226 if wire_type != crate::wire_format::WireTypeFixed32 { in merge_from()