/third_party/ffmpeg/libavcodec/ |
D | hevcdsp.c | 129 #define FUNC(a, depth) a ## _ ## depth in ff_hevc_dsp_init() argument 132 #define PEL_FUNC(dst1, idx1, idx2, a, depth) \ in ff_hevc_dsp_init() argument 135 hevcdsp->dst1[i][idx1][idx2] = a ## _ ## depth; \ in ff_hevc_dsp_init() 139 #define EPEL_FUNCS(depth) \ in ff_hevc_dsp_init() argument 140 PEL_FUNC(put_hevc_epel, 0, 0, put_hevc_pel_pixels, depth); \ in ff_hevc_dsp_init() 141 PEL_FUNC(put_hevc_epel, 0, 1, put_hevc_epel_h, depth); \ in ff_hevc_dsp_init() 142 PEL_FUNC(put_hevc_epel, 1, 0, put_hevc_epel_v, depth); \ in ff_hevc_dsp_init() 143 PEL_FUNC(put_hevc_epel, 1, 1, put_hevc_epel_hv, depth) in ff_hevc_dsp_init() 146 #define EPEL_UNI_FUNCS(depth) \ in ff_hevc_dsp_init() argument 147 PEL_FUNC(put_hevc_epel_uni, 0, 0, put_hevc_pel_uni_pixels, depth); \ in ff_hevc_dsp_init() [all …]
|
D | h264dsp.c | 71 #define FUNC(a, depth) a ## _ ## depth ## _c in ff_h264dsp_init() argument 73 #define ADDPX_DSP(depth) \ in ff_h264dsp_init() argument 74 c->h264_add_pixels4_clear = FUNC(ff_h264_add_pixels4, depth);\ in ff_h264dsp_init() 75 c->h264_add_pixels8_clear = FUNC(ff_h264_add_pixels8, depth) in ff_h264dsp_init() 83 #define H264_DSP(depth) \ in ff_h264dsp_init() argument 84 c->h264_idct_add= FUNC(ff_h264_idct_add, depth);\ in ff_h264dsp_init() 85 c->h264_idct8_add= FUNC(ff_h264_idct8_add, depth);\ in ff_h264dsp_init() 86 c->h264_idct_dc_add= FUNC(ff_h264_idct_dc_add, depth);\ in ff_h264dsp_init() 87 c->h264_idct8_dc_add= FUNC(ff_h264_idct8_dc_add, depth);\ in ff_h264dsp_init() 88 c->h264_idct_add16 = FUNC(ff_h264_idct_add16, depth);\ in ff_h264dsp_init() [all …]
|
D | h264qpel.c | 52 #define FUNCC(f, depth) f ## _ ## depth ## _c in ff_h264qpel_init() argument 54 #define dspfunc2(PFX, IDX, NUM, depth) \ in ff_h264qpel_init() argument 55 c->PFX ## _pixels_tab[IDX][ 0] = FUNCC(PFX ## NUM ## _mc00, depth); \ in ff_h264qpel_init() 56 c->PFX ## _pixels_tab[IDX][ 1] = FUNCC(PFX ## NUM ## _mc10, depth); \ in ff_h264qpel_init() 57 c->PFX ## _pixels_tab[IDX][ 2] = FUNCC(PFX ## NUM ## _mc20, depth); \ in ff_h264qpel_init() 58 c->PFX ## _pixels_tab[IDX][ 3] = FUNCC(PFX ## NUM ## _mc30, depth); \ in ff_h264qpel_init() 59 c->PFX ## _pixels_tab[IDX][ 4] = FUNCC(PFX ## NUM ## _mc01, depth); \ in ff_h264qpel_init() 60 c->PFX ## _pixels_tab[IDX][ 5] = FUNCC(PFX ## NUM ## _mc11, depth); \ in ff_h264qpel_init() 61 c->PFX ## _pixels_tab[IDX][ 6] = FUNCC(PFX ## NUM ## _mc21, depth); \ in ff_h264qpel_init() 62 c->PFX ## _pixels_tab[IDX][ 7] = FUNCC(PFX ## NUM ## _mc31, depth); \ in ff_h264qpel_init() [all …]
|
D | h264pred.c | 417 #define FUNC(a, depth) a ## _ ## depth in ff_h264_pred_init() argument 418 #define FUNCC(a, depth) a ## _ ## depth ## _c in ff_h264_pred_init() argument 421 #define H264_PRED(depth) \ in ff_h264_pred_init() argument 427 h->pred4x4[VERT_PRED ]= FUNCC(pred4x4_vertical , depth);\ in ff_h264_pred_init() 428 h->pred4x4[HOR_PRED ]= FUNCC(pred4x4_horizontal , depth);\ in ff_h264_pred_init() 430 h->pred4x4[DC_PRED ]= FUNCC(pred4x4_dc , depth);\ in ff_h264_pred_init() 434 h->pred4x4[DIAG_DOWN_LEFT_PRED ]= FUNCC(pred4x4_down_left , depth);\ in ff_h264_pred_init() 435 h->pred4x4[DIAG_DOWN_RIGHT_PRED]= FUNCC(pred4x4_down_right , depth);\ in ff_h264_pred_init() 436 h->pred4x4[VERT_RIGHT_PRED ]= FUNCC(pred4x4_vertical_right , depth);\ in ff_h264_pred_init() 437 h->pred4x4[HOR_DOWN_PRED ]= FUNCC(pred4x4_horizontal_down , depth);\ in ff_h264_pred_init() [all …]
|
D | hevcpred.c | 46 #define FUNC(a, depth) a ## _ ## depth in ff_hevc_pred_init() argument 48 #define HEVC_PRED(depth) \ in ff_hevc_pred_init() argument 49 hpc->intra_pred[0] = FUNC(intra_pred_2, depth); \ in ff_hevc_pred_init() 50 hpc->intra_pred[1] = FUNC(intra_pred_3, depth); \ in ff_hevc_pred_init() 51 hpc->intra_pred[2] = FUNC(intra_pred_4, depth); \ in ff_hevc_pred_init() 52 hpc->intra_pred[3] = FUNC(intra_pred_5, depth); \ in ff_hevc_pred_init() 53 hpc->pred_planar[0] = FUNC(pred_planar_0, depth); \ in ff_hevc_pred_init() 54 hpc->pred_planar[1] = FUNC(pred_planar_1, depth); \ in ff_hevc_pred_init() 55 hpc->pred_planar[2] = FUNC(pred_planar_2, depth); \ in ff_hevc_pred_init() 56 hpc->pred_planar[3] = FUNC(pred_planar_3, depth); \ in ff_hevc_pred_init() [all …]
|
D | h264idct.h | 24 #define H264_IDCT(depth) \ argument 25 void ff_h264_idct8_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 26 void ff_h264_idct_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 27 void ff_h264_idct8_dc_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 28 void ff_h264_idct_dc_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 29 void ff_h264_idct_add16_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, int s… 30 void ff_h264_idct_add16intra_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, … 31 void ff_h264_idct8_add4_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, int s… 32 void ff_h264_idct_add8_422_ ## depth ## _c(uint8_t **dest, const int *blockoffset, int16_t *block, … 33 void ff_h264_idct_add8_ ## depth ## _c(uint8_t **dest, const int *blockoffset, int16_t *block, int … [all …]
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | qtdemux_dump.c | 42 qtdemux_dump_mvhd (GstQTDemux * qtdemux, GstByteReader * data, int depth) in qtdemux_dump_mvhd() argument 50 GST_LOG ("%*s version/flags: %08x", depth, "", version); in qtdemux_dump_mvhd() 54 GST_LOG ("%*s creation time: %u", depth, "", GET_UINT32 (data)); in qtdemux_dump_mvhd() 55 GST_LOG ("%*s modify time: %u", depth, "", GET_UINT32 (data)); in qtdemux_dump_mvhd() 56 GST_LOG ("%*s time scale: 1/%u sec", depth, "", GET_UINT32 (data)); in qtdemux_dump_mvhd() 57 GST_LOG ("%*s duration: %u", depth, "", GET_UINT32 (data)); in qtdemux_dump_mvhd() 60 depth, "", GET_UINT64 (data)); in qtdemux_dump_mvhd() 62 depth, "", GET_UINT64 (data)); in qtdemux_dump_mvhd() 63 GST_LOG ("%*s time scale: 1/%u sec", depth, "", GET_UINT32 (data)); in qtdemux_dump_mvhd() 65 depth, "", GET_UINT64 (data)); in qtdemux_dump_mvhd() [all …]
|
D | qtdemux_dump.h | 29 int depth); 31 int depth); 33 int depth); 35 int depth); 37 int depth); 39 int depth); 41 int depth); 43 int depth); 45 int depth); 47 int depth); [all …]
|
/third_party/python/Parser/ |
D | asdl_c.py | 28 def reflow_lines(s, depth): argument 38 size = MAX_COL - depth * TABSIZE 70 def reflow_c_string(s, depth): argument 71 return '"%s"' % s.replace('\n', '\\n"\n%s"' % (' ' * depth * TABSIZE)) 119 def emit(self, s, depth, reflow=True): argument 122 lines = reflow_lines(s, depth) 127 line = (" " * TABSIZE * depth) + line 136 def visitType(self, type, depth=0): argument 137 self.visit(type.value, type.name, depth) 139 def visitSum(self, sum, name, depth): argument [all …]
|
/third_party/skia/third_party/externals/angle2/src/image_util/ |
D | loadimage.h | 20 size_t depth, 30 size_t depth, 40 size_t depth, 50 size_t depth, 60 size_t depth, 70 size_t depth, 80 size_t depth, 90 size_t depth, 100 size_t depth, 110 size_t depth, [all …]
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.depthGreater.frag.out | 8 0:2 'depth' ( out float) 11 0:3 'depth' ( out float) 18 0:? 'depth' ( temp float) 20 0:? 'depth' ( out float FragDepth) 21 0:? 'depth' ( temp float) 23 0:? 'depth' ( out float FragDepth) 35 0:2 'depth' ( out float) 38 0:3 'depth' ( out float) 45 0:? 'depth' ( temp float) 47 0:? 'depth' ( out float FragDepth) [all …]
|
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/ |
D | MessagePatternUtilDemo.java | 29 private static final void printMessage(MessagePatternUtil.MessageNode msg, int depth) { in printMessage() argument 30 String indent = manySpaces.substring(0, depth * 2); in printMessage() 38 printArg((MessagePatternUtil.ArgNode)contents, depth); in printMessage() local 47 private static final void printArg(MessagePatternUtil.ArgNode arg, int depth) { in printArg() argument 48 System.out.print(manySpaces.substring(0, depth * 2) + "arg: «" + arg.getName() + "»"); in printArg() 63 printComplexArgStyle(arg.getComplexStyle(), depth + 1); in printArg() local 69 int depth) { in printComplexArgStyle() argument 71 System.out.println(manySpaces.substring(0, depth * 2) + "offset: " + style.getOffset()); in printComplexArgStyle() 73 String indent = manySpaces.substring(0, depth * 2); in printComplexArgStyle() 94 printMessage(variant.getMessage(), depth + 1); in printComplexArgStyle() local [all …]
|
/third_party/gstreamer/gstplugins_base/tools/ |
D | gst-discoverer.c | 35 static void my_g_string_append_printf (GString * str, int depth, const gchar * format, ...) G_GNUC_… 81 my_g_string_append_printf (GString * str, int depth, const gchar * format, ...) in my_g_string_append_printf() argument 85 while (depth-- > 0) { in my_g_string_append_printf() 116 guint depth) in gst_stream_information_to_string() argument 125 my_g_string_append_printf (s, depth, "Codec:\n"); in gst_stream_information_to_string() 128 my_g_string_append_printf (s, depth, " %s\n", tmp); in gst_stream_information_to_string() 135 my_g_string_append_printf (s, depth, "Additional info:\n"); in gst_stream_information_to_string() 137 my_g_string_append_printf (s, depth, " %s\n", tmp); in gst_stream_information_to_string() 143 my_g_string_append_printf (s, depth, "Stream ID: %s\n", in gst_stream_information_to_string() 153 guint depth = GPOINTER_TO_UINT (user_data); in print_tag_foreach() local [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_depth_bounds_test.txt | 40 after the scissor test and before the alpha test. The depth bounds 41 test compares the depth value stored at the location given by the 43 and maximum depth value. If the stored depth value is outside the 46 Unlike the depth test, the depth bounds test has NO dependency on 47 the fragment's window-space depth value. 73 Unless a depth value (in the depth buffer) at a pixel is within 78 illumination for the pixel is fully attenuated. The depth bounds 83 Where should the depth bounds test take place in the OpenGL 91 Importantly, the depth bounds test occurs before any fragment 92 operation that has a side-effect such as stencil and/or depth buffer [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_depth_bounds_test.txt | 40 after the scissor test and before the alpha test. The depth bounds 41 test compares the depth value stored at the location given by the 43 and maximum depth value. If the stored depth value is outside the 46 Unlike the depth test, the depth bounds test has NO dependency on 47 the fragment's window-space depth value. 73 Unless a depth value (in the depth buffer) at a pixel is within 78 illumination for the pixel is fully attenuated. The depth bounds 83 Where should the depth bounds test take place in the OpenGL 91 Importantly, the depth bounds test occurs before any fragment 92 operation that has a side-effect such as stencil and/or depth buffer [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | recursiveFieldSetting.symbols | 11 private depth: number = this.parent ? this.parent.depth + 1 : 0; 12 >depth : Symbol(Recursive1.depth, Decl(recursiveFieldSetting.ts, 3, 56)) 16 >this.parent.depth : Symbol(Recursive1.depth, Decl(recursiveFieldSetting.ts, 3, 56)) 20 >depth : Symbol(Recursive1.depth, Decl(recursiveFieldSetting.ts, 3, 56)) 30 depth: number = this.parent.depth; 31 >depth : Symbol(Recursive2.depth, Decl(recursiveFieldSetting.ts, 8, 24)) 32 >this.parent.depth : Symbol(Recursive2.depth, Decl(recursiveFieldSetting.ts, 8, 24)) 36 >depth : Symbol(Recursive2.depth, Decl(recursiveFieldSetting.ts, 8, 24)) 46 depth: number = this.parent.alpha; 47 >depth : Symbol(Recursive3.depth, Decl(recursiveFieldSetting.ts, 13, 24))
|
D | recursiveFieldSetting.types | 10 private depth: number = this.parent ? this.parent.depth + 1 : 0; 11 >depth : number 12 >this.parent ? this.parent.depth + 1 : 0 : number 16 >this.parent.depth + 1 : number 17 >this.parent.depth : number 21 >depth : number 32 depth: number = this.parent.depth; 33 >depth : number 34 >this.parent.depth : number 38 >depth : number [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_depth_clamp.txt | 39 interpolated depth values (after the depth range transform) must be 49 beyond the conventional window space depth range for depth values 51 defy the window space depth range (effectively what near and far 52 plane clipping accomplish), the depth values can be clamped to the 53 current depth range. 59 algorithm (rather than depth testing) for hidden surface removal is 71 depth values outside the window-space depth range. Should the 76 clamping interpolated depth values to the depth range is much 79 Should depth clamping affect points or just line and polygon geometric 82 RESOLUTION: All geometric primitives are affected by depth [all …]
|
/third_party/openGLES/extensions/NV/ |
D | NV_depth_clamp.txt | 39 interpolated depth values (after the depth range transform) must be 49 beyond the conventional window space depth range for depth values 51 defy the window space depth range (effectively what near and far 52 plane clipping accomplish), the depth values can be clamped to the 53 current depth range. 59 algorithm (rather than depth testing) for hidden surface removal is 71 depth values outside the window-space depth range. Should the 76 clamping interpolated depth values to the depth range is much 79 Should depth clamping affect points or just line and polygon geometric 82 RESOLUTION: All geometric primitives are affected by depth [all …]
|
/third_party/node/deps/v8/src/compiler/ |
D | js-context-specialization.cc | 55 DCHECK_LE(new_depth, access.depth()); in SimplifyJSLoadContext() 57 if (new_depth == access.depth() && in SimplifyJSLoadContext() 74 DCHECK_LE(new_depth, access.depth()); in SimplifyJSStoreContext() 76 if (new_depth == access.depth() && in SimplifyJSStoreContext() 140 size_t depth = access.depth(); in ReduceJSLoadContext() local 143 Node* context = NodeProperties::GetOuterContext(node, &depth); in ReduceJSLoadContext() 146 GetSpecializationContext(broker(), context, &depth, outer()); in ReduceJSLoadContext() 150 return SimplifyJSLoadContext(node, context, depth); in ReduceJSLoadContext() 155 concrete = concrete.previous(&depth); in ReduceJSLoadContext() 156 if (depth > 0) { in ReduceJSLoadContext() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/shaders/ |
D | Clear11.hlsl | 8 // specifying float depth values and either float, uint or sint clear colors. 106 float depth : SV_DEPTH; 112 float depth : SV_DEPTH; 119 float depth : SV_DEPTH; 127 float depth : SV_DEPTH; 136 float depth : SV_DEPTH; 146 float depth : SV_DEPTH; 157 float depth : SV_DEPTH; 169 float depth : SV_DEPTH; 182 float depth : SV_DEPTH; [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/ |
D | esextcTextureCubeMapArraySubImage3D.cpp | 151 glw::GLuint depth = resolutions[resolution_index][DL_DEPTH]; in iterate() local 153 configureCubeMapArrayTexture(width, height, depth, static_cast<STORAGE_TYPE>(storage_index), 0); in iterate() 159 configureDataBuffer(width, height, depth, copy_params, 0); in iterate() 162 testTexSubImage3D(width, height, depth, copy_params, test_passed); in iterate() 163 testCopyTexSubImage3D(width, height, depth, copy_params, test_passed); in iterate() 170 configureDataBuffer(width, height, depth, copy_params, 0); in iterate() 173 testTexSubImage3D(width, height, depth, copy_params, test_passed); in iterate() 174 testCopyTexSubImage3D(width, height, depth, copy_params, test_passed); in iterate() 181 configureDataBuffer(width, height, depth, copy_params, 0); in iterate() 183 testTexSubImage3D(width, height, depth, copy_params, test_passed); in iterate() [all …]
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_depth_clamp.txt | 53 interpolated depth values (after the depth range transform) must be 63 beyond the conventional window space depth range for depth values 65 defy the window space depth range (effectively what near and far 66 plane clipping accomplish), the depth values can be clamped to the 67 current depth range. 73 algorithm (rather than depth testing) for hidden surface removal is 85 depth values outside the window-space depth range. Should the 90 clamping interpolated depth values to the depth range is much 93 Should depth clamping affect points or just line and polygon geometric 96 RESOLUTION: All geometric primitives are affected by depth [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_depth_clamp.txt | 43 interpolated depth values (after the depth range transform) must be 53 beyond the conventional window space depth range for depth values 55 defy the window space depth range (effectively what near and far 56 plane clipping accomplish), the depth values can be clamped to the 57 current depth range. 63 algorithm (rather than depth testing) for hidden surface removal is 75 depth values outside the window-space depth range. Should the 80 clamping interpolated depth values to the depth range is much 83 Should depth clamping affect points or just line and polygon geometric 86 RESOLUTION: All geometric primitives are affected by depth [all …]
|
/third_party/mesa3d/src/mesa/main/ |
D | texgetimage.c | 82 GLsizei width, GLsizei height, GLint depth, in get_tex_depth() argument 94 for (img = 0; img < depth; img++) { in get_tex_depth() 131 GLsizei width, GLsizei height, GLint depth, in get_tex_depth_stencil() argument 139 for (img = 0; img < depth; img++) { in get_tex_depth_stencil() 187 GLsizei width, GLsizei height, GLint depth, in get_tex_stencil() argument 195 for (img = 0; img < depth; img++) { in get_tex_stencil() 233 GLsizei width, GLsizei height, GLint depth, in get_tex_ycbcr() argument 239 for (img = 0; img < depth; img++) { in get_tex_ycbcr() 319 GLsizei width, GLsizei height, GLint depth, in get_tex_rgba_compressed() argument 336 tempImage = malloc(width * height * depth * 4 * sizeof(GLfloat)); in get_tex_rgba_compressed() [all …]
|