/external/rust/crates/rusqlite/src/types/ |
D | value.rs | 9 pub enum Value { enum 22 impl From<Null> for Value { implementation 24 fn from(_: Null) -> Value { in from() 29 impl From<bool> for Value { implementation 31 fn from(i: bool) -> Value { in from() 36 impl From<isize> for Value { implementation 38 fn from(i: isize) -> Value { in from() 45 impl From<i128> for Value { implementation 47 fn from(i: i128) -> Value { in from() 56 impl From<uuid::Uuid> for Value { implementation [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DebugLocEntry.h | 32 struct Value { struct 33 Value(const DIExpression *Expr, int64_t i) in Value() argument 37 Value(const DIExpression *Expr, const ConstantFP *CFP) in Value() argument 41 Value(const DIExpression *Expr, const ConstantInt *CIP) in Value() function 45 Value(const DIExpression *Expr, MachineLocation Loc) in Value() argument 51 const DIExpression *Expression; 77 friend bool operator==(const Value &, const Value &); argument 98 SmallVector<Value, 1> Values; argument
|
/external/llvm/bindings/go/llvm/ |
D | ir.go | 37 Value struct { struct 38 C C.LLVMValueRef 75 func (c Value) IsNil() bool { return c.C == nil } 85 func llvmValueRefPtr(t *Value) *C.LLVMValueRef { return (*C.LLVMValueRef)(unsafe.Pointer(t)) } 99 func llvmValueRefs(values []Value) (*C.LLVMValueRef, C.unsigned) { 634 func (v Value) Type() (t Type) { t.C = C.LLVMTypeOf(v.C); return } 635 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) } 636 func (v Value) SetName(name string) { 641 func (v Value) Dump() { C.LLVMDumpValue(v.C) } 642 func (v Value) ReplaceAllUsesWith(nv Value) { C.LLVMReplaceAllUsesWith(v.C, nv.C) } [all …]
|
/external/rust/crates/log/src/kv/ |
D | value.rs | 20 fn to_value(&self) -> Value; in to_value() 27 fn to_value(&self) -> Value { in to_value() 32 impl<'v> ToValue for Value<'v> { implementation 33 fn to_value(&self) -> Value { in to_value() 109 pub struct Value<'v> { struct 110 inner: ValueBag<'v>, argument 113 impl<'v> Value<'v> { impl 210 T: self::sval::value::Value, in from_sval() 268 impl<'v> fmt::Debug for Value<'v> { implementation 274 impl<'v> fmt::Display for Value<'v> { implementation [all …]
|
/external/rust/crates/serde_json/src/value/ |
D | de.rs | 22 impl<'de> Deserialize<'de> for Value { implementation 24 fn deserialize<D>(deserializer: D) -> Result<Value, D::Error> in deserialize() 31 type Value = Value; in deserialize() typedef 38 fn visit_bool<E>(self, value: bool) -> Result<Value, E> { in deserialize() 43 fn visit_i64<E>(self, value: i64) -> Result<Value, E> { in deserialize() 48 fn visit_u64<E>(self, value: u64) -> Result<Value, E> { in deserialize() 53 fn visit_f64<E>(self, value: f64) -> Result<Value, E> { in deserialize() 59 fn visit_str<E>(self, value: &str) -> Result<Value, E> in deserialize() 68 fn visit_string<E>(self, value: String) -> Result<Value, E> { in deserialize() 73 fn visit_none<E>(self) -> Result<Value, E> { in deserialize() [all …]
|
D | index.rs | 40 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value>; in index_into() 44 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value>; in index_into_mut() 51 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value; in index_or_insert() 55 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into() 61 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value> { in index_into_mut() 67 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value { in index_or_insert() 84 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into() 90 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value> { in index_into_mut() 96 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value { in index_or_insert() 108 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into() [all …]
|
D | from.rs | 36 impl From<f32> for Value { implementation 52 impl From<f64> for Value { implementation 68 impl From<bool> for Value { implementation 84 impl From<String> for Value { implementation 100 impl<'a> From<&'a str> for Value { implementation 116 impl<'a> From<Cow<'a, str>> for Value { implementation 141 impl From<Number> for Value { implementation 157 impl From<Map<String, Value>> for Value { implementation 174 impl<T: Into<Value>> From<Vec<T>> for Value { implementation 190 impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value { implementation [all …]
|
/external/llvm/include/llvm/Object/ |
D | RelocVisitor.h | 33 int64_t Value; member 69 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitELF() 212 RelocToApply visitCOFF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitCOFF() 235 RelocToApply visitMachO(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitMachO() 270 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) { in visitELF_386_32() 274 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value) { in visitELF_386_PC32() 283 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) { in visitELF_X86_64_64() 287 RelocToApply visitELF_X86_64_PC32(RelocationRef R, uint64_t Value) { in visitELF_X86_64_PC32() 292 RelocToApply visitELF_X86_64_32(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32() 297 RelocToApply visitELF_X86_64_32S(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32S() [all …]
|
/external/swiftshader/third_party/subzero/runtime/ |
D | szrt.c | 23 uint64_t __Sz_fptoui_f32_i64(float Value) { return (uint64_t)Value; } in __Sz_fptoui_f32_i64() 25 uint64_t __Sz_fptoui_f64_i64(double Value) { return (uint64_t)Value; } in __Sz_fptoui_f64_i64() 27 int64_t __Sz_fptosi_f32_i64(float Value) { return (int64_t)Value; } in __Sz_fptosi_f32_i64() 29 int64_t __Sz_fptosi_f64_i64(double Value) { return (int64_t)Value; } in __Sz_fptosi_f64_i64() 31 float __Sz_uitofp_i32_f32(uint32_t Value) { return (float)Value; } in __Sz_uitofp_i32_f32() 33 float __Sz_uitofp_i64_f32(uint64_t Value) { return (float)Value; } in __Sz_uitofp_i64_f32() 35 double __Sz_uitofp_i32_f64(uint32_t Value) { return (double)Value; } in __Sz_uitofp_i32_f64() 37 double __Sz_uitofp_i64_f64(uint64_t Value) { return (double)Value; } in __Sz_uitofp_i64_f64() 39 float __Sz_sitofp_i64_f32(int64_t Value) { return (float)Value; } in __Sz_sitofp_i64_f32() 41 double __Sz_sitofp_i64_f64(int64_t Value) { return (double)Value; } in __Sz_sitofp_i64_f64()
|
/external/rust/crates/ciborium/src/value/ |
D | de.rs | 55 type Value = Value; typedef 89 fn visit_none<E: de::Error>(self) -> Result<Self::Value, E> { in visit_none() 97 ) -> Result<Self::Value, D::Error> { in visit_some() 102 fn visit_unit<E: de::Error>(self) -> Result<Self::Value, E> { in visit_unit() 110 ) -> Result<Self::Value, D::Error> { in visit_newtype_struct() 115 fn visit_seq<A: de::SeqAccess<'de>>(self, mut acc: A) -> Result<Self::Value, A::Error> { in visit_seq() 126 fn visit_map<A: de::MapAccess<'de>>(self, mut acc: A) -> Result<Self::Value, A::Error> { in visit_map() 137 fn visit_enum<A: de::EnumAccess<'de>>(self, acc: A) -> Result<Self::Value, A::Error> { in visit_enum() 143 type Value = Value; in visit_enum() typedef 150 fn visit_seq<A: de::SeqAccess<'de>>(self, mut acc: A) -> Result<Self::Value, A::Error> { in visit_enum() [all …]
|
D | mod.rs | 19 pub enum Value { enum 48 impl Value { implementation 276 pub fn as_tag(&self) -> Option<(u64, &Value)> { in as_tag() 296 pub fn as_tag_mut(&mut self) -> Option<(&mut u64, &mut Value)> { in as_tag_mut() 337 pub fn as_array(&self) -> Option<&Vec<Value>> { in as_array() 360 pub fn as_array_mut(&mut self) -> Option<&mut Vec<Value>> { in as_array_mut() 405 pub fn as_map(&self) -> Option<&Vec<(Value, Value)>> { in as_map() argument 428 pub fn as_map_mut(&mut self) -> Option<&mut Vec<(Value, Value)>> { in as_map_mut() argument 478 impl From<u128> for Value { implementation 494 impl From<i128> for Value { implementation [all …]
|
/external/capstone/ |
D | MathExtras.h | 37 static inline uint32_t Hi_32(uint64_t Value) { in Hi_32() 42 static inline uint32_t Lo_32(uint64_t Value) { in Lo_32() 61 static inline bool isMask_32(uint32_t Value) { in isMask_32() 68 static inline bool isMask_64(uint64_t Value) { in isMask_64() 75 static inline bool isShiftedMask_32(uint32_t Value) { in isShiftedMask_32() 81 static inline bool isShiftedMask_64(uint64_t Value) { in isShiftedMask_64() 87 static inline bool isPowerOf2_32(uint32_t Value) { in isPowerOf2_32() 95 static inline unsigned CountLeadingZeros_32(uint32_t Value) { in CountLeadingZeros_32() 124 static inline unsigned CountLeadingOnes_32(uint32_t Value) { in CountLeadingOnes_32() 132 static inline unsigned CountLeadingZeros_64(uint64_t Value) { in CountLeadingZeros_64() [all …]
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordBuilder.cpp | 24 void TypeRecordBuilder::writeUInt8(uint8_t Value) { in writeUInt8() 28 void TypeRecordBuilder::writeInt16(int16_t Value) { in writeInt16() 32 void TypeRecordBuilder::writeUInt16(uint16_t Value) { in writeUInt16() 36 void TypeRecordBuilder::writeInt32(int32_t Value) { in writeInt32() 40 void TypeRecordBuilder::writeUInt32(uint32_t Value) { in writeUInt32() 44 void TypeRecordBuilder::writeInt64(int64_t Value) { in writeInt64() 48 void TypeRecordBuilder::writeUInt64(uint64_t Value) { in writeUInt64() 52 void TypeRecordBuilder::writeEncodedInteger(int64_t Value) { in writeEncodedInteger() 60 void TypeRecordBuilder::writeEncodedSignedInteger(int64_t Value) { in writeEncodedSignedInteger() 79 void TypeRecordBuilder::writeEncodedUnsignedInteger(uint64_t Value) { in writeEncodedUnsignedInteger() [all …]
|
/external/rust/crates/serde_cbor/src/value/ |
D | de.rs | 7 impl<'de> de::Deserialize<'de> for Value { implementation 9 fn deserialize<D>(deserializer: D) -> Result<Value, D::Error> in deserialize() 16 type Value = Value; in deserialize() typedef 23 fn visit_str<E>(self, value: &str) -> Result<Value, E> in deserialize() 31 fn visit_string<E>(self, value: String) -> Result<Value, E> in deserialize() 38 fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E> in deserialize() 46 fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E> in deserialize() 54 fn visit_u64<E>(self, v: u64) -> Result<Self::Value, E> in deserialize() 62 fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E> in deserialize() 70 fn visit_i128<E>(self, v: i128) -> Result<Self::Value, E> in deserialize() [all …]
|
/external/rust/crates/serde/src/private/ |
D | de.rs | 33 fn deserialize_any<V>(self, _visitor: V) -> Result<V::Value, E> in missing_field() 40 fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, E> in missing_field() 67 type Value = Cow<'a, str>; in borrow_cow_str() typedef 73 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in borrow_cow_str() 80 fn visit_borrowed_str<E>(self, v: &'a str) -> Result<Self::Value, E> in borrow_cow_str() 87 fn visit_string<E>(self, v: String) -> Result<Self::Value, E> in borrow_cow_str() 94 fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E> in borrow_cow_str() 104 fn visit_borrowed_bytes<E>(self, v: &'a [u8]) -> Result<Self::Value, E> in borrow_cow_str() 114 fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E> in borrow_cow_str() 140 type Value = Cow<'a, [u8]>; in borrow_cow_bytes() typedef [all …]
|
/external/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 34 T Value; member 56 uint64_t Value; member 62 template <class T> const std::string to_string(const T &Value) { in to_string() 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } in hex() 94 void printEnum(StringRef Label, T Value, in printEnum() 148 template <typename T> void printFlags(StringRef Label, T Value) { in printFlags() 161 void printNumber(StringRef Label, uint64_t Value) { in printNumber() 165 void printNumber(StringRef Label, uint32_t Value) { in printNumber() 169 void printNumber(StringRef Label, uint16_t Value) { in printNumber() 173 void printNumber(StringRef Label, uint8_t Value) { in printNumber() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 33 T Value; member 55 uint64_t Value; member 61 template <class T> const std::string to_string(const T &Value) { in to_string() 92 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } in hex() 95 void printEnum(StringRef Label, T Value, in printEnum() 149 template <typename T> void printFlags(StringRef Label, T Value) { in printFlags() 162 void printNumber(StringRef Label, uint64_t Value) { in printNumber() 166 void printNumber(StringRef Label, uint32_t Value) { in printNumber() 170 void printNumber(StringRef Label, uint16_t Value) { in printNumber() 174 void printNumber(StringRef Label, uint8_t Value) { in printNumber() [all …]
|
/external/rust/crates/serde/src/de/ |
D | mod.rs | 767 type Value; typedef 771 fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in deserialize() 780 type Value = T; typedef 915 fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_any() 920 fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_bool() 925 fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i8() 930 fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i16() 935 fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i32() 940 fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i64() 959 fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_u8() [all …]
|
D | ignored_any.rs | 115 type Value = IgnoredAny; typedef 122 fn visit_bool<E>(self, x: bool) -> Result<Self::Value, E> { in visit_bool() 128 fn visit_i64<E>(self, x: i64) -> Result<Self::Value, E> { in visit_i64() 142 fn visit_u64<E>(self, x: u64) -> Result<Self::Value, E> { in visit_u64() 156 fn visit_f64<E>(self, x: f64) -> Result<Self::Value, E> { in visit_f64() 162 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E> in visit_str() 171 fn visit_none<E>(self) -> Result<Self::Value, E> { in visit_none() 176 fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in visit_some() 184 fn visit_newtype_struct<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in visit_newtype_struct() 192 fn visit_unit<E>(self) -> Result<Self::Value, E> { in visit_unit() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | StringSwitch.h | 67 StringSwitch &Case(StringLiteral S, T Value) { in Case() 74 StringSwitch& EndsWith(StringLiteral S, T Value) { in EndsWith() 81 StringSwitch& StartsWith(StringLiteral S, T Value) { in StartsWith() 88 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() 93 T Value) { in Cases() 98 StringLiteral S3, T Value) { in Cases() 103 StringLiteral S3, StringLiteral S4, T Value) { in Cases() 109 T Value) { in Cases() 115 StringLiteral S6, T Value) { in Cases() 121 StringLiteral S6, StringLiteral S7, T Value) { in Cases() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringSwitch.h | 74 StringSwitch& Case(const char (&S)[N], const T& Value) { in Case() 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { in EndsWith() 96 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { in StartsWith() 108 const T& Value) { in Cases() 115 const char (&S2)[N2], const T& Value) { in Cases() 123 const T& Value) { in Cases() 131 const char (&S4)[N4], const T& Value) { in Cases() 141 const T &Value) { in Cases() 151 const char (&S6)[N6], const T &Value) { in Cases() 162 const T &Value) { in Cases() [all …]
|
/external/rust/crates/ciborium/src/de/ |
D | mod.rs | 128 fn deserialize_any<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_any() 198 fn deserialize_bool<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_bool() 212 fn deserialize_f32<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_f32() 217 fn deserialize_f64<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_f64() 227 fn deserialize_i8<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_i8() 231 fn deserialize_i16<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_i16() 235 fn deserialize_i32<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_i32() 239 fn deserialize_i64<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_i64() 251 fn deserialize_i128<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_i128() 263 fn deserialize_u8<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value, Self::Error> { in deserialize_u8() [all …]
|
/external/llvm/include/llvm/MC/ |
D | MCObjectWriter.h | 127 void write8(uint8_t Value) { *OS << char(Value); } in write8() 129 void writeLE16(uint16_t Value) { in writeLE16() 133 void writeLE32(uint32_t Value) { in writeLE32() 137 void writeLE64(uint64_t Value) { in writeLE64() 141 void writeBE16(uint16_t Value) { in writeBE16() 145 void writeBE32(uint32_t Value) { in writeBE32() 149 void writeBE64(uint64_t Value) { in writeBE64() 153 void write16(uint16_t Value) { in write16() 160 void write32(uint32_t Value) { in write32() 167 void write64(uint64_t Value) { in write64()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParserCommon.h | 16 inline bool isImmSExti16i8Value(uint64_t Value) { in isImmSExti16i8Value() 21 inline bool isImmSExti32i8Value(uint64_t Value) { in isImmSExti32i8Value() 26 inline bool isImmSExti64i8Value(uint64_t Value) { in isImmSExti64i8Value() 30 inline bool isImmSExti64i32Value(uint64_t Value) { in isImmSExti64i32Value() 34 inline bool isImmUnsignedi8Value(uint64_t Value) { in isImmUnsignedi8Value() 38 inline bool isImmUnsignedi4Value(uint64_t Value) { in isImmUnsignedi4Value()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/ |
D | AVRAsmBackend.cpp | 37 void signed_width(unsigned Width, uint64_t Value, std::string Description, in signed_width() 56 void unsigned_width(unsigned Width, uint64_t Value, std::string Description, in unsigned_width() 75 void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in adjustBranch() 86 void adjustRelativeBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in adjustRelativeBranch() 104 void fixup_call(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_call() 120 void fixup_7_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_7_pcrel() 134 void fixup_13_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_13_pcrel() 147 void fixup_6_adiw(const MCFixup &Fixup, uint64_t &Value, in fixup_6_adiw() 158 void fixup_port5(const MCFixup &Fixup, uint64_t &Value, in fixup_port5() 171 void fixup_port6(const MCFixup &Fixup, uint64_t &Value, in fixup_port6() [all …]
|