Home
last modified time | relevance | path

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

12345678910>>...35

/third_party/skia/third_party/externals/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()
/third_party/rust/crates/serde/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 …]
/third_party/typescript/tests/cases/compiler/
DthisInAccessors.ts3 get Value() { method in GetterOnly
7 set Value(val) { method in GetterOnly
13 get Value() { method in SetterOnly
16 set Value(val) { method in SetterOnly
23 get Value() { method in GetterAndSetter
27 set Value(val) { method in GetterAndSetter
/third_party/skia/third_party/externals/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 …]
/third_party/rust/crates/serde/serde/src/de/
Dmod.rs767 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 …]
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 …]
Dimpls.rs20 type Value = (); typedef
26 fn visit_unit<E>(self) -> Result<Self::Value, E> in visit_unit()
58 type Value = bool; typedef
64 fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E> in visit_bool()
434 type Value = char; typedef
441 fn visit_char<E>(self, v: char) -> Result<Self::Value, E> in visit_char()
449 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in visit_str()
480 type Value = String; typedef
486 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in visit_str()
493 fn visit_string<E>(self, v: String) -> Result<Self::Value, E> in visit_string()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/
DX86AsmParserCommon.h16 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringSwitch.h74 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 …]
/third_party/skia/third_party/externals/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 …]
DAny.h46 T Value; member
79 Any(T &&Value) { in Any()
114 template <typename T> bool any_isa(const Any &Value) { in any_isa()
122 template <class T> T any_cast(const Any &Value) { in any_cast()
128 template <class T> T any_cast(Any &Value) { in any_cast()
134 template <class T> T any_cast(Any &&Value) { in any_cast()
140 template <class T> const T *any_cast(const Any *Value) { in any_cast()
149 template <class T> T *any_cast(Any *Value) { in any_cast()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRAsmBackend.cpp37 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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DARMAttributeParser.cpp77 uint64_t Value = decodeULEB128(Data + Offset, &DecodeLength); in ParseInteger() local
93 uint64_t Value = ParseInteger(Data, Offset); in IntegerAttribute() local
114 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value, in PrintAttribute()
141 uint64_t Value = ParseInteger(Data, Offset); in CPU_arch() local
168 uint64_t Value = ParseInteger(Data, Offset); in ARM_ISA_use() local
178 uint64_t Value = ParseInteger(Data, Offset); in THUMB_ISA_use() local
191 uint64_t Value = ParseInteger(Data, Offset); in FP_arch() local
201 uint64_t Value = ParseInteger(Data, Offset); in WMMX_arch() local
213 uint64_t Value = ParseInteger(Data, Offset); in Advanced_SIMD_arch() local
225 uint64_t Value = ParseInteger(Data, Offset); in MVE_arch() local
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceELFStreamer.h43 void writeLE16(uint16_t Value) { in writeLE16()
48 void writeLE32(uint32_t Value) { in writeLE32()
53 void writeLE64(uint64_t Value) { in writeLE64()
58 template <bool IsELF64, typename T> void writeAddrOrOffset(T Value) { in writeAddrOrOffset()
65 template <bool IsELF64, typename T> void writeELFWord(T Value) { in writeELFWord()
69 template <bool IsELF64, typename T> void writeELFXword(T Value) { in writeELFXword()
95 void write8(uint8_t Value) override { Out << char(Value); } in write8()
/third_party/gn/src/gn/
Dvalue.cc15 Value::Value() {} in Value() function in Value
17 Value::Value(const ParseNode* origin, Type t) : type_(t), origin_(origin) { in Value() function in Value
39 Value::Value(const ParseNode* origin, bool bool_val) in Value() function in Value
42 Value::Value(const ParseNode* origin, int64_t int_val) in Value() function in Value
45 Value::Value(const ParseNode* origin, std::string str_val) in Value() function in Value
48 Value::Value(const ParseNode* origin, const char* str_val) in Value() function in Value
51 Value::Value(const ParseNode* origin, std::unique_ptr<Scope> scope) in Value() function in Value
54 Value::Value(const Value& other) : type_(other.type_), origin_(other.origin_) { in Value() function in Value
78 Value::Value(Value&& other) noexcept in Value() function in Value
/third_party/typescript/tests/baselines/reference/
DthisInAccessors.js4 get Value() { getter in GetterOnly
8 set Value(val) { setter in GetterOnly
14 get Value() { getter in SetterOnly
17 set Value(val) { setter in SetterOnly
18 var fn = () => this;
24 get Value() { getter in GetterAndSetter
28 set Value(val) { setter in GetterAndSetter
29 var fn = () => this;
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dissue-410.rs17 pub struct Value { struct
35 pub fn Value_a(this: *mut root::JS::Value, arg1: root::JSWhyMagic); in Value_a()
37 impl Value { implementation
/third_party/skia/tools/gpu/
DMemoryCache.h66 struct Value { struct
68 Value(const SkData& data, const SkString& description) in Value() argument
73 Value& operator=(const Value&) = default; argument
90 std::unordered_map<Key, Value, Hash> fMap; argument
/third_party/skia/tests/
DLRUCacheTest.cpp13 struct Value { struct
14 Value(int value, int* counter) in Value() function
20 ~Value() { in ~Value() argument
24 int fValue; argument
32 SkLRUCache<int, std::unique_ptr<Value>> test(kSize); in DEF_TEST() argument
/third_party/flutter/skia/tests/
DLRUCacheTest.cpp11 struct Value { struct
12 Value(int value, int* counter) in Value() function
18 ~Value() { in ~Value() argument
22 int fValue; argument
30 SkLRUCache<int, std::unique_ptr<Value>> test(kSize); in DEF_TEST() argument
/third_party/rust/crates/log/src/
Dserde.rs40 type Value = Level; in deserialize() typedef
46 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E> in deserialize()
54 fn visit_bytes<E>(self, value: &[u8]) -> Result<Self::Value, E> in deserialize()
64 fn visit_u64<E>(self, v: u64) -> Result<Self::Value, E> in deserialize()
77 type Value = Level; in deserialize() typedef
79 fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in deserialize()
90 type Value = Level; in deserialize() typedef
96 fn visit_enum<A>(self, value: A) -> Result<Self::Value, A::Error> in deserialize()
135 type Value = LevelFilter; in deserialize() typedef
141 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E> in deserialize()
[all …]
/third_party/rust/crates/log/src/kv/
Dvalue.rs20 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()
152 pub struct Value<'v> { struct
153 inner: ValueBag<'v>, argument
156 impl<'v> Value<'v> { impl
253 T: self::sval::value::Value, in from_sval()
383 impl<'v> fmt::Debug for Value<'v> { implementation
389 impl<'v> fmt::Display for Value<'v> { implementation
[all …]
/third_party/rust/crates/serde/test_suite/tests/bytes/
Dmod.rs14 type Value = Vec<u8>; typedef
20 fn visit_seq<V>(self, mut visitor: V) -> Result<Self::Value, V::Error> in visit_seq()
31 fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E> in visit_bytes()
38 fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E> in visit_byte_buf()
45 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in visit_str()
52 fn visit_string<E>(self, v: String) -> Result<Self::Value, E> in visit_string()
/third_party/flutter/skia/src/core/
DSkImageFilterCache.cpp43 struct Value { struct in __anonbb46f7680311::CacheImpl
44Value(const Key& key, SkSpecialImage* image, const SkIPoint& offset, const SkImageFilter* filter) in Value() argument
47 Key fKey;
48 sk_sp<SkSpecialImage> fImage;
49 SkIPoint fOffset;
50 const SkImageFilter* fFilter;
51 static const Key& GetKey(const Value& v) { in GetKey()
54 static uint32_t Hash(const Key& key) { in Hash()
/third_party/flutter/skia/tools/gpu/
DMemoryCache.h62 struct Value { struct
64 Value(const SkData& data) in Value() function
68 Value& operator=(const Value&) = default; argument
83 std::unordered_map<Key, Value, Hash> fMap; argument

12345678910>>...35