/device/generic/vulkan-cereal/stream-servers/vulkan/cereal/common/ |
D | goldfish_vk_testing.cpp | 42 const VkExtent2D* a, 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() 51 const VkExtent3D* a, 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() 61 const VkOffset2D* a, 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 | 40 const VkExtent2D* a, 45 const VkExtent3D* a, 50 const VkOffset2D* a, 55 const VkOffset3D* a, 60 const VkRect2D* a, 65 const VkBaseInStructure* a, 70 const VkBaseOutStructure* a, 75 const VkBufferMemoryBarrier* a, 80 const VkDispatchIndirectCommand* a, 85 const VkDrawIndexedIndirectCommand* a, [all …]
|
/device/generic/vulkan-cereal/third-party/googletest/googlemock/test/ |
D | gmock-spec-builders_test.cc | 236 MockA a; in TEST() local 237 MockA* pa = &a; in TEST() 240 EXPECT_EQ(&a + 1, pa); in TEST() 244 MockA a; in TEST() local 247 ON_CALL(a, DoA(n++)); in TEST() 254 MockA a; in TEST() local 256 ON_CALL(a, DoA(5)) in TEST() 258 ON_CALL(a, DoA(_)) in TEST() 264 MockA a; in TEST() local 267 ON_CALL(a, ReturnResult(_)) in TEST() [all …]
|
D | gmock-more-actions_test.cc | 91 int SumOf4(int a, int b, int c, int d) { return a + b + c + d; } in SumOf4() argument 93 int SumOfFirst2(int a, int b, Unused, Unused) { return a + b; } in SumOfFirst2() argument 95 int SumOf5(int a, int b, int c, int d, int e) { return a + b + c + d + e; } in SumOf5() argument 98 int operator()(int a, int b, int c, int d, int e) { in operator ()() 99 return a + b + c + d + e; in operator ()() 103 int SumOf6(int a, int b, int c, int d, int e, int f) { in SumOf6() argument 104 return a + b + c + d + e + f; in SumOf6() 108 int operator()(int a, int b, int c, int d, int e, int f) { in operator ()() 109 return a + b + c + d + e + f; in operator ()() 150 int SumOf4(int a, int b, int c, int d) const { in SumOf4() argument [all …]
|
/device/generic/vulkan-cereal/protocols/vulkan/out/katex/ |
D | katex.min.js | 1 …a(e,t,r){function i(s,l){if(!t[s]){if(!e[s]){var o=typeof require=="function"&&require;if(!l&&o)re… field 2 …a=[n.mathsym("m",e.mode),n.mathsym("o",e.mode),n.mathsym("d",e.mode)];if(e.value.modType==="bmod")… property 4 …a=e("./utils");var i=e("./ParseError");var n=e("./parseData");var s=n.ParseNode;function l(e,r,a){… argument
|
/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 98 #define _XSyncValueIsZero(a) ((a).lo==0 && (a).hi==0) argument [all …]
|
D | XKBstr.h | 121 #define XkbModActionVMods(a) \ argument 122 ((short)(((a)->vmods1<<8)|((a)->vmods2))) 123 #define XkbSetModActionVMods(a,v) \ argument 124 (((a)->vmods1=(((v)>>8)&0xff)),(a)->vmods2=((v)&0xff)) 131 #define XkbSAGroup(a) (XkbCharToInt((a)->group_XXX)) argument 132 #define XkbSASetGroup(a,g) ((a)->group_XXX=(g)) argument 153 #define XkbPtrActionX(a) (Xkb2CharsToInt((a)->high_XXX,(a)->low_XXX)) argument 154 #define XkbPtrActionY(a) (Xkb2CharsToInt((a)->high_YYY,(a)->low_YYY)) argument 155 #define XkbSetPtrActionX(a,x) (XkbIntTo2Chars(x,(a)->high_XXX,(a)->low_XXX)) argument 156 #define XkbSetPtrActionY(a,y) (XkbIntTo2Chars(y,(a)->high_YYY,(a)->low_YYY)) argument [all …]
|
/device/generic/vulkan-cereal/third-party/angle/src/common/ |
D | matrix_utils.cpp | 243 const float *a = 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() 249 a[3] * b[0] + a[7] * b[1] + a[11] * b[2] + a[15] * b[3], in product() 251 a[0] * b[4] + a[4] * b[5] + a[8] * b[6] + a[12] * b[7], in product() 252 a[1] * b[4] + a[5] * b[5] + a[9] * b[6] + a[13] * b[7], in product() 253 a[2] * b[4] + a[6] * b[5] + a[10] * b[6] + a[14] * b[7], in product() 254 a[3] * b[4] + a[7] * b[5] + a[11] * b[6] + a[15] * b[7], in product() 256 a[0] * b[8] + a[4] * b[9] + a[8] * b[10] + a[12] * b[11], in product() [all …]
|
/device/generic/vulkan-cereal/third-party/angle/util/ |
D | Matrix.cpp | 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 *() 227 a.data[12] * b.data[7], in operator *() 228 a.data[0] * b.data[8] + a.data[4] * b.data[9] + a.data[8] * b.data[10] + in operator *() 229 a.data[12] * b.data[11], in operator *() 230 a.data[0] * b.data[12] + a.data[4] * b.data[13] + a.data[8] * b.data[14] + in operator *() 231 a.data[12] * b.data[15], in operator *() 232 a.data[1] * b.data[0] + a.data[5] * b.data[1] + a.data[9] * b.data[2] + in operator *() [all …]
|
/device/generic/vulkan-cereal/protocols/vulkan/katex/ |
D | katex.min.js | 1 …a){if(e[a])return e[a].exports;var n=e[a]={i:a,l:!1,exports:{}};return t[a].call(n.exports,n,n.exp… variable
|
/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 196 a ^= c; a -= rot(c,11); \ 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 196 a ^= c; a -= rot(c,11); \ 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 196 a ^= c; a -= rot(c,11); \ 197 b ^= a; b -= rot(a,25); \ [all …]
|
/device/generic/goldfish-opengl/system/vulkan_enc/ |
D | vk_util.h | 103 __vk_outarray_init(struct __vk_outarray *a, in __vk_outarray_init() argument 106 a->data = data; in __vk_outarray_init() 107 a->cap = *len; in __vk_outarray_init() 108 a->filled_len = len; in __vk_outarray_init() 109 *a->filled_len = 0; in __vk_outarray_init() 110 a->wanted_len = 0; in __vk_outarray_init() 112 if (a->data == NULL) in __vk_outarray_init() 113 a->cap = UINT32_MAX; in __vk_outarray_init() 117 __vk_outarray_status(const struct __vk_outarray *a) in __vk_outarray_status() argument 119 if (*a->filled_len < a->wanted_len) in __vk_outarray_status() [all …]
|
/device/generic/vulkan-cereal/include/glm/gtx/ |
D | io.inl | 14 GLM_FUNC_QUALIFIER format_punct<CTy>::format_punct(size_t a) argument 15 : std::locale::facet(a) 28 GLM_FUNC_QUALIFIER format_punct<CTy>::format_punct(format_punct const& a) argument 30 , formatted(a.formatted) 31 , precision(a.precision) 32 , width(a.width) 33 , separator(a.separator) 34 , delim_left(a.delim_left) 35 , delim_right(a.delim_right) 36 , space(a.space) [all …]
|
/device/generic/vulkan-cereal/protocols/vulkan/chapters/ |
D | formats.txt | 32 * ename:VK_FORMAT_R4G4_UNORM_PACK8 specifies a two-component, 8-bit packed 33 unsigned normalized format that has a 4-bit R component in bits 4..7, 34 and a 4-bit G component in bits 0..3. 35 * ename:VK_FORMAT_R4G4B4A4_UNORM_PACK16 specifies a four-component, 16-bit 36 packed unsigned normalized format that has a 4-bit R component in bits 37 12..15, a 4-bit G component in bits 8..11, a 4-bit B component in bits 38 4..7, and a 4-bit A component in bits 0..3. 39 * ename:VK_FORMAT_B4G4R4A4_UNORM_PACK16 specifies a four-component, 16-bit 40 packed unsigned normalized format that has a 4-bit B component in bits 41 12..15, a 4-bit G component in bits 8..11, a 4-bit R component in bits [all …]
|
D | VK_EXT_debug_utils.txt | 11 describes how to associate either a name or binary data with a specific 15 annotate and group the work submitted to a queue. 18 describes how to associate logical elements of the scene with commands in a 23 callback to capture debug messages from a variety of Vulkan components. 29 It can be useful for an application to provide its own content relative to a 38 An object can be provided a user-defined name by calling 41 [open,refpage='vkSetDebugUtilsObjectNameEXT',desc='Give a user-friendly name to an object',type='pr… 46 * pname:pNameInfo is a pointer to a slink:VkDebugUtilsObjectNameInfoEXT 60 [open,refpage='VkDebugUtilsObjectNameInfoEXT',desc='Specify parameters of a name to give to an obje… 67 * pname:pNext is `NULL` or a pointer to a structure extending this [all …]
|
/device/generic/vulkan-cereal/protocols/vulkan/appendices/ |
D | VK_KHR_win32_surface.txt | 34 It provides a mechanism to create a slink:VkSurfaceKHR object (defined by 35 the `apiext:VK_KHR_surface` extension) that refers to a Win32 code:HWND, as 36 well as a query to determine support for rendering to the windows desktop. 42 1) Does Win32 need a way to query for compatibility between a particular 43 physical device and a specific screen? Compatibility between a physical 44 device and a window generally only depends on what screen the window is on. 45 However, there is not an obvious way to identify a screen without already 46 having a window on the screen. 49 While it may be useful, there is not a clear way to do this on Win32. 50 However, a method was added to query support for presenting to the windows [all …]
|
D | glossary.txt | 24 A descriptor binding is accessible to a shader stage if that stage is 35 When a descriptor with _mutable_ type is updated with 59 A vertex in an adjacency primitive topology that is not part of a given 64 A primitive or instance in a ray tracing acceleration structure which 65 has a corresponding ID, and is not _inactive_ (meaning that it is 78 behavior but a different name. 81 A range of a device memory allocation that is bound to multiple 85 An association of a host memory allocation to a parent object or 92 pixel, where each aspect is used in a particular way by the pipeline and 95 aspect of the image, and may: be used as a framebuffer color attachment. [all …]
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/d3d/d3d11/shaders/ |
D | MultiplyAlpha.hlsl | 3 // Use of this source code is governed by a BSD-style license that can be 22 color.rgb = color.r * color.a; 23 color.a = 1.0f; 29 if (color.a > 0.0f) 31 color.rgb = color.r / color.a; 33 color.a = 1.0f; 41 color.rgb = color.r * color.a; 48 if (color.a > 0.0f) 50 color.rgb = color.r / color.a; 59 color.rgb *= color.a; [all …]
|
/device/generic/vulkan-cereal/protocols/vulkan/chapters/VK_EXT_display_control/ |
D | fence_events.txt | 7 Besides submitting a fence to a queue as part of a 8 <<devsandqueues-submission, queue submission>> command, a fence may: also be 9 signaled when a particular event occurs on a device or display. 11 [open,refpage='vkRegisterDeviceEventEXT',desc='Signal a fence when a device event occurs',type='pro… 13 To create a fence that will be signaled when an event occurs on a device, 18 * pname:device is a logical device on which the event may: occur. 19 * pname:pDeviceEventInfo is a pointer to a slink:VkDeviceEventInfoEXT 23 * pname:pFence is a pointer to a handle in which the resulting fence 29 [open,refpage='VkDeviceEventInfoEXT',desc='Describe a device event to create',type='structs'] 36 * pname:pNext is `NULL` or a pointer to a structure extending this [all …]
|
/device/google/contexthub/firmware/lib/builtins/ |
D | aeabi_l2f.c | 25 float __aeabi_l2f(di_int a); 28 __aeabi_l2f(di_int a) in __aeabi_l2f() argument 30 if (a == 0) in __aeabi_l2f() 33 const di_int s = a >> (N-1); in __aeabi_l2f() 34 a = (a ^ s) - s; in __aeabi_l2f() 35 int sd = N - __builtin_clzll(a); /* number of significant digits */ in __aeabi_l2f() 50 a <<= 1; in __aeabi_l2f() 55 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) | in __aeabi_l2f() 56 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0); in __aeabi_l2f() 59 a |= (a & 4) != 0; /* Or P into R */ in __aeabi_l2f() [all …]
|
/device/generic/vulkan-cereal/protocols/vulkan/katex/contrib/ |
D | render-a11y-string.min.js | 1 …a in t)("object"==typeof exports?exports:e)[a]=t[a]}}("undefined"!=typeof self?self:this,function(… argument
|
/device/generic/vulkan-cereal/protocols/vulkan/chapters/commonvalidity/ |
D | draw_dispatch_common.txt | 8 If a slink:VkSampler created with pname:magFilter or pname:minFilter 10 ename:VK_FALSE is used to sample a slink:VkImageView as a result of this 15 If a slink:VkSampler created with pname:mipmapMode equal to 17 ename:VK_FALSE is used to sample a slink:VkImageView as a result of this 22 If a sname:VkImageView is accessed using atomic operations as a result 28 If a sname:VkImageView is sampled with ename:VK_FILTER_CUBIC_EXT as a 34 Any slink:VkImageView being sampled with ename:VK_FILTER_CUBIC_EXT as a 35 result of this command must: not have a elink:VkImageViewType of 41 Any slink:VkImageView being sampled with ename:VK_FILTER_CUBIC_EXT as a 42 result of this command must: have a elink:VkImageViewType and format [all …]
|
/device/generic/vulkan-cereal/third-party/googletest/docs/reference/ |
D | matchers.md | 3 A **matcher** matches a *single* argument. You can use it inside `ON_CALL()` or 4 `EXPECT_CALL()`, or use it to validate a value directly using two macros: 9 …| The same as `EXPECT_THAT(actual_value, matcher)`, except that it generates a **fatal** failure. | 40 | `IsFalse()` | `argument` evaluates to `false` in a Boolean context. | 41 | `IsTrue()` | `argument` evaluates to `true` in a Boolean context. | 42 | `IsNull()` | `argument` is a `NULL` pointer (raw or smart). | 43 | `NotNull()` | `argument` is a non-null pointer (raw or smart). | 44 | `Optional(m)` | `argument` is `optional<>` that contains a value matching `m`. (For test… 45 | `VariantWith<T>(m)` | `argument` is `variant<>` that holds the alternative of type T with a va… 46 | `Ref(variable)` | `argument` is a reference to `variable`. | [all …]
|