Searched refs:bits_ (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/system/ulib/bitmap/include/bitmap/
H A Draw-bitmap.h87 // Owned by bits_, cached
123 zx_status_t status = bits_.Grow(new_bitsize);
129 uintptr_t addr = reinterpret_cast<uintptr_t>(bits_.GetData()) +
135 data_ = static_cast<size_t*>(bits_.GetData());
158 zx_status_t status = bits_.Allocate(sizeof(size_t) * (last_idx + 1));
162 data_ = static_cast<size_t*>(bits_.GetData());
168 // leaks the pointer to bits_. Reset and the bitmap destructor should not
170 const Storage* StorageUnsafe() const { return &bits_; }
174 Storage bits_; member in class:bitmap::final
/fuchsia/zircon/system/ulib/fit/include/lib/fit/
H A Dfunction_internal.h174 return ops_->invoke(&bits_, std::forward<Args>(args)...);
201 ops_->move(&bits_, &temp_bits);
204 other.ops_->move(&other.bits_, &bits_);
207 temp_ops->move(&temp_bits, &other.bits_);
213 return static_cast<Callable*>(ops_->get(&bits_));
219 return static_cast<Callable*>(ops_->get(&bits_));
243 return function(*static_cast<ref*>(ops_->get(&bits_)));
261 target_type<Callable>::initialize(&bits_, std::move(target));
267 ops_->destroy(&bits_);
284 mutable storage_type bits_; member in class:fit::internal::function
[all...]
/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Dfunction.h151 new (&bits_) NullFunctionTarget();
165 new (&bits_) typename TargetHelper<Callable>::Type(fbl::move(target));
170 new (&bits_) typename TargetHelper<Callable>::Type(fbl::move(target), ac);
174 other.target().MoveInitializeTo(&bits_);
182 FunctionTarget& target() { return *reinterpret_cast<FunctionTarget*>(&bits_); }
183 const FunctionTarget& target() const { return *reinterpret_cast<const FunctionTarget*>(&bits_); }
186 alignas(max_align_t) union { char data[target_size]; } bits_; member in struct:fbl::internal::final

Completed in 36 milliseconds