/external/rust/crates/protobuf/src/ |
D | unknown.rs | 21 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 …]
|
D | lib.rs | 47 pub use crate::unknown::UnknownValue;
|
/external/rust/crates/protobuf-parse/src/pure/convert/ |
D | option_resolver.rs | 15 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/ |
D | unknown.rs | 19 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 …]
|
D | coded_input_stream.rs | 24 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()
|
D | lib.rs | 131 pub use crate::unknown::UnknownValue;
|
/external/rust/crates/protobuf/src/coded_input_stream/ |
D | mod.rs | 38 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/ |
D | ScheduleDAGInstrs.cpp | 115 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()
|
D | MachinePipeliner.cpp | 662 Value *UnknownValue = in addLoopCarriedDependences() local 672 Objs.push_back(UnknownValue); in addLoopCarriedDependences() 681 Objs.push_back(UnknownValue); in addLoopCarriedDependences()
|
/external/llvm/lib/CodeGen/ |
D | ScheduleDAGInstrs.cpp | 95 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/ |
D | ScheduleDAGInstrs.h | 222 UndefValue *UnknownValue; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ScheduleDAGInstrs.h | 236 UndefValue *UnknownValue; variable
|