Home
last modified time | relevance | path

Searched refs:storage_t (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/wasm/baseline/
Dliftoff-register.h72 using storage_t = std::conditional< variable
75 static_assert(8 * sizeof(storage_t) >= needed_bits &&
76 8 * sizeof(storage_t) < 2 * needed_bits,
91 DCHECK_EQ(code, static_cast<storage_t>(code)); in from_liftoff_code()
109 storage_t combined_code = low.code() | high.code() << kBitsPerGpRegCode | in ForPair()
129 static constexpr storage_t kCodeMask = (1 << kBitsPerGpRegCode) - 1; in low_gp()
135 static constexpr storage_t kCodeMask = (1 << kBitsPerGpRegCode) - 1; in high_gp()
173 storage_t code_;
175 explicit constexpr LiftoffRegister(storage_t code) : code_(code) {} in LiftoffRegister()
194 using storage_t = std::conditional< variable
[all …]
/external/google-fruit/include/fruit/
Dcomponent.h931 using storage_t = fruit::impl::PartialComponentStorage<
941 PartialComponentWithReplacementInProgress(storage_t storage) : storage(storage) {} in PartialComponentWithReplacementInProgress()
944 storage_t storage;
/external/bcc/src/cc/vendor/
Doptional.hpp267 union storage_t union
272 constexpr storage_t( trivial_init_t ) noexcept : dummy_() {}; in storage_t() function
275 constexpr storage_t( Args&&... args ) : value_(constexpr_forward<Args>(args)...) {} in storage_t() function
277 ~storage_t(){} in ~storage_t()
300 storage_t<T> storage_;