Home
last modified time | relevance | path

Searched refs:dec (Results 26 - 50 of 962) sorted by relevance

12345678910>>...39

/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross_parsed_ir.cpp357 auto &dec = meta[id].decoration; in set_decoration_string() local
358 dec.decoration_flags.set(decoration); in set_decoration_string()
363 dec.hlsl_semantic = argument; in set_decoration_string()
373 auto &dec = meta[id].decoration; in set_decoration() local
374 dec.decoration_flags.set(decoration); in set_decoration()
379 dec.builtin = true; in set_decoration()
380 dec.builtin_type = static_cast<BuiltIn>(argument); in set_decoration()
384 dec.location = argument; in set_decoration()
388 dec.component = argument; in set_decoration()
392 dec in set_decoration()
452 auto &dec = meta[id].members[index]; set_member_decoration() local
661 auto &dec = meta[id].decoration; unset_decoration() local
783 auto &dec = m->decoration; get_decoration_bitset() local
793 auto &dec = meta[id].members[index]; set_member_decoration_string() local
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_video_bsp.c35 nvc0_decoder_bsp_begin(struct nouveau_vp3_decoder *dec, unsigned comm_seq) in nvc0_decoder_bsp_begin() argument
37 struct nouveau_bo *bsp_bo = dec->bsp_bo[comm_seq % NOUVEAU_VP3_VIDEO_QDEPTH]; in nvc0_decoder_bsp_begin()
40 ret = nouveau_bo_map(bsp_bo, NOUVEAU_BO_WR, dec->client); in nvc0_decoder_bsp_begin()
46 nouveau_vp3_bsp_begin(dec); in nvc0_decoder_bsp_begin()
52 nvc0_decoder_bsp_next(struct nouveau_vp3_decoder *dec, in nvc0_decoder_bsp_next() argument
56 struct nouveau_bo *bsp_bo = dec->bsp_bo[comm_seq % NOUVEAU_VP3_VIDEO_QDEPTH]; in nvc0_decoder_bsp_next()
57 struct nouveau_bo *inter_bo = dec->inter_bo[comm_seq & 1]; in nvc0_decoder_bsp_next()
62 bsp_size = dec->bsp_ptr - (char *)bsp_bo->map; in nvc0_decoder_bsp_next()
78 ret = nouveau_bo_new(dec->client->device, NOUVEAU_BO_VRAM, 0, bsp_size, &cfg, &tmp_bo); in nvc0_decoder_bsp_next()
85 ret = nouveau_bo_map(tmp_bo, NOUVEAU_BO_WR, dec in nvc0_decoder_bsp_next()
134 nvc0_decoder_bsp_end(struct nouveau_vp3_decoder *dec, union pipe_desc desc, struct nouveau_vp3_video_buffer *target, unsigned comm_seq, unsigned *vp_caps, unsigned *is_ref, struct nouveau_vp3_video_buffer *refs[16]) nvc0_decoder_bsp_end() argument
[all...]
/third_party/node/test/parallel/
H A Dtest-whatwg-encoding-custom-textdecoder.js22 const dec = new TextDecoder(i);
23 assert.strictEqual(dec.encoding, 'utf-8');
24 const res = dec.decode(buf);
29 const dec = new TextDecoder(i);
31 res += dec.decode(buf.slice(0, 8), { stream: true });
32 res += dec.decode(buf.slice(8));
40 const dec = new TextDecoder(i, { ignoreBOM: true });
41 const res = dec.decode(buf);
46 const dec = new TextDecoder(i, { ignoreBOM: true });
48 res += dec
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv98_video_bsp.c35 nv98_decoder_bsp(struct nouveau_vp3_decoder *dec, union pipe_desc desc, in nv98_decoder_bsp() argument
42 struct nouveau_pushbuf *push = dec->pushbuf[0]; in nv98_decoder_bsp()
43 enum pipe_video_format codec = u_reduce_video_profile(dec->base.profile); in nv98_decoder_bsp()
48 struct nouveau_bo *bsp_bo = dec->bsp_bo[comm_seq % NOUVEAU_VP3_VIDEO_QDEPTH]; in nv98_decoder_bsp()
49 struct nouveau_bo *inter_bo = dec->inter_bo[comm_seq & 1]; in nv98_decoder_bsp()
54 { dec->fence_bo, NOUVEAU_BO_WR | NOUVEAU_BO_GART }, in nv98_decoder_bsp()
56 { dec->bitplane_bo, NOUVEAU_BO_RDWR | NOUVEAU_BO_VRAM }, in nv98_decoder_bsp()
60 if (!dec->bitplane_bo) in nv98_decoder_bsp()
75 ret = nouveau_bo_new(dec->client->device, NOUVEAU_BO_VRAM, 0, bsp_size, NULL, &tmp_bo); in nv98_decoder_bsp()
82 bo_refs[0].bo = dec in nv98_decoder_bsp()
[all...]
H A Dnv84_video_bsp.c85 nv84_decoder_bsp(struct nv84_decoder *dec, in nv84_decoder_bsp() argument
98 struct nouveau_pushbuf *push = dec->bsp_pushbuf; in nv84_decoder_bsp()
100 { dec->vpring, NOUVEAU_BO_RDWR | NOUVEAU_BO_VRAM }, in nv84_decoder_bsp()
101 { dec->mbring, NOUVEAU_BO_RDWR | NOUVEAU_BO_VRAM }, in nv84_decoder_bsp()
102 { dec->bitstream, NOUVEAU_BO_RDWR | NOUVEAU_BO_GART }, in nv84_decoder_bsp()
103 { dec->fence, NOUVEAU_BO_RDWR | NOUVEAU_BO_VRAM }, in nv84_decoder_bsp()
106 nouveau_bo_wait(dec->fence, NOUVEAU_BO_RDWR, dec->client); in nv84_decoder_bsp()
143 params.iseqparm.pic_width_in_mbs_minus1 = mb(dec->base.width) - 1; in nv84_decoder_bsp()
145 params.iseqparm.pic_height_in_map_units_minus1 = mb_half(dec in nv84_decoder_bsp()
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_vp3_video_vp.c170 nouveau_vp3_handle_references(struct nouveau_vp3_decoder *dec, struct nouveau_vp3_video_buffer *refs[16], unsigned seq, struct nouveau_vp3_video_buffer *target) in nouveau_vp3_handle_references() argument
174 for (i = 0; i < dec->base.max_references; ++i) { in nouveau_vp3_handle_references()
181 if (dec->refs[idx].vidbuf != refs[i]) { in nouveau_vp3_handle_references()
187 assert(dec->refs[idx].vidbuf == refs[i]); in nouveau_vp3_handle_references()
188 dec->refs[idx].last_used = seq; in nouveau_vp3_handle_references()
191 if (dec->refs[target->valid_ref].vidbuf == target) { in nouveau_vp3_handle_references()
192 dec->refs[target->valid_ref].last_used = seq; in nouveau_vp3_handle_references()
198 for (i = 0; i < dec->base.max_references + 1; ++i) { in nouveau_vp3_handle_references()
199 if (dec->refs[i].vidbuf == target) { in nouveau_vp3_handle_references()
202 } else if (!dec in nouveau_vp3_handle_references()
217 nouveau_vp3_fill_picparm_mpeg12_vp(struct nouveau_vp3_decoder *dec, struct pipe_mpeg12_picture_desc *desc, struct nouveau_vp3_video_buffer *refs[16], unsigned *is_ref, char *map) nouveau_vp3_fill_picparm_mpeg12_vp() argument
266 nouveau_vp3_fill_picparm_mpeg4_vp(struct nouveau_vp3_decoder *dec, struct pipe_mpeg4_picture_desc *desc, struct nouveau_vp3_video_buffer *refs[16], unsigned *is_ref, char *map) nouveau_vp3_fill_picparm_mpeg4_vp() argument
313 nouveau_vp3_fill_picparm_h264_vp(struct nouveau_vp3_decoder *dec, const struct pipe_h264_picture_desc *d, struct nouveau_vp3_video_buffer *refs[16], unsigned *is_ref, char *map) nouveau_vp3_fill_picparm_h264_vp() argument
400 nouveau_vp3_fill_picparm_h264_vp_refs(struct nouveau_vp3_decoder *dec, struct pipe_h264_picture_desc *d, struct nouveau_vp3_video_buffer *refs[16], struct nouveau_vp3_video_buffer *target, char *map) nouveau_vp3_fill_picparm_h264_vp_refs() argument
425 nouveau_vp3_fill_picparm_vc1_vp(struct nouveau_vp3_decoder *dec, struct pipe_vc1_picture_desc *d, struct nouveau_vp3_video_buffer *refs[16], unsigned *is_ref, char *map) nouveau_vp3_fill_picparm_vc1_vp() argument
456 nouveau_vp3_vp_caps(struct nouveau_vp3_decoder *dec, union pipe_desc desc, struct nouveau_vp3_video_buffer *target, unsigned comm_seq, unsigned *caps, unsigned *is_ref, struct nouveau_vp3_video_buffer *refs[16]) nouveau_vp3_vp_caps() argument
[all...]
H A Dnouveau_vp3_video.h52 #define SUBC_BSP(m) dec->bsp_idx, (m)
53 #define SUBC_VP(m) dec->vp_idx, (m)
54 #define SUBC_PPP(m) dec->ppp_idx, (m)
159 nouveau_vp3_video_addr(struct nouveau_vp3_decoder *dec, struct nouveau_vp3_video_buffer *target) in nouveau_vp3_video_addr() argument
163 ret = dec->ref_stride * target->valid_ref; in nouveau_vp3_video_addr()
165 ret = dec->ref_stride * (dec->base.max_references+1); in nouveau_vp3_video_addr()
166 return dec->ref_bo->offset + ret; in nouveau_vp3_video_addr()
170 nouveau_vp3_ycbcr_offsets(struct nouveau_vp3_decoder *dec, uint32_t *y2, in nouveau_vp3_ycbcr_offsets() argument
173 uint32_t w = mb(dec in nouveau_vp3_ycbcr_offsets()
191 nouveau_vp3_inter_sizes(struct nouveau_vp3_decoder *dec, uint32_t slice_count, uint32_t *slice_size, uint32_t *bucket_size, uint32_t *ring_size) nouveau_vp3_inter_sizes() argument
[all...]
H A Dnouveau_vp3_video_bsp.c113 nouveau_vp3_fill_picparm_mpeg12_bsp(struct nouveau_vp3_decoder *dec, in nouveau_vp3_fill_picparm_mpeg12_bsp() argument
119 pic_bsp->width = dec->base.width; in nouveau_vp3_fill_picparm_mpeg12_bsp()
120 pic_bsp->height = dec->base.height; in nouveau_vp3_fill_picparm_mpeg12_bsp()
131 return (desc->num_slices << 4) | (dec->base.profile != PIPE_VIDEO_PROFILE_MPEG1); in nouveau_vp3_fill_picparm_mpeg12_bsp()
135 nouveau_vp3_fill_picparm_mpeg4_bsp(struct nouveau_vp3_decoder *dec, in nouveau_vp3_fill_picparm_mpeg4_bsp() argument
141 pic_bsp->width = dec->base.width; in nouveau_vp3_fill_picparm_mpeg4_bsp()
142 pic_bsp->height = dec->base.height; in nouveau_vp3_fill_picparm_mpeg4_bsp()
160 nouveau_vp3_fill_picparm_vc1_bsp(struct nouveau_vp3_decoder *dec, in nouveau_vp3_fill_picparm_vc1_bsp() argument
166 vc->width = dec->base.width; in nouveau_vp3_fill_picparm_vc1_bsp()
167 vc->height = dec in nouveau_vp3_fill_picparm_vc1_bsp()
192 nouveau_vp3_fill_picparm_h264_bsp(struct nouveau_vp3_decoder *dec, struct pipe_h264_picture_desc *d, char *map) nouveau_vp3_fill_picparm_h264_bsp() argument
233 strparm_bsp(struct nouveau_vp3_decoder *dec) strparm_bsp() argument
241 nouveau_vp3_bsp_begin(struct nouveau_vp3_decoder *dec) nouveau_vp3_bsp_begin() argument
258 nouveau_vp3_bsp_next(struct nouveau_vp3_decoder *dec, unsigned num_buffers, const void *const *data, const unsigned *num_bytes) nouveau_vp3_bsp_next() argument
279 nouveau_vp3_bsp_end(struct nouveau_vp3_decoder *dec, union pipe_desc desc) nouveau_vp3_bsp_end() argument
[all...]
H A Dnouveau_vp3_video.c195 struct nouveau_vp3_decoder *dec = (struct nouveau_vp3_decoder *)decoder; in nouveau_vp3_decoder_destroy() local
198 nouveau_bo_ref(NULL, &dec->ref_bo); in nouveau_vp3_decoder_destroy()
199 nouveau_bo_ref(NULL, &dec->bitplane_bo); in nouveau_vp3_decoder_destroy()
200 nouveau_bo_ref(NULL, &dec->inter_bo[0]); in nouveau_vp3_decoder_destroy()
201 nouveau_bo_ref(NULL, &dec->inter_bo[1]); in nouveau_vp3_decoder_destroy()
203 nouveau_bo_ref(NULL, &dec->fence_bo); in nouveau_vp3_decoder_destroy()
205 nouveau_bo_ref(NULL, &dec->fw_bo); in nouveau_vp3_decoder_destroy()
208 nouveau_bo_ref(NULL, &dec->bsp_bo[i]); in nouveau_vp3_decoder_destroy()
210 nouveau_object_del(&dec->bsp); in nouveau_vp3_decoder_destroy()
211 nouveau_object_del(&dec in nouveau_vp3_decoder_destroy()
228 nouveau_vp3_decoder_init_common(struct pipe_video_codec *dec) nouveau_vp3_decoder_init_common() argument
279 nouveau_vp3_load_firmware(struct nouveau_vp3_decoder *dec, enum pipe_video_profile profile, unsigned chipset) nouveau_vp3_load_firmware() argument
[all...]
/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_handles.h29 vn_decode_VkInstance(struct vn_cs_decoder *dec, VkInstance *val) in vn_decode_VkInstance() argument
32 vn_decode_uint64_t(dec, &id); in vn_decode_VkInstance()
52 vn_decode_VkPhysicalDevice(struct vn_cs_decoder *dec, VkPhysicalDevice *val) in vn_decode_VkPhysicalDevice() argument
55 vn_decode_uint64_t(dec, &id); in vn_decode_VkPhysicalDevice()
75 vn_decode_VkDevice(struct vn_cs_decoder *dec, VkDevice *val) in vn_decode_VkDevice() argument
78 vn_decode_uint64_t(dec, &id); in vn_decode_VkDevice()
98 vn_decode_VkQueue(struct vn_cs_decoder *dec, VkQueue *val) in vn_decode_VkQueue() argument
101 vn_decode_uint64_t(dec, &id); in vn_decode_VkQueue()
121 vn_decode_VkCommandBuffer(struct vn_cs_decoder *dec, VkCommandBuffer *val) in vn_decode_VkCommandBuffer() argument
124 vn_decode_uint64_t(dec, in vn_decode_VkCommandBuffer()
144 vn_decode_VkDeviceMemory(struct vn_cs_decoder *dec, VkDeviceMemory *val) vn_decode_VkDeviceMemory() argument
167 vn_decode_VkCommandPool(struct vn_cs_decoder *dec, VkCommandPool *val) vn_decode_VkCommandPool() argument
190 vn_decode_VkBuffer(struct vn_cs_decoder *dec, VkBuffer *val) vn_decode_VkBuffer() argument
213 vn_decode_VkBufferView(struct vn_cs_decoder *dec, VkBufferView *val) vn_decode_VkBufferView() argument
236 vn_decode_VkImage(struct vn_cs_decoder *dec, VkImage *val) vn_decode_VkImage() argument
259 vn_decode_VkImageView(struct vn_cs_decoder *dec, VkImageView *val) vn_decode_VkImageView() argument
282 vn_decode_VkShaderModule(struct vn_cs_decoder *dec, VkShaderModule *val) vn_decode_VkShaderModule() argument
305 vn_decode_VkPipeline(struct vn_cs_decoder *dec, VkPipeline *val) vn_decode_VkPipeline() argument
328 vn_decode_VkPipelineLayout(struct vn_cs_decoder *dec, VkPipelineLayout *val) vn_decode_VkPipelineLayout() argument
351 vn_decode_VkSampler(struct vn_cs_decoder *dec, VkSampler *val) vn_decode_VkSampler() argument
374 vn_decode_VkDescriptorSet(struct vn_cs_decoder *dec, VkDescriptorSet *val) vn_decode_VkDescriptorSet() argument
397 vn_decode_VkDescriptorSetLayout(struct vn_cs_decoder *dec, VkDescriptorSetLayout *val) vn_decode_VkDescriptorSetLayout() argument
420 vn_decode_VkDescriptorPool(struct vn_cs_decoder *dec, VkDescriptorPool *val) vn_decode_VkDescriptorPool() argument
443 vn_decode_VkFence(struct vn_cs_decoder *dec, VkFence *val) vn_decode_VkFence() argument
466 vn_decode_VkSemaphore(struct vn_cs_decoder *dec, VkSemaphore *val) vn_decode_VkSemaphore() argument
489 vn_decode_VkEvent(struct vn_cs_decoder *dec, VkEvent *val) vn_decode_VkEvent() argument
512 vn_decode_VkQueryPool(struct vn_cs_decoder *dec, VkQueryPool *val) vn_decode_VkQueryPool() argument
535 vn_decode_VkFramebuffer(struct vn_cs_decoder *dec, VkFramebuffer *val) vn_decode_VkFramebuffer() argument
558 vn_decode_VkRenderPass(struct vn_cs_decoder *dec, VkRenderPass *val) vn_decode_VkRenderPass() argument
581 vn_decode_VkPipelineCache(struct vn_cs_decoder *dec, VkPipelineCache *val) vn_decode_VkPipelineCache() argument
604 vn_decode_VkDescriptorUpdateTemplate(struct vn_cs_decoder *dec, VkDescriptorUpdateTemplate *val) vn_decode_VkDescriptorUpdateTemplate() argument
627 vn_decode_VkSamplerYcbcrConversion(struct vn_cs_decoder *dec, VkSamplerYcbcrConversion *val) vn_decode_VkSamplerYcbcrConversion() argument
650 vn_decode_VkPrivateDataSlot(struct vn_cs_decoder *dec, VkPrivateDataSlot *val) vn_decode_VkPrivateDataSlot() argument
[all...]
H A Dvn_protocol_driver_device.h142 vn_decode_VkPhysicalDeviceLimits(struct vn_cs_decoder *dec, VkPhysicalDeviceLimits *val) in vn_decode_VkPhysicalDeviceLimits() argument
144 vn_decode_uint32_t(dec, &val->maxImageDimension1D); in vn_decode_VkPhysicalDeviceLimits()
145 vn_decode_uint32_t(dec, &val->maxImageDimension2D); in vn_decode_VkPhysicalDeviceLimits()
146 vn_decode_uint32_t(dec, &val->maxImageDimension3D); in vn_decode_VkPhysicalDeviceLimits()
147 vn_decode_uint32_t(dec, &val->maxImageDimensionCube); in vn_decode_VkPhysicalDeviceLimits()
148 vn_decode_uint32_t(dec, &val->maxImageArrayLayers); in vn_decode_VkPhysicalDeviceLimits()
149 vn_decode_uint32_t(dec, &val->maxTexelBufferElements); in vn_decode_VkPhysicalDeviceLimits()
150 vn_decode_uint32_t(dec, &val->maxUniformBufferRange); in vn_decode_VkPhysicalDeviceLimits()
151 vn_decode_uint32_t(dec, &val->maxStorageBufferRange); in vn_decode_VkPhysicalDeviceLimits()
152 vn_decode_uint32_t(dec, in vn_decode_VkPhysicalDeviceLimits()
509 vn_decode_VkPhysicalDeviceSparseProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceSparseProperties *val) vn_decode_VkPhysicalDeviceSparseProperties() argument
561 vn_decode_VkPhysicalDeviceProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceProperties *val) vn_decode_VkPhysicalDeviceProperties() argument
624 vn_decode_VkQueueFamilyProperties(struct vn_cs_decoder *dec, VkQueueFamilyProperties *val) vn_decode_VkQueueFamilyProperties() argument
664 vn_decode_VkMemoryType(struct vn_cs_decoder *dec, VkMemoryType *val) vn_decode_VkMemoryType() argument
698 vn_decode_VkMemoryHeap(struct vn_cs_decoder *dec, VkMemoryHeap *val) vn_decode_VkMemoryHeap() argument
738 vn_decode_VkPhysicalDeviceMemoryProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceMemoryProperties *val) vn_decode_VkPhysicalDeviceMemoryProperties() argument
907 vn_decode_VkPhysicalDeviceFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceFeatures *val) vn_decode_VkPhysicalDeviceFeatures() argument
1101 vn_decode_VkFormatProperties(struct vn_cs_decoder *dec, VkFormatProperties *val) vn_decode_VkFormatProperties() argument
1141 vn_decode_VkImageFormatProperties(struct vn_cs_decoder *dec, VkImageFormatProperties *val) vn_decode_VkImageFormatProperties() argument
1348 vn_decode_VkPhysicalDevicePrivateDataFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDevicePrivateDataFeatures_pnext() argument
1356 vn_decode_VkPhysicalDevicePrivateDataFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDevicePrivateDataFeatures *val) vn_decode_VkPhysicalDevicePrivateDataFeatures_self() argument
1363 vn_decode_VkPhysicalDevicePrivateDataFeatures(struct vn_cs_decoder *dec, VkPhysicalDevicePrivateDataFeatures *val) vn_decode_VkPhysicalDevicePrivateDataFeatures() argument
1481 vn_decode_VkPhysicalDeviceVariablePointersFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVariablePointersFeatures_pnext() argument
1489 vn_decode_VkPhysicalDeviceVariablePointersFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVariablePointersFeatures *val) vn_decode_VkPhysicalDeviceVariablePointersFeatures_self() argument
1497 vn_decode_VkPhysicalDeviceVariablePointersFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceVariablePointersFeatures *val) vn_decode_VkPhysicalDeviceVariablePointersFeatures() argument
1619 vn_decode_VkPhysicalDeviceMultiviewFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceMultiviewFeatures_pnext() argument
1627 vn_decode_VkPhysicalDeviceMultiviewFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceMultiviewFeatures *val) vn_decode_VkPhysicalDeviceMultiviewFeatures_self() argument
1636 vn_decode_VkPhysicalDeviceMultiviewFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceMultiviewFeatures *val) vn_decode_VkPhysicalDeviceMultiviewFeatures() argument
1762 vn_decode_VkPhysicalDevice16BitStorageFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDevice16BitStorageFeatures_pnext() argument
1770 vn_decode_VkPhysicalDevice16BitStorageFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDevice16BitStorageFeatures *val) vn_decode_VkPhysicalDevice16BitStorageFeatures_self() argument
1780 vn_decode_VkPhysicalDevice16BitStorageFeatures(struct vn_cs_decoder *dec, VkPhysicalDevice16BitStorageFeatures *val) vn_decode_VkPhysicalDevice16BitStorageFeatures() argument
1902 vn_decode_VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures_pnext() argument
1910 vn_decode_VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures *val) vn_decode_VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures_self() argument
1917 vn_decode_VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures *val) vn_decode_VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures() argument
2033 vn_decode_VkPhysicalDeviceSamplerYcbcrConversionFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceSamplerYcbcrConversionFeatures_pnext() argument
2041 vn_decode_VkPhysicalDeviceSamplerYcbcrConversionFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceSamplerYcbcrConversionFeatures *val) vn_decode_VkPhysicalDeviceSamplerYcbcrConversionFeatures_self() argument
2048 vn_decode_VkPhysicalDeviceSamplerYcbcrConversionFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceSamplerYcbcrConversionFeatures *val) vn_decode_VkPhysicalDeviceSamplerYcbcrConversionFeatures() argument
2164 vn_decode_VkPhysicalDeviceProtectedMemoryFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceProtectedMemoryFeatures_pnext() argument
2172 vn_decode_VkPhysicalDeviceProtectedMemoryFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceProtectedMemoryFeatures *val) vn_decode_VkPhysicalDeviceProtectedMemoryFeatures_self() argument
2179 vn_decode_VkPhysicalDeviceProtectedMemoryFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceProtectedMemoryFeatures *val) vn_decode_VkPhysicalDeviceProtectedMemoryFeatures() argument
2297 vn_decode_VkPhysicalDeviceInlineUniformBlockFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceInlineUniformBlockFeatures_pnext() argument
2305 vn_decode_VkPhysicalDeviceInlineUniformBlockFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceInlineUniformBlockFeatures *val) vn_decode_VkPhysicalDeviceInlineUniformBlockFeatures_self() argument
2313 vn_decode_VkPhysicalDeviceInlineUniformBlockFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceInlineUniformBlockFeatures *val) vn_decode_VkPhysicalDeviceInlineUniformBlockFeatures() argument
2431 vn_decode_VkPhysicalDeviceMaintenance4Features_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceMaintenance4Features_pnext() argument
2439 vn_decode_VkPhysicalDeviceMaintenance4Features_self(struct vn_cs_decoder *dec, VkPhysicalDeviceMaintenance4Features *val) vn_decode_VkPhysicalDeviceMaintenance4Features_self() argument
2446 vn_decode_VkPhysicalDeviceMaintenance4Features(struct vn_cs_decoder *dec, VkPhysicalDeviceMaintenance4Features *val) vn_decode_VkPhysicalDeviceMaintenance4Features() argument
2562 vn_decode_VkPhysicalDeviceShaderDrawParametersFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderDrawParametersFeatures_pnext() argument
2570 vn_decode_VkPhysicalDeviceShaderDrawParametersFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderDrawParametersFeatures *val) vn_decode_VkPhysicalDeviceShaderDrawParametersFeatures_self() argument
2577 vn_decode_VkPhysicalDeviceShaderDrawParametersFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderDrawParametersFeatures *val) vn_decode_VkPhysicalDeviceShaderDrawParametersFeatures() argument
2695 vn_decode_VkPhysicalDeviceShaderFloat16Int8Features_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderFloat16Int8Features_pnext() argument
2703 vn_decode_VkPhysicalDeviceShaderFloat16Int8Features_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderFloat16Int8Features *val) vn_decode_VkPhysicalDeviceShaderFloat16Int8Features_self() argument
2711 vn_decode_VkPhysicalDeviceShaderFloat16Int8Features(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderFloat16Int8Features *val) vn_decode_VkPhysicalDeviceShaderFloat16Int8Features() argument
2829 vn_decode_VkPhysicalDeviceHostQueryResetFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceHostQueryResetFeatures_pnext() argument
2837 vn_decode_VkPhysicalDeviceHostQueryResetFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceHostQueryResetFeatures *val) vn_decode_VkPhysicalDeviceHostQueryResetFeatures_self() argument
2844 vn_decode_VkPhysicalDeviceHostQueryResetFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceHostQueryResetFeatures *val) vn_decode_VkPhysicalDeviceHostQueryResetFeatures() argument
2998 vn_decode_VkPhysicalDeviceDescriptorIndexingFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceDescriptorIndexingFeatures_pnext() argument
3006 vn_decode_VkPhysicalDeviceDescriptorIndexingFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceDescriptorIndexingFeatures *val) vn_decode_VkPhysicalDeviceDescriptorIndexingFeatures_self() argument
3032 vn_decode_VkPhysicalDeviceDescriptorIndexingFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceDescriptorIndexingFeatures *val) vn_decode_VkPhysicalDeviceDescriptorIndexingFeatures() argument
3186 vn_decode_VkPhysicalDeviceTimelineSemaphoreFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceTimelineSemaphoreFeatures_pnext() argument
3194 vn_decode_VkPhysicalDeviceTimelineSemaphoreFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceTimelineSemaphoreFeatures *val) vn_decode_VkPhysicalDeviceTimelineSemaphoreFeatures_self() argument
3201 vn_decode_VkPhysicalDeviceTimelineSemaphoreFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceTimelineSemaphoreFeatures *val) vn_decode_VkPhysicalDeviceTimelineSemaphoreFeatures() argument
3321 vn_decode_VkPhysicalDevice8BitStorageFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDevice8BitStorageFeatures_pnext() argument
3329 vn_decode_VkPhysicalDevice8BitStorageFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDevice8BitStorageFeatures *val) vn_decode_VkPhysicalDevice8BitStorageFeatures_self() argument
3338 vn_decode_VkPhysicalDevice8BitStorageFeatures(struct vn_cs_decoder *dec, VkPhysicalDevice8BitStorageFeatures *val) vn_decode_VkPhysicalDevice8BitStorageFeatures() argument
3460 vn_decode_VkPhysicalDeviceConditionalRenderingFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceConditionalRenderingFeaturesEXT_pnext() argument
3468 vn_decode_VkPhysicalDeviceConditionalRenderingFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceConditionalRenderingFeaturesEXT *val) vn_decode_VkPhysicalDeviceConditionalRenderingFeaturesEXT_self() argument
3476 vn_decode_VkPhysicalDeviceConditionalRenderingFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceConditionalRenderingFeaturesEXT *val) vn_decode_VkPhysicalDeviceConditionalRenderingFeaturesEXT() argument
3598 vn_decode_VkPhysicalDeviceVulkanMemoryModelFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVulkanMemoryModelFeatures_pnext() argument
3606 vn_decode_VkPhysicalDeviceVulkanMemoryModelFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkanMemoryModelFeatures *val) vn_decode_VkPhysicalDeviceVulkanMemoryModelFeatures_self() argument
3615 vn_decode_VkPhysicalDeviceVulkanMemoryModelFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkanMemoryModelFeatures *val) vn_decode_VkPhysicalDeviceVulkanMemoryModelFeatures() argument
3737 vn_decode_VkPhysicalDeviceShaderAtomicInt64Features_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderAtomicInt64Features_pnext() argument
3745 vn_decode_VkPhysicalDeviceShaderAtomicInt64Features_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderAtomicInt64Features *val) vn_decode_VkPhysicalDeviceShaderAtomicInt64Features_self() argument
3753 vn_decode_VkPhysicalDeviceShaderAtomicInt64Features(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderAtomicInt64Features *val) vn_decode_VkPhysicalDeviceShaderAtomicInt64Features() argument
3873 vn_decode_VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT_pnext() argument
3881 vn_decode_VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *val) vn_decode_VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT_self() argument
3889 vn_decode_VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *val) vn_decode_VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT() argument
4009 vn_decode_VkPhysicalDeviceTransformFeedbackFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceTransformFeedbackFeaturesEXT_pnext() argument
4017 vn_decode_VkPhysicalDeviceTransformFeedbackFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceTransformFeedbackFeaturesEXT *val) vn_decode_VkPhysicalDeviceTransformFeedbackFeaturesEXT_self() argument
4025 vn_decode_VkPhysicalDeviceTransformFeedbackFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceTransformFeedbackFeaturesEXT *val) vn_decode_VkPhysicalDeviceTransformFeedbackFeaturesEXT() argument
4143 vn_decode_VkPhysicalDeviceScalarBlockLayoutFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceScalarBlockLayoutFeatures_pnext() argument
4151 vn_decode_VkPhysicalDeviceScalarBlockLayoutFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceScalarBlockLayoutFeatures *val) vn_decode_VkPhysicalDeviceScalarBlockLayoutFeatures_self() argument
4158 vn_decode_VkPhysicalDeviceScalarBlockLayoutFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceScalarBlockLayoutFeatures *val) vn_decode_VkPhysicalDeviceScalarBlockLayoutFeatures() argument
4274 vn_decode_VkPhysicalDeviceUniformBufferStandardLayoutFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceUniformBufferStandardLayoutFeatures_pnext() argument
4282 vn_decode_VkPhysicalDeviceUniformBufferStandardLayoutFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceUniformBufferStandardLayoutFeatures *val) vn_decode_VkPhysicalDeviceUniformBufferStandardLayoutFeatures_self() argument
4289 vn_decode_VkPhysicalDeviceUniformBufferStandardLayoutFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceUniformBufferStandardLayoutFeatures *val) vn_decode_VkPhysicalDeviceUniformBufferStandardLayoutFeatures() argument
4405 vn_decode_VkPhysicalDeviceDepthClipEnableFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceDepthClipEnableFeaturesEXT_pnext() argument
4413 vn_decode_VkPhysicalDeviceDepthClipEnableFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceDepthClipEnableFeaturesEXT *val) vn_decode_VkPhysicalDeviceDepthClipEnableFeaturesEXT_self() argument
4420 vn_decode_VkPhysicalDeviceDepthClipEnableFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceDepthClipEnableFeaturesEXT *val) vn_decode_VkPhysicalDeviceDepthClipEnableFeaturesEXT() argument
4540 vn_decode_VkPhysicalDeviceBufferDeviceAddressFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceBufferDeviceAddressFeatures_pnext() argument
4548 vn_decode_VkPhysicalDeviceBufferDeviceAddressFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceBufferDeviceAddressFeatures *val) vn_decode_VkPhysicalDeviceBufferDeviceAddressFeatures_self() argument
4557 vn_decode_VkPhysicalDeviceBufferDeviceAddressFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceBufferDeviceAddressFeatures *val) vn_decode_VkPhysicalDeviceBufferDeviceAddressFeatures() argument
4677 vn_decode_VkPhysicalDeviceImagelessFramebufferFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceImagelessFramebufferFeatures_pnext() argument
4685 vn_decode_VkPhysicalDeviceImagelessFramebufferFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceImagelessFramebufferFeatures *val) vn_decode_VkPhysicalDeviceImagelessFramebufferFeatures_self() argument
4692 vn_decode_VkPhysicalDeviceImagelessFramebufferFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceImagelessFramebufferFeatures *val) vn_decode_VkPhysicalDeviceImagelessFramebufferFeatures() argument
4808 vn_decode_VkPhysicalDeviceTextureCompressionASTCHDRFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceTextureCompressionASTCHDRFeatures_pnext() argument
4816 vn_decode_VkPhysicalDeviceTextureCompressionASTCHDRFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceTextureCompressionASTCHDRFeatures *val) vn_decode_VkPhysicalDeviceTextureCompressionASTCHDRFeatures_self() argument
4823 vn_decode_VkPhysicalDeviceTextureCompressionASTCHDRFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceTextureCompressionASTCHDRFeatures *val) vn_decode_VkPhysicalDeviceTextureCompressionASTCHDRFeatures() argument
4939 vn_decode_VkPhysicalDeviceIndexTypeUint8FeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceIndexTypeUint8FeaturesEXT_pnext() argument
4947 vn_decode_VkPhysicalDeviceIndexTypeUint8FeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceIndexTypeUint8FeaturesEXT *val) vn_decode_VkPhysicalDeviceIndexTypeUint8FeaturesEXT_self() argument
4954 vn_decode_VkPhysicalDeviceIndexTypeUint8FeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceIndexTypeUint8FeaturesEXT *val) vn_decode_VkPhysicalDeviceIndexTypeUint8FeaturesEXT() argument
5070 vn_decode_VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures_pnext() argument
5078 vn_decode_VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures *val) vn_decode_VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures_self() argument
5085 vn_decode_VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures *val) vn_decode_VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures() argument
5201 vn_decode_VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures_pnext() argument
5209 vn_decode_VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures *val) vn_decode_VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures_self() argument
5216 vn_decode_VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures *val) vn_decode_VkPhysicalDeviceShaderDemoteToHelperInvocationFeatures() argument
5332 vn_decode_VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT_pnext() argument
5340 vn_decode_VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT *val) vn_decode_VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT_self() argument
5347 vn_decode_VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT *val) vn_decode_VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT() argument
5465 vn_decode_VkPhysicalDeviceSubgroupSizeControlFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceSubgroupSizeControlFeatures_pnext() argument
5473 vn_decode_VkPhysicalDeviceSubgroupSizeControlFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceSubgroupSizeControlFeatures *val) vn_decode_VkPhysicalDeviceSubgroupSizeControlFeatures_self() argument
5481 vn_decode_VkPhysicalDeviceSubgroupSizeControlFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceSubgroupSizeControlFeatures *val) vn_decode_VkPhysicalDeviceSubgroupSizeControlFeatures() argument
5609 vn_decode_VkPhysicalDeviceLineRasterizationFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceLineRasterizationFeaturesEXT_pnext() argument
5617 vn_decode_VkPhysicalDeviceLineRasterizationFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceLineRasterizationFeaturesEXT *val) vn_decode_VkPhysicalDeviceLineRasterizationFeaturesEXT_self() argument
5629 vn_decode_VkPhysicalDeviceLineRasterizationFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceLineRasterizationFeaturesEXT *val) vn_decode_VkPhysicalDeviceLineRasterizationFeaturesEXT() argument
5755 vn_decode_VkPhysicalDevicePipelineCreationCacheControlFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDevicePipelineCreationCacheControlFeatures_pnext() argument
5763 vn_decode_VkPhysicalDevicePipelineCreationCacheControlFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDevicePipelineCreationCacheControlFeatures *val) vn_decode_VkPhysicalDevicePipelineCreationCacheControlFeatures_self() argument
5770 vn_decode_VkPhysicalDevicePipelineCreationCacheControlFeatures(struct vn_cs_decoder *dec, VkPhysicalDevicePipelineCreationCacheControlFeatures *val) vn_decode_VkPhysicalDevicePipelineCreationCacheControlFeatures() argument
5908 vn_decode_VkPhysicalDeviceVulkan11Features_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVulkan11Features_pnext() argument
5916 vn_decode_VkPhysicalDeviceVulkan11Features_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan11Features *val) vn_decode_VkPhysicalDeviceVulkan11Features_self() argument
5934 vn_decode_VkPhysicalDeviceVulkan11Features(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan11Features *val) vn_decode_VkPhysicalDeviceVulkan11Features() argument
6164 vn_decode_VkPhysicalDeviceVulkan12Features_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVulkan12Features_pnext() argument
6172 vn_decode_VkPhysicalDeviceVulkan12Features_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan12Features *val) vn_decode_VkPhysicalDeviceVulkan12Features_self() argument
6225 vn_decode_VkPhysicalDeviceVulkan12Features(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan12Features *val) vn_decode_VkPhysicalDeviceVulkan12Features() argument
6461 vn_decode_VkPhysicalDeviceVulkan13Features_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVulkan13Features_pnext() argument
6469 vn_decode_VkPhysicalDeviceVulkan13Features_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan13Features *val) vn_decode_VkPhysicalDeviceVulkan13Features_self() argument
6490 vn_decode_VkPhysicalDeviceVulkan13Features(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan13Features *val) vn_decode_VkPhysicalDeviceVulkan13Features() argument
6636 vn_decode_VkPhysicalDeviceCustomBorderColorFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceCustomBorderColorFeaturesEXT_pnext() argument
6644 vn_decode_VkPhysicalDeviceCustomBorderColorFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceCustomBorderColorFeaturesEXT *val) vn_decode_VkPhysicalDeviceCustomBorderColorFeaturesEXT_self() argument
6652 vn_decode_VkPhysicalDeviceCustomBorderColorFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceCustomBorderColorFeaturesEXT *val) vn_decode_VkPhysicalDeviceCustomBorderColorFeaturesEXT() argument
6770 vn_decode_VkPhysicalDeviceExtendedDynamicStateFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceExtendedDynamicStateFeaturesEXT_pnext() argument
6778 vn_decode_VkPhysicalDeviceExtendedDynamicStateFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceExtendedDynamicStateFeaturesEXT *val) vn_decode_VkPhysicalDeviceExtendedDynamicStateFeaturesEXT_self() argument
6785 vn_decode_VkPhysicalDeviceExtendedDynamicStateFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceExtendedDynamicStateFeaturesEXT *val) vn_decode_VkPhysicalDeviceExtendedDynamicStateFeaturesEXT() argument
6905 vn_decode_VkPhysicalDeviceExtendedDynamicState2FeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceExtendedDynamicState2FeaturesEXT_pnext() argument
6913 vn_decode_VkPhysicalDeviceExtendedDynamicState2FeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceExtendedDynamicState2FeaturesEXT *val) vn_decode_VkPhysicalDeviceExtendedDynamicState2FeaturesEXT_self() argument
6922 vn_decode_VkPhysicalDeviceExtendedDynamicState2FeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceExtendedDynamicState2FeaturesEXT *val) vn_decode_VkPhysicalDeviceExtendedDynamicState2FeaturesEXT() argument
7042 vn_decode_VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures_pnext() argument
7050 vn_decode_VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures *val) vn_decode_VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures_self() argument
7057 vn_decode_VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures *val) vn_decode_VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeatures() argument
7177 vn_decode_VkPhysicalDeviceRobustness2FeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceRobustness2FeaturesEXT_pnext() argument
7185 vn_decode_VkPhysicalDeviceRobustness2FeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceRobustness2FeaturesEXT *val) vn_decode_VkPhysicalDeviceRobustness2FeaturesEXT_self() argument
7194 vn_decode_VkPhysicalDeviceRobustness2FeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceRobustness2FeaturesEXT *val) vn_decode_VkPhysicalDeviceRobustness2FeaturesEXT() argument
7314 vn_decode_VkPhysicalDeviceImageRobustnessFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceImageRobustnessFeatures_pnext() argument
7322 vn_decode_VkPhysicalDeviceImageRobustnessFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceImageRobustnessFeatures *val) vn_decode_VkPhysicalDeviceImageRobustnessFeatures_self() argument
7329 vn_decode_VkPhysicalDeviceImageRobustnessFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceImageRobustnessFeatures *val) vn_decode_VkPhysicalDeviceImageRobustnessFeatures() argument
7447 vn_decode_VkPhysicalDevice4444FormatsFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDevice4444FormatsFeaturesEXT_pnext() argument
7455 vn_decode_VkPhysicalDevice4444FormatsFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDevice4444FormatsFeaturesEXT *val) vn_decode_VkPhysicalDevice4444FormatsFeaturesEXT_self() argument
7463 vn_decode_VkPhysicalDevice4444FormatsFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDevice4444FormatsFeaturesEXT *val) vn_decode_VkPhysicalDevice4444FormatsFeaturesEXT() argument
7581 vn_decode_VkPhysicalDeviceShaderTerminateInvocationFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderTerminateInvocationFeatures_pnext() argument
7589 vn_decode_VkPhysicalDeviceShaderTerminateInvocationFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderTerminateInvocationFeatures *val) vn_decode_VkPhysicalDeviceShaderTerminateInvocationFeatures_self() argument
7596 vn_decode_VkPhysicalDeviceShaderTerminateInvocationFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderTerminateInvocationFeatures *val) vn_decode_VkPhysicalDeviceShaderTerminateInvocationFeatures() argument
7712 vn_decode_VkPhysicalDeviceSynchronization2Features_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceSynchronization2Features_pnext() argument
7720 vn_decode_VkPhysicalDeviceSynchronization2Features_self(struct vn_cs_decoder *dec, VkPhysicalDeviceSynchronization2Features *val) vn_decode_VkPhysicalDeviceSynchronization2Features_self() argument
7727 vn_decode_VkPhysicalDeviceSynchronization2Features(struct vn_cs_decoder *dec, VkPhysicalDeviceSynchronization2Features *val) vn_decode_VkPhysicalDeviceSynchronization2Features() argument
7843 vn_decode_VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT_pnext() argument
7851 vn_decode_VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT *val) vn_decode_VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT_self() argument
7858 vn_decode_VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT *val) vn_decode_VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT() argument
7976 vn_decode_VkPhysicalDeviceProvokingVertexFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceProvokingVertexFeaturesEXT_pnext() argument
7984 vn_decode_VkPhysicalDeviceProvokingVertexFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceProvokingVertexFeaturesEXT *val) vn_decode_VkPhysicalDeviceProvokingVertexFeaturesEXT_self() argument
7992 vn_decode_VkPhysicalDeviceProvokingVertexFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceProvokingVertexFeaturesEXT *val) vn_decode_VkPhysicalDeviceProvokingVertexFeaturesEXT() argument
8110 vn_decode_VkPhysicalDeviceShaderIntegerDotProductFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderIntegerDotProductFeatures_pnext() argument
8118 vn_decode_VkPhysicalDeviceShaderIntegerDotProductFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderIntegerDotProductFeatures *val) vn_decode_VkPhysicalDeviceShaderIntegerDotProductFeatures_self() argument
8125 vn_decode_VkPhysicalDeviceShaderIntegerDotProductFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderIntegerDotProductFeatures *val) vn_decode_VkPhysicalDeviceShaderIntegerDotProductFeatures() argument
8241 vn_decode_VkPhysicalDeviceDynamicRenderingFeatures_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceDynamicRenderingFeatures_pnext() argument
8249 vn_decode_VkPhysicalDeviceDynamicRenderingFeatures_self(struct vn_cs_decoder *dec, VkPhysicalDeviceDynamicRenderingFeatures *val) vn_decode_VkPhysicalDeviceDynamicRenderingFeatures_self() argument
8256 vn_decode_VkPhysicalDeviceDynamicRenderingFeatures(struct vn_cs_decoder *dec, VkPhysicalDeviceDynamicRenderingFeatures *val) vn_decode_VkPhysicalDeviceDynamicRenderingFeatures() argument
8372 vn_decode_VkPhysicalDeviceImageViewMinLodFeaturesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceImageViewMinLodFeaturesEXT_pnext() argument
8380 vn_decode_VkPhysicalDeviceImageViewMinLodFeaturesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceImageViewMinLodFeaturesEXT *val) vn_decode_VkPhysicalDeviceImageViewMinLodFeaturesEXT_self() argument
8387 vn_decode_VkPhysicalDeviceImageViewMinLodFeaturesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceImageViewMinLodFeaturesEXT *val) vn_decode_VkPhysicalDeviceImageViewMinLodFeaturesEXT() argument
9240 vn_decode_VkPhysicalDeviceFeatures2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceFeatures2_pnext() argument
9465 vn_decode_VkPhysicalDeviceFeatures2_self(struct vn_cs_decoder *dec, VkPhysicalDeviceFeatures2 *val) vn_decode_VkPhysicalDeviceFeatures2_self() argument
9472 vn_decode_VkPhysicalDeviceFeatures2(struct vn_cs_decoder *dec, VkPhysicalDeviceFeatures2 *val) vn_decode_VkPhysicalDeviceFeatures2() argument
11247 vn_decode_VkConformanceVersion(struct vn_cs_decoder *dec, VkConformanceVersion *val) vn_decode_VkConformanceVersion() argument
11311 vn_decode_VkPhysicalDeviceDriverProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceDriverProperties_pnext() argument
11319 vn_decode_VkPhysicalDeviceDriverProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceDriverProperties *val) vn_decode_VkPhysicalDeviceDriverProperties_self() argument
11335 vn_decode_VkPhysicalDeviceDriverProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceDriverProperties *val) vn_decode_VkPhysicalDeviceDriverProperties() argument
11441 vn_decode_VkPhysicalDeviceIDProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceIDProperties_pnext() argument
11449 vn_decode_VkPhysicalDeviceIDProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceIDProperties *val) vn_decode_VkPhysicalDeviceIDProperties_self() argument
11469 vn_decode_VkPhysicalDeviceIDProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceIDProperties *val) vn_decode_VkPhysicalDeviceIDProperties() argument
11571 vn_decode_VkPhysicalDeviceMultiviewProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceMultiviewProperties_pnext() argument
11579 vn_decode_VkPhysicalDeviceMultiviewProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceMultiviewProperties *val) vn_decode_VkPhysicalDeviceMultiviewProperties_self() argument
11587 vn_decode_VkPhysicalDeviceMultiviewProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceMultiviewProperties *val) vn_decode_VkPhysicalDeviceMultiviewProperties() argument
11685 vn_decode_VkPhysicalDeviceSubgroupProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceSubgroupProperties_pnext() argument
11693 vn_decode_VkPhysicalDeviceSubgroupProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceSubgroupProperties *val) vn_decode_VkPhysicalDeviceSubgroupProperties_self() argument
11703 vn_decode_VkPhysicalDeviceSubgroupProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceSubgroupProperties *val) vn_decode_VkPhysicalDeviceSubgroupProperties() argument
11802 vn_decode_VkPhysicalDevicePointClippingProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDevicePointClippingProperties_pnext() argument
11810 vn_decode_VkPhysicalDevicePointClippingProperties_self(struct vn_cs_decoder *dec, VkPhysicalDevicePointClippingProperties *val) vn_decode_VkPhysicalDevicePointClippingProperties_self() argument
11817 vn_decode_VkPhysicalDevicePointClippingProperties(struct vn_cs_decoder *dec, VkPhysicalDevicePointClippingProperties *val) vn_decode_VkPhysicalDevicePointClippingProperties() argument
11910 vn_decode_VkPhysicalDeviceProtectedMemoryProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceProtectedMemoryProperties_pnext() argument
11918 vn_decode_VkPhysicalDeviceProtectedMemoryProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceProtectedMemoryProperties *val) vn_decode_VkPhysicalDeviceProtectedMemoryProperties_self() argument
11925 vn_decode_VkPhysicalDeviceProtectedMemoryProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceProtectedMemoryProperties *val) vn_decode_VkPhysicalDeviceProtectedMemoryProperties() argument
12019 vn_decode_VkPhysicalDeviceSamplerFilterMinmaxProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceSamplerFilterMinmaxProperties_pnext() argument
12027 vn_decode_VkPhysicalDeviceSamplerFilterMinmaxProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceSamplerFilterMinmaxProperties *val) vn_decode_VkPhysicalDeviceSamplerFilterMinmaxProperties_self() argument
12035 vn_decode_VkPhysicalDeviceSamplerFilterMinmaxProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceSamplerFilterMinmaxProperties *val) vn_decode_VkPhysicalDeviceSamplerFilterMinmaxProperties() argument
12134 vn_decode_VkPhysicalDeviceInlineUniformBlockProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceInlineUniformBlockProperties_pnext() argument
12142 vn_decode_VkPhysicalDeviceInlineUniformBlockProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceInlineUniformBlockProperties *val) vn_decode_VkPhysicalDeviceInlineUniformBlockProperties_self() argument
12153 vn_decode_VkPhysicalDeviceInlineUniformBlockProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceInlineUniformBlockProperties *val) vn_decode_VkPhysicalDeviceInlineUniformBlockProperties() argument
12255 vn_decode_VkPhysicalDeviceMaintenance3Properties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceMaintenance3Properties_pnext() argument
12263 vn_decode_VkPhysicalDeviceMaintenance3Properties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceMaintenance3Properties *val) vn_decode_VkPhysicalDeviceMaintenance3Properties_self() argument
12271 vn_decode_VkPhysicalDeviceMaintenance3Properties(struct vn_cs_decoder *dec, VkPhysicalDeviceMaintenance3Properties *val) vn_decode_VkPhysicalDeviceMaintenance3Properties() argument
12366 vn_decode_VkPhysicalDeviceMaintenance4Properties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceMaintenance4Properties_pnext() argument
12374 vn_decode_VkPhysicalDeviceMaintenance4Properties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceMaintenance4Properties *val) vn_decode_VkPhysicalDeviceMaintenance4Properties_self() argument
12381 vn_decode_VkPhysicalDeviceMaintenance4Properties(struct vn_cs_decoder *dec, VkPhysicalDeviceMaintenance4Properties *val) vn_decode_VkPhysicalDeviceMaintenance4Properties() argument
12490 vn_decode_VkPhysicalDeviceFloatControlsProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceFloatControlsProperties_pnext() argument
12498 vn_decode_VkPhysicalDeviceFloatControlsProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceFloatControlsProperties *val) vn_decode_VkPhysicalDeviceFloatControlsProperties_self() argument
12521 vn_decode_VkPhysicalDeviceFloatControlsProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceFloatControlsProperties *val) vn_decode_VkPhysicalDeviceFloatControlsProperties() argument
12654 vn_decode_VkPhysicalDeviceConservativeRasterizationPropertiesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceConservativeRasterizationPropertiesEXT_pnext() argument
12662 vn_decode_VkPhysicalDeviceConservativeRasterizationPropertiesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceConservativeRasterizationPropertiesEXT *val) vn_decode_VkPhysicalDeviceConservativeRasterizationPropertiesEXT_self() argument
12677 vn_decode_VkPhysicalDeviceConservativeRasterizationPropertiesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceConservativeRasterizationPropertiesEXT *val) vn_decode_VkPhysicalDeviceConservativeRasterizationPropertiesEXT() argument
12808 vn_decode_VkPhysicalDeviceDescriptorIndexingProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceDescriptorIndexingProperties_pnext() argument
12816 vn_decode_VkPhysicalDeviceDescriptorIndexingProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceDescriptorIndexingProperties *val) vn_decode_VkPhysicalDeviceDescriptorIndexingProperties_self() argument
12845 vn_decode_VkPhysicalDeviceDescriptorIndexingProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceDescriptorIndexingProperties *val) vn_decode_VkPhysicalDeviceDescriptorIndexingProperties() argument
12982 vn_decode_VkPhysicalDeviceTimelineSemaphoreProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceTimelineSemaphoreProperties_pnext() argument
12990 vn_decode_VkPhysicalDeviceTimelineSemaphoreProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceTimelineSemaphoreProperties *val) vn_decode_VkPhysicalDeviceTimelineSemaphoreProperties_self() argument
12997 vn_decode_VkPhysicalDeviceTimelineSemaphoreProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceTimelineSemaphoreProperties *val) vn_decode_VkPhysicalDeviceTimelineSemaphoreProperties() argument
13090 vn_decode_VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT_pnext() argument
13098 vn_decode_VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT *val) vn_decode_VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT_self() argument
13105 vn_decode_VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT *val) vn_decode_VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT() argument
13201 vn_decode_VkPhysicalDeviceDepthStencilResolveProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceDepthStencilResolveProperties_pnext() argument
13209 vn_decode_VkPhysicalDeviceDepthStencilResolveProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceDepthStencilResolveProperties *val) vn_decode_VkPhysicalDeviceDepthStencilResolveProperties_self() argument
13219 vn_decode_VkPhysicalDeviceDepthStencilResolveProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceDepthStencilResolveProperties *val) vn_decode_VkPhysicalDeviceDepthStencilResolveProperties() argument
13327 vn_decode_VkPhysicalDeviceTransformFeedbackPropertiesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceTransformFeedbackPropertiesEXT_pnext() argument
13335 vn_decode_VkPhysicalDeviceTransformFeedbackPropertiesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceTransformFeedbackPropertiesEXT *val) vn_decode_VkPhysicalDeviceTransformFeedbackPropertiesEXT_self() argument
13351 vn_decode_VkPhysicalDeviceTransformFeedbackPropertiesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceTransformFeedbackPropertiesEXT *val) vn_decode_VkPhysicalDeviceTransformFeedbackPropertiesEXT() argument
13465 vn_decode_VkPhysicalDeviceTexelBufferAlignmentProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceTexelBufferAlignmentProperties_pnext() argument
13473 vn_decode_VkPhysicalDeviceTexelBufferAlignmentProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceTexelBufferAlignmentProperties *val) vn_decode_VkPhysicalDeviceTexelBufferAlignmentProperties_self() argument
13483 vn_decode_VkPhysicalDeviceTexelBufferAlignmentProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceTexelBufferAlignmentProperties *val) vn_decode_VkPhysicalDeviceTexelBufferAlignmentProperties() argument
13585 vn_decode_VkPhysicalDeviceSubgroupSizeControlProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceSubgroupSizeControlProperties_pnext() argument
13593 vn_decode_VkPhysicalDeviceSubgroupSizeControlProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceSubgroupSizeControlProperties *val) vn_decode_VkPhysicalDeviceSubgroupSizeControlProperties_self() argument
13603 vn_decode_VkPhysicalDeviceSubgroupSizeControlProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceSubgroupSizeControlProperties *val) vn_decode_VkPhysicalDeviceSubgroupSizeControlProperties() argument
13702 vn_decode_VkPhysicalDeviceLineRasterizationPropertiesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceLineRasterizationPropertiesEXT_pnext() argument
13710 vn_decode_VkPhysicalDeviceLineRasterizationPropertiesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceLineRasterizationPropertiesEXT *val) vn_decode_VkPhysicalDeviceLineRasterizationPropertiesEXT_self() argument
13717 vn_decode_VkPhysicalDeviceLineRasterizationPropertiesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceLineRasterizationPropertiesEXT *val) vn_decode_VkPhysicalDeviceLineRasterizationPropertiesEXT() argument
13827 vn_decode_VkPhysicalDeviceVulkan11Properties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVulkan11Properties_pnext() argument
13835 vn_decode_VkPhysicalDeviceVulkan11Properties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan11Properties *val) vn_decode_VkPhysicalDeviceVulkan11Properties_self() argument
13865 vn_decode_VkPhysicalDeviceVulkan11Properties(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan11Properties *val) vn_decode_VkPhysicalDeviceVulkan11Properties() argument
14039 vn_decode_VkPhysicalDeviceVulkan12Properties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVulkan12Properties_pnext() argument
14047 vn_decode_VkPhysicalDeviceVulkan12Properties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan12Properties *val) vn_decode_VkPhysicalDeviceVulkan12Properties_self() argument
14111 vn_decode_VkPhysicalDeviceVulkan12Properties(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan12Properties *val) vn_decode_VkPhysicalDeviceVulkan12Properties() argument
14350 vn_decode_VkPhysicalDeviceVulkan13Properties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceVulkan13Properties_pnext() argument
14358 vn_decode_VkPhysicalDeviceVulkan13Properties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan13Properties *val) vn_decode_VkPhysicalDeviceVulkan13Properties_self() argument
14409 vn_decode_VkPhysicalDeviceVulkan13Properties(struct vn_cs_decoder *dec, VkPhysicalDeviceVulkan13Properties *val) vn_decode_VkPhysicalDeviceVulkan13Properties() argument
14590 vn_decode_VkPhysicalDeviceCustomBorderColorPropertiesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceCustomBorderColorPropertiesEXT_pnext() argument
14598 vn_decode_VkPhysicalDeviceCustomBorderColorPropertiesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceCustomBorderColorPropertiesEXT *val) vn_decode_VkPhysicalDeviceCustomBorderColorPropertiesEXT_self() argument
14605 vn_decode_VkPhysicalDeviceCustomBorderColorPropertiesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceCustomBorderColorPropertiesEXT *val) vn_decode_VkPhysicalDeviceCustomBorderColorPropertiesEXT() argument
14699 vn_decode_VkPhysicalDeviceRobustness2PropertiesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceRobustness2PropertiesEXT_pnext() argument
14707 vn_decode_VkPhysicalDeviceRobustness2PropertiesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceRobustness2PropertiesEXT *val) vn_decode_VkPhysicalDeviceRobustness2PropertiesEXT_self() argument
14715 vn_decode_VkPhysicalDeviceRobustness2PropertiesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceRobustness2PropertiesEXT *val) vn_decode_VkPhysicalDeviceRobustness2PropertiesEXT() argument
14811 vn_decode_VkPhysicalDeviceProvokingVertexPropertiesEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceProvokingVertexPropertiesEXT_pnext() argument
14819 vn_decode_VkPhysicalDeviceProvokingVertexPropertiesEXT_self(struct vn_cs_decoder *dec, VkPhysicalDeviceProvokingVertexPropertiesEXT *val) vn_decode_VkPhysicalDeviceProvokingVertexPropertiesEXT_self() argument
14827 vn_decode_VkPhysicalDeviceProvokingVertexPropertiesEXT(struct vn_cs_decoder *dec, VkPhysicalDeviceProvokingVertexPropertiesEXT *val) vn_decode_VkPhysicalDeviceProvokingVertexPropertiesEXT() argument
14951 vn_decode_VkPhysicalDeviceShaderIntegerDotProductProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceShaderIntegerDotProductProperties_pnext() argument
14959 vn_decode_VkPhysicalDeviceShaderIntegerDotProductProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderIntegerDotProductProperties *val) vn_decode_VkPhysicalDeviceShaderIntegerDotProductProperties_self() argument
14995 vn_decode_VkPhysicalDeviceShaderIntegerDotProductProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceShaderIntegerDotProductProperties *val) vn_decode_VkPhysicalDeviceShaderIntegerDotProductProperties() argument
15345 vn_decode_VkPhysicalDeviceProperties2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceProperties2_pnext() argument
15478 vn_decode_VkPhysicalDeviceProperties2_self(struct vn_cs_decoder *dec, VkPhysicalDeviceProperties2 *val) vn_decode_VkPhysicalDeviceProperties2_self() argument
15485 vn_decode_VkPhysicalDeviceProperties2(struct vn_cs_decoder *dec, VkPhysicalDeviceProperties2 *val) vn_decode_VkPhysicalDeviceProperties2() argument
15957 vn_decode_VkDrmFormatModifierPropertiesEXT(struct vn_cs_decoder *dec, VkDrmFormatModifierPropertiesEXT *val) vn_decode_VkDrmFormatModifierPropertiesEXT() argument
16020 vn_decode_VkDrmFormatModifierPropertiesListEXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkDrmFormatModifierPropertiesListEXT_pnext() argument
16028 vn_decode_VkDrmFormatModifierPropertiesListEXT_self(struct vn_cs_decoder *dec, VkDrmFormatModifierPropertiesListEXT *val) vn_decode_VkDrmFormatModifierPropertiesListEXT_self() argument
16043 vn_decode_VkDrmFormatModifierPropertiesListEXT(struct vn_cs_decoder *dec, VkDrmFormatModifierPropertiesListEXT *val) vn_decode_VkDrmFormatModifierPropertiesListEXT() argument
16152 vn_decode_VkFormatProperties3_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkFormatProperties3_pnext() argument
16160 vn_decode_VkFormatProperties3_self(struct vn_cs_decoder *dec, VkFormatProperties3 *val) vn_decode_VkFormatProperties3_self() argument
16169 vn_decode_VkFormatProperties3(struct vn_cs_decoder *dec, VkFormatProperties3 *val) vn_decode_VkFormatProperties3() argument
16248 vn_decode_VkDrmFormatModifierProperties2EXT(struct vn_cs_decoder *dec, VkDrmFormatModifierProperties2EXT *val) vn_decode_VkDrmFormatModifierProperties2EXT() argument
16311 vn_decode_VkDrmFormatModifierPropertiesList2EXT_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkDrmFormatModifierPropertiesList2EXT_pnext() argument
16319 vn_decode_VkDrmFormatModifierPropertiesList2EXT_self(struct vn_cs_decoder *dec, VkDrmFormatModifierPropertiesList2EXT *val) vn_decode_VkDrmFormatModifierPropertiesList2EXT_self() argument
16334 vn_decode_VkDrmFormatModifierPropertiesList2EXT(struct vn_cs_decoder *dec, VkDrmFormatModifierPropertiesList2EXT *val) vn_decode_VkDrmFormatModifierPropertiesList2EXT() argument
16476 vn_decode_VkFormatProperties2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkFormatProperties2_pnext() argument
16513 vn_decode_VkFormatProperties2_self(struct vn_cs_decoder *dec, VkFormatProperties2 *val) vn_decode_VkFormatProperties2_self() argument
16520 vn_decode_VkFormatProperties2(struct vn_cs_decoder *dec, VkFormatProperties2 *val) vn_decode_VkFormatProperties2() argument
16920 vn_decode_VkExternalMemoryProperties(struct vn_cs_decoder *dec, VkExternalMemoryProperties *val) vn_decode_VkExternalMemoryProperties() argument
16976 vn_decode_VkExternalImageFormatProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkExternalImageFormatProperties_pnext() argument
16984 vn_decode_VkExternalImageFormatProperties_self(struct vn_cs_decoder *dec, VkExternalImageFormatProperties *val) vn_decode_VkExternalImageFormatProperties_self() argument
16991 vn_decode_VkExternalImageFormatProperties(struct vn_cs_decoder *dec, VkExternalImageFormatProperties *val) vn_decode_VkExternalImageFormatProperties() argument
17084 vn_decode_VkSamplerYcbcrConversionImageFormatProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkSamplerYcbcrConversionImageFormatProperties_pnext() argument
17092 vn_decode_VkSamplerYcbcrConversionImageFormatProperties_self(struct vn_cs_decoder *dec, VkSamplerYcbcrConversionImageFormatProperties *val) vn_decode_VkSamplerYcbcrConversionImageFormatProperties_self() argument
17099 vn_decode_VkSamplerYcbcrConversionImageFormatProperties(struct vn_cs_decoder *dec, VkSamplerYcbcrConversionImageFormatProperties *val) vn_decode_VkSamplerYcbcrConversionImageFormatProperties() argument
17215 vn_decode_VkImageFormatProperties2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkImageFormatProperties2_pnext() argument
17248 vn_decode_VkImageFormatProperties2_self(struct vn_cs_decoder *dec, VkImageFormatProperties2 *val) vn_decode_VkImageFormatProperties2_self() argument
17255 vn_decode_VkImageFormatProperties2(struct vn_cs_decoder *dec, VkImageFormatProperties2 *val) vn_decode_VkImageFormatProperties2() argument
17393 vn_decode_VkQueueFamilyProperties2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkQueueFamilyProperties2_pnext() argument
17401 vn_decode_VkQueueFamilyProperties2_self(struct vn_cs_decoder *dec, VkQueueFamilyProperties2 *val) vn_decode_VkQueueFamilyProperties2_self() argument
17408 vn_decode_VkQueueFamilyProperties2(struct vn_cs_decoder *dec, VkQueueFamilyProperties2 *val) vn_decode_VkQueueFamilyProperties2() argument
17501 vn_decode_VkPhysicalDeviceMemoryProperties2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceMemoryProperties2_pnext() argument
17509 vn_decode_VkPhysicalDeviceMemoryProperties2_self(struct vn_cs_decoder *dec, VkPhysicalDeviceMemoryProperties2 *val) vn_decode_VkPhysicalDeviceMemoryProperties2_self() argument
17516 vn_decode_VkPhysicalDeviceMemoryProperties2(struct vn_cs_decoder *dec, VkPhysicalDeviceMemoryProperties2 *val) vn_decode_VkPhysicalDeviceMemoryProperties2() argument
17670 vn_decode_VkSparseImageFormatProperties2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkSparseImageFormatProperties2_pnext() argument
17678 vn_decode_VkSparseImageFormatProperties2_self(struct vn_cs_decoder *dec, VkSparseImageFormatProperties2 *val) vn_decode_VkSparseImageFormatProperties2_self() argument
17685 vn_decode_VkSparseImageFormatProperties2(struct vn_cs_decoder *dec, VkSparseImageFormatProperties2 *val) vn_decode_VkSparseImageFormatProperties2() argument
17835 vn_decode_VkExternalBufferProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkExternalBufferProperties_pnext() argument
17843 vn_decode_VkExternalBufferProperties_self(struct vn_cs_decoder *dec, VkExternalBufferProperties *val) vn_decode_VkExternalBufferProperties_self() argument
17850 vn_decode_VkExternalBufferProperties(struct vn_cs_decoder *dec, VkExternalBufferProperties *val) vn_decode_VkExternalBufferProperties() argument
18031 vn_decode_VkExternalSemaphoreProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkExternalSemaphoreProperties_pnext() argument
18039 vn_decode_VkExternalSemaphoreProperties_self(struct vn_cs_decoder *dec, VkExternalSemaphoreProperties *val) vn_decode_VkExternalSemaphoreProperties_self() argument
18048 vn_decode_VkExternalSemaphoreProperties(struct vn_cs_decoder *dec, VkExternalSemaphoreProperties *val) vn_decode_VkExternalSemaphoreProperties() argument
18200 vn_decode_VkExternalFenceProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkExternalFenceProperties_pnext() argument
18208 vn_decode_VkExternalFenceProperties_self(struct vn_cs_decoder *dec, VkExternalFenceProperties *val) vn_decode_VkExternalFenceProperties_self() argument
18217 vn_decode_VkExternalFenceProperties(struct vn_cs_decoder *dec, VkExternalFenceProperties *val) vn_decode_VkExternalFenceProperties() argument
18318 vn_decode_VkPhysicalDeviceGroupProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceGroupProperties_pnext() argument
18326 vn_decode_VkPhysicalDeviceGroupProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceGroupProperties *val) vn_decode_VkPhysicalDeviceGroupProperties_self() argument
18339 vn_decode_VkPhysicalDeviceGroupProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceGroupProperties *val) vn_decode_VkPhysicalDeviceGroupProperties() argument
18558 vn_decode_VkPhysicalDeviceToolProperties_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkPhysicalDeviceToolProperties_pnext() argument
18566 vn_decode_VkPhysicalDeviceToolProperties_self(struct vn_cs_decoder *dec, VkPhysicalDeviceToolProperties *val) vn_decode_VkPhysicalDeviceToolProperties_self() argument
18589 vn_decode_VkPhysicalDeviceToolProperties(struct vn_cs_decoder *dec, VkPhysicalDeviceToolProperties *val) vn_decode_VkPhysicalDeviceToolProperties() argument
18721 vn_decode_vkEnumeratePhysicalDevices_reply(struct vn_cs_decoder *dec, VkInstance instance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices) vn_decode_vkEnumeratePhysicalDevices_reply() argument
18786 vn_decode_vkGetPhysicalDeviceProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties* pProperties) vn_decode_vkGetPhysicalDeviceProperties_reply() argument
18860 vn_decode_vkGetPhysicalDeviceQueueFamilyProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties* pQueueFamilyProperties) vn_decode_vkGetPhysicalDeviceQueueFamilyProperties_reply() argument
18921 vn_decode_vkGetPhysicalDeviceMemoryProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties* pMemoryProperties) vn_decode_vkGetPhysicalDeviceMemoryProperties_reply() argument
18974 vn_decode_vkGetPhysicalDeviceFeatures_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures* pFeatures) vn_decode_vkGetPhysicalDeviceFeatures_reply() argument
19030 vn_decode_vkGetPhysicalDeviceFormatProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties* pFormatProperties) vn_decode_vkGetPhysicalDeviceFormatProperties_reply() argument
19101 vn_decode_vkGetPhysicalDeviceImageFormatProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkImageFormatProperties* pImageFormatProperties) vn_decode_vkGetPhysicalDeviceImageFormatProperties_reply() argument
19177 vn_decode_vkCreateDevice_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkDevice* pDevice) vn_decode_vkCreateDevice_reply() argument
19234 vn_decode_vkDestroyDevice_reply(struct vn_cs_decoder *dec, VkDevice device, const VkAllocationCallbacks* pAllocator) vn_decode_vkDestroyDevice_reply() argument
19306 vn_decode_vkEnumerateDeviceLayerProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkLayerProperties* pProperties) vn_decode_vkEnumerateDeviceLayerProperties_reply() argument
19409 vn_decode_vkEnumerateDeviceExtensionProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, const char* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties) vn_decode_vkEnumerateDeviceExtensionProperties_reply() argument
19481 vn_decode_vkGetDeviceQueue_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue) vn_decode_vkGetDeviceQueue_reply() argument
19530 vn_decode_vkDeviceWaitIdle_reply(struct vn_cs_decoder *dec, VkDevice device) vn_decode_vkDeviceWaitIdle_reply() argument
19618 vn_decode_vkGetPhysicalDeviceSparseImageFormatProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkSampleCountFlagBits samples, VkImageUsageFlags usage, VkImageTiling tiling, uint32_t* pPropertyCount, VkSparseImageFormatProperties* pProperties) vn_decode_vkGetPhysicalDeviceSparseImageFormatProperties_reply() argument
19684 vn_decode_vkGetPhysicalDeviceFeatures2_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures2* pFeatures) vn_decode_vkGetPhysicalDeviceFeatures2_reply() argument
19737 vn_decode_vkGetPhysicalDeviceProperties2_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties2* pProperties) vn_decode_vkGetPhysicalDeviceProperties2_reply() argument
19793 vn_decode_vkGetPhysicalDeviceFormatProperties2_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties2* pFormatProperties) vn_decode_vkGetPhysicalDeviceFormatProperties2_reply() argument
19855 vn_decode_vkGetPhysicalDeviceImageFormatProperties2_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo, VkImageFormatProperties2* pImageFormatProperties) vn_decode_vkGetPhysicalDeviceImageFormatProperties2_reply() argument
19934 vn_decode_vkGetPhysicalDeviceQueueFamilyProperties2_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties2* pQueueFamilyProperties) vn_decode_vkGetPhysicalDeviceQueueFamilyProperties2_reply() argument
19995 vn_decode_vkGetPhysicalDeviceMemoryProperties2_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2* pMemoryProperties) vn_decode_vkGetPhysicalDeviceMemoryProperties2_reply() argument
20075 vn_decode_vkGetPhysicalDeviceSparseImageFormatProperties2_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo, uint32_t* pPropertyCount, VkSparseImageFormatProperties2* pProperties) vn_decode_vkGetPhysicalDeviceSparseImageFormatProperties2_reply() argument
20143 vn_decode_vkGetPhysicalDeviceExternalBufferProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo, VkExternalBufferProperties* pExternalBufferProperties) vn_decode_vkGetPhysicalDeviceExternalBufferProperties_reply() argument
20203 vn_decode_vkGetPhysicalDeviceExternalSemaphoreProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo, VkExternalSemaphoreProperties* pExternalSemaphoreProperties) vn_decode_vkGetPhysicalDeviceExternalSemaphoreProperties_reply() argument
20263 vn_decode_vkGetPhysicalDeviceExternalFenceProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo, VkExternalFenceProperties* pExternalFenceProperties) vn_decode_vkGetPhysicalDeviceExternalFenceProperties_reply() argument
20340 vn_decode_vkEnumeratePhysicalDeviceGroups_reply(struct vn_cs_decoder *dec, VkInstance instance, uint32_t* pPhysicalDeviceGroupCount, VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties) vn_decode_vkEnumeratePhysicalDeviceGroups_reply() argument
20411 vn_decode_vkGetDeviceGroupPeerMemoryFeatures_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, VkPeerMemoryFeatureFlags* pPeerMemoryFeatures) vn_decode_vkGetDeviceGroupPeerMemoryFeatures_reply() argument
20473 vn_decode_vkGetDeviceQueue2_reply(struct vn_cs_decoder *dec, VkDevice device, const VkDeviceQueueInfo2* pQueueInfo, VkQueue* pQueue) vn_decode_vkGetDeviceQueue2_reply() argument
20537 vn_decode_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, uint32_t* pTimeDomainCount, VkTimeDomainEXT* pTimeDomains) vn_decode_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT_reply() argument
20626 vn_decode_vkGetCalibratedTimestampsEXT_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t timestampCount, const VkCalibratedTimestampInfoEXT* pTimestampInfos, uint64_t* pTimestamps, uint64_t* pMaxDeviation) vn_decode_vkGetCalibratedTimestampsEXT_reply() argument
20715 vn_decode_vkGetPhysicalDeviceToolProperties_reply(struct vn_cs_decoder *dec, VkPhysicalDevice physicalDevice, uint32_t* pToolCount, VkPhysicalDeviceToolProperties* pToolProperties) vn_decode_vkGetPhysicalDeviceToolProperties_reply() argument
21377 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkEnumeratePhysicalDevices() local
21399 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceProperties() local
21418 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceQueueFamilyProperties() local
21437 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceMemoryProperties() local
21456 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceFeatures() local
21475 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceFormatProperties() local
21494 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceImageFormatProperties() local
21516 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkCreateDevice() local
21538 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkDestroyDevice() local
21557 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkEnumerateDeviceLayerProperties() local
21579 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkEnumerateDeviceExtensionProperties() local
21601 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetDeviceQueue() local
21620 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkDeviceWaitIdle() local
21642 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceSparseImageFormatProperties() local
21661 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceFeatures2() local
21680 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceProperties2() local
21699 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceFormatProperties2() local
21718 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceImageFormatProperties2() local
21740 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceQueueFamilyProperties2() local
21759 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceMemoryProperties2() local
21778 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceSparseImageFormatProperties2() local
21797 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceExternalBufferProperties() local
21816 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceExternalSemaphoreProperties() local
21835 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceExternalFenceProperties() local
21854 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkEnumeratePhysicalDeviceGroups() local
21876 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetDeviceGroupPeerMemoryFeatures() local
21895 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetDeviceQueue2() local
21914 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT() local
21936 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetCalibratedTimestampsEXT() local
21958 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetPhysicalDeviceToolProperties() local
[all...]
H A Dvn_protocol_driver_structs.h40 vn_decode_VkExtent3D(struct vn_cs_decoder *dec, VkExtent3D *val) in vn_decode_VkExtent3D() argument
42 vn_decode_uint32_t(dec, &val->width); in vn_decode_VkExtent3D()
43 vn_decode_uint32_t(dec, &val->height); in vn_decode_VkExtent3D()
44 vn_decode_uint32_t(dec, &val->depth); in vn_decode_VkExtent3D()
81 vn_decode_VkLayerProperties(struct vn_cs_decoder *dec, VkLayerProperties *val) in vn_decode_VkLayerProperties() argument
84 const size_t array_size = vn_decode_array_size(dec, VK_MAX_EXTENSION_NAME_SIZE); in vn_decode_VkLayerProperties()
85 vn_decode_char_array(dec, val->layerName, array_size); in vn_decode_VkLayerProperties()
87 vn_decode_uint32_t(dec, &val->specVersion); in vn_decode_VkLayerProperties()
88 vn_decode_uint32_t(dec, &val->implementationVersion); in vn_decode_VkLayerProperties()
90 const size_t array_size = vn_decode_array_size(dec, VK_MAX_DESCRIPTION_SIZ in vn_decode_VkLayerProperties()
136 vn_decode_VkExtensionProperties(struct vn_cs_decoder *dec, VkExtensionProperties *val) vn_decode_VkExtensionProperties() argument
174 vn_decode_VkMemoryRequirements(struct vn_cs_decoder *dec, VkMemoryRequirements *val) vn_decode_VkMemoryRequirements() argument
212 vn_decode_VkSparseImageFormatProperties(struct vn_cs_decoder *dec, VkSparseImageFormatProperties *val) vn_decode_VkSparseImageFormatProperties() argument
473 vn_decode_VkComponentMapping(struct vn_cs_decoder *dec, VkComponentMapping *val) vn_decode_VkComponentMapping() argument
623 vn_decode_VkOffset2D(struct vn_cs_decoder *dec, VkOffset2D *val) vn_decode_VkOffset2D() argument
664 vn_decode_VkExtent2D(struct vn_cs_decoder *dec, VkExtent2D *val) vn_decode_VkExtent2D() argument
705 vn_decode_VkRect2D(struct vn_cs_decoder *dec, VkRect2D *val) vn_decode_VkRect2D() argument
820 vn_decode_VkMemoryDedicatedRequirements_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkMemoryDedicatedRequirements_pnext() argument
828 vn_decode_VkMemoryDedicatedRequirements_self(struct vn_cs_decoder *dec, VkMemoryDedicatedRequirements *val) vn_decode_VkMemoryDedicatedRequirements_self() argument
836 vn_decode_VkMemoryDedicatedRequirements(struct vn_cs_decoder *dec, VkMemoryDedicatedRequirements *val) vn_decode_VkMemoryDedicatedRequirements() argument
948 vn_decode_VkMemoryRequirements2_pnext(struct vn_cs_decoder *dec, const void *val) vn_decode_VkMemoryRequirements2_pnext() argument
977 vn_decode_VkMemoryRequirements2_self(struct vn_cs_decoder *dec, VkMemoryRequirements2 *val) vn_decode_VkMemoryRequirements2_self() argument
984 vn_decode_VkMemoryRequirements2(struct vn_cs_decoder *dec, VkMemoryRequirements2 *val) vn_decode_VkMemoryRequirements2() argument
[all...]
H A Dvn_protocol_driver_transport.h166 vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_pnext(struct vn_cs_decoder *dec, const void *val) in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_pnext() argument
169 if (vn_decode_simple_pointer(dec)) in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_pnext()
174 vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_self(struct vn_cs_decoder *dec, VkMemoryResourceAllocationSizeProperties100000MESA *val) in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_self() argument
177 vn_decode_uint64_t(dec, &val->allocationSize); in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_self()
181 vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA(struct vn_cs_decoder *dec, VkMemoryResourceAllocationSizeProperties100000MESA *val) in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA() argument
184 vn_decode_VkStructureType(dec, &stype); in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA()
188 vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_pnext(dec, val->pNext); in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA()
189 vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA_self(dec, val); in vn_decode_VkMemoryResourceAllocationSizeProperties100000MESA()
291 vn_decode_VkMemoryResourcePropertiesMESA_pnext(struct vn_cs_decoder *dec, const void *val) in vn_decode_VkMemoryResourcePropertiesMESA_pnext() argument
296 if (!vn_decode_simple_pointer(dec)) in vn_decode_VkMemoryResourcePropertiesMESA_pnext()
320 vn_decode_VkMemoryResourcePropertiesMESA_self(struct vn_cs_decoder *dec, VkMemoryResourcePropertiesMESA *val) vn_decode_VkMemoryResourcePropertiesMESA_self() argument
327 vn_decode_VkMemoryResourcePropertiesMESA(struct vn_cs_decoder *dec, VkMemoryResourcePropertiesMESA *val) vn_decode_VkMemoryResourcePropertiesMESA() argument
456 vn_decode_vkSetReplyCommandStreamMESA_reply(struct vn_cs_decoder *dec, const VkCommandStreamDescriptionMESA* pStream) vn_decode_vkSetReplyCommandStreamMESA_reply() argument
496 vn_decode_vkSeekReplyCommandStreamMESA_reply(struct vn_cs_decoder *dec, size_t position) vn_decode_vkSeekReplyCommandStreamMESA_reply() argument
585 vn_decode_vkExecuteCommandStreamsMESA_reply(struct vn_cs_decoder *dec, uint32_t streamCount, const VkCommandStreamDescriptionMESA* pStreams, const size_t* pReplyPositions, uint32_t dependencyCount, const VkCommandStreamDependencyMESA* pDependencies, VkCommandStreamExecutionFlagsMESA flags) vn_decode_vkExecuteCommandStreamsMESA_reply() argument
636 vn_decode_vkCreateRingMESA_reply(struct vn_cs_decoder *dec, uint64_t ring, const VkRingCreateInfoMESA* pCreateInfo) vn_decode_vkCreateRingMESA_reply() argument
677 vn_decode_vkDestroyRingMESA_reply(struct vn_cs_decoder *dec, uint64_t ring) vn_decode_vkDestroyRingMESA_reply() argument
723 vn_decode_vkNotifyRingMESA_reply(struct vn_cs_decoder *dec, uint64_t ring, uint32_t seqno, VkRingNotifyFlagsMESA flags) vn_decode_vkNotifyRingMESA_reply() argument
771 vn_decode_vkWriteRingExtraMESA_reply(struct vn_cs_decoder *dec, uint64_t ring, size_t offset, uint32_t value) vn_decode_vkWriteRingExtraMESA_reply() argument
826 vn_decode_vkGetMemoryResourcePropertiesMESA_reply(struct vn_cs_decoder *dec, VkDevice device, uint32_t resourceId, VkMemoryResourcePropertiesMESA* pMemoryResourceProperties) vn_decode_vkGetMemoryResourcePropertiesMESA_reply() argument
889 vn_decode_vkGetVenusExperimentalFeatureData100000MESA_reply(struct vn_cs_decoder *dec, size_t* pDataSize, void* pData) vn_decode_vkGetVenusExperimentalFeatureData100000MESA_reply() argument
1104 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkSetReplyCommandStreamMESA() local
1123 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkSeekReplyCommandStreamMESA() local
1142 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkExecuteCommandStreamsMESA() local
1161 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkCreateRingMESA() local
1180 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkDestroyRingMESA() local
1199 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkNotifyRingMESA() local
1218 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkWriteRingExtraMESA() local
1237 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetMemoryResourcePropertiesMESA() local
1259 struct vn_cs_decoder *dec = vn_instance_get_command_reply(vn_instance, &submit); vn_call_vkGetVenusExperimentalFeatureData100000MESA() local
[all...]
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/
H A Ddecoder.c48 struct hl_dec *dec = container_of(work, struct hl_dec, abnrm_intr_work); in dec_abnrm_intr_work() local
49 struct hl_device *hdev = dec->hdev; in dec_abnrm_intr_work()
53 irq_status = RREG32(dec->base_addr + VCMD_IRQ_STATUS_OFFSET); in dec_abnrm_intr_work()
55 dev_err(hdev->dev, "Decoder abnormal interrupt %#x, core %d\n", irq_status, dec->core_id); in dec_abnrm_intr_work()
60 WREG32(dec->base_addr + VCMD_IRQ_STATUS_OFFSET, irq_status); in dec_abnrm_intr_work()
63 RREG32(dec->base_addr + VCMD_IRQ_STATUS_OFFSET); in dec_abnrm_intr_work()
88 kfree(hdev->dec); in hl_dec_fini()
94 struct hl_dec *dec; in hl_dec_init() local
101 hdev->dec = kcalloc(prop->max_dec, sizeof(struct hl_dec), GFP_KERNEL); in hl_dec_init()
102 if (!hdev->dec) in hl_dec_init()
131 struct hl_dec *dec; hl_dec_ctx_fini() local
[all...]
/third_party/curl/lib/
H A Dws.c110 static void ws_dec_info(struct ws_decoder *dec, struct Curl_easy *data, in ws_dec_info() argument
113 switch(dec->head_len) { in ws_dec_info()
118 ws_frame_name_of_op(dec->head[0]), in ws_dec_info()
119 (dec->head[0] & WSBIT_FIN)? "" : " NON-FINAL"); in ws_dec_info()
122 if(dec->head_len < dec->head_total) { in ws_dec_info()
124 ws_frame_name_of_op(dec->head[0]), in ws_dec_info()
125 (dec->head[0] & WSBIT_FIN)? "" : " NON-FINAL", in ws_dec_info()
126 dec->head_len, dec in ws_dec_info()
147 ws_dec_reset(struct ws_decoder *dec) ws_dec_reset() argument
157 ws_dec_init(struct ws_decoder *dec) ws_dec_init() argument
162 ws_dec_read_head(struct ws_decoder *dec, struct Curl_easy *data, struct bufq *inraw) ws_dec_read_head() argument
256 ws_dec_pass_payload(struct ws_decoder *dec, struct Curl_easy *data, struct bufq *inraw, ws_write_payload *write_payload, void *write_ctx) ws_dec_pass_payload() argument
288 ws_dec_pass(struct ws_decoder *dec, struct Curl_easy *data, struct bufq *inraw, ws_write_payload *write_payload, void *write_ctx) ws_dec_pass() argument
[all...]
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Didec_dec.c18 #include "src/dec/alphai_dec.h"
19 #include "src/dec/webpi_dec.h"
20 #include "src/dec/vp8i_dec.h"
106 const VP8Decoder* const dec = (VP8Decoder*)idec->dec_; in NeedCompressedAlpha() local
107 assert(dec != NULL); // Must be true as idec->state_ != STATE_WEBP_HEADER. in NeedCompressedAlpha()
108 return (dec->alpha_data_ != NULL) && !dec->is_alpha_decoded_; in NeedCompressedAlpha()
122 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; in DoRemap() local
123 const uint32_t last_part = dec->num_parts_minus_one_; in DoRemap()
127 VP8RemapBitReader(dec in DoRemap()
156 VP8LDecoder* const dec = (VP8LDecoder*)idec->dec_; DoRemap() local
166 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; AppendToMemBuffer() local
272 SaveContext(const VP8Decoder* dec, const VP8BitReader* token_br, MBContext* const context) SaveContext() argument
279 RestoreContext(const MBContext* context, VP8Decoder* const dec, VP8BitReader* const token_br) RestoreContext() argument
328 VP8Decoder* const dec = VP8New(); DecodeWebPHeaders() local
337 VP8LDecoder* const dec = VP8LNew(); DecodeWebPHeaders() local
372 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; CopyParts0Data() local
400 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; DecodePartition0() local
453 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; DecodeRemaining() local
522 VP8LDecoder* const dec = (VP8LDecoder*)idec->dec_; DecodeVP8LHeader() local
553 VP8LDecoder* const dec = (VP8LDecoder*)idec->dec_; DecodeVP8LData() local
586 const VP8Decoder* const dec = (VP8Decoder*)idec->dec_; IDecode() local
[all...]
H A Dtree_dec.c14 #include "src/dec/vp8i_dec.h"
290 VP8Decoder* const dec, int mb_x) { in ParseIntraMode()
291 uint8_t* const top = dec->intra_t_ + 4 * mb_x; in ParseIntraMode()
292 uint8_t* const left = dec->intra_l_; in ParseIntraMode()
293 VP8MBData* const block = dec->mb_data_ + mb_x; in ParseIntraMode()
297 if (dec->segment_hdr_.update_map_) { in ParseIntraMode()
299 block->segment_ = !VP8GetBit(br, dec->proba_.segments_[0], "segments") in ParseIntraMode()
300 ? VP8GetBit(br, dec->proba_.segments_[1], "segments") in ParseIntraMode()
301 : VP8GetBit(br, dec->proba_.segments_[2], "segments") + 2; in ParseIntraMode()
305 if (dec in ParseIntraMode()
289 ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec, int mb_x) ParseIntraMode() argument
360 VP8ParseIntraModeRow(VP8BitReader* const br, VP8Decoder* const dec) VP8ParseIntraModeRow() argument
514 VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec) VP8ParseProba() argument
[all...]
/third_party/python/Modules/_decimal/libmpdec/
H A Dio.c199 mpd_qset_string(mpd_t *dec, const char *s, const mpd_context_t *ctx, in mpd_qset_string() argument
208 mpd_set_flags(dec, 0); in mpd_qset_string()
209 dec->len = 0; in mpd_qset_string()
210 dec->exp = 0; in mpd_qset_string()
217 mpd_set_negative(dec); in mpd_qset_string()
224 mpd_setspecial(dec, sign, MPD_NAN); in mpd_qset_string()
240 mpd_setspecial(dec, sign, MPD_SNAN); in mpd_qset_string()
257 mpd_setspecial(dec, sign, MPD_INF); in mpd_qset_string()
271 dec->exp = strtoexp(exp); in mpd_qset_string()
274 (dec in mpd_qset_string()
331 mpd_qset_string_exact(mpd_t *dec, const char *s, uint32_t *status) mpd_qset_string_exact() argument
398 coeff_to_string(char *s, const mpd_t *dec) coeff_to_string() argument
419 coeff_to_string_dot(char *s, char *dot, const mpd_t *dec) coeff_to_string_dot() argument
462 _mpd_to_string(char **result, const mpd_t *dec, int flags, mpd_ssize_t dplace) _mpd_to_string() argument
648 mpd_to_sci(const mpd_t *dec, int fmt) mpd_to_sci() argument
659 mpd_to_eng(const mpd_t *dec, int fmt) mpd_to_eng() argument
670 mpd_to_sci_size(char **res, const mpd_t *dec, int fmt) mpd_to_sci_size() argument
679 mpd_to_eng_size(char **res, const mpd_t *dec, int fmt) mpd_to_eng_size() argument
1248 mpd_qformat_spec(const mpd_t *dec, const mpd_spec_t *spec, const mpd_context_t *ctx, uint32_t *status) mpd_qformat_spec() argument
1401 mpd_qformat(const mpd_t *dec, const char *fmt, const mpd_context_t *ctx, uint32_t *status) mpd_qformat() argument
1571 mpd_fprint(FILE *file, const mpd_t *dec) mpd_fprint() argument
1586 mpd_print(const mpd_t *dec) mpd_print() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Ddds.c109 TextureDSPThreadContext dec; member
168 ctx->dec.raw_ratio = 16; in parse_pixel_format()
171 ctx->dec.tex_ratio = 8; in parse_pixel_format()
172 ctx->dec.tex_funct = ctx->texdsp.dxt1a_block; in parse_pixel_format()
175 ctx->dec.tex_ratio = 16; in parse_pixel_format()
176 ctx->dec.tex_funct = ctx->texdsp.dxt2_block; in parse_pixel_format()
179 ctx->dec.tex_ratio = 16; in parse_pixel_format()
180 ctx->dec.tex_funct = ctx->texdsp.dxt3_block; in parse_pixel_format()
183 ctx->dec.tex_ratio = 16; in parse_pixel_format()
184 ctx->dec in parse_pixel_format()
[all...]
/third_party/gn/src/gn/
H A Dstandard_out.cc80 void OutputMarkdownDec(TextDecoration dec) { in OutputMarkdownDec() argument
86 if (dec == DECORATION_DIM) in OutputMarkdownDec()
88 else if (dec != DECORATION_NONE) in OutputMarkdownDec()
91 if (dec == DECORATION_DIM) in OutputMarkdownDec()
93 else if (dec != DECORATION_NONE) in OutputMarkdownDec()
103 TextDecoration dec, in OutputString()
109 OutputMarkdownDec(dec); in OutputString()
111 switch (dec) { in OutputString()
140 if (is_markdown && dec == DECORATION_YELLOW) { in OutputString()
157 OutputMarkdownDec(dec); in OutputString()
102 OutputString(const std::string& output, TextDecoration dec, HtmlEscaping escaping) OutputString() argument
333 TextDecoration dec = DECORATION_NONE; PrintLongHelp() local
[all...]
/third_party/lzma/CPP/7zip/Compress/
H A DBcj2Coder.cpp447 dec.lims[i] = dec.bufs[i] = _bufs[i]; in InitCommon()
452 Bcj2Dec_Init(&dec); in InitCommon()
458 (dec.state < BCJ2_NUM_STREAMS)
462 const unsigned state = dec.state; in ReadInStream()
466 const Byte *cur = dec.bufs[state]; in ReadInStream()
467 // if (cur != dec.lims[state]) throw 1; // unexpected case in ReadInStream()
468 dec.lims[state] = in ReadInStream()
469 dec.bufs[state] = buf; in ReadInStream()
520 dec in ReadInStream()
[all...]
/third_party/node/deps/base64/base64/lib/
H A Dcodec_choose.c108 codec->dec = base64_stream_decode_avx2; in codec_choose_forced()
113 codec->dec = base64_stream_decode_neon32; in codec_choose_forced()
118 codec->dec = base64_stream_decode_neon64; in codec_choose_forced()
123 codec->dec = base64_stream_decode_plain; in codec_choose_forced()
128 codec->dec = base64_stream_decode_ssse3; in codec_choose_forced()
133 codec->dec = base64_stream_decode_sse41; in codec_choose_forced()
138 codec->dec = base64_stream_decode_sse42; in codec_choose_forced()
143 codec->dec = base64_stream_decode_avx; in codec_choose_forced()
148 codec->dec = base64_stream_decode_avx512; in codec_choose_forced()
165 codec->dec in codec_choose_arm()
[all...]
/third_party/node/deps/openssl/openssl/crypto/ct/
H A Dct_b64.c69 unsigned char *dec = NULL; in SCT_new_from_base64() local
87 declen = ct_base64_decode(logid_base64, &dec); in SCT_new_from_base64()
92 if (!SCT_set0_log_id(sct, dec, declen)) in SCT_new_from_base64()
94 dec = NULL; in SCT_new_from_base64()
96 declen = ct_base64_decode(extensions_base64, &dec); in SCT_new_from_base64()
101 SCT_set0_extensions(sct, dec, declen); in SCT_new_from_base64()
102 dec = NULL; in SCT_new_from_base64()
104 declen = ct_base64_decode(signature_base64, &dec); in SCT_new_from_base64()
110 p = dec; in SCT_new_from_base64()
113 OPENSSL_free(dec); in SCT_new_from_base64()
[all...]
/third_party/openssl/crypto/ct/
H A Dct_b64.c69 unsigned char *dec = NULL; in SCT_new_from_base64() local
87 declen = ct_base64_decode(logid_base64, &dec); in SCT_new_from_base64()
92 if (!SCT_set0_log_id(sct, dec, declen)) in SCT_new_from_base64()
94 dec = NULL; in SCT_new_from_base64()
96 declen = ct_base64_decode(extensions_base64, &dec); in SCT_new_from_base64()
101 SCT_set0_extensions(sct, dec, declen); in SCT_new_from_base64()
102 dec = NULL; in SCT_new_from_base64()
104 declen = ct_base64_decode(signature_base64, &dec); in SCT_new_from_base64()
110 p = dec; in SCT_new_from_base64()
113 OPENSSL_free(dec); in SCT_new_from_base64()
[all...]
/third_party/ffmpeg/tests/fate/
H A Dvoice.mak12 FATE_G723_1 += fate-g723_1-dec-1
13 fate-g723_1-dec-1: CMD = framecrc -postfilter 0 -i $(TARGET_SAMPLES)/g723_1/ineqd53.tco -af aresample
15 FATE_G723_1 += fate-g723_1-dec-2
16 fate-g723_1-dec-2: CMD = framecrc -postfilter 0 -i $(TARGET_SAMPLES)/g723_1/overd53.tco -af aresample
18 FATE_G723_1 += fate-g723_1-dec-3
19 fate-g723_1-dec-3: CMD = framecrc -postfilter 1 -i $(TARGET_SAMPLES)/g723_1/overd63p.tco -af aresample
21 FATE_G723_1 += fate-g723_1-dec-4
22 fate-g723_1-dec-4: CMD = framecrc -postfilter 0 -i $(TARGET_SAMPLES)/g723_1/pathd53.tco -af aresample
24 FATE_G723_1 += fate-g723_1-dec-5
25 fate-g723_1-dec
[all...]

Completed in 35 milliseconds

12345678910>>...39