/external/llvm-project/flang/runtime/ |
D | type-code.h | 24 explicit TypeCode(ISO::CFI_type_t t) : raw_{t} {} in TypeCode() 27 int raw() const { return raw_; } in raw() 30 return raw_ >= CFI_type_signed_char && raw_ <= CFI_TYPE_LAST; in IsValid() 33 return raw_ >= CFI_type_signed_char && raw_ <= CFI_type_ptrdiff_t; in IsInteger() 36 return raw_ >= CFI_type_float && raw_ <= CFI_type_long_double; in IsReal() 39 return raw_ >= CFI_type_float_Complex && in IsComplex() 40 raw_ <= CFI_type_long_double_Complex; in IsComplex() 43 return raw_ == CFI_type_char || raw_ == CFI_type_char16_t || in IsCharacter() 44 raw_ == CFI_type_char32_t; in IsCharacter() 47 return raw_ == CFI_type_Bool || in IsLogical() [all …]
|
D | type-code.cpp | 18 raw_ = CFI_type_int8_t; in TypeCode() 21 raw_ = CFI_type_int16_t; in TypeCode() 24 raw_ = CFI_type_int32_t; in TypeCode() 27 raw_ = CFI_type_int64_t; in TypeCode() 30 raw_ = CFI_type_int128_t; in TypeCode() 37 raw_ = CFI_type_float; in TypeCode() 40 raw_ = CFI_type_double; in TypeCode() 44 raw_ = CFI_type_long_double; in TypeCode() 51 raw_ = CFI_type_float_Complex; in TypeCode() 54 raw_ = CFI_type_double_Complex; in TypeCode() [all …]
|
D | descriptor.h | 46 SubscriptValue LowerBound() const { return raw_.lower_bound; } in LowerBound() 47 SubscriptValue Extent() const { return raw_.extent; } in Extent() 49 SubscriptValue ByteStride() const { return raw_.sm; } in ByteStride() 52 raw_.lower_bound = lower; in SetBounds() 53 raw_.extent = upper >= lower ? upper - lower + 1 : 0; in SetBounds() 57 raw_.sm = bytes; in SetByteStride() 62 ISO::CFI_dim_t raw_; 136 raw_.base_addr = nullptr; in Descriptor() 137 raw_.f18Addendum = false; in Descriptor() 180 ISO::CFI_cdesc_t &raw() { return raw_; } in raw() [all …]
|
D | descriptor.cpp | 25 if (raw_.attribute != CFI_attribute_pointer) { in ~Descriptor() 35 ISO::CFI_establish(&raw_, p, attribute, t.raw(), elementBytes, rank, in Establish() 37 raw_.f18Addendum = addendum; in Establish() 101 return sizeof *this - sizeof(Dimension) + raw_.rank * sizeof(Dimension) + in SizeInBytes() 122 raw_.base_addr = p; in Allocate() 135 int result{ISO::CFI_allocate(&raw_, lb, ub, ElementBytes())}; in Allocate() 144 return ISO::CFI_deallocate(&raw_); in Deallocate() 160 for (int j{0}; j < raw_.rank; ++j) { in IncrementSubscripts() 173 for (int j{raw_.rank - 1}; j >= 0; --j) { in DecrementSubscripts() 188 for (int j{0}; j < raw_.rank; ++j) { in ZeroBasedElementNumber() [all …]
|
/external/llvm-project/flang/include/flang/Decimal/ |
D | binary-floating-point.h | 51 constexpr explicit BinaryFloatingPointNumber(RawType raw) : raw_{raw} {} in BinaryFloatingPointNumber() 53 RawType raw() const { return raw_; } in raw() 56 static_assert(sizeof raw_ <= sizeof x); in BinaryFloatingPointNumber() 57 std::memcpy(reinterpret_cast<void *>(&raw_), in BinaryFloatingPointNumber() 58 reinterpret_cast<const void *>(&x), sizeof raw_); in BinaryFloatingPointNumber() 63 (raw_ >> significandBits) & ((1 << exponentBits) - 1)); in BiasedExponent() 69 constexpr RawType Significand() const { return raw_ & significandMask; } in Significand() 79 return (raw_ & ((RawType{1} << (bits - 1)) - 1)) == 0; in IsZero() 91 constexpr bool IsNegative() const { return ((raw_ >> (bits - 1)) & 1) != 0; } in IsNegative() 93 constexpr void Negate() { raw_ ^= RawType{1} << (bits - 1); } in Negate() [all …]
|
/external/libabigail/include/ |
D | abg-interned-str.h | 45 std::string* raw_; variable 52 : raw_(raw) in interned_string() 61 : raw_() in interned_string() 68 {raw_ = o.raw_;} in interned_string() 76 raw_ = o.raw_; 83 {raw_ = 0;} in clear() 91 {return !raw_;} in empty() 100 {return raw_;} in raw() 114 {return raw_ == o.raw_;} 139 if (raw_) [all …]
|
/external/pigweed/pw_tokenizer/public/pw_tokenizer/ |
D | token_database.h | 87 : raw_(raw_entry), string_(string) {} in Iterator() 91 return {raw_->token, raw_->date_removed, string_}; in entry() 95 raw_ += 1; 102 Iterator previous(raw_, string_); 107 return raw_ == rhs.raw_; 110 return raw_ != rhs.raw_; 118 constexpr const RawEntry* operator->() const { return raw_; } 121 return raw_ - rhs.raw_; 125 const RawEntry* raw_;
|
/external/webrtc/modules/video_coding/codecs/vp9/ |
D | vp9_impl.cc | 233 raw_(nullptr), in VP9EncoderImpl() 293 if (raw_ != nullptr) { in Release() 294 vpx_img_free(raw_); in Release() 295 raw_ = nullptr; in Release() 546 raw_ = in InitEncode() 548 raw_->bit_depth = bits_for_storage; in InitEncode() 977 RTC_DCHECK_EQ(input_image.width(), raw_->d_w); in Encode() 978 RTC_DCHECK_EQ(input_image.height(), raw_->d_h); in Encode() 995 raw_->planes[VPX_PLANE_Y] = const_cast<uint8_t*>(i420_buffer->DataY()); in Encode() 996 raw_->planes[VPX_PLANE_U] = const_cast<uint8_t*>(i420_buffer->DataU()); in Encode() [all …]
|
D | vp9_impl.h | 112 vpx_image_t* raw_; variable
|
/external/webrtc/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | extension.h | 63 explicit FormatSinkImpl(FormatRawSinkImpl raw) : raw_(raw) {} in FormatSinkImpl() 68 raw_.Write(string_view(buf_, pos_ - buf_)); in Flush() 95 raw_.Write(v); in Append() 120 FormatRawSinkImpl raw_; variable
|
/external/abseil-cpp/absl/strings/internal/str_format/ |
D | extension.h | 63 explicit FormatSinkImpl(FormatRawSinkImpl raw) : raw_(raw) {} in FormatSinkImpl() 68 raw_.Write(string_view(buf_, pos_ - buf_)); in Flush() 95 raw_.Write(v); in Append() 120 FormatRawSinkImpl raw_; variable
|
/external/angle/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | extension.h | 68 explicit FormatSinkImpl(FormatRawSinkImpl raw) : raw_(raw) {} in FormatSinkImpl() 73 raw_.Write(string_view(buf_, pos_ - buf_)); in Flush() 100 raw_.Write(v); in Append() 125 FormatRawSinkImpl raw_; variable
|
/external/libtextclassifier/abseil-cpp/absl/strings/internal/str_format/ |
D | extension.h | 68 explicit FormatSinkImpl(FormatRawSinkImpl raw) : raw_(raw) {} in FormatSinkImpl() 73 raw_.Write(string_view(buf_, pos_ - buf_)); in Flush() 100 raw_.Write(v); in Append() 125 FormatRawSinkImpl raw_; variable
|
/external/openscreen/third_party/abseil/src/absl/strings/internal/str_format/ |
D | extension.h | 68 explicit FormatSinkImpl(FormatRawSinkImpl raw) : raw_(raw) {} in FormatSinkImpl() 73 raw_.Write(string_view(buf_, pos_ - buf_)); in Flush() 100 raw_.Write(v); in Append() 125 FormatRawSinkImpl raw_; variable
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | extension.h | 68 explicit FormatSinkImpl(FormatRawSinkImpl raw) : raw_(raw) {} in FormatSinkImpl() 73 raw_.Write(string_view(buf_, pos_ - buf_)); in Flush() 100 raw_.Write(v); in Append() 125 FormatRawSinkImpl raw_; variable
|