/hardware/google/pixel/perfstatsd/include/ |
D | io_usage.h | 56 UserIo &operator=(const UserIo &other) { 57 uid = other.uid; 58 fgRead = other.fgRead; 59 bgRead = other.bgRead; 60 fgWrite = other.fgWrite; 61 bgWrite = other.bgWrite; 62 fgFsync = other.fgFsync; 63 bgFsync = other.bgFsync; 67 UserIo operator-(const UserIo &other) const { 70 r.fgRead = fgRead - other.fgRead; [all …]
|
/hardware/google/av/codec2/include/ |
D | C2Buffer.h | 276 inline constexpr bool contains(const C2Segment &other) const { in contains() 277 if (!isValid() || !other.isValid()) { in contains() 280 return offset <= other.offset in contains() 281 && offset + size >= other.offset + other.size; in contains() 285 inline constexpr bool operator==(const C2Segment &other) const { 287 return !other.isValid(); 289 return offset == other.offset && size == other.size; 293 inline constexpr bool operator!=(const C2Segment &other) const { 294 return !operator==(other); 297 inline constexpr bool operator>=(const C2Segment &other) const { [all …]
|
D | C2.h | 161 inline bool operator!=(const type &other) const { return !(*this == other); } \ 162 … inline bool operator<=(const type &other) const { return (*this == other) || (*this < other); } \ 163 inline bool operator>=(const type &other) const { return !(*this < other); } \ 164 inline bool operator>(const type &other) const { return !(*this < other) && !(*this == other); } 167 inline bool operator<(const type &other) const { return field < other.field; } \ 168 inline bool operator==(const type &other) const { return field == other.field; } \ 172 inline bool operator<(const type &other) const { \ 173 return (field & mask) < (other.field & (mask)); \ 175 inline bool operator==(const type &other) const { \ 176 return (field & mask) == (other.field & (mask)); \ [all …]
|
D | C2Param.h | 504 inline bool updateFrom(const C2Param &other) { in updateFrom() 505 if (other._mSize <= _mSize && other._mIndex == _mIndex && _mSize > 0) { in updateFrom() 506 memcpy(this, &other, other._mSize); in updateFrom() 657 inline bool operator==(const _C2FieldId &other) const { 658 return _mOffset == other._mOffset && _mSize == other._mSize; 661 inline bool operator<(const _C2FieldId &other) const { 662 return _mOffset < other._mOffset || 664 (_mOffset == other._mOffset && _mSize > other._mSize); 773 inline C2ParamField(const C2ParamField &other) = default; 778 inline bool operator==(const C2ParamField &other) const { [all …]
|
/hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/ |
D | authorization_set.h | 46 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} in AuthorizationSet() argument 49 AuthorizationSet(AuthorizationSet&& other) noexcept : data_(std::move(other.data_)) {} in AuthorizationSet() argument 52 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; } in AuthorizationSet() argument 55 AuthorizationSet& operator=(const AuthorizationSet& other) { 56 data_ = other.data_; 61 AuthorizationSet& operator=(AuthorizationSet&& other) noexcept { 62 data_ = std::move(other.data_); 66 AuthorizationSet& operator=(const hidl_vec<KeyParameter>& other) { 67 if (other.size() > 0) { 68 data_.resize(other.size()); [all …]
|
D | Keymaster.h | 56 bool operator>(const VersionResult& other) const { 58 auto rhs = std::tie(other.securityLevel, other.majorVersion, other.supportsEc);
|
/hardware/interfaces/automotive/vehicle/2.0/default/common/src/ |
D | VehiclePropertyStore.cpp | 28 bool VehiclePropertyStore::RecordId::operator==(const VehiclePropertyStore::RecordId& other) const { in operator ==() 29 return prop == other.prop && area == other.area && token == other.token; in operator ==() 32 bool VehiclePropertyStore::RecordId::operator<(const VehiclePropertyStore::RecordId& other) const { in operator <() 33 return prop < other.prop in operator <() 34 || (prop == other.prop && area < other.area) in operator <() 35 || (prop == other.prop && area == other.area && token < other.token); in operator <()
|
/hardware/google/easel/amber/camera/include/ |
D | HdrPlusTypes.h | 68 bool operator==(const PlaneConfiguration &other) const { 69 return stride == other.stride && 70 scanline == other.scanline; 73 bool operator!=(const PlaneConfiguration &other) const { 74 return !(*this == other); 93 bool operator==(const ImageConfiguration &other) const { 94 return width == other.width && 95 height == other.height && 96 format == other.format && 97 planes == other.planes && [all …]
|
/hardware/interfaces/keymaster/4.0/vts/functional/ |
D | KeymasterHidlTest.h | 46 HidlBuf(const super& other) : super(other) {} in HidlBuf() argument 47 HidlBuf(super&& other) : super(std::move(other)) {} in HidlBuf() argument 48 explicit HidlBuf(const std::string& other) : HidlBuf() { *this = other; } in HidlBuf() argument 50 HidlBuf& operator=(const super& other) { 51 super::operator=(other); 55 HidlBuf& operator=(super&& other) { 56 super::operator=(std::move(other)); 60 HidlBuf& operator=(const string& other) { 61 resize(other.size()); 62 std::copy(other.begin(), other.end(), begin());
|
/hardware/interfaces/camera/common/1.0/default/include/ |
D | CameraMetadata.h | 51 CameraMetadata(const CameraMetadata &other); 56 CameraMetadata &operator=(const CameraMetadata &other); 101 void acquire(CameraMetadata &other); 106 status_t append(const CameraMetadata &other); 111 status_t append(const camera_metadata* other); 180 void swap(CameraMetadata &other);
|
/hardware/libhardware/modules/camera/3_4/ |
D | stream_format.cpp | 84 bool StreamFormat::operator==(const StreamFormat& other) const { in operator ==() 87 return (type_ == other.type_ && in operator ==() 88 v4l2_pixel_format_ == other.v4l2_pixel_format_ && in operator ==() 89 width_ == other.width_ && height_ == other.height_); in operator ==() 92 bool StreamFormat::operator!=(const StreamFormat& other) const { in operator !=() 93 return !(*this == other); in operator !=()
|
D | stream_format.h | 52 bool operator==(const StreamFormat& other) const; 53 bool operator!=(const StreamFormat& other) const;
|
/hardware/qcom/sdm845/data/ipacfg-mgr/hal/src/ |
D | LocalLogBuffer.cpp | 51 LocalLogBuffer::FunctionLog::FunctionLog(const FunctionLog& other) : in FunctionLog() argument 52 mName(other.mName) { in FunctionLog() 53 mArgsProvided = other.mArgsProvided; in FunctionLog() 55 mSSArgs.str(other.mSSArgs.str()); in FunctionLog() 56 mSSReturn.str(other.mSSReturn.str()); in FunctionLog()
|
/hardware/interfaces/keymaster/3.0/vts/functional/ |
D | authorization_set.h | 47 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} in AuthorizationSet() argument 50 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {} in AuthorizationSet() argument 53 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; } in AuthorizationSet() argument 56 AuthorizationSet& operator=(const AuthorizationSet& other) { 57 data_ = other.data_; 62 AuthorizationSet& operator=(AuthorizationSet&& other) { 63 data_ = std::move(other.data_); 67 AuthorizationSet& operator=(const hidl_vec<KeyParameter>& other) { 68 if (other.size() > 0) { 69 data_.resize(other.size()); [all …]
|
/hardware/interfaces/camera/common/1.0/default/ |
D | CameraMetadata.cpp | 46 CameraMetadata::CameraMetadata(const CameraMetadata &other) : in CameraMetadata() argument 48 mBuffer = clone_camera_metadata(other.mBuffer); in CameraMetadata() 56 CameraMetadata &CameraMetadata::operator=(const CameraMetadata &other) { in operator =() argument 57 return operator=(other.mBuffer); in operator =() 132 void CameraMetadata::acquire(CameraMetadata &other) { in acquire() argument 137 acquire(other.release()); in acquire() 140 status_t CameraMetadata::append(const CameraMetadata &other) { in append() argument 141 return append(other.mBuffer); in append() 144 status_t CameraMetadata::append(const camera_metadata_t* other) { in append() argument 149 size_t extraEntries = get_camera_metadata_entry_count(other); in append() [all …]
|
/hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/ |
D | LocalLogBuffer.cpp | 52 LocalLogBuffer::FunctionLog::FunctionLog(const FunctionLog& other) : in FunctionLog() argument 53 mName(other.mName) { in FunctionLog() 54 mArgsProvided = other.mArgsProvided; in FunctionLog() 56 mSSArgs.str(other.mSSArgs.str()); in FunctionLog() 57 mSSReturn.str(other.mSSReturn.str()); in FunctionLog()
|
/hardware/interfaces/health/2.0/ |
D | IHealth.hal | 38 * UNKNOWN for other errors. 49 * UNKNOWN for other errors. 61 * UNKNOWN for other errors. 71 * UNKNOWN for other errors. 86 * UNKNOWN for other errors. 103 * UNKNOWN for other errors. 115 * UNKNOWN for other errors. 125 * UNKNOWN for other errors. 136 * UNKNOWN other errors. 146 * UNKNOWN other errors. [all …]
|
/hardware/google/av/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/ |
D | Component.h | 130 bool operator<(const InterfaceKey& other) const { 132 (other.isRemote ? 136 other.remote.unsafe_get()) : 139 (other.isRemote ? 145 other.local.unsafe_get()));
|
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/ |
D | TriState.h | 28 TriState(const TriState<T> &other) : mIsSet(other.mIsSet), mValue(other.mValue) { } in TriState() argument 49 TriState<T>& operator=(const TriState<T> &other) { 50 mIsSet = other.mIsSet; 51 mValue = other.mValue;
|
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/ |
D | ExternalCameraUtils.h | 42 bool operator==(const Size& other) const { 43 return (width == other.width && height == other.height);
|
/hardware/qcom/neuralnetworks/hvxservice/1.0/ |
D | HexagonModel.cpp | 59 Model::Model(Model&& other) { in Model() argument 60 *this = std::move(other); in Model() 63 Model& Model::operator=(Model&& other) { in operator =() argument 64 if (this != &other) { in operator =() 65 mNodeCount = other.mNodeCount; in operator =() 66 mGraphId = other.mGraphId; in operator =() 67 mCompiled = other.mCompiled; in operator =() 68 mOperands = std::move(other.mOperands); in operator =() 69 mOperations = std::move(other.mOperations); in operator =() 70 mInputs = std::move(other.mInputs); in operator =() [all …]
|
/hardware/interfaces/camera/provider/2.5/ |
D | ICameraProvider.hal | 37 * or other accessory. 46 * BACK_COVERED. But other devices may support folding but not cover any cameras 47 * when folded, so for those FOLDED would not imply any of the other flags. 50 * necessarily implies other flags are set as well, then those flags should be set.
|
/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/ |
D | VehiclePropertyStore.h | 58 bool operator==(const RecordId& other) const; 59 bool operator<(const RecordId& other) const;
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/ |
D | README | 14 this includes the compass in the enable sequence when you have 9150 or other 24 other sensor output (including quaternion, gyro, accel, and compass.) in the
|
/hardware/interfaces/configstore/ |
D | README.md | 1 Configstore is specifically the configuration for surface flinger. Other configurations go in other…
|