Home
last modified time | relevance | path

Searched refs:pCode (Results 1 – 25 of 42) sorted by relevance

12

/third_party/openh264/codec/decoder/core/inc/
Ddec_golomb.h77 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/
DShader.h71 __in_ecount (pShaderCode[1]) const UINT *pCode,
87 __in_ecount (pShaderCode[1]) const UINT *pCode,
119 __in_ecount (pShaderCode[1]) const UINT *pCode,
DShader.cpp539 __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/
Dvn_protocol_driver_shader_module.h30 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/
Dvk_shader_module.c54 memcpy(module->data, pCreateInfo->pCode, module->size); in vk_common_CreateShaderModule()
80 _mesa_sha1_compute(pCreateInfo->pCode, pCreateInfo->codeSize, in vk_common_GetShaderModuleCreateInfoIdentifierEXT()
Dvk_pipeline.c103 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/
DVkShaderModule.cpp24 : binary(pCreateInfo->pCode, pCreateInfo->codeSize / sizeof(uint32_t)) in ShaderModule()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DShaderModuleVk.cpp36 createInfo.pCode = descriptor->code; in ShaderModule()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvkutils.c512 .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/
DGrVkUtil.cpp125 moduleCreateInfo.pCode = (const uint32_t*)spirv.c_str(); in GrInstallVkShaderModule()
/third_party/flutter/skia/third_party/externals/sdl/src/render/direct3d/
DSDL_render_d3d.c749 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/
DGrVkUtil.cpp161 moduleCreateInfo.pCode = (const uint32_t*)spirv.c_str(); in GrInstallVkShaderModule()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DShaderModuleVk.cpp183 createInfo.pCode = spirv.data(); in GetTransformedModuleHandle()
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_vulkan.cpp485 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/
DDrawTester.cpp449 moduleCreateInfo.pCode = (uint32_t *)spirv.data(); in createShaderModule()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_utils.cpp405 createInfo.pCode = shaderCode; in InitShaderAndSerial()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_vulkan.cpp704 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/
Dradix_sort_vk.c283 smci.pCode = spv[ii]; in radix_sort_vk_create()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/third_party/
Dvulkan_command_buffer_utils.cpp1515 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/
Dvulkan_command_buffer_utils.cpp1504 moduleCreateInfo.pCode = vtx_spv.data(); in init_shaders()
1527 moduleCreateInfo.pCode = frag_spv.data(); in init_shaders()
/third_party/mesa3d/src/amd/compiler/tests/
Dhelpers.cpp501 vk_module_info.pCode = (const uint32_t*)module_info->pSpirv; in __qoCreateShaderModule()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_utils.cpp767 createInfo.pCode = shaderCode; in InitShaderAndSerial()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineTimestampTests.cpp471 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/
Doverlay.cpp1434 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/
Dvulkan.c978 shader_create.pCode = res->data; in ff_vk_compile_shader()

12