Searched refs:other (Results 1 - 25 of 53) sorted by relevance

123

/hardware/intel/common/libmix/videoencoder/
H A DVideoEncoderDef.h180 CirParams &operator=(const CirParams &other) { argument
181 if (this == &other) return *this;
183 this->cir_num_mbs = other.cir_num_mbs;
193 AirParams &operator=(const AirParams &other) { argument
194 if (this == &other) return *this;
196 this->airMBs= other.airMBs;
197 this->airThreshold= other.airThreshold;
198 this->airAuto = other.airAuto;
207 VideoFrameRate &operator=(const VideoFrameRate &other) { argument
208 if (this == &other) retur
220 operator =(const VideoResolution &other) argument
244 operator =(const VideoRateControlParams &other) argument
269 operator =(const SliceNum &other) argument
292 operator =(const Cropping &other) argument
307 operator =(const SamplingAspectRatio &other) argument
354 operator =(const VideoParamConfigSet &other) argument
389 operator =(const VideoParamsCommon &other) argument
440 operator =(const VideoParamsAVC &other) argument
[all...]
/hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
H A DKeymaster.h53 bool operator>(const VersionResult& other) const {
55 auto rhs = std::tie(other.securityLevel, other.majorVersion, other.supportsEc);
H A Dauthorization_set.h46 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} argument
49 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {} argument
52 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; } argument
55 AuthorizationSet& operator=(const AuthorizationSet& other) { argument
56 data_ = other.data_;
61 AuthorizationSet& operator=(AuthorizationSet&& other) { argument
62 data_ = std::move(other
66 operator =(const hidl_vec<KeyParameter>& other) argument
[all...]
/hardware/interfaces/camera/common/1.0/default/include/
H A DCameraMetadata.h51 CameraMetadata(const CameraMetadata &other);
56 CameraMetadata &operator=(const CameraMetadata &other);
98 * Acquires raw buffer from other CameraMetadata object. After the call, the argument
101 void acquire(CameraMetadata &other);
106 status_t append(const CameraMetadata &other);
111 status_t append(const camera_metadata* other);
177 * Swap the underlying camera metadata between this and the other
180 void swap(CameraMetadata &other);
/hardware/google/av/codec2/include/
H A DC2.h129 * operations, or call/wait on other processes. It may use a protected region as long as the
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)
[all...]
H A DC2Buffer.h276 inline constexpr bool contains(const C2Segment &other) const {
277 if (!isValid() || !other.isValid()) {
280 return offset <= other.offset
281 && offset + size >= other.offset + other.size;
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) cons
397 _C2LinearRangeAspect(const _C2LinearRangeAspect &other) argument
[all...]
H A DC2Param.h71 * an error for the specific setting, but should continue to apply other settings.
502 // if other is the same kind of (valid) param as this, copy it into this and return true.
504 inline bool updateFrom(const C2Param &other) {
505 if (other._mSize <= _mSize && other._mIndex == _mIndex && _mSize > 0) {
506 memcpy(this, &other, other._mSize);
657 inline bool operator==(const _C2FieldId &other) const {
658 return _mOffset == other._mOffset && _mSize == other
[all...]
/hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/
H A DLocalLogBuffer.cpp11 * disclaimer in the documentation and/or other materials provided
52 LocalLogBuffer::FunctionLog::FunctionLog(const FunctionLog& other) : argument
53 mName(other.mName) {
54 mArgsProvided = other.mArgsProvided;
56 mSSArgs.str(other.mSSArgs.str());
57 mSSReturn.str(other.mSSReturn.str());
/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
H A DVehiclePropertyStore.cpp28 bool VehiclePropertyStore::RecordId::operator==(const VehiclePropertyStore::RecordId& other) const {
29 return prop == other.prop && area == other.area && token == other.token;
32 bool VehiclePropertyStore::RecordId::operator<(const VehiclePropertyStore::RecordId& other) const {
33 return prop < other.prop
34 || (prop == other.prop && area < other.area)
35 || (prop == other.prop && area == other
[all...]
/hardware/libhardware/modules/camera/3_4/
H A Dstream_format.cpp87 bool StreamFormat::operator==(const StreamFormat& other) const {
90 return (type_ == other.type_ &&
91 v4l2_pixel_format_ == other.v4l2_pixel_format_ &&
92 width_ == other.width_ && height_ == other.height_);
95 bool StreamFormat::operator!=(const StreamFormat& other) const {
96 return !(*this == other);
H A Dstream_format.h54 bool operator==(const StreamFormat& other) const;
55 bool operator!=(const StreamFormat& other) const;
/hardware/interfaces/keymaster/4.0/vts/functional/
H A DKeymasterHidlTest.h46 HidlBuf(const super& other) : super(other) {} argument
47 HidlBuf(super&& other) : super(std::move(other)) {} argument
48 explicit HidlBuf(const std::string& other) : HidlBuf() { *this = other; } argument
50 HidlBuf& operator=(const super& other) { argument
51 super::operator=(other);
55 HidlBuf& operator=(super&& other) { argument
56 super::operator=(std::move(other));
60 operator =(const string& other) argument
[all...]
/hardware/google/easel/amber/camera/include/
H A DHdrPlusTypes.h68 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
[all...]
/hardware/interfaces/camera/common/1.0/default/
H A DCameraMetadata.cpp46 CameraMetadata::CameraMetadata(const CameraMetadata &other) : argument
48 mBuffer = clone_camera_metadata(other.mBuffer);
56 CameraMetadata &CameraMetadata::operator=(const CameraMetadata &other) { argument
57 return operator=(other.mBuffer);
132 void CameraMetadata::acquire(CameraMetadata &other) { argument
137 acquire(other.release());
140 status_t CameraMetadata::append(const CameraMetadata &other) { argument
141 return append(other.mBuffer);
144 status_t CameraMetadata::append(const camera_metadata_t* other) { argument
149 size_t extraEntries = get_camera_metadata_entry_count(other);
452 swap(CameraMetadata& other) argument
[all...]
/hardware/interfaces/keymaster/3.0/vts/functional/
H A Dauthorization_set.h47 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} argument
50 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {} argument
53 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; } argument
56 AuthorizationSet& operator=(const AuthorizationSet& other) { argument
57 data_ = other.data_;
62 AuthorizationSet& operator=(AuthorizationSet&& other) { argument
63 data_ = std::move(other
67 operator =(const hidl_vec<KeyParameter>& other) argument
[all...]
H A Dauthorization_set.cpp59 // One is the prefix of the other, so the longer wins
117 void AuthorizationSet::Union(const AuthorizationSet& other) { argument
118 data_.insert(data_.end(), other.data_.begin(), other.data_.end());
122 void AuthorizationSet::Subtract(const AuthorizationSet& other) { argument
125 auto i = other.begin();
126 while (i != other.end()) {
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/
H A DExternalCameraUtils.h41 bool operator==(const Size& other) const {
42 return (width == other.width && height == other.height);
/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
H A DVehiclePropertyStore.h58 bool operator==(const RecordId& other) const;
59 bool operator<(const RecordId& other) const;
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
H A DTriState.h28 TriState(const TriState<T> &other) : mIsSet(other.mIsSet), mValue(other.mValue) { } argument
49 TriState<T>& operator=(const TriState<T> &other) { argument
50 mIsSet = other.mIsSet;
51 mValue = other.mValue;
/hardware/google/av/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/
H A DComponent.h130 bool operator<(const InterfaceKey& other) const {
132 (other.isRemote ?
136 other.remote.unsafe_get()) :
139 (other.isRemote ?
145 other.local.unsafe_get()));
/hardware/qcom/neuralnetworks/hvxservice/1.0/
H A DHexagonModel.cpp59 Model::Model(Model&& other) { argument
60 *this = std::move(other);
63 Model& Model::operator=(Model&& other) { argument
64 if (this != &other) {
65 mNodeCount = other.mNodeCount;
66 mGraphId = other.mGraphId;
67 mCompiled = other.mCompiled;
68 mOperands = std::move(other.mOperands);
69 mOperations = std::move(other.mOperations);
70 mInputs = std::move(other
[all...]
/hardware/intel/common/libmix/mix_common/
H A Dmixcommon.spec13 MIX Common contains common classes, datatype, header files used by other MIX components
/hardware/google/av/codec2/vndk/
H A DC2AllocatorIon.cpp116 const C2HandleIon *other = static_cast<const C2HandleIon*>(o); local
117 return other->mInts.mMagic == kMagic;
133 virtual bool equals(const std::shared_ptr<C2LinearAllocation> &other) const override;
384 bool C2AllocationIon::equals(const std::shared_ptr<C2LinearAllocation> &other) const {
385 if (!other || other->getAllocatorId() != getAllocatorId()) {
389 std::shared_ptr<C2AllocationIon> otherAsIon = std::static_pointer_cast<C2AllocationIon>(other);
/hardware/interfaces/keymaster/4.0/support/
H A Dauthorization_set.cpp50 // if one is the prefix of the other the longer wins
108 void AuthorizationSet::Union(const AuthorizationSet& other) { argument
109 data_.insert(data_.end(), other.data_.begin(), other.data_.end());
113 void AuthorizationSet::Subtract(const AuthorizationSet& other) { argument
116 auto i = other.begin();
117 while (i != other.end()) {
/hardware/qcom/gps/
H A DAndroid.mk17 #For all other targets besides msm8916

Completed in 582 milliseconds

123