| /system/ulib/zx/include/lib/zx/ |
| A D | time.h | 45 return duration(value_ % divisor.value_); 49 return value_ / other.value_; 53 value_ = zx_duration_add_duration(value_, other.value_); 58 value_ = zx_duration_sub_duration(value_, other.value_); 63 value_ = zx_duration_mul_int64(value_, multiplier); 111 return ticks(value_ + other.value_); 115 return ticks(value_ - other.value_); 127 return value_ / other.value_; 131 value_ += other.value_; 136 value_ -= other.value_; [all …]
|
| A D | object.h | 28 value_ = value; 44 return &value_; in reset_and_get_address() 48 zx_handle_t result = value_; in release() 49 value_ = ZX_HANDLE_INVALID; in release() 66 zx_handle_close(value_); in close() 71 zx_handle_t value_; variable 92 zx_handle_t tmp = value_; in swap() 93 value_ = other.value_; in swap() 94 other.value_ = tmp; in swap() 301 value_ = static_cast<T&&>(other.value_); [all …]
|
| A D | vmo.h | 76 zx_status_t status = zx_vmo_replace_as_executable(value_, vmex.get(), &h); in replace_as_executable() 79 value_ = ZX_HANDLE_INVALID; in replace_as_executable()
|
| A D | job.h | 41 value_, koid, rights, h.reset_and_get_address()); in get_child()
|
| /system/ulib/fit/include/lib/fit/ |
| A D | optional.h | 94 new (&value_) T(other.value_); 101 new (&value_) T(std::move(other.value_)); 118 return value_; 155 &value_, other.value_); 160 new (&value_) T(other.value_); 172 &value_, std::move(other.value_)); 179 new (&value_) T(std::move(other.value_)); 216 value_, other.value_); 218 new (&other.value_) T(std::move(value_)); 224 new (&value_) T(std::move(other.value_)); [all …]
|
| A D | nullable.h | 131 : value_(nullptr) {} 133 : value_(nullptr) {} 138 : value_(std::move(other.value_)) { 139 other.value_ = nullptr; 145 return value_; 149 return value_; 153 return std::move(value_); 177 value_ = std::move(other.value_); 178 other.value_ = nullptr; 196 swap(value_, other.value_); [all …]
|
| /system/ulib/fbl/include/fbl/ |
| A D | atomic.h | 77 : value_(value) {} in atomic() 91 __atomic_store_n(&value_, value, order); 94 __atomic_store_n(&value_, value, order); 98 return __atomic_load_n(&value_, order); 101 return __atomic_load_n(&value_, order); 195 T value_; member 209 : value_(value) {} 230 return __atomic_load_n(&value_, order); 300 T* value_; 440 atomic_ptr->value_ = value; [all …]
|
| /system/ulib/ddk/include/ddk/protocol/ |
| A D | pci-lib.h | 30 uint32_t value_; in pci_config_read8() local 31 zx_status_t st = pci->ops->config_read(pci->ctx, offset, sizeof(uint8_t), &value_); in pci_config_read8() 32 *value = value_ & UINT8_MAX; in pci_config_read8() 38 uint32_t value_; in pci_config_read16() local 39 zx_status_t st = pci->ops->config_read(pci->ctx, offset, sizeof(uint16_t), &value_); in pci_config_read16() 40 *value = value_ & UINT16_MAX; in pci_config_read16()
|
| /system/ulib/lockdep/include/lockdep/ |
| A D | lock_class.h | 205 LockClassId value_; 206 LockClassId value() const { return value_; } 255 LockClassId value_; 256 LockClassId value() const { return value_; }
|
| /system/ulib/zx/ |
| A D | job.cpp | 26 value_, koid, rights, result->reset_and_get_address()); in get_child()
|
| A D | process.cpp | 35 value_, koid, rights, result->reset_and_get_address()); in get_child()
|
| /system/ulib/trace-reader/include/trace-reader/ |
| A D | records.h | 212 : name_(std::move(name)), value_(std::move(value)) {} in Argument() 215 : name_(std::move(other.name_)), value_(std::move(other.value_)) {} in Argument() 219 value_ = std::move(other.value_); 224 const ArgumentValue& value() const { return value_; } in value() 230 ArgumentValue value_; variable
|
| /system/host/banjo/include/banjo/ |
| A D | flat_ast.h | 100 : constant_(std::move(constant)), value_(value) {} in IntConstant() 103 : value_(value) {} in IntConstant() 106 : value_(0) {} in IntConstant() 108 IntType Value() const { return value_; } in Value() 114 IntType value_; member
|
| /system/host/fidl/include/fidl/ |
| A D | flat_ast.h | 376 : kind(kind), value_(nullptr) {} in Constant() 378 bool IsResolved() const { return value_ != nullptr; } in IsResolved() 383 value_ = std::move(value); in ResolveTo() 388 return *value_; in Value() 394 std::unique_ptr<ConstantValue> value_;
|
| /system/ulib/trace-reader/ |
| A D | records.cpp | 200 return fbl::StringPrintf("%s: %s", name_.c_str(), value_.ToString().c_str()); in ToString()
|