/hardware/google/gfxstream/third-party/glm/include/glm/gtx/ |
D | simd_mat4.inl | 20 assert(i < this->length()); 22 return this->Data[i]; 30 assert(i < this->length()); 32 return this->Data[i]; 42 this->Data[0] = fvec4SIMD(1, 0, 0, 0); 43 this->Data[1] = fvec4SIMD(0, 1, 0, 0); 44 this->Data[2] = fvec4SIMD(0, 0, 1, 0); 45 this->Data[3] = fvec4SIMD(0, 0, 0, 1); 52 this->Data[0] = fvec4SIMD(s, 0, 0, 0); 53 this->Data[1] = fvec4SIMD(0, s, 0, 0); [all …]
|
/hardware/google/aemu/base/include/aemu/base/containers/ |
D | SmallVector.h | 141 if (newCap <= this->capacity()) { in reserve() 156 bool isAllocated() const { return this->cbegin() != smallBufferStart(); } in isAllocated() 166 this->destruct(this->begin(), this->end()); in dtor() 168 free(this->mBegin); in dtor() 174 this->mBegin = begin; in init() 175 this->mEnd = end; in init() 176 this->mCapacity = capacity; in init() 182 if (newSize < this->size()) { in resize_impl() 183 const auto newEnd = this->begin() + newSize; in resize_impl() 184 this->destruct(newEnd, this->end()); in resize_impl() [all …]
|
/hardware/google/gfxstream/guest/android-emu/aemu/base/containers/ |
D | SmallVector.h | 141 if (newCap <= this->capacity()) { in reserve() 156 bool isAllocated() const { return this->cbegin() != smallBufferStart(); } in isAllocated() 166 this->destruct(this->begin(), this->end()); in dtor() 168 free(this->mBegin); in dtor() 174 this->mBegin = begin; in init() 175 this->mEnd = end; in init() 176 this->mCapacity = capacity; in init() 182 if (newSize < this->size()) { in resize_impl() 183 const auto newEnd = this->begin() + newSize; in resize_impl() 184 this->destruct(newEnd, this->end()); in resize_impl() [all …]
|
/hardware/google/gfxstream/third-party/glm/include/glm/detail/ |
D | type_mat4x2.inl | 20 this->value[0] = col_type(1, 0); 21 this->value[1] = col_type(0, 1); 22 this->value[2] = col_type(0, 0); 23 this->value[3] = col_type(0, 0); 32 this->value[0] = m.value[0]; 33 this->value[1] = m.value[1]; 34 this->value[2] = m.value[2]; 35 this->value[3] = m.value[3]; 43 this->value[0] = m.value[0]; 44 this->value[1] = m.value[1]; [all …]
|
D | type_mat4x3.inl | 13 this->value[0] = col_type(1, 0, 0); 14 this->value[1] = col_type(0, 1, 0); 15 this->value[2] = col_type(0, 0, 1); 16 this->value[3] = col_type(0, 0, 0); 25 this->value[0] = m.value[0]; 26 this->value[1] = m.value[1]; 27 this->value[2] = m.value[2]; 28 this->value[3] = m.value[3]; 36 this->value[0] = m.value[0]; 37 this->value[1] = m.value[1]; [all …]
|
D | type_mat3x2.inl | 13 this->value[0] = col_type(1, 0); 14 this->value[1] = col_type(0, 1); 15 this->value[2] = col_type(0, 0); 24 this->value[0] = m.value[0]; 25 this->value[1] = m.value[1]; 26 this->value[2] = m.value[2]; 34 this->value[0] = m.value[0]; 35 this->value[1] = m.value[1]; 36 this->value[2] = m.value[2]; 46 this->value[0] = col_type(scalar, 0); [all …]
|
D | type_mat3x3.inl | 15 this->value[0] = col_type(1, 0, 0); 16 this->value[1] = col_type(0, 1, 0); 17 this->value[2] = col_type(0, 0, 1); 26 this->value[0] = m.value[0]; 27 this->value[1] = m.value[1]; 28 this->value[2] = m.value[2]; 36 this->value[0] = m.value[0]; 37 this->value[1] = m.value[1]; 38 this->value[2] = m.value[2]; 48 this->value[0] = col_type(scalar, 0, 0); [all …]
|
D | type_mat3x4.inl | 13 this->value[0] = col_type(1, 0, 0, 0); 14 this->value[1] = col_type(0, 1, 0, 0); 15 this->value[2] = col_type(0, 0, 1, 0); 24 this->value[0] = m.value[0]; 25 this->value[1] = m.value[1]; 26 this->value[2] = m.value[2]; 34 this->value[0] = m.value[0]; 35 this->value[1] = m.value[1]; 36 this->value[2] = m.value[2]; 46 this->value[0] = col_type(scalar, 0, 0, 0); [all …]
|
D | type_mat4x4.inl | 15 this->value[0] = col_type(1, 0, 0, 0); 16 this->value[1] = col_type(0, 1, 0, 0); 17 this->value[2] = col_type(0, 0, 1, 0); 18 this->value[3] = col_type(0, 0, 0, 1); 27 this->value[0] = m[0]; 28 this->value[1] = m[1]; 29 this->value[2] = m[2]; 30 this->value[3] = m[3]; 38 this->value[0] = m[0]; 39 this->value[1] = m[1]; [all …]
|
D | type_mat2x2.inl | 15 this->value[0] = col_type(1, 0); 16 this->value[1] = col_type(0, 1); 25 this->value[0] = m.value[0]; 26 this->value[1] = m.value[1]; 34 this->value[0] = m.value[0]; 35 this->value[1] = m.value[1]; 45 this->value[0] = col_type(scalar, 0); 46 this->value[1] = col_type(0, scalar); 56 this->value[0] = col_type(x0, y0); 57 this->value[1] = col_type(x1, y1); [all …]
|
D | type_mat2x3.inl | 13 this->value[0] = col_type(1, 0, 0); 14 this->value[1] = col_type(0, 1, 0); 23 this->value[0] = m.value[0]; 24 this->value[1] = m.value[1]; 32 this->value[0] = m.value[0]; 33 this->value[1] = m.value[1]; 43 this->value[0] = col_type(scalar, 0, 0); 44 this->value[1] = col_type(0, scalar, 0); 54 this->value[0] = col_type(x0, y0, z0); 55 this->value[1] = col_type(x1, y1, z1); [all …]
|
D | type_mat2x4.inl | 13 this->value[0] = col_type(1, 0, 0, 0); 14 this->value[1] = col_type(0, 1, 0, 0); 23 this->value[0] = m.value[0]; 24 this->value[1] = m.value[1]; 32 this->value[0] = m.value[0]; 33 this->value[1] = m.value[1]; 44 this->value[0] = col_type(scalar, Zero, Zero, Zero); 45 this->value[1] = col_type(Zero, scalar, Zero, Zero); 55 this->value[0] = col_type(x0, y0, z0, w0); 56 this->value[1] = col_type(x1, y1, z1, w1); [all …]
|
D | type_vec3.inl | 145 assert(i >= 0 && i < this->length()); 152 assert(i >= 0 && i < this->length()); 162 this->x = v.x; 163 this->y = v.y; 164 this->z = v.z; 165 return *this; 173 this->x = static_cast<T>(v.x); 174 this->y = static_cast<T>(v.y); 175 this->z = static_cast<T>(v.z); 176 return *this; [all …]
|
D | type_vec2.inl | 103 assert(i >= 0 && i < this->length()); 110 assert(i >= 0 && i < this->length()); 120 this->x = v.x; 121 this->y = v.y; 122 return *this; 130 this->x = static_cast<T>(v.x); 131 this->y = static_cast<T>(v.y); 132 return *this; 139 this->x += static_cast<T>(scalar); 140 this->y += static_cast<T>(scalar); [all …]
|
D | type_vec1.inl | 72 assert(i >= 0 && i < this->length()); 79 assert(i >= 0 && i < this->length()); 89 this->x = v.x; 90 return *this; 98 this->x = static_cast<T>(v.x); 99 return *this; 106 this->x += static_cast<T>(scalar); 107 return *this; 114 this->x += static_cast<T>(v.x); 115 return *this; [all …]
|
/hardware/google/gfxstream/guest/mesa/include/android_stub/log/ |
D | log_time.h | 62 return !(*this == T); 70 return !(*this < T); 78 return !(*this > T); 86 return !(*this == T); 93 return !(*this < T); 100 return !(*this > T); 105 if (*this <= T) { 106 return *this = log_time(EPOCH); 109 if (this->tv_nsec < T.tv_nsec) { 110 --this->tv_sec; [all …]
|
/hardware/interfaces/audio/aidl/default/include/core-impl/ |
D | ChildInterface.h | 37 this->first = std::move(c); 38 return *this; 40 explicit operator bool() const { return !!this->first; } 41 C& operator*() const { return *(this->first); } 42 C* operator->() const { return this->first; } 43 std::shared_ptr<C> getPtr() { return this->first; } in getPtr() 47 return this->first; in getInstance() 50 if (this->second.get() == nullptr) { in getBinder() 51 const auto binder = this->second = this->first->asBinder(); in getBinder() 55 return this->second.get(); in getBinder()
|
/hardware/google/gfxstream/guest/android-emu/aemu/base/ |
D | Optional.h | 197 if (this->constructed()) { in Optional() 202 if (this->constructed()) { in Optional() 212 if (this->constructed()) { in Optional() 222 if (this->constructed()) { in Optional() 248 if (&other == this) { 249 return *this; 252 if (this->constructed()) { 257 this->setConstructed(false); 262 this->setConstructed(true); 267 return *this; [all …]
|
/hardware/google/aemu/base/include/aemu/base/ |
D | Optional.h | 201 if (this->constructed()) { in Optional() 206 if (this->constructed()) { in Optional() 216 if (this->constructed()) { in Optional() 226 if (this->constructed()) { in Optional() 252 if (&other == this) { 253 return *this; 256 if (this->constructed()) { 261 this->setConstructed(false); 266 this->setConstructed(true); 271 return *this; [all …]
|
/hardware/ril/libril/ |
D | rilSocketQueue.h | 107 temp = this->front; in dequeue() 108 if(NULL != this->front->p_next) { in dequeue() 109 this->front = this->front->p_next; in dequeue() 111 this->front = NULL; in dequeue() 123 if(NULL == this->front) { in enqueue() 124 this->front = request; in enqueue() 127 request->p_next = this->front; in enqueue() 128 this->front = request; in enqueue() 141 for(T **ppCur = &(this->front); *ppCur != NULL; ppCur = &((*ppCur)->p_next)) { in checkAndDequeue() 160 if(this->front == NULL) { in empty()
|
/hardware/interfaces/sensors/2.1/ |
D | types.hal | 5 * you may not use this file except in compliance with the License. 30 * A sensor of this type measures the angle, in degrees, between two 31 * integral parts of the device. Movement of a hinge measured by this sensor 58 * handle that identifies this sensors. This handle is used to reference 59 * this sensor throughout the HAL API. 64 * Name of this sensor. 73 * version of the hardware part + driver. The value of this field 75 * output of this sensor. This is important for fused sensors when the 80 /** this sensor's type. */ 84 * type of this sensor as a string. [all …]
|
/hardware/google/aemu/base/include/aemu/base/network/ |
D | IpAddress.h | 117 IpAddress(const IpAddress& other) { copyFrom(this, &other); } in IpAddress() 120 if (*this != other) { 121 copyFrom(this, &other); 123 return *this; 126 IpAddress(IpAddress&& other) { copyFrom(this, &other); } in IpAddress() 129 copyFrom(this, &other); 130 return *this; 136 bool operator!=(const IpAddress& other) const { return !(*this == other); }
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/ |
D | README | 4 this will run enable and disable sequence sequentially. 5 In the enable sequence, this will enable all the engines, output, and all dmp 7 In the disable sequence, this will disable all but accel engine; all outputs 11 this set the enable sequence to 10 seconds and disable sequence for 1 seconds. 14 this includes the compass in the enable sequence when you have 9150 or other 18 this set the enable and disable sequences to last a random time. It is good 22 this enables motion interrupt during the disable sequence. 23 When this is enabled, the driver enters low power accel mode and disables all
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | VK_EXT_primitives_generated_query.adoc | 30 as in this extension, it is only available while transform feedback is 47 3) On some hardware, this query cannot be implemented if 50 How will this be handled? 52 *RESOLVED*: A feature flag is exposed by this extension for this. 57 A feature flag is exposed by this extension so the OpenGL implementation on 60 4) On some hardware, this query cannot be implemented for non-zero query 62 How will this be handled? 64 *RESOLVED*: A feature flag is exposed by this extension for this. 65 If this feature is not present, the query from `VK_EXT_transform_feedback` 68 5) How is the interaction of this extension with
|
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/ |
D | TriState.h | 52 return *this; 58 return *this; 65 return *this; 69 TriState<T> tmp(*this); 78 return *this; 82 TriState<T> tmp(*this); 89 TriState<T> tmp(*this); \ 108 return *this; \ 114 return *this; \ 131 return *this; \ [all …]
|