/device/generic/vulkan-cereal/third-party/glm/include/glm/gtx/ |
D | simd_mat4.inl | 22 return this->Data[i]; 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); 54 this->Data[2] = fvec4SIMD(0, 0, s, 0); 55 this->Data[3] = fvec4SIMD(0, 0, 0, s); [all …]
|
D | simd_vec4.inl | 13 : Data(_mm_set_ps(0.0f, 0.0f, 0.0f, 0.0f)) 20 Data(v.Data) 24 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(__m128 const & Data) : argument 25 Data(Data) 29 Data(_mm_set_ps(v.w, v.z, v.y, v.x)) 36 Data(_mm_set1_ps(s)) 40 // Data(_mm_setr_ps(x, y, z, w)) 41 Data(_mm_set_ps(w, z, y, x)) 45 Data(_mm_load_ps(v)) 57 Data(_mm_set_ps(s2, s1, v.y, v.x)) [all …]
|
D | simd_quat.inl | 31 : Data(_mm_set_ps(1.0f, 0.0f, 0.0f, 0.0f)) 38 Data(q.Data) 42 GLM_FUNC_QUALIFIER fquatSIMD::fquatSIMD(__m128 const & Data) : argument 43 Data(Data) 50 Data(_mm_set_ps(w, z, y, x)) 54 Data(_mm_set_ps(q.w, q.z, q.y, q.x)) 62 Data = _mm_set_ps( 76 this->Data = q.Data; 83 this->Data = _mm_mul_ps(this->Data, _mm_set_ps1(s)); 89 this->Data = _mm_div_ps(Data, _mm_set1_ps(s)); [all …]
|
D | simd_quat.hpp | 54 __m128 Data; member 58 __m128 Data; variable 66 fquatSIMD(__m128 const & Data);
|
D | simd_vec4.hpp | 77 __m128 Data; member 81 __m128 Data; variable 89 fvec4SIMD(__m128 const & Data);
|
/device/generic/goldfish-opengl/android-emu/aemu/base/containers/ |
D | HybridComponentManager.h | 26 class Data> 29 using UCM = UnpackedComponentManager<32, 16, 16, Data>; 30 using EM = EntityManager<32, 16, 16, Data>; 35 void add(IndexType index, const Data& data) { in add() 61 Data* get(IndexType index) { in get() 71 const Data* get_const(IndexType index) const { in get_const() 81 Data* getExceptZero(IndexType index) { in getExceptZero() 82 Data* res = get(index); in getExceptZero() 88 const Data* getExceptZero_const(IndexType index) const { in getExceptZero_const() 89 const Data* res = get_const(index); in getExceptZero_const() [all …]
|
D | EntityManager.h | 410 class Data> 419 … std::function<void(bool, ComponentHandle componentHandle, EntityHandle entityHandle, Data& data)>; 420 …function<void(bool, ComponentHandle componentHandle, EntityHandle entityHandle, const Data& data)>; 430 const Data& data, 476 Data* getByEntity(EntityHandle h) { 480 Data* getByComponent(ComponentHandle h) { 510 Data data; 526 class Data> 532 … std::function<void(bool, ComponentHandle componentHandle, EntityHandle entityHandle, Data& data)>; 534 …function<void(bool, ComponentHandle componentHandle, EntityHandle entityHandle, const Data& data)>; [all …]
|
D | SmallVector.h | 294 offsetof(Data, array) == 0, in SmallFixedVector() 397 union Data { union 400 Data() {} in Data() function 401 ~Data() {} in ~Data()
|
/device/generic/vulkan-cereal/third-party/glm/include/glm/gtc/ |
D | quaternion_simd.inl | 18 …__m128 const mul0 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(0, 1, 2, 3))); 19 …__m128 const mul1 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(1, 0, 3, 2))); 20 …__m128 const mul2 = _mm_mul_ps(q1.Data, _mm_shuffle_ps(q2.Data, q2.Data, _MM_SHUFFLE(2, 3, 0, 1))); 21 __m128 const mul3 = _mm_mul_ps(q1.Data, q2.Data); 190 Result.data = _mm_add_ps(v.Data, _mm_add_ps(uv, uuv));
|
/device/google/cuttlefish/guest/hals/gatekeeper/remote/ |
D | remote_gatekeeper.cpp | 53 reinterpret_cast<const hw_auth_token_t*>(buffer.Data<uint8_t>()); in sizedBuffer2AidlHWToken() 104 response.enrolled_password_handle.Data<::gatekeeper::password_handle_t>(); in enroll() 108 {response.enrolled_password_handle.Data<uint8_t>(), in enroll() 109 (response.enrolled_password_handle.Data<uint8_t>() + in enroll()
|
/device/google/cuttlefish/host/commands/test_gce_driver/ |
D | test_gce_driver.proto | 32 Data data = 6; 68 message Data { message
|
/device/generic/goldfish-opengl/shared/qemupipe/ |
D | qemu_pipe_guest.cpp | 32 Data = 5000, enumerator 115 fd = open_verbose_vsock(VsockPort::Data, flags); in open_verbose()
|
/device/generic/vulkan-cereal/stream-servers/apigen-codec-common/X11/ |
D | Xlibint.h | 573 #define Data(dpy, data, len) {\ macro 608 #define Data16(dpy, data, len) Data((dpy), (char *)(data), (len)) 624 #define Data32(dpy, data, len) Data((dpy), (char *)(data), (len)) 866 extern void Data(Display *dpy, char *data, long len);
|
/device/google/gs-common/radio/sepolicy/ |
D | file.te | 1 # Data
|
/device/google/gs-common/camera/sepolicy/ |
D | file_contexts | 4 # Data
|
/device/google/gs201-sepolicy/widevine/ |
D | file_contexts | 4 # Data
|
/device/google/zuma-sepolicy/widevine/ |
D | file_contexts | 4 # Data
|
/device/google/zuma-sepolicy/legacy/whitechapel_pro/ |
D | file.te | 1 # Data
|
/device/google/zuma-sepolicy/radio/ |
D | file.te | 1 # Data
|
/device/google/redbull-sepolicy/vendor/google/ |
D | vendor_init.te | 33 # IPA Data Stall Detection
|
D | file.te | 40 # IPA Data Stall Detection
|
/device/google/sunfish-sepolicy/vendor/google/ |
D | vendor_init.te | 43 # IPA Data Stall Detection
|
/device/google/contexthub/firmware/os/drivers/intersil_isl29034/ |
D | README | 6 B. Data rates: 10 Hz
|
/device/google/zuma-sepolicy/vendor/ |
D | file.te | 44 # Data
|
/device/google/contexthub/firmware/os/drivers/st_acc44/ |
D | README | 12 D. Data ready reported by interrupt
|