| /third_party/typescript/tests/cases/compiler/ |
| D | manyConstExports.ts | 3 export const exp0 = "test"; 4 export const exp1 = "test"; 5 export const exp2 = "test"; 6 export const exp3 = "test"; 7 export const exp4 = "test"; 8 export const exp5 = "test"; 9 export const exp6 = "test"; 10 export const exp7 = "test"; 11 export const exp8 = "test"; 12 export const exp9 = "test"; [all …]
|
| /third_party/ffmpeg/libavcodec/ |
| D | allcodecs.c | 37 extern const FFCodec ff_a64multi_encoder; 38 extern const FFCodec ff_a64multi5_encoder; 39 extern const FFCodec ff_aasc_decoder; 40 extern const FFCodec ff_aic_decoder; 41 extern const FFCodec ff_alias_pix_encoder; 42 extern const FFCodec ff_alias_pix_decoder; 43 extern const FFCodec ff_agm_decoder; 44 extern const FFCodec ff_amv_encoder; 45 extern const FFCodec ff_amv_decoder; 46 extern const FFCodec ff_anm_decoder; [all …]
|
| /third_party/ffmpeg/libavfilter/ |
| D | allfilters.c | 24 extern const AVFilter ff_af_abench; 25 extern const AVFilter ff_af_acompressor; 26 extern const AVFilter ff_af_acontrast; 27 extern const AVFilter ff_af_acopy; 28 extern const AVFilter ff_af_acue; 29 extern const AVFilter ff_af_acrossfade; 30 extern const AVFilter ff_af_acrossover; 31 extern const AVFilter ff_af_acrusher; 32 extern const AVFilter ff_af_adeclick; 33 extern const AVFilter ff_af_adeclip; [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/nnacl/fp32/ |
| D | matmul_avx512_mask_fp32.h | 21 typedef void (*GemmAvx512MaskKernel)(float *dst, const float *src, const float *weight, const float… 22 … const size_t act_flag, const size_t row_block, const size_t col_block, 23 … const size_t deep, const size_t src_stride, const size_t dst_stride, 24 const size_t inc_flag, const u_int16_t *mask); 29 void GemmRowxColMaskKernelFp32(float *dst, const float *src, const float *weight, const float *bias, 30 … const size_t act_flag, const size_t row_block, const size_t col_block, 31 const size_t depth, const size_t src_stride, const size_t dst_stride, 32 const size_t inc_flag, const u_int16_t *mask); 34 void MatVecMulMaskAvx512Fp32(const float *a, const float *b, float *c, const float *bias, const int… 35 const int depth, const int cur_col, const int col_); [all …]
|
| D | matmul_avx512_fp32.h | 19 typedef void (*GemmAvx512Kernel)(float *dst, const float *src, const float *weight, const float *bi… 20 … const size_t act_flag, const size_t row_block, const size_t col_block, 21 … const size_t deep, const size_t src_stride, const size_t dst_stride, 22 const size_t inc_flag); 26 void MatVecMulAvx512Fp32(const float *a, const float *b, float *c, const float *bias, int act_type,… 29 void MatMulAvx512Fp32(const float *a, const float *b, float *c, const float *bias, int act_type, in… 32 int64_t GemmIsNotPackOptimizeAVX512(int64_t m_index, const float *a, const float *b, float *c, cons… 36 …d nnacl_gemm_avx512_6x64_kernel_nhwc_fp32(float *dst, const float *src, const float *weight, const… 37 … const size_t act_flag, const size_t row_block, const size_t col_block, 38 … const size_t depth, const size_t src_stride, const size_t dst_stride, [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/gpu/kernel/cuda_impl/cuda_ops/ |
| D | pad_v3_impl.cu | 31 __global__ void ConstantPad3d(const size_t size, const T *input, const int64_t num, const int64_t c… in ConstantPad3d() 32 … const int64_t old_depth, const int64_t old_height, const int64_t old_width, in ConstantPad3d() 33 … const int64_t old_dhw, const int64_t old_hw, const int64_t padded_depth, in ConstantPad3d() 34 … const int64_t padded_height, const int64_t padded_width, const int64_t padded_dhw, in ConstantPad3d() 35 … const int64_t padded_hw, const int64_t pad_head, const int64_t pad_top, in ConstantPad3d() 36 const int64_t pad_left, const T *pad_value, T *output) { in ConstantPad3d() 38 const int pos_d = pos / padded_hw % padded_depth; in ConstantPad3d() 39 const int pos_h = pos / padded_width % padded_height; in ConstantPad3d() 40 const int pos_w = pos % padded_width; in ConstantPad3d() 41 const int block_num = pos / padded_dhw; in ConstantPad3d() [all …]
|
| D | slice_impl.cu | 30 __global__ void Slice1D(const size_t s1, const size_t l1, const size_t d1, const T *input, T *outpu… in Slice1D() 37 __global__ void Slice2D(const size_t s1, const size_t s2, const size_t l1, const size_t l2, const s… in Slice2D() 38 const size_t d2, const T *input, T *output) { in Slice2D() 49 __global__ void Slice3D(const size_t s1, const size_t s2, const size_t s3, const size_t l1, const s… in Slice3D() 50 … const size_t l3, const size_t d1, const size_t d2, const size_t d3, const T *input, T *output) { in Slice3D() 62 __global__ void Slice4D(const size_t s1, const size_t s2, const size_t s3, const size_t s4, const s… in Slice4D() 63 … const size_t l2, const size_t l3, const size_t l4, const size_t d1, const size_t d2, in Slice4D() 64 const size_t d3, const size_t d4, const T *input, T *output) { in Slice4D() 77 __global__ void Slice5D(const size_t s1, const size_t s2, const size_t s3, const size_t s4, const s… in Slice5D() 78 … const size_t l1, const size_t l2, const size_t l3, const size_t l4, const size_t l5, in Slice5D() [all …]
|
| D | maxpool3d_with_argmax_impl.cu | 29 __global__ void MaxPool3DWithArgmax(const T *input, T *output, S *index, const int inputD, const in… in MaxPool3DWithArgmax() 30 … const int inputW, const int ksizeD, const int ksizeH, const int ksizeW, in MaxPool3DWithArgmax() 31 … const int strideD, const int strideH, const int strideW, const int padF, in MaxPool3DWithArgmax() 32 … const int padT, const int padL, const int dilationD, const int dilationH, in MaxPool3DWithArgmax() 33 … const int dilationW, const int outD, const int outH, const int outW, in MaxPool3DWithArgmax() 34 const int offset) { in MaxPool3DWithArgmax() 80 cudaError_t CalMaxPool3DWithArgmax(const T *input, const int n, const int c, const int d, const int… in CalMaxPool3DWithArgmax() 81 … const int ksizeD, const int ksizeH, const int ksizeW, const int strideD, in CalMaxPool3DWithArgmax() 82 … const int strideH, const int strideW, const int padF, const int padT, const int padL, in CalMaxPool3DWithArgmax() 83 … const int dilationD, const int dilationH, const int dilationW, const int outD, in CalMaxPool3DWithArgmax() [all …]
|
| D | maxpool_with_argmax_v2_impl.cu | 31 __global__ void MaxPoolWithArgmaxV2(const T *input, T *output, S *index, const int inputN, const in… in MaxPoolWithArgmaxV2() 32 … const int inputH, const int inputW, const int ksizeH, const int ksizeW, in MaxPoolWithArgmaxV2() 33 … const int stridesH, const int stridesW, const int padsH, const int padsW, in MaxPoolWithArgmaxV2() 34 … const int dilationH, const int dilationW, const int outH, const int outW) { in MaxPoolWithArgmaxV2() 37 const int pos_n = pos / (inputC * outH * outW); in MaxPoolWithArgmaxV2() 38 const int pos_c = pos / (outH * outW) % inputC; in MaxPoolWithArgmaxV2() 39 const int pos_h = pos / outW % outH; in MaxPoolWithArgmaxV2() 40 const int pos_w = pos % outW; in MaxPoolWithArgmaxV2() 43 const int end_h = min(start_h + (ksizeH - 1) * dilationH + 1, inputH); in MaxPoolWithArgmaxV2() 44 const int end_w = min(start_w + (ksizeW - 1) * dilationW + 1, inputW); in MaxPoolWithArgmaxV2() [all …]
|
| /third_party/ffmpeg/libavformat/ |
| D | allformats.c | 27 extern const AVOutputFormat ff_a64_muxer; 28 extern const AVInputFormat ff_aa_demuxer; 29 extern const AVInputFormat ff_aac_demuxer; 30 extern const AVInputFormat ff_aax_demuxer; 31 extern const AVInputFormat ff_ac3_demuxer; 32 extern const AVOutputFormat ff_ac3_muxer; 33 extern const AVInputFormat ff_ace_demuxer; 34 extern const AVInputFormat ff_acm_demuxer; 35 extern const AVInputFormat ff_act_demuxer; 36 extern const AVInputFormat ff_adf_demuxer; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/arm/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 21531; 4 pub const FIONBIO: u32 = 21537; 5 pub const FIOCLEX: u32 = 21585; 6 pub const FIONCLEX: u32 = 21584; 7 pub const FIOASYNC: u32 = 21586; 8 pub const FIOQSIZE: u32 = 21598; 9 pub const TCXONC: u32 = 21514; 10 pub const TCFLSH: u32 = 21515; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 21520; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/riscv64/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 21531; 4 pub const FIONBIO: u32 = 21537; 5 pub const FIOCLEX: u32 = 21585; 6 pub const FIONCLEX: u32 = 21584; 7 pub const FIOASYNC: u32 = 21586; 8 pub const FIOQSIZE: u32 = 21600; 9 pub const TCXONC: u32 = 21514; 10 pub const TCFLSH: u32 = 21515; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 21520; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/powerpc64/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 1074030207; 4 pub const FIONBIO: u32 = 2147772030; 5 pub const FIOCLEX: u32 = 536897025; 6 pub const FIONCLEX: u32 = 536897026; 7 pub const FIOASYNC: u32 = 2147772029; 8 pub const FIOQSIZE: u32 = 1074292352; 9 pub const TCXONC: u32 = 536900638; 10 pub const TCFLSH: u32 = 536900639; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 2147775606; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/powerpc/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 1074030207; 4 pub const FIONBIO: u32 = 2147772030; 5 pub const FIOCLEX: u32 = 536897025; 6 pub const FIONCLEX: u32 = 536897026; 7 pub const FIOASYNC: u32 = 2147772029; 8 pub const FIOQSIZE: u32 = 1074292352; 9 pub const TCXONC: u32 = 536900638; 10 pub const TCFLSH: u32 = 536900639; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 2147775606; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/x32/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 21531; 4 pub const FIONBIO: u32 = 21537; 5 pub const FIOCLEX: u32 = 21585; 6 pub const FIONCLEX: u32 = 21584; 7 pub const FIOASYNC: u32 = 21586; 8 pub const FIOQSIZE: u32 = 21600; 9 pub const TCXONC: u32 = 21514; 10 pub const TCFLSH: u32 = 21515; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 21520; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/x86_64/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 21531; 4 pub const FIONBIO: u32 = 21537; 5 pub const FIOCLEX: u32 = 21585; 6 pub const FIONCLEX: u32 = 21584; 7 pub const FIOASYNC: u32 = 21586; 8 pub const FIOQSIZE: u32 = 21600; 9 pub const TCXONC: u32 = 21514; 10 pub const TCFLSH: u32 = 21515; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 21520; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/aarch64/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 21531; 4 pub const FIONBIO: u32 = 21537; 5 pub const FIOCLEX: u32 = 21585; 6 pub const FIONCLEX: u32 = 21584; 7 pub const FIOASYNC: u32 = 21586; 8 pub const FIOQSIZE: u32 = 21600; 9 pub const TCXONC: u32 = 21514; 10 pub const TCFLSH: u32 = 21515; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 21520; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/x86/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 21531; 4 pub const FIONBIO: u32 = 21537; 5 pub const FIOCLEX: u32 = 21585; 6 pub const FIONCLEX: u32 = 21584; 7 pub const FIOASYNC: u32 = 21586; 8 pub const FIOQSIZE: u32 = 21600; 9 pub const TCXONC: u32 = 21514; 10 pub const TCFLSH: u32 = 21515; 11 pub const TIOCSCTTY: u32 = 21518; 12 pub const TIOCSPGRP: u32 = 21520; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/mips64/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 18047; 4 pub const FIONBIO: u32 = 26238; 5 pub const FIOCLEX: u32 = 26113; 6 pub const FIONCLEX: u32 = 26114; 7 pub const FIOASYNC: u32 = 26237; 8 pub const FIOQSIZE: u32 = 26239; 9 pub const TCXONC: u32 = 21510; 10 pub const TCFLSH: u32 = 21511; 11 pub const TIOCSCTTY: u32 = 21632; 12 pub const TIOCSPGRP: u32 = 2147775606; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/mips/ |
| D | ioctl.rs | 3 pub const FIONREAD: u32 = 18047; 4 pub const FIONBIO: u32 = 26238; 5 pub const FIOCLEX: u32 = 26113; 6 pub const FIONCLEX: u32 = 26114; 7 pub const FIOASYNC: u32 = 26237; 8 pub const FIOQSIZE: u32 = 26239; 9 pub const TCXONC: u32 = 21510; 10 pub const TCFLSH: u32 = 21511; 11 pub const TIOCSCTTY: u32 = 21632; 12 pub const TIOCSPGRP: u32 = 2147775606; [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/generated/vulkan/ |
| D | vkDeviceFeaturesForContextDecl.inl | 6 const vk::VkPhysicalDeviceTransformFeedbackFeaturesEXT& getTransformFeedbackFeaturesEXT (… 7 const vk::VkPhysicalDeviceDynamicRenderingFeatures& getDynamicRenderingFeatures (void) … 8 const vk::VkPhysicalDeviceCornerSampledImageFeaturesNV& getCornerSampledImageFeatures (vo… 9 const vk::VkPhysicalDeviceMultiviewFeatures& getMultiviewFeatures (void) const; 10 const vk::VkPhysicalDeviceTextureCompressionASTCHDRFeatures& getTextureCompressionASTCHDRFeature… 11 const vk::VkPhysicalDeviceASTCDecodeFeaturesEXT& getASTCDecodeFeaturesEXT (void) const; 12 const vk::VkPhysicalDevicePipelineRobustnessFeaturesEXT& getPipelineRobustnessFeaturesEXT (… 13 const vk::VkPhysicalDeviceConditionalRenderingFeaturesEXT& getConditionalRenderingFeaturesEXT … 14 const vk::VkPhysicalDeviceShaderFloat16Int8Features& getShaderFloat16Int8Features (void) … 15 const vk::VkPhysicalDevice16BitStorageFeatures& get16BitStorageFeatures (void) const; [all …]
|
| /third_party/rust/crates/rust-openssl/openssl-sys/src/ |
| D | obj_mac.rs | 3 pub const NID_undef: c_int = 0; 4 pub const NID_itu_t: c_int = 645; 5 pub const NID_ccitt: c_int = 404; 6 pub const NID_iso: c_int = 181; 7 pub const NID_joint_iso_itu_t: c_int = 646; 8 pub const NID_joint_iso_ccitt: c_int = 393; 9 pub const NID_member_body: c_int = 182; 10 pub const NID_identified_organization: c_int = 676; 11 pub const NID_hmac_md5: c_int = 780; 12 pub const NID_hmac_sha1: c_int = 781; [all …]
|
| /third_party/glslang/glslang/MachineIndependent/ |
| D | Versions.h | 70 inline const char* ProfileName(EProfile profile) in ProfileName() 114 const char* const E_GL_OES_texture_3D = "GL_OES_texture_3D"; 115 const char* const E_GL_OES_standard_derivatives = "GL_OES_standard_derivatives"; 116 const char* const E_GL_EXT_frag_depth = "GL_EXT_frag_depth"; 117 const char* const E_GL_OES_EGL_image_external = "GL_OES_EGL_image_external"; 118 const char* const E_GL_OES_EGL_image_external_essl3 = "GL_OES_EGL_image_external_essl3"; 119 const char* const E_GL_EXT_YUV_target = "GL_EXT_YUV_target"; 120 const char* const E_GL_EXT_shader_texture_lod = "GL_EXT_shader_texture_lod"; 121 const char* const E_GL_EXT_shadow_samplers = "GL_EXT_shadow_samplers"; 123 const char* const E_GL_ARB_texture_rectangle = "GL_ARB_texture_rectangle"; [all …]
|
| /third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/ |
| D | vkDeviceFeaturesForContextDecl.inl | 6 const vk::VkPhysicalDeviceTransformFeedbackFeaturesEXT& getTransformFeedbackFeaturesEXT (… 7 const vk::VkPhysicalDeviceDynamicRenderingFeatures& getDynamicRenderingFeatures (void) … 8 const vk::VkPhysicalDeviceCornerSampledImageFeaturesNV& getCornerSampledImageFeatures (vo… 9 const vk::VkPhysicalDeviceMultiviewFeatures& getMultiviewFeatures (void) const; 10 const vk::VkPhysicalDeviceTextureCompressionASTCHDRFeatures& getTextureCompressionASTCHDRFeature… 11 const vk::VkPhysicalDeviceASTCDecodeFeaturesEXT& getASTCDecodeFeaturesEXT (void) const; 12 const vk::VkPhysicalDevicePipelineRobustnessFeaturesEXT& getPipelineRobustnessFeaturesEXT (… 13 const vk::VkPhysicalDeviceConditionalRenderingFeaturesEXT& getConditionalRenderingFeaturesEXT … 14 const vk::VkPhysicalDeviceShaderFloat16Int8Features& getShaderFloat16Int8Features (void) … 15 const vk::VkPhysicalDevice16BitStorageFeatures& get16BitStorageFeatures (void) const; [all …]
|
| /third_party/glslang/Test/baseResults/ |
| D | constantUnaryConversion.comp.out | 9 0:? 'bool_init' ( const bool) 10 0:? true (const bool) 11 0:? 'int8_t_init' ( const int8_t) 12 0:? -1 (const int8_t) 13 0:? 'int16_t_init' ( const int16_t) 14 0:? -2 (const int16_t) 15 0:? 'int32_t_init' ( const int) 16 0:? -3 (const int) 17 0:? 'int64_t_init' ( const int64_t) 18 0:? -4 (const int64_t) [all …]
|