/device/generic/vulkan-cereal/stream-servers/vulkan/cereal/common/ |
D | goldfish_vk_testing.cpp | 43 const VkExtent2D* b, in checkEqual_VkExtent2D() argument 46 if (!((a->width) == (b->width))) { onFail("a->width (Error: Value not equal)"); }; in checkEqual_VkExtent2D() 47 if (!((a->height) == (b->height))) { onFail("a->height (Error: Value not equal)"); }; in checkEqual_VkExtent2D() 52 const VkExtent3D* b, in checkEqual_VkExtent3D() argument 55 if (!((a->width) == (b->width))) { onFail("a->width (Error: Value not equal)"); }; in checkEqual_VkExtent3D() 56 if (!((a->height) == (b->height))) { onFail("a->height (Error: Value not equal)"); }; in checkEqual_VkExtent3D() 57 if (!((a->depth) == (b->depth))) { onFail("a->depth (Error: Value not equal)"); }; in checkEqual_VkExtent3D() 62 const VkOffset2D* b, in checkEqual_VkOffset2D() argument 65 if (!((a->x) == (b->x))) { onFail("a->x (Error: Value not equal)"); }; in checkEqual_VkOffset2D() 66 if (!((a->y) == (b->y))) { onFail("a->y (Error: Value not equal)"); }; in checkEqual_VkOffset2D() [all …]
|
D | goldfish_vk_testing.h | 41 const VkExtent2D* b, 46 const VkExtent3D* b, 51 const VkOffset2D* b, 56 const VkOffset3D* b, 61 const VkRect2D* b, 66 const VkBaseInStructure* b, 71 const VkBaseOutStructure* b, 76 const VkBufferMemoryBarrier* b, 81 const VkDispatchIndirectCommand* b, 86 const VkDrawIndexedIndirectCommand* b, [all …]
|
/device/generic/vulkan-cereal/third-party/angle/src/common/ |
D | matrix_utils.cpp | 167 Mat4 Mat4::Frustum(float l, float r, float b, float t, float n, float f) in Frustum() argument 172 float tpb = t + b; in Frustum() 173 float tmb = t - b; in Frustum() 209 Mat4 Mat4::Ortho(float l, float r, float b, float t, float n, float f) in Ortho() argument 213 float tpb = t + b; in Ortho() 214 float tmb = t - b; in Ortho() 244 const float *b = m.mElements.data(); in product() local 246 return Mat4(a[0] * b[0] + a[4] * b[1] + a[8] * b[2] + a[12] * b[3], in product() 247 a[1] * b[0] + a[5] * b[1] + a[9] * b[2] + a[13] * b[3], in product() 248 a[2] * b[0] + a[6] * b[1] + a[10] * b[2] + a[14] * b[3], in product() [all …]
|
/device/google/coral/ |
D | init.msm.usb.configfs.rc | 31 rm /config/usb_gadget/g1/configs/b.1/f1 32 rm /config/usb_gadget/g1/configs/b.1/f2 33 rm /config/usb_gadget/g1/configs/b.1/f3 34 rm /config/usb_gadget/g1/configs/b.1/f4 35 rm /config/usb_gadget/g1/configs/b.1/f5 36 rm /config/usb_gadget/g1/configs/b.1/f6 37 rm /config/usb_gadget/g1/configs/b.1/f7 38 rm /config/usb_gadget/g1/configs/b.1/f8 39 rm /config/usb_gadget/g1/configs/b.1/f9 42 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "msc" [all …]
|
/device/google/sunfish/ |
D | init.msm.usb.configfs.rc | 31 rm /config/usb_gadget/g1/configs/b.1/f1 32 rm /config/usb_gadget/g1/configs/b.1/f2 33 rm /config/usb_gadget/g1/configs/b.1/f3 34 rm /config/usb_gadget/g1/configs/b.1/f4 35 rm /config/usb_gadget/g1/configs/b.1/f5 36 rm /config/usb_gadget/g1/configs/b.1/f6 37 rm /config/usb_gadget/g1/configs/b.1/f7 38 rm /config/usb_gadget/g1/configs/b.1/f8 39 rm /config/usb_gadget/g1/configs/b.1/f9 42 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "msc" [all …]
|
/device/google/redbull/ |
D | init.msm.usb.configfs.rc | 31 rm /config/usb_gadget/g1/configs/b.1/f1 32 rm /config/usb_gadget/g1/configs/b.1/f2 33 rm /config/usb_gadget/g1/configs/b.1/f3 34 rm /config/usb_gadget/g1/configs/b.1/f4 35 rm /config/usb_gadget/g1/configs/b.1/f5 36 rm /config/usb_gadget/g1/configs/b.1/f6 37 rm /config/usb_gadget/g1/configs/b.1/f7 38 rm /config/usb_gadget/g1/configs/b.1/f8 39 rm /config/usb_gadget/g1/configs/b.1/f9 42 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "msc" [all …]
|
/device/generic/goldfish-opengl/android-emu/android/base/files/ |
D | Stream.cpp | 34 uint8_t b[2] = { (uint8_t)(value >> 8), (uint8_t)value }; in putBe16() local 35 write(b, 2U); in putBe16() 39 uint8_t b[2] = { 0, 0 }; in getBe16() local 40 read(b, 2U); in getBe16() 41 return ((uint16_t)b[0] << 8) | (uint16_t)b[1]; in getBe16() 45 uint8_t b[4] = { in putBe32() local 50 write(b, 4U); in putBe32() 54 uint8_t b[4] = { 0, 0, 0, 0 }; in getBe32() local 55 read(b, 4U); in getBe32() 56 return ((uint32_t)b[0] << 24) | in getBe32() [all …]
|
/device/generic/vulkan-cereal/base/ |
D | Stream.cpp | 34 uint8_t b[2] = { (uint8_t)(value >> 8), (uint8_t)value }; in putBe16() local 35 write(b, 2U); in putBe16() 39 uint8_t b[2] = { 0, 0 }; in getBe16() local 40 read(b, 2U); in getBe16() 41 return ((uint16_t)b[0] << 8) | (uint16_t)b[1]; in getBe16() 45 uint8_t b[4] = { in putBe32() local 50 write(b, 4U); in putBe32() 54 uint8_t b[4] = { 0, 0, 0, 0 }; in getBe32() local 55 read(b, 4U); in getBe32() 56 return ((uint32_t)b[0] << 24) | in getBe32() [all …]
|
/device/generic/vulkan-cereal/third-party/angle/util/ |
D | Matrix.cpp | 109 Matrix4 Matrix4::frustum(float l, float r, float b, float t, float n, float f) in frustum() argument 111 return Matrix4((2.0f * n) / (r - l), 0.0f, (r + l) / (r - l), 0.0f, 0.0f, (2.0f * n) / (t - b), in frustum() 112 (t + b) / (t - b), 0.0f, 0.0f, 0.0f, -(f + n) / (f - n), in frustum() 123 Matrix4 Matrix4::ortho(float l, float r, float b, float t, float n, float f) in ortho() argument 125 return Matrix4(2.0f / (r - l), 0.0f, 0.0f, -(r + l) / (r - l), 0.0f, 2.0f / (t - b), 0.0f, in ortho() 126 -(t + b) / (t - b), 0.0f, 0.0f, -2.0f / (f - n), -(f + n) / (f - n), 0.0f, 0.0f, in ortho() 222 Matrix4 operator*(const Matrix4 &a, const Matrix4 &b) in operator *() argument 224 return Matrix4(a.data[0] * b.data[0] + a.data[4] * b.data[1] + a.data[8] * b.data[2] + in operator *() 225 a.data[12] * b.data[3], in operator *() 226 a.data[0] * b.data[4] + a.data[4] * b.data[5] + a.data[8] * b.data[6] + in operator *() [all …]
|
/device/generic/vulkan-cereal/third-party/googletest/googlemock/test/ |
D | gmock-spec-builders_test.cc | 579 MockB b; in TEST() local 582 EXPECT_CALL(b, DoB()) in TEST() 584 EXPECT_CALL(b, DoB(1)) in TEST() 586 EXPECT_CALL(b, DoB(2)) in TEST() 591 EXPECT_CALL(b, DoB(3)) in TEST() 598 EXPECT_CALL(b, DoB(4)) in TEST() 604 b.DoB(2); in TEST() 605 b.DoB(3); in TEST() 615 MockB b; in TEST() local 618 EXPECT_CALL(b, DoB()) in TEST() [all …]
|
/device/generic/vulkan-cereal/stream-servers/apigen-codec-common/X11/extensions/ |
D | syncconst.h | 88 #define _XSyncValueGreaterThan(a, b)\ argument 89 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo)) 90 #define _XSyncValueLessThan(a, b)\ argument 91 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<(b).lo)) 92 #define _XSyncValueGreaterOrEqual(a, b)\ argument 93 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>=(b).lo)) 94 #define _XSyncValueLessOrEqual(a, b)\ argument 95 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<=(b).lo)) 96 #define _XSyncValueEqual(a, b) ((a).lo==(b).lo && (a).hi==(b).hi) argument 102 #define _XSyncValueAdd(presult,a,b,poverflow) {\ argument [all …]
|
/device/generic/vulkan-cereal/third-party/angle/scripts/ |
D | export_targets.py | 125 sys.stderr.buffer.write(b'"gn desc" failed. Is depot_tools in your PATH?\n') 169 INCLUDE_REGEX = re.compile(b'(?:^|\\n) *# *include +([<"])([^>"]+)[>"]') 170 assert INCLUDE_REGEX.match(b'#include "foo"') 171 assert INCLUDE_REGEX.match(b'\n#include "foo"') 177 b'compiler/translator/TranslatorESSL.h', 178 b'compiler/translator/TranslatorGLSL.h', 179 b'compiler/translator/TranslatorHLSL.h', 180 b'compiler/translator/TranslatorMetal.h', 181 b'compiler/translator/TranslatorVulkan.h', 182 b'libANGLE/renderer/d3d/DeviceD3D.h', [all …]
|
/device/google/redbull/json-c/ |
D | linkhash.c | 158 #define mix(a,b,c) \ argument 160 a -= c; a ^= rot(c, 4); c += b; \ 161 b -= a; b ^= rot(a, 6); a += c; \ 162 c -= b; c ^= rot(b, 8); b += a; \ 163 a -= c; a ^= rot(c,16); c += b; \ 164 b -= a; b ^= rot(a,19); a += c; \ 165 c -= b; c ^= rot(b, 4); b += a; \ 193 #define final(a,b,c) \ argument 195 c ^= b; c -= rot(b,14); \ 197 b ^= a; b -= rot(a,25); \ [all …]
|
/device/google/coral/json-c/ |
D | linkhash.c | 158 #define mix(a,b,c) \ argument 160 a -= c; a ^= rot(c, 4); c += b; \ 161 b -= a; b ^= rot(a, 6); a += c; \ 162 c -= b; c ^= rot(b, 8); b += a; \ 163 a -= c; a ^= rot(c,16); c += b; \ 164 b -= a; b ^= rot(a,19); a += c; \ 165 c -= b; c ^= rot(b, 4); b += a; \ 193 #define final(a,b,c) \ argument 195 c ^= b; c -= rot(b,14); \ 197 b ^= a; b -= rot(a,25); \ [all …]
|
/device/google/sunfish/json-c/ |
D | linkhash.c | 158 #define mix(a,b,c) \ argument 160 a -= c; a ^= rot(c, 4); c += b; \ 161 b -= a; b ^= rot(a, 6); a += c; \ 162 c -= b; c ^= rot(b, 8); b += a; \ 163 a -= c; a ^= rot(c,16); c += b; \ 164 b -= a; b ^= rot(a,19); a += c; \ 165 c -= b; c ^= rot(b, 4); b += a; \ 193 #define final(a,b,c) \ argument 195 c ^= b; c -= rot(b,14); \ 197 b ^= a; b -= rot(a,25); \ [all …]
|
/device/google/cuttlefish/host/frontend/webrtc_operator/certs/ |
D | trusted.pem | 5 5b:12:83:24:00:64:74:65:b5:10:1d:8b:d4:ab:2b:66:47:45:ad:7f 19 e7:44:83:b5:55:be:ec:37:f5:a7:f5:fc:4c:41:0b: 21 3b:f3:d8:2d:ef:6e:bc:89:ba:55:ed:04:35:d7:b6: 22 a8:78:47:70:ee:4a:4e:ba:42:94:1b:ce:d0:ed:b6: 23 56:96:c6:77:15:7f:e7:c5:2b:f5:1e:7b:f9:04:00: 24 71:a3:4b:b2:33:cb:6f:e4:a1:97:5b:04:7c:6e:c9: 25 85:08:21:2b:f2:2d:80:b6:09:4e:9f:25:52:57:71: 26 32:d7:c5:5b:fe:68:2d:f8:4e:18:13:a5:a8:6d:30: 30 71:43:e3:2b:cd:ce:c7:93:41:49:a9:49:53:e9:61: 32 b4:08:60:7f:85:2a:3f:fe:ea:eb:52:ed:8b:11:40: [all …]
|
/device/generic/vulkan-cereal/third-party/astc-codec/src/decoder/ |
D | quantization.cc | 32 int b = 0, c = 0; in GetUnquantizedTritValue() local 35 b = 0; in GetUnquantizedTritValue() 42 b = (x << 1) | (x << 2) | (x << 4) | (x << 8); in GetUnquantizedTritValue() 49 b = x | (x << 2) | (x << 7); in GetUnquantizedTritValue() 56 b = x | (x << 6); in GetUnquantizedTritValue() 63 b = (x >> 2) | (x << 5); in GetUnquantizedTritValue() 70 b = (x >> 4) | (x << 4); in GetUnquantizedTritValue() 80 int t = trit * c + b; in GetUnquantizedTritValue() 89 int b = 0, c = 0; in GetUnquantizedQuintValue() local 92 b = 0; in GetUnquantizedQuintValue() [all …]
|
/device/mediatek/wembley-sepolicy/non_plat/ |
D | file_contexts | 455 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/proinfo u:object_r:n… 456 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/nvram u:object_r:n… 457 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/nvdata u:object_r:n… 458 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/frp u:object_r:f… 459 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/expdb u:object_r:e… 460 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/misc2 u:object_r:m… 461 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/logo u:object_r:l… 462 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/para u:object_r:p… 463 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/misc u:object_r:m… 464 /dev/block/platform/mtk-\b(msdc|ufs)\b\.0/[0-9]+\.\b(msdc0|ufs0)\b/by-name/seccfg u:object_r:s… [all …]
|
/device/generic/vulkan-cereal/include/glm/detail/ |
D | _vectorize.hpp | 59 …ALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, tvec1<T, P> const & b) in call() 61 return tvec1<T, P>(Func(a.x, b.x)); in call() 68 …ALIFIER static tvec2<T, P> call(T (*Func) (T x, T y), tvec2<T, P> const & a, tvec2<T, P> const & b) in call() 70 return tvec2<T, P>(Func(a.x, b.x), Func(a.y, b.y)); in call() 77 …ALIFIER static tvec3<T, P> call(T (*Func) (T x, T y), tvec3<T, P> const & a, tvec3<T, P> const & b) in call() 79 return tvec3<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z)); in call() 86 …ALIFIER static tvec4<T, P> call(T (*Func) (T x, T y), tvec4<T, P> const & a, tvec4<T, P> const & b) in call() 88 return tvec4<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w)); in call() 98 GLM_FUNC_QUALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, T b) in call() 100 return tvec1<T, P>(Func(a.x, b)); in call() [all …]
|
D | type_vec4_simd.inl | 57 static tvec4<float, P> call(tvec4<float, P> const & a, tvec4<float, P> const & b) 60 Result.data = _mm_add_ps(a.data, b.data); 69 static tvec4<double, P> call(tvec4<double, P> const & a, tvec4<double, P> const & b) 72 Result.data = _mm256_add_pd(a.data, b.data); 81 static tvec4<float, P> call(tvec4<float, P> const & a, tvec4<float, P> const & b) 84 Result.data = _mm_sub_ps(a.data, b.data); 93 static tvec4<double, P> call(tvec4<double, P> const & a, tvec4<double, P> const & b) 96 Result.data = _mm256_sub_pd(a.data, b.data); 105 static tvec4<float, P> call(tvec4<float, P> const & a, tvec4<float, P> const & b) 108 Result.data = _mm_mul_ps(a.data, b.data); [all …]
|
/device/google/gs201-sepolicy/tracking_denials/ |
D | bug_map | 1 hal_input_processor_default vendor_display_prop file b/236200710 2 cat_engine_service_app system_app_data_file dir b/238705599 3 dumpstate app_zygote process b/237491813 4 dumpstate hal_input_processor_default process b/238260726 5 hal_drm_widevine default_prop file b/237492145 6 hal_googlebattery dumpstate fd b/238260742 7 hal_power_default hal_power_default capability b/237492146 8 hal_radioext_default radio_vendor_data_file file b/237093466 9 incidentd debugfs_wakeup_sources file b/237492091 10 init-insmod-sh vendor_ready_prop property_service b/239364360 [all …]
|
/device/google/sunfish-sepolicy/vendor/google/ |
D | bug_map | 1 cnd wifi_hal_prop file b/162700455 2 google_camera_app selinuxfs file b/175910397 3 hal_health_default unlabeled file b/156200409 4 hal_neuralnetworks_default default_prop file b/159570217 5 hal_vibrator_default default_prop file b/162700134 6 init_qti_chg_policy sysfs_charge file b/162702119 7 pixelstats_vendor sysfs file b/161875858 8 platform_app default_android_hwservice hwservice_manager b/156059972 9 shell debugfs file b/175106535 10 shell device_config_runtime_native_boot_prop file b/175106535 [all …]
|
/device/generic/vulkan-cereal/third-party/angle/src/compiler/translator/ |
D | ImmutableString.h | 72 constexpr bool operator==(const ImmutableString &b) const 74 if (mLength != b.mLength) 78 return memcmp(data(), b.data(), mLength) == 0; 80 constexpr bool operator!=(const ImmutableString &b) const { return !(*this == b); } 81 constexpr bool operator==(const char *b) const 83 if (b == nullptr) 87 return strcmp(data(), b) == 0; 89 constexpr bool operator!=(const char *b) const { return !(*this == b); } 90 bool operator==(const std::string &b) const 92 return mLength == b.length() && memcmp(data(), b.c_str(), mLength) == 0; [all …]
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/ |
D | Version.inc | 29 inline bool operator==(const Version &a, const Version &b) 31 return std::tie(a.major, a.minor) == std::tie(b.major, b.minor); 34 inline bool operator!=(const Version &a, const Version &b) 36 return std::tie(a.major, a.minor) != std::tie(b.major, b.minor); 39 inline bool operator>=(const Version &a, const Version &b) 41 return std::tie(a.major, a.minor) >= std::tie(b.major, b.minor); 44 inline bool operator<=(const Version &a, const Version &b) 46 return std::tie(a.major, a.minor) <= std::tie(b.major, b.minor); 49 inline bool operator<(const Version &a, const Version &b) 51 return std::tie(a.major, a.minor) < std::tie(b.major, b.minor); [all …]
|
/device/generic/vulkan-cereal/third-party/astc-codec/src/decoder/test/ |
D | intermediate_astc_block_test.cc | 137 auto b = UnpackIntermediateBlock(blk); in TEST() local 138 ASSERT_TRUE(b); in TEST() 140 const auto& data = b.value(); in TEST() 197 auto b = UnpackVoidExtent(void_extent_block); in TEST() local 198 ASSERT_TRUE(b); in TEST() 200 const auto& data = b.value(); in TEST() 203 EXPECT_EQ(data.b, 0); in TEST() 210 b = UnpackVoidExtent(PhysicalASTCBlock(more_interesting)); in TEST() 211 ASSERT_TRUE(b); in TEST() 213 const auto& other_data = b.value(); in TEST() [all …]
|