Home
last modified time | relevance | path

Searched defs:Value (Results 1 – 25 of 2958) sorted by relevance

12345678910>>...119

/external/rust/crates/rusqlite/src/types/
Dvalue.rs9 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/
DDebugLocEntry.h32 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/bindings/go/llvm/
Dir.go37 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/serde_yaml/src/
Dmapping.rs57 pub fn insert(&mut self, k: Value, v: Value) -> Option<Value> { in insert()
69 pub fn get<I: Index>(&self, index: I) -> Option<&Value> { in get()
75 pub fn get_mut<I: Index>(&mut self, index: I) -> Option<&mut Value> { in get_mut()
96 pub fn remove<I: Index>(&mut self, index: I) -> Option<Value> { in remove()
107 pub fn remove_entry<I: Index>(&mut self, index: I) -> Option<(Value, Value)> { in remove_entry() argument
117 pub fn swap_remove<I: Index>(&mut self, index: I) -> Option<Value> { in swap_remove()
127 pub fn swap_remove_entry<I: Index>(&mut self, index: I) -> Option<(Value, Value)> { in swap_remove_entry() argument
137 pub fn shift_remove<I: Index>(&mut self, index: I) -> Option<Value> { in shift_remove()
147 pub fn shift_remove_entry<I: Index>(&mut self, index: I) -> Option<(Value, Value)> { in shift_remove_entry() argument
156 F: FnMut(&Value, &mut Value) -> bool, in retain()
[all …]
/external/rust/crates/serde_yaml/src/value/
Dde.rs14 impl<'de> Deserialize<'de> for Value { implementation
22 type Value = Value; in deserialize() typedef
28 fn visit_bool<E>(self, b: bool) -> Result<Value, E> in deserialize()
35 fn visit_i64<E>(self, i: i64) -> Result<Value, E> in deserialize()
42 fn visit_u64<E>(self, u: u64) -> Result<Value, E> in deserialize()
49 fn visit_f64<E>(self, f: f64) -> Result<Value, E> in deserialize()
56 fn visit_str<E>(self, s: &str) -> Result<Value, E> in deserialize()
63 fn visit_string<E>(self, s: String) -> Result<Value, E> in deserialize()
70 fn visit_unit<E>(self) -> Result<Value, E> in deserialize()
77 fn visit_none<E>(self) -> Result<Value, E> in deserialize()
[all …]
Dindex.rs14 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value>; in index_into()
18 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value>; in index_into_mut()
25 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value; in index_or_insert()
29 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into()
36 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value> { in index_into_mut()
43 fn index_or_insert<'v>(&self, mut v: &'v mut Value) -> &'v mut Value { in index_or_insert()
112 impl Index for Value { implementation
113 fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> { in index_into()
116 fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value> { in index_into_mut()
119 fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value { in index_or_insert()
[all …]
/external/swiftshader/third_party/subzero/runtime/
Dszrt.c23 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/
DTypeRecordBuilder.cpp24 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/llvm/include/llvm/Object/
DRelocVisitor.h33 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/rust/crates/serde_json/src/value/
Dde.rs22 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 …]
Dindex.rs40 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 …]
Dfrom.rs31 impl From<f32> for Value { implementation
47 impl From<f64> for Value { implementation
63 impl From<bool> for Value { implementation
79 impl From<String> for Value { implementation
95 impl<'a> From<&'a str> for Value { implementation
111 impl<'a> From<Cow<'a, str>> for Value { implementation
136 impl From<Number> for Value { implementation
152 impl From<Map<String, Value>> for Value { implementation
169 impl<T: Into<Value>> From<Vec<T>> for Value { implementation
185 impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value { implementation
[all …]
/external/capstone/
DMathExtras.h37 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/ciborium/src/value/
Dde.rs55 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 …]
Dmod.rs21 pub enum Value { enum
50 impl Value { impl
373 pub fn as_tag(&self) -> Option<(u64, &Value)> { in as_tag()
393 pub fn as_tag_mut(&mut self) -> Option<(&mut u64, &mut Value)> { in as_tag_mut()
412 pub fn into_tag(self) -> Result<(u64, Box<Value>), Self> { in into_tag()
453 pub fn as_array(&self) -> Option<&Vec<Value>> { in as_array()
476 pub fn as_array_mut(&mut self) -> Option<&mut Vec<Value>> { in as_array_mut()
500 pub fn into_array(self) -> Result<Vec<Value>, Self> { in into_array()
545 pub fn as_map(&self) -> Option<&Vec<(Value, Value)>> { in as_map() argument
568 pub fn as_map_mut(&mut self) -> Option<&mut Vec<(Value, Value)>> { in as_map_mut() argument
[all …]
/external/rust/crates/serde_cbor/src/value/
Dde.rs7 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/
Dde.rs33 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/
DScopedPrinter.h34 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/
DScopedPrinter.h33 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/
Dmod.rs771 type Value; typedef
775 fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in deserialize()
784 type Value = T; typedef
919 fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_any()
924 fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_bool()
929 fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i8()
934 fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i16()
939 fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i32()
944 fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i64()
963 fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_u8()
[all …]
Dignored_any.rs115 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/rust/crates/config/src/
Dde.rs11 impl<'de> de::Deserializer<'de> for Value { implementation
35 fn deserialize_bool<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_bool()
40 fn deserialize_i8<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_i8()
46 fn deserialize_i16<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_i16()
52 fn deserialize_i32<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_i32()
58 fn deserialize_i64<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_i64()
63 fn deserialize_u8<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_u8()
69 fn deserialize_u16<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_u16()
75 fn deserialize_u32<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_u32()
81 fn deserialize_u64<V: de::Visitor<'de>>(self, visitor: V) -> Result<V::Value> { in deserialize_u64()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/JITLink/
DELF_riscv.cpp166 static inline bool isAlignmentCorrect(uint64_t Value, int N) { in isAlignmentCorrect()
171 static inline bool isInRangeForImm(int64_t Value, int N) { in isInRangeForImm()
193 int64_t Value = (E.getTarget().getAddress() + E.getAddend()).getValue(); in applyFixup() local
198 int64_t Value = (E.getTarget().getAddress() + E.getAddend()).getValue(); in applyFixup() local
203 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() local
218 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() local
233 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() local
250 int64_t Value = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() local
266 int64_t Value = RelHI20->getTarget().getAddress() + in applyFixup() local
281 int64_t Value = RelHI20->getTarget().getAddress() + in applyFixup() local
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
DStringSwitch.h69 StringSwitch &Case(StringLiteral S, T Value) { in Case()
76 StringSwitch& EndsWith(StringLiteral S, T Value) { in EndsWith()
83 StringSwitch& StartsWith(StringLiteral S, T Value) { in StartsWith()
90 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases()
95 T Value) { in Cases()
100 StringLiteral S3, T Value) { in Cases()
105 StringLiteral S3, StringLiteral S4, T Value) { in Cases()
111 T Value) { in Cases()
117 StringLiteral S6, T Value) { in Cases()
123 StringLiteral S6, StringLiteral S7, T Value) { in Cases()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringSwitch.h67 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 …]

12345678910>>...119