| /third_party/openh264/codec/decoder/core/inc/ |
| D | dec_golomb.h | 77 static inline int32_t BsGetBits (PBitStringAux pBs, int32_t iNumBits, uint32_t* pCode) { in BsGetBits() argument 82 *pCode = (uint32_t)iRc; in BsGetBits() 127 static inline uint32_t BsGetOneBit (PBitStringAux pBs, uint32_t* pCode) { in BsGetOneBit() argument 128 return (BsGetBits (pBs, 1, pCode)); in BsGetOneBit() 157 static inline uint32_t BsGetUe (PBitStringAux pBs, uint32_t* pCode) { in BsGetUe() argument 182 *pCode = ((1u << iLeadingZeroBits) - 1 + iValue); in BsGetUe() 190 static inline int32_t BsGetSe (PBitStringAux pBs, int32_t* pCode) { in BsGetSe() argument 196 *pCode = (int32_t) ((uiCodeNum + 1) >> 1); in BsGetSe() 198 *pCode = NEG_NUM ((int32_t) (uiCodeNum >> 1)); in BsGetSe() 206 static inline int32_t BsGetTe0 (PBitStringAux pBs, int32_t iRange, uint32_t* pCode) { in BsGetTe0() argument [all …]
|
| /third_party/mesa3d/src/gallium/frontends/d3d10umd/ |
| D | Shader.h | 71 __in_ecount (pShaderCode[1]) const UINT *pCode, 87 __in_ecount (pShaderCode[1]) const UINT *pCode, 119 __in_ecount (pShaderCode[1]) const UINT *pCode,
|
| D | Shader.cpp | 539 __in_ecount (pShaderCode[1]) const UINT *pCode, // IN in CreateVertexShader() 553 pShader->state.tokens = Shader_tgsi_translate(pCode, pShader->output_mapping); in CreateVertexShader()
|
| /third_party/mesa3d/src/virtio/venus-protocol/ |
| D | vn_protocol_driver_shader_module.h | 30 if (val->pCode) { in vn_sizeof_VkShaderModuleCreateInfo_self() 32 size += vn_sizeof_uint32_t_array(val->pCode, val->codeSize / 4); in vn_sizeof_VkShaderModuleCreateInfo_self() 64 if (val->pCode) { in vn_encode_VkShaderModuleCreateInfo_self() 66 vn_encode_uint32_t_array(enc, val->pCode, val->codeSize / 4); in vn_encode_VkShaderModuleCreateInfo_self()
|
| /third_party/mesa3d/src/vulkan/runtime/ |
| D | vk_shader_module.c | 54 memcpy(module->data, pCreateInfo->pCode, module->size); in vk_common_CreateShaderModule() 80 _mesa_sha1_compute(pCreateInfo->pCode, pCreateInfo->codeSize, in vk_common_GetShaderModuleCreateInfoIdentifierEXT()
|
| D | vk_pipeline.c | 103 spirv_data = minfo->pCode; in vk_pipeline_shader_stage_to_nir() 181 _mesa_sha1_compute(minfo->pCode, minfo->codeSize, spirv_sha1); in vk_pipeline_hash_shader_stage()
|
| /third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
| D | VkShaderModule.cpp | 24 : binary(pCreateInfo->pCode, pCreateInfo->codeSize / sizeof(uint32_t)) in ShaderModule()
|
| /third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
| D | ShaderModuleVk.cpp | 36 createInfo.pCode = descriptor->code; in ShaderModule()
|
| /third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/ |
| D | gstvkutils.c | 512 .pCode = (const guint32 *) code in gst_vulkan_create_shader() 547 info.pCode = new_code; in gst_vulkan_create_shader()
|
| /third_party/skia/src/gpu/vk/ |
| D | GrVkUtil.cpp | 125 moduleCreateInfo.pCode = (const uint32_t*)spirv.c_str(); in GrInstallVkShaderModule()
|
| /third_party/flutter/skia/third_party/externals/sdl/src/render/direct3d/ |
| D | SDL_render_d3d.c | 749 LPD3DXBUFFER pCode; in D3D_CreateRenderer() local 753 …result = D3DXAssembleShader(shader_text, SDL_strlen(shader_text), NULL, NULL, 0, &pCode, &pErrorMs… in D3D_CreateRenderer() 755 shader_data = (DWORD*)pCode->lpVtbl->GetBufferPointer(pCode); in D3D_CreateRenderer() 756 shader_size = pCode->lpVtbl->GetBufferSize(pCode); in D3D_CreateRenderer()
|
| /third_party/flutter/skia/src/gpu/vk/ |
| D | GrVkUtil.cpp | 161 moduleCreateInfo.pCode = (const uint32_t*)spirv.c_str(); in GrInstallVkShaderModule()
|
| /third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
| D | ShaderModuleVk.cpp | 183 createInfo.pCode = spirv.data(); in GetTransformedModuleHandle()
|
| /third_party/flutter/skia/third_party/externals/imgui/examples/ |
| D | imgui_impl_vulkan.cpp | 485 vert_info.pCode = (uint32_t*)__glsl_shader_vert_spv; in ImGui_ImplVulkan_CreateDeviceObjects() 491 frag_info.pCode = (uint32_t*)__glsl_shader_frag_spv; in ImGui_ImplVulkan_CreateDeviceObjects()
|
| /third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
| D | DrawTester.cpp | 449 moduleCreateInfo.pCode = (uint32_t *)spirv.data(); in createShaderModule()
|
| /third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
| D | vk_utils.cpp | 405 createInfo.pCode = shaderCode; in InitShaderAndSerial()
|
| /third_party/skia/third_party/externals/imgui/backends/ |
| D | imgui_impl_vulkan.cpp | 704 vert_info.pCode = (uint32_t*)__glsl_shader_vert_spv; in ImGui_ImplVulkan_CreateShaderModules() 713 frag_info.pCode = (uint32_t*)__glsl_shader_frag_spv; in ImGui_ImplVulkan_CreateShaderModules()
|
| /third_party/mesa3d/src/amd/vulkan/radix_sort/ |
| D | radix_sort_vk.c | 283 smci.pCode = spv[ii]; in radix_sort_vk_create()
|
| /third_party/skia/third_party/externals/angle2/src/tests/test_utils/third_party/ |
| D | vulkan_command_buffer_utils.cpp | 1515 moduleCreateInfo.pCode = vtx_spv.data(); in init_shaders() 1538 moduleCreateInfo.pCode = frag_spv.data(); in init_shaders()
|
| /third_party/flutter/skia/third_party/externals/angle2/src/tests/test_utils/third_party/ |
| D | vulkan_command_buffer_utils.cpp | 1504 moduleCreateInfo.pCode = vtx_spv.data(); in init_shaders() 1527 moduleCreateInfo.pCode = frag_spv.data(); in init_shaders()
|
| /third_party/mesa3d/src/amd/compiler/tests/ |
| D | helpers.cpp | 501 vk_module_info.pCode = (const uint32_t*)module_info->pSpirv; in __qoCreateShaderModule()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
| D | vk_utils.cpp | 767 createInfo.pCode = shaderCode; in InitShaderAndSerial()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
| D | vktPipelineTimestampTests.cpp | 471 deUint32* pCode = (deUint32*)m_context.getBinaryCollection().get(source_name).getBinary(); in bindShaderStage() local 480 pCode, // const deUint32* pCode; in bindShaderStage()
|
| /third_party/mesa3d/src/vulkan/overlay-layer/ |
| D | overlay.cpp | 1434 vert_info.pCode = overlay_vert_spv; in setup_swapchain_data_pipeline() 1440 frag_info.pCode = (uint32_t*)overlay_frag_spv; in setup_swapchain_data_pipeline()
|
| /third_party/ffmpeg/libavfilter/ |
| D | vulkan.c | 978 shader_create.pCode = res->data; in ff_vk_compile_shader()
|