| /external/rust/crates/rusqlite/src/types/ |
| D | value.rs | 8 pub enum Value { enum 21 impl From<Null> for Value { implementation 22 fn from(_: Null) -> Value { in from() 27 impl From<bool> for Value { implementation 28 fn from(i: bool) -> Value { in from() 33 impl From<isize> for Value { implementation 34 fn from(i: isize) -> Value { in from() 40 impl From<i128> for Value { implementation 41 fn from(i: i128) -> Value { in from() 52 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() function 41 Value(const DIExpression *Expr, const ConstantInt *CIP) in Value() function 45 Value(const DIExpression *Expr, MachineLocation Loc) in Value() function 51 const DIExpression *Expression; 77 friend bool operator==(const Value &, const Value &); argument 98 SmallVector<Value, 1> Values; argument
|
| /external/llvm-project/llvm/bindings/go/llvm/ |
| D | ir.go | 37 Value struct { struct 38 C C.LLVMValueRef 84 func (c Value) IsNil() bool { return c.C == nil } 96 func llvmValueRefPtr(t *Value) *C.LLVMValueRef { return (*C.LLVMValueRef)(unsafe.Pointer(t)) } 110 func llvmValueRefs(values []Value) (*C.LLVMValueRef, C.unsigned) { 706 func (v Value) Type() (t Type) { t.C = C.LLVMTypeOf(v.C); return } 707 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) } 708 func (v Value) SetName(name string) { 713 func (v Value) Dump() { C.LLVMDumpValue(v.C) } 714 func (v Value) ReplaceAllUsesWith(nv Value) { C.LLVMReplaceAllUsesWith(v.C, nv.C) } [all …]
|
| /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/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/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/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> { implementation 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/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/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/rust/crates/serde_json/src/value/ |
| D | index.rs | 37 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value>; in index_into() 41 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value>; in index_into_mut() 48 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value; in index_or_insert() 52 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into() 58 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value> { in index_into_mut() 64 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value { in index_or_insert() 81 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into() 87 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value> { in index_into_mut() 93 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value { in index_or_insert() 105 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into() [all …]
|
| D | de.rs | 16 impl<'de> Deserialize<'de> for Value { implementation 18 fn deserialize<D>(deserializer: D) -> Result<Value, D::Error> in deserialize() 25 type Value = Value; in deserialize() typedef 32 fn visit_bool<E>(self, value: bool) -> Result<Value, E> { in deserialize() 37 fn visit_i64<E>(self, value: i64) -> Result<Value, E> { in deserialize() 42 fn visit_u64<E>(self, value: u64) -> Result<Value, E> { in deserialize() 47 fn visit_f64<E>(self, value: f64) -> Result<Value, E> { in deserialize() 53 fn visit_str<E>(self, value: &str) -> Result<Value, E> in deserialize() 62 fn visit_string<E>(self, value: String) -> Result<Value, E> { in deserialize() 67 fn visit_none<E>(self) -> Result<Value, E> { in deserialize() [all …]
|
| D | from.rs | 34 impl From<f32> for Value { implementation 50 impl From<f64> for Value { implementation 66 impl From<bool> for Value { implementation 82 impl From<String> for Value { implementation 98 impl<'a> From<&'a str> for Value { implementation 114 impl<'a> From<Cow<'a, str>> for Value { implementation 139 impl From<Number> for Value { implementation 155 impl From<Map<String, Value>> for Value { implementation 172 impl<T: Into<Value>> From<Vec<T>> for Value { implementation 188 impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value { implementation [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/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/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-project/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/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 | 765 type Value; typedef 769 fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in deserialize() 778 type Value = T; typedef 913 fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_any() 918 fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_bool() 923 fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i8() 928 fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i16() 933 fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i32() 938 fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i64() 957 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/llvm-project/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/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/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-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/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/llvm-project/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 …]
|