| /third_party/skia/third_party/externals/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()
|
| /third_party/typescript/tests/cases/compiler/ |
| D | thisInAccessors.ts | 3 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/rust/crates/serde/serde/src/private/ |
| D | de.rs | 36 fn deserialize_any<V>(self, _visitor: V) -> Result<V::Value, E> in missing_field() 43 fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, E> in missing_field() 70 type Value = Cow<'a, str>; in borrow_cow_str() typedef 76 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in borrow_cow_str() 83 fn visit_borrowed_str<E>(self, v: &'a str) -> Result<Self::Value, E> in borrow_cow_str() 90 fn visit_string<E>(self, v: String) -> Result<Self::Value, E> in borrow_cow_str() 97 fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E> in borrow_cow_str() 107 fn visit_borrowed_bytes<E>(self, v: &'a [u8]) -> Result<Self::Value, E> in borrow_cow_str() 117 fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E> in borrow_cow_str() 143 type Value = Cow<'a, [u8]>; in borrow_cow_bytes() typedef [all …]
|
| /third_party/skia/third_party/externals/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 …]
|
| /third_party/rust/crates/serde/serde/src/de/ |
| D | ignored_any.rs | 114 type Value = IgnoredAny; typedef 121 fn visit_bool<E>(self, x: bool) -> Result<Self::Value, E> { in visit_bool() 127 fn visit_i64<E>(self, x: i64) -> Result<Self::Value, E> { in visit_i64() 133 fn visit_i128<E>(self, x: i128) -> Result<Self::Value, E> { in visit_i128() 139 fn visit_u64<E>(self, x: u64) -> Result<Self::Value, E> { in visit_u64() 145 fn visit_u128<E>(self, x: u128) -> Result<Self::Value, E> { in visit_u128() 151 fn visit_f64<E>(self, x: f64) -> Result<Self::Value, E> { in visit_f64() 157 fn visit_str<E>(self, s: &str) -> Result<Self::Value, E> in visit_str() 166 fn visit_none<E>(self) -> Result<Self::Value, E> { in visit_none() 171 fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in visit_some() [all …]
|
| D | mod.rs | 774 type Value; typedef 778 fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error> in deserialize() 787 type Value = T; typedef 922 fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_any() 927 fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_bool() 932 fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i8() 937 fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i16() 942 fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i32() 947 fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i64() 954 fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Self::Error> in deserialize_i128() [all …]
|
| D | impls.rs | 18 type Value = (); typedef 24 fn visit_unit<E>(self) -> Result<Self::Value, E> in visit_unit() 57 type Value = bool; typedef 63 fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E> in visit_bool() 453 type Value = char; typedef 460 fn visit_char<E>(self, v: char) -> Result<Self::Value, E> in visit_char() 468 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in visit_str() 499 type Value = String; typedef 505 fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> in visit_str() 512 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/ |
| 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()
|
| /third_party/skia/third_party/externals/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 …]
|
| /third_party/skia/third_party/externals/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 …]
|
| D | Any.h | 46 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/ |
| 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 …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | ARMAttributeParser.cpp | 77 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/ |
| D | IceELFStreamer.h | 43 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/ |
| D | value.cc | 15 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/ |
| D | thisInAccessors.js | 4 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/ |
| D | issue-410.rs | 17 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/ |
| D | MemoryCache.h | 66 struct Value { struct 68 Value(const SkData& data, const SkString& description) in Value() function 73 Value& operator=(const Value&) = default; argument 90 std::unordered_map<Key, Value, Hash> fMap; argument
|
| /third_party/skia/tests/ |
| D | LRUCacheTest.cpp | 13 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/rust/crates/log/src/ |
| D | serde.rs | 40 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/ |
| 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() 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/ |
| D | mod.rs | 14 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/ |
| D | TextStubCommon.cpp | 21 void ScalarTraits<FlowStringRef>::output(const FlowStringRef &Value, void *Ctx, in output() 25 StringRef ScalarTraits<FlowStringRef>::input(StringRef Value, void *Ctx, in input() 128 void ScalarTraits<Architecture>::output(const Architecture &Value, void *, in output() 133 Architecture &Value) { in input() 141 void ScalarTraits<PackedVersion>::output(const PackedVersion &Value, void *, in output() 146 PackedVersion &Value) { in input() 155 void ScalarTraits<SwiftVersion>::output(const SwiftVersion &Value, void *, in output() 176 SwiftVersion &Value) { in input() 206 void ScalarTraits<UUID>::output(const UUID &Value, void *, raw_ostream &OS) { in output() 209 StringRef ScalarTraits<UUID>::input(StringRef Scalar, void *, UUID &Value) { in input()
|
| /third_party/vk-gl-cts/external/openglcts/modules/common/ |
| D | glcShaderLibraryCase.hpp | 64 struct Value struct in deqp::sl::ShaderCase 66 enum StorageType 76 union Element { 82 StorageType storageType; 83 std::string valueName; 84 glu::DataType dataType; 85 int arrayLength; // Number of elements in array (currently always 1). 86 std::vector<Element> elements; // Scalar values (length dataType.scalarSize * arrayLength).
|
| /third_party/skia/src/core/ |
| D | SkImageFilterCache.cpp | 37 struct Value { struct in __anon8de337f40311::CacheImpl 38 Value(const Key& key, const skif::FilterResult& image, in Value() argument 42 Key fKey; 43 skif::FilterResult fImage; 44 const SkImageFilter* fFilter; 45 static const Key& GetKey(const Value& v) { in GetKey() 48 static uint32_t Hash(const Key& key) { in Hash()
|