/third_party/mindspore/mindspore/ccsrc/minddata/dataset/core/ |
D | data_type.h | 124 DataType() : type_(DE_UNKNOWN) {} in DataType() 135 constexpr explicit DataType(Type d) : type_(d) {} in DataType() 137 constexpr bool operator==(const DataType a) const { return type_ == a.type_; } 139 constexpr bool operator==(const Type a) const { return type_ == a; } 141 constexpr bool operator!=(const DataType a) const { return type_ != a.type_; } 143 constexpr bool operator!=(const Type a) const { return type_ != a; } 151 operator Type() const { return type_; } in Type() 177 return type_ == FromCType<T>(); in IsCompatible() 220 … return type_ == DataType::DE_INT8 || type_ == DataType::DE_INT16 || type_ == DataType::DE_INT32 || in IsSignedInt() 221 type_ == DataType::DE_INT64; in IsSignedInt() [all …]
|
D | data_type.cc | 31 if (type_ < DataType::NUM_OF_TYPES) in SizeInBytes() 32 return kTypeInfo[type_].sizeInBytes_; in SizeInBytes() 39 if (type_ < DataType::NUM_OF_TYPES) in AsNumpyType() 40 return py::dtype(kTypeInfo[type_].pybindType_); in AsNumpyType() 49 if (type_ < DataType::NUM_OF_TYPES) { in AsCVType() 50 res = kTypeInfo[type_].cvType_; in AsCVType() 55 if (type_ < DataType::NUM_OF_TYPES) { in AsCVType() 56 type_name = std::string(kTypeInfo[type_].name_); in AsCVType() 94 type_ = DE_BOOL; in DataType() 96 type_ = DE_INT8; in DataType() [all …]
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
D | token.h | 371 bool Is(Type t) const { return type_ == t; } in Is() 374 bool IsUninitialized() const { return type_ == Type::kUninitialized; } in IsUninitialized() 376 bool IsEof() const { return type_ == Type::kEOF; } in IsEof() 378 bool IsError() const { return type_ == Type::kError; } in IsError() 380 bool IsIdentifier() const { return type_ == Type::kIdentifier; } in IsIdentifier() 383 return type_ == Type::kSintLiteral || type_ == Type::kFalse || in IsLiteral() 384 type_ == Type::kUintLiteral || type_ == Type::kTrue || in IsLiteral() 385 type_ == Type::kFloatLiteral; in IsLiteral() 389 return type_ == Type::kMat2x2 || type_ == Type::kMat2x3 || in IsMatrix() 390 type_ == Type::kMat2x4 || type_ == Type::kMat3x2 || in IsMatrix() [all …]
|
/third_party/grpc/src/core/lib/security/authorization/ |
D | matchers.cc | 50 : type_(type), string_matcher_(matcher), case_sensitive_(case_sensitive) {} in StringMatcher() 54 : type_(Type::SAFE_REGEX), in StringMatcher() 59 : type_(other.type_), case_sensitive_(other.case_sensitive_) { in StringMatcher() 60 if (type_ == Type::SAFE_REGEX) { in StringMatcher() 71 type_ = other.type_; in operator =() 72 if (type_ == Type::SAFE_REGEX) { in operator =() 85 : type_(other.type_), case_sensitive_(other.case_sensitive_) { in StringMatcher() 86 if (type_ == Type::SAFE_REGEX) { in StringMatcher() 94 type_ = other.type_; in operator =() 95 if (type_ == Type::SAFE_REGEX) { in operator =() [all …]
|
/third_party/grpc/src/core/lib/json/ |
D | json.h | 81 : type_(is_number ? Type::NUMBER : Type::STRING), string_value_(string) {} 83 type_ = Type::STRING; 107 : type_(Type::STRING), string_value_(std::move(string)) {} in Json() 109 type_ = Type::STRING; 116 Json(bool b) : type_(b ? Type::JSON_TRUE : Type::JSON_FALSE) {} in Json() 118 type_ = b ? Type::JSON_TRUE : Type::JSON_FALSE; 126 : type_(Type::NUMBER), string_value_(std::to_string(number)) {} in Json() 129 type_ = Type::NUMBER; 136 Json(const Object& object) : type_(Type::OBJECT), object_value_(object) {} in Json() 138 type_ = Type::OBJECT; [all …]
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/ |
D | activation_fp32.cc | 39 if (type_ != schema::ActivationType_RELU && type_ != schema::ActivationType_RELU6 && in Init() 40 type_ != schema::ActivationType_LEAKY_RELU && type_ != schema::ActivationType_SIGMOID && in Init() 41 type_ != schema::ActivationType_TANH && type_ != schema::ActivationType_HSWISH && in Init() 42 type_ != schema::ActivationType_SWISH && type_ != schema::ActivationType_HSIGMOID && in Init() 43 type_ != schema::ActivationType_HARD_TANH && type_ != schema::ActivationType_GELU && in Init() 44 type_ != schema::ActivationType_SOFTPLUS && type_ != schema::ActivationType_ELU) { in Init() 45 MS_LOG(ERROR) << "Activation fp32 not support type: " << type_; in Init() 71 if (type_ == schema::ActivationType_RELU) { in DoActivation() 73 } else if (type_ == schema::ActivationType_RELU6) { in DoActivation() 75 } else if (type_ == schema::ActivationType_LEAKY_RELU) { in DoActivation() [all …]
|
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/ |
D | encodable_value.h | 68 explicit EncodableValue(bool value) : bool_(value), type_(Type::kBool) {} in EncodableValue() 71 explicit EncodableValue(int32_t value) : int_(value), type_(Type::kInt) {} in EncodableValue() 74 explicit EncodableValue(int64_t value) : long_(value), type_(Type::kLong) {} in EncodableValue() 78 : double_(value), type_(Type::kDouble) {} in EncodableValue() 82 : string_(new std::string(value)), type_(Type::kString) {} in EncodableValue() 86 : string_(new std::string(value)), type_(Type::kString) {} in EncodableValue() 91 type_(Type::kByteList) {} in EncodableValue() 96 type_(Type::kIntList) {} in EncodableValue() 101 type_(Type::kLongList) {} in EncodableValue() 106 type_(Type::kDoubleList) {} in EncodableValue() [all …]
|
/third_party/vk-gl-cts/framework/platform/android/ |
D | tcuAndroidRenderActivity.hpp | 72 explicit Message (MessageType type_) in Message() 73 : type(type_) in Message() 75 DE_ASSERT(type_ == MESSAGE_RESUME || in Message() 76 type_ == MESSAGE_PAUSE || in Message() 77 type_ == MESSAGE_FINISH); in Message() 80 Message (MessageType type_, ANativeWindow* window) in Message() 81 : type(type_) in Message() 83 DE_ASSERT(type_ == MESSAGE_WINDOW_CREATED || in Message() 84 type_ == MESSAGE_WINDOW_DESTROYED || in Message() 85 type_ == MESSAGE_WINDOW_RESIZED); in Message() [all …]
|
/third_party/boost/libs/asio/include/boost/asio/ip/impl/ |
D | address.ipp | 34 : type_(ipv4), 42 : type_(ipv4), 50 : type_(ipv6), 57 : type_(other.type_), 65 : type_(other.type_), 74 type_ = other.type_; 83 type_ = other.type_; 93 type_ = ipv4; 102 type_ = ipv6; 160 if (type_ != ipv4) [all …]
|
/third_party/boost/boost/asio/ip/impl/ |
D | address.ipp | 34 : type_(ipv4), 42 : type_(ipv4), 50 : type_(ipv6), 57 : type_(other.type_), 65 : type_(other.type_), 74 type_ = other.type_; 83 type_ = other.type_; 93 type_ = ipv4; 102 type_ = ipv6; 160 if (type_ != ipv4) [all …]
|
/third_party/mindspore/tests/ut/cpp/device/ |
D | hccl_adapter_test.cc | 50 builder.SetInputsDeviceType(std::vector<TypeId>(cnode->size() - 1, type_)); in SetOutputs() 51 builder.SetOutputsDeviceType(std::vector<TypeId>(shape.size(), type_)); in SetOutputs() 73 builder.SetInputsDeviceType({type_}); in CreateInputs() 74 builder.SetOutputsDeviceType({type_}); in CreateInputs() 82 TypeId type_ = TypeId::kNumberTypeInt32; member in mindspore::hccl::TestHcclAdapter 98 …auto alltoall = CreateAllToAllvNode(graph, CreateInputs(graph, {{1}}, {type_}), send_rank_ids, rec… in TEST_F() 123 ASSERT_NO_THROW(SetOutputs(alltoall, {{1}, {1}}, {type_, type_})); in TEST_F() 144 …= CreateAllToAllvNode(graph, CreateInputs(graph, {{1}, {1}, {1}}, {type_, type_, type_}), send_ran… in TEST_F() 169 …CreateAllToAllvNode(graph, CreateInputs(graph, {{1}, {1}}, {type_, type_}), send_rank_ids, recv_ra… in TEST_F() 192 …auto alltoall = CreateAllToAllvNode(graph, CreateInputs(graph, {{1}}, {type_}), send_rank_ids, rec… in TEST_F() [all …]
|
/third_party/gn/src/gn/ |
D | value.cc | 17 Value::Value(const ParseNode* origin, Type t) : type_(t), origin_(origin) { in Value() 18 switch (type_) { in Value() 40 : type_(BOOLEAN), origin_(origin), boolean_value_(bool_val) {} in Value() 43 : type_(INTEGER), origin_(origin), int_value_(int_val) {} in Value() 46 : type_(STRING), origin_(origin), string_value_(std::move(str_val)) {} in Value() 49 : type_(STRING), origin_(origin), string_value_(str_val) {} in Value() 52 : type_(SCOPE), origin_(origin), scope_value_(std::move(scope)) {} in Value() 54 Value::Value(const Value& other) : type_(other.type_), origin_(other.origin_) { in Value() 55 switch (type_) { in Value() 79 : type_(other.type_), origin_(other.origin_) { in Value() [all …]
|
D | value.h | 51 Type type() const { return type_; } in type() 61 DCHECK(type_ == BOOLEAN); in boolean_value() 65 DCHECK(type_ == BOOLEAN); in boolean_value() 70 DCHECK(type_ == INTEGER); in int_value() 74 DCHECK(type_ == INTEGER); in int_value() 79 DCHECK(type_ == STRING); in string_value() 83 DCHECK(type_ == STRING); in string_value() 88 DCHECK(type_ == LIST); in list_value() 92 DCHECK(type_ == LIST); in list_value() 97 DCHECK(type_ == SCOPE); in scope_value() [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_constant_expressions.py | 5 def type_add_size(type_, size): argument 6 if type_has_size(type_): 7 return type_ 8 return type_ + str(size) 24 def get_const_field(type_): argument 25 if type_size(type_) == 1: 27 elif type_base_type(type_) == 'bool': 28 return 'i' + str(type_size(type_)) 29 elif type_ == "float16": 32 return type_base_type(type_)[0] + str(type_size(type_))
|
/third_party/flutter/engine/flutter/flow/ |
D | embedded_views.h | 33 type_ = other.type_; in Mutator() 34 switch (other.type_) { in Mutator() 55 explicit Mutator(const SkRect& rect) : type_(clip_rect), rect_(rect) {} in Mutator() 56 explicit Mutator(const SkRRect& rrect) : type_(clip_rrect), rrect_(rrect) {} in Mutator() 58 : type_(clip_path), path_(new SkPath(path)) {} in Mutator() 60 : type_(transform), matrix_(matrix) {} in Mutator() 61 explicit Mutator(const int& alpha) : type_(opacity), alpha_(alpha) {} in Mutator() 63 const MutatorType& GetType() const { return type_; } in GetType() 72 if (type_ != other.type_) { 75 switch (type_) { [all …]
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
D | datapiece.cc | 118 if (type_ == TYPE_STRING) return StringToNumber<int32>(safe_strto32); in ToInt32() 120 if (type_ == TYPE_DOUBLE) in ToInt32() 123 if (type_ == TYPE_FLOAT) in ToInt32() 130 if (type_ == TYPE_STRING) in ToUint32() 133 if (type_ == TYPE_DOUBLE) in ToUint32() 136 if (type_ == TYPE_FLOAT) in ToUint32() 143 if (type_ == TYPE_STRING) return StringToNumber<int64>(safe_strto64); in ToInt64() 145 if (type_ == TYPE_DOUBLE) in ToInt64() 148 if (type_ == TYPE_FLOAT) in ToInt64() 155 if (type_ == TYPE_STRING) in ToUint64() [all …]
|
D | datapiece.h | 79 : type_(TYPE_INT32), i32_(value), use_strict_base64_decoding_(false) {} in DataPiece() 81 : type_(TYPE_INT64), i64_(value), use_strict_base64_decoding_(false) {} in DataPiece() 83 : type_(TYPE_UINT32), u32_(value), use_strict_base64_decoding_(false) {} in DataPiece() 85 : type_(TYPE_UINT64), u64_(value), use_strict_base64_decoding_(false) {} in DataPiece() 87 : type_(TYPE_DOUBLE), in DataPiece() 91 : type_(TYPE_FLOAT), float_(value), use_strict_base64_decoding_(false) {} in DataPiece() 93 : type_(TYPE_BOOL), bool_(value), use_strict_base64_decoding_(false) {} in DataPiece() 95 : type_(TYPE_STRING), in DataPiece() 100 : type_(TYPE_BYTES), in DataPiece() 104 DataPiece(const DataPiece& r) : type_(r.type_) { InternalCopy(r); } in DataPiece() [all …]
|
/third_party/skia/third_party/externals/tint/src/inspector/ |
D | scalar.cc | 20 Scalar::Scalar() : type_(kNull) {} in Scalar() 22 Scalar::Scalar(bool val) : type_(kBool) { in Scalar() 26 Scalar::Scalar(uint32_t val) : type_(kU32) { in Scalar() 30 Scalar::Scalar(int32_t val) : type_(kI32) { in Scalar() 34 Scalar::Scalar(float val) : type_(kFloat) { in Scalar() 39 return type_ == kNull; in IsNull() 43 return type_ == kBool; in IsBool() 47 return type_ == kU32; in IsU32() 51 return type_ == kI32; in IsI32() 55 return type_ == kFloat; in IsFloat()
|
/third_party/mindspore/mindspore/lite/src/ops/populate/v0/ |
D | arithmetic_populate_v0.cc | 38 param->op_parameter_.type_ = primitive->value_type(); in PopulateArithmeticV0CommonPara() 48 int type = param->op_parameter_.type_; in PopulateArithmeticV0() 50 param->op_parameter_.type_ = schema::PrimitiveType_RealDiv; in PopulateArithmeticV0() 52 param->op_parameter_.type_ = schema::PrimitiveType_LogicalAnd; in PopulateArithmeticV0() 54 param->op_parameter_.type_ = schema::PrimitiveType_LogicalOr; in PopulateArithmeticV0() 56 param->op_parameter_.type_ = schema::PrimitiveType_Equal; in PopulateArithmeticV0() 58 param->op_parameter_.type_ = schema::PrimitiveType_NotEqual; in PopulateArithmeticV0() 60 param->op_parameter_.type_ = schema::PrimitiveType_Less; in PopulateArithmeticV0() 62 param->op_parameter_.type_ = schema::PrimitiveType_LessEqual; in PopulateArithmeticV0() 64 param->op_parameter_.type_ = schema::PrimitiveType_Greater; in PopulateArithmeticV0() [all …]
|
D | arithmetic_self_populate_v0.cc | 36 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Abs; in PopulateArithmeticSelfV0() 38 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Cos; in PopulateArithmeticSelfV0() 40 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Sin; in PopulateArithmeticSelfV0() 42 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Log; in PopulateArithmeticSelfV0() 44 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Neg; in PopulateArithmeticSelfV0() 46 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_NegGrad; in PopulateArithmeticSelfV0() 48 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_LogGrad; in PopulateArithmeticSelfV0() 50 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Sqrt; in PopulateArithmeticSelfV0() 52 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Square; in PopulateArithmeticSelfV0() 54 arithmetic_self_param->op_parameter_.type_ = schema::PrimitiveType_Rsqrt; in PopulateArithmeticSelfV0() [all …]
|
/third_party/boost/tools/build/src/tools/types/ |
D | asm.py | 7 from b2.build import type as type_ unknown 19 type_.register_type('ASM', ['s', 'S', 'asm']) 23 def set_asm_type(type_, sources, name=''): argument 25 _project_types[project.name() + type_] = _project_types.get( 26 project.name() + type_, type_) + '_' 28 name = name if name else _project_types[project.name() + type_] 29 type_ += '.asm' 30 return cast(name, type_.upper(), sources, [], [], [])
|
/third_party/python/Lib/multiprocessing/ |
D | sharedctypes.py | 39 def _new_value(type_): argument 40 size = ctypes.sizeof(type_) 42 return rebuild_ctype(type_, wrapper, None) 48 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) 49 obj = _new_value(type_) 58 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) 60 type_ = type_ * size_or_initializer 61 obj = _new_value(type_) 65 type_ = type_ * len(size_or_initializer) 66 result = _new_value(type_) [all …]
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/ |
D | cache_request.h | 104 explicit BaseRequest(RequestType type) : type_(type) { in BaseRequest() 105 rq_.set_type(static_cast<int16_t>(type_)); in BaseRequest() 113 …ual void Print(std::ostream &out) const { out << "Request type: " << static_cast<int16_t>(type_); } in Print() 137 return type_ == RequestType::kBatchCacheRows || type_ == RequestType::kBatchFetchRows || in IsRowRequest() 138 type_ == RequestType::kInternalCacheRow || type_ == RequestType::kInternalFetchRow || in IsRowRequest() 139 type_ == RequestType::kCacheRow; in IsRowRequest() 145 return type_ == RequestType::kCreateCache || type_ == RequestType::kDestroyCache || in IsAdminRequest() 146 type_ == RequestType::kGetStat || type_ == RequestType::kGetCacheState || in IsAdminRequest() 147 type_ == RequestType::kAllocateSharedBlock || type_ == RequestType::kFreeSharedBlock || in IsAdminRequest() 148 type_ == RequestType::kCacheSchema || type_ == RequestType::kFetchSchema || in IsAdminRequest() [all …]
|
/third_party/skia/third_party/externals/tint/src/sem/ |
D | intrinsic.cc | 27 return sem::str(type_); in str() 112 type_(type), in Intrinsic() 123 return IsCoarseDerivativeIntrinsic(type_); in IsCoarseDerivative() 127 return IsFineDerivativeIntrinsic(type_); in IsFineDerivative() 131 return IsDerivativeIntrinsic(type_); in IsDerivative() 135 return IsFloatClassificationIntrinsic(type_); in IsFloatClassification() 139 return IsTextureIntrinsic(type_); in IsTexture() 143 return IsImageQueryIntrinsic(type_); in IsImageQuery() 147 return IsDataPackingIntrinsic(type_); in IsDataPacking() 151 return IsDataUnpackingIntrinsic(type_); in IsDataUnpacking() [all …]
|
/third_party/flatbuffers/include/flatbuffers/ |
D | flexbuffers.h | 284 : Sized(data, byte_width), type_(element_type) {} in TypedVector() 296 Type ElementType() { return type_; } in ElementType() 301 Type type_; 310 : Object(data, byte_width), type_(element_type), len_(len) {} in FixedTypedVector() 322 Type ElementType() { return type_; } in ElementType() 326 Type type_; 374 type_(FBT_NULL) {} in Reference() 381 type_(type) {} in Reference() 386 type_ = static_cast<Type>(packed_type >> 2); in Reference() 389 Type GetType() const { return type_; } in GetType() [all …]
|