Home
last modified time | relevance | path

Searched refs:UnknownValue (Results 1 – 12 of 12) sorted by relevance

/external/rust/crates/protobuf/src/
Dunknown.rs21 pub enum UnknownValue { enum
32 impl UnknownValue { implementation
41 UnknownValue::Fixed32(fixed32) => UnknownValueRef::Fixed32(fixed32), in get_ref()
42 UnknownValue::Fixed64(fixed64) => UnknownValueRef::Fixed64(fixed64), in get_ref()
43 UnknownValue::Varint(varint) => UnknownValueRef::Varint(varint), in get_ref()
44 UnknownValue::LengthDelimited(ref bytes) => UnknownValueRef::LengthDelimited(&bytes), in get_ref()
49 pub fn int32(i: i32) -> UnknownValue { in int32() argument
50 UnknownValue::int64(i as i64) in int32()
54 pub fn int64(i: i64) -> UnknownValue { in int64() argument
55 UnknownValue::Varint(i as u64) in int64()
[all …]
Dlib.rs47 pub use crate::unknown::UnknownValue;
/external/rust/crates/protobuf-parse/src/pure/convert/
Doption_resolver.rs15 use protobuf::UnknownValue;
430 ) -> anyhow::Result<UnknownValue> { in fixed32() argument
431 Ok(UnknownValue::Fixed32(v.try_into()?)) in fixed32()
436 ) -> anyhow::Result<UnknownValue> { in sfixed32() argument
437 Ok(UnknownValue::sfixed32(v.try_into()?)) in sfixed32()
442 ) -> anyhow::Result<UnknownValue> { in fixed64() argument
443 Ok(UnknownValue::Fixed64(v.try_into()?)) in fixed64()
448 ) -> anyhow::Result<UnknownValue> { in sfixed64() argument
449 Ok(UnknownValue::sfixed64(v.try_into()?)) in sfixed64()
454 ) -> anyhow::Result<UnknownValue> { in int32() argument
[all …]
/external/rust/crates/protobuf/2.27.1/src/
Dunknown.rs19 pub enum UnknownValue { enum
30 impl UnknownValue { implementation
39 UnknownValue::Fixed32(fixed32) => UnknownValueRef::Fixed32(fixed32), in get_ref()
40 UnknownValue::Fixed64(fixed64) => UnknownValueRef::Fixed64(fixed64), in get_ref()
41 UnknownValue::Varint(varint) => UnknownValueRef::Varint(varint), in get_ref()
42 UnknownValue::LengthDelimited(ref bytes) => UnknownValueRef::LengthDelimited(&bytes), in get_ref()
47 pub fn sint32(i: i32) -> UnknownValue { in sint32() argument
48 UnknownValue::Varint(encode_zig_zag_32(i) as u64) in sint32()
52 pub fn sint64(i: i64) -> UnknownValue { in sint64() argument
53 UnknownValue::Varint(encode_zig_zag_64(i)) in sint64()
[all …]
Dcoded_input_stream.rs24 use crate::unknown::UnknownValue;
580 ) -> ProtobufResult<UnknownValue> { in read_unknown() argument
583 self.read_raw_varint64().map(|v| UnknownValue::Varint(v)) in read_unknown()
585 wire_format::WireTypeFixed64 => self.read_fixed64().map(|v| UnknownValue::Fixed64(v)), in read_unknown()
586 wire_format::WireTypeFixed32 => self.read_fixed32().map(|v| UnknownValue::Fixed32(v)), in read_unknown()
590 .map(|v| UnknownValue::LengthDelimited(v)) in read_unknown()
Dlib.rs131 pub use crate::unknown::UnknownValue;
/external/rust/crates/protobuf/src/coded_input_stream/
Dmod.rs38 use crate::unknown::UnknownValue;
525 pub fn read_unknown(&mut self, wire_type: WireType) -> crate::Result<UnknownValue> { in read_unknown() argument
527 WireType::Varint => self.read_raw_varint64().map(|v| UnknownValue::Varint(v)), in read_unknown()
528 WireType::Fixed64 => self.read_fixed64().map(|v| UnknownValue::Fixed64(v)), in read_unknown()
529 WireType::Fixed32 => self.read_fixed32().map(|v| UnknownValue::Fixed32(v)), in read_unknown()
533 .map(|v| UnknownValue::LengthDelimited(v)) in read_unknown()
538 Ok(UnknownValue::LengthDelimited(Vec::new())) in read_unknown()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DScheduleDAGInstrs.cpp115 UnknownValue(UndefValue::get( in ScheduleDAGInstrs()
914 FPExceptions.insert(SU, UnknownValue); in buildSchedGraph()
948 Stores.insert(SU, UnknownValue); in buildSchedGraph()
971 addChainDependencies(SU, Loads, UnknownValue); in buildSchedGraph()
972 addChainDependencies(SU, Stores, UnknownValue); in buildSchedGraph()
980 Loads.insert(SU, UnknownValue); in buildSchedGraph()
994 addChainDependencies(SU, Stores, UnknownValue); in buildSchedGraph()
DMachinePipeliner.cpp662 Value *UnknownValue = in addLoopCarriedDependences() local
672 Objs.push_back(UnknownValue); in addLoopCarriedDependences()
681 Objs.push_back(UnknownValue); in addLoopCarriedDependences()
/external/llvm/lib/CodeGen/
DScheduleDAGInstrs.cpp95 UnknownValue(UndefValue::get( in ScheduleDAGInstrs()
1049 Stores.insert(SU, UnknownValue); in buildSchedGraph()
1072 addChainDependencies(SU, Loads, UnknownValue); in buildSchedGraph()
1073 addChainDependencies(SU, Stores, UnknownValue); in buildSchedGraph()
1081 Loads.insert(SU, UnknownValue); in buildSchedGraph()
1095 addChainDependencies(SU, Stores, UnknownValue); in buildSchedGraph()
/external/llvm/include/llvm/CodeGen/
DScheduleDAGInstrs.h222 UndefValue *UnknownValue; variable
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DScheduleDAGInstrs.h236 UndefValue *UnknownValue; variable