Home
last modified time | relevance | path

Searched refs:raw_ (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/flang/runtime/
Dtype-code.h24 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 …]
Dtype-code.cpp18 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 …]
Ddescriptor.h46 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 …]
Ddescriptor.cpp25 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/
Dbinary-floating-point.h51 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/
Dabg-interned-str.h45 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/
Dtoken_database.h87 : 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/
Dvp9_impl.cc233 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 …]
Dvp9_impl.h112 vpx_image_t* raw_; variable
/external/webrtc/third_party/abseil-cpp/absl/strings/internal/str_format/
Dextension.h63 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/
Dextension.h63 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/
Dextension.h68 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/
Dextension.h68 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/
Dextension.h68 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/
Dextension.h68 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