/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_cross_c.cpp | 2139 return type->image.depth ? SPVC_TRUE : SPVC_FALSE; in spvc_type_get_image_is_depth()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | parser_impl.cc | 2514 // Vulkan ignores the depth parameter on OpImage, so pay attention to the in GetTypeForHandleVar() 2517 // treat that as a depth texture. in GetTypeForHandleVar() 2518 if (image_type->depth() || usage.IsDepthTexture()) { in GetTypeForHandleVar() 2530 // Multisampled textures are never depth textures. in GetTypeForHandleVar() 2736 // Depth reference access implies usage as a depth texture, which in RegisterHandleUsage()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
H A D | eap.c | 2078 "reason=%d depth=%d subject='%s' err='%s'", in eap_peer_sm_tls_event() 2080 data->cert_fail.depth, in eap_peer_sm_tls_event()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
H A D | eap.c | 2123 "reason=%d depth=%d subject='%s' err='%s'", in eap_peer_sm_tls_event() 2125 data->cert_fail.depth, in eap_peer_sm_tls_event()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cEnhancedLayoutsTests.cpp | 3258 * @param depth Depth of texture 3264 void Texture::Init(TYPES tex_type, GLuint width, GLuint height, GLuint depth, GLenum internal_format, GLenum format, in Init() argument 3277 Storage(gl, tex_type, width, height, depth, internal_format); in Init() 3278 Update(gl, tex_type, width, height, depth, format, type, data); in Init() 3431 * @param depth Depth of texture 3434 void Texture::Storage(const Functions& gl, TYPES tex_type, GLuint width, GLuint height, GLuint depth, in Storage() argument 3456 gl.texStorage3D(target, levels, internal_format, width, height, depth); in Storage() 3486 void Texture::Update(const Functions& gl, TYPES tex_type, GLuint width, GLuint height, GLuint depth, GLenum format, in Update() argument 3522 gl.texSubImage3D(target, level, 0 /* x */, 0 /* y */, 0 /* z */, width, height, depth, format, type, data); in Update()
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan_structs.hpp | 7160 , depth( depth_ ) in depth() function 7168 : width( extent2D.width ), height( extent2D.height ), depth( depth_ ) in depth() function 7195 depth = depth_; 7215 return ( width == rhs.width ) && ( height == rhs.height ) && ( depth == rhs.depth ); 7227 uint32_t depth = {}; member 10681 : depth( depth_ ) 10703 depth = depth_; 10729 return ( depth == rhs.depth ) 10739 float depth = {}; global() member 72492 , depth( depth_ ) depth() function 72503 : width( extent2D.width ), height( extent2D.height ), depth( depth_ ) depth() function 72562 uint32_t depth = {}; global() member [all...] |
H A D | vulkan_raii.hpp | 4484 uint32_t depth ) const VULKAN_HPP_NOEXCEPT; 4674 uint32_t depth ) const VULKAN_HPP_NOEXCEPT; 14206 uint32_t depth ) const VULKAN_HPP_NOEXCEPT 14225 depth ); variable 15902 uint32_t depth ) const VULKAN_HPP_NOEXCEPT 15915 depth ); variable
|
/third_party/astc-encoder/Source/ |
H A D | wuffs-v0.3.c | 3718 // Working in the higher bit depth can produce slightly different (and in wuffs_base__color_u32_argb_nonpremul__as__color_u32_argb_premul() 3890 // Common 8-bit-depth pixel formats. This list is not exhaustive; not all valid 24584 const char wuffs_cbor__error__unsupported_recursion_depth[] = "#cbor: unsupported recursion depth"; 44337 int32_t depth = 0; DecodeCbor() local 45587 int32_t depth = 0; DecodeJson() local [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/intel/ipw2x00/ |
H A D | ipw2200.c | 4079 static s16 exponential_average(s16 prev_avg, s16 val, u8 depth) in exponential_average() argument 4081 return ((depth-1)*prev_avg + val)/depth; in exponential_average()
|
/kernel/linux/linux-5.10/tools/lib/bpf/ |
H A D | libbpf.c | 4919 int depth = 32; /* max recursion depth */ in bpf_core_types_are_compat() local 4928 depth--; in bpf_core_types_are_compat() 4929 if (depth < 0) in bpf_core_types_are_compat()
|
/kernel/linux/linux-6.6/drivers/net/wireless/intel/ipw2x00/ |
H A D | ipw2200.c | 4033 static s16 exponential_average(s16 prev_avg, s16 val, u8 depth) in exponential_average() argument 4035 return ((depth-1)*prev_avg + val)/depth; in exponential_average()
|
/third_party/mesa3d/include/CL/ |
H A D | cl.hpp | 3848 0, 0, // height, depth (unused) in Image1DArray() 3956 0, 0, // depth, array size (unused) in Image2D() 4157 0, // depth (unused) in Image2DArray() 4238 ::size_t depth, in Image3D() 4267 depth, in Image3D() 4291 context(), flags, &format, width, height, depth, row_pitch, in Image3D() 4232 Image3D( const Context& context, cl_mem_flags flags, ImageFormat format, ::size_t width, ::size_t height, ::size_t depth, ::size_t row_pitch = 0, ::size_t slice_pitch = 0, void* host_ptr = NULL, cl_int* err = NULL) Image3D() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
H A D | vktBindingShaderAccessTests.cpp | 3915 const int depth = (viewType == vk::VK_IMAGE_VIEW_TYPE_1D || viewType == vk::VK_IMAGE_VIEW_TYPE_1D_ARRAY) ? (1) 3921 dst->allocLevel(level, width, height, depth); 3926 for (int z = 0; z < depth; ++z) 3931 const int gradMax = width + height + depth - 3;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
H A D | vktBindingShaderAccessTests.cpp | 3919 const int depth = (viewType == vk::VK_IMAGE_VIEW_TYPE_1D || viewType == vk::VK_IMAGE_VIEW_TYPE_1D_ARRAY) ? (1) 3925 dst->allocLevel(level, width, height, depth); 3930 for (int z = 0; z < depth; ++z) 3935 const int gradMax = width + height + depth - 3;
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan.hpp | 3886 uint32_t depth ) const VULKAN_HPP_NOEXCEPT 3889 commandBuffer, pRaygenShaderBindingTable, pMissShaderBindingTable, pHitShaderBindingTable, pCallableShaderBindingTable, width, height, depth ); 4094 uint32_t depth ) const VULKAN_HPP_NOEXCEPT 4110 depth );
|
/third_party/vulkan-loader/loader/generated/ |
H A D | vk_loader_extensions.c | 6414 uint32_t depth) { in CmdTraceRaysNV() 6422 disp->CmdTraceRaysNV(commandBuffer, raygenShaderBindingTableBuffer, raygenShaderBindingOffset, missShaderBindingTableBuffer, missShaderBindingOffset, missShaderBindingStride, hitShaderBindingTableBuffer, hitShaderBindingOffset, hitShaderBindingStride, callableShaderBindingTableBuffer, callableShaderBindingOffset, callableShaderBindingStride, width, height, depth); in CmdTraceRaysNV() 9639 uint32_t depth) { in CmdTraceRaysKHR() 9647 disp->CmdTraceRaysKHR(commandBuffer, pRaygenShaderBindingTable, pMissShaderBindingTable, pHitShaderBindingTable, pCallableShaderBindingTable, width, height, depth); in CmdTraceRaysKHR() 6399 CmdTraceRaysNV( VkCommandBuffer commandBuffer, VkBuffer raygenShaderBindingTableBuffer, VkDeviceSize raygenShaderBindingOffset, VkBuffer missShaderBindingTableBuffer, VkDeviceSize missShaderBindingOffset, VkDeviceSize missShaderBindingStride, VkBuffer hitShaderBindingTableBuffer, VkDeviceSize hitShaderBindingOffset, VkDeviceSize hitShaderBindingStride, VkBuffer callableShaderBindingTableBuffer, VkDeviceSize callableShaderBindingOffset, VkDeviceSize callableShaderBindingStride, uint32_t width, uint32_t height, uint32_t depth) CmdTraceRaysNV() argument 9631 CmdTraceRaysKHR( VkCommandBuffer commandBuffer, const VkStridedDeviceAddressRegionKHR* pRaygenShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pMissShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pHitShaderBindingTable, const VkStridedDeviceAddressRegionKHR* pCallableShaderBindingTable, uint32_t width, uint32_t height, uint32_t depth) CmdTraceRaysKHR() argument
|
/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | 7484 function readDirectory(path, extensions, excludes, includes, depth) { 7485 return ts.matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNames, process.cwd(), depth, getAccessibleFileSystemEntries, realpath); 8708 Excessive_stack_depth_comparing_types_0_and_1: diag(2321, ts.DiagnosticCategory.Error, "Excessive_stack_depth_comparing_types_0_and_1_2321", "Excessive stack depth comparing types '{0}' and '{1}'."), 9458 The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files: diag(6136, ts.DiagnosticCategory.Message, "The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files_6136", "The maximum dependency depth to search under node_modules and load JavaScript files."), 9699 Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicable_with_allowJs: diag(6656, ts.DiagnosticCategory.Message, "Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicabl_6656", "Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'."), [all...] |
H A D | tsserver.js | 7485 function readDirectory(path, extensions, excludes, includes, depth) { 7486 return ts.matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNames, process.cwd(), depth, getAccessibleFileSystemEntries, realpath); 8709 Excessive_stack_depth_comparing_types_0_and_1: diag(2321, ts.DiagnosticCategory.Error, "Excessive_stack_depth_comparing_types_0_and_1_2321", "Excessive stack depth comparing types '{0}' and '{1}'."), 9459 The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files: diag(6136, ts.DiagnosticCategory.Message, "The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files_6136", "The maximum dependency depth to search under node_modules and load JavaScript files."), 9700 Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicable_with_allowJs: diag(6656, ts.DiagnosticCategory.Message, "Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicabl_6656", "Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'."), [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/core/ |
H A D | dc.c | 475 pipes->plane_res.scl_data.lb_params.depth, in dc_stream_set_dither_option()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | amifb.c | 3363 if (image->depth == 1) { in amifb_imageblit()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | netdevice.h | 1735 * @upper_level: Maximum depth level of upper devices. 1736 * @lower_level: Maximum depth level of lower devices. 4773 __be16 skb_network_protocol(struct sk_buff *skb, int *depth);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | netdevice.h | 1882 * @upper_level: Maximum depth level of upper devices. 1883 * @lower_level: Maximum depth level of lower devices. 4857 __be16 skb_network_protocol(struct sk_buff *skb, int *depth);
|
/kernel/linux/linux-6.6/drivers/thunderbolt/ |
H A D | test.c | 48 sw->config.depth = tb_route_length(route); in alloc_switch()
|
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | amifb.c | 3352 if (image->depth == 1) { in amifb_imageblit()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn20/ |
H A D | dcn20_hwseq.c | 1573 ASSERT(pipe_ctx->plane_res.scl_data.lb_params.depth == LB_PIXEL_DEPTH_36BPP); in dcn20_update_dchubp_dpp()
|