/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_context.c | 149 ASSIGN_4V( draw->plane[0], -1, 0, 0, 1 ); in draw_init() 150 ASSIGN_4V( draw->plane[1], 1, 0, 0, 1 ); in draw_init() 151 ASSIGN_4V( draw->plane[2], 0, -1, 0, 1 ); in draw_init() 152 ASSIGN_4V( draw->plane[3], 0, 1, 0, 1 ); in draw_init() 153 ASSIGN_4V( draw->plane[4], 0, 0, 1, 1 ); /* yes these are correct */ in draw_init() 154 ASSIGN_4V( draw->plane[5], 0, 0, -1, 1 ); /* mesa's a bit wonky */ in draw_init() 158 draw->pt.user.planes = (float (*) [DRAW_TOTAL_CLIP_PLANES][4]) &(draw->plane[0]); in draw_init() 374 memcpy(&draw->plane[6], clip->ucp, sizeof(clip->ucp)); in draw_set_clip_state()
|
/third_party/ffmpeg/libavcodec/ |
H A D | indeo4.c | 68 * Decode subdivision of a plane. 70 * - 1 wavelet band per plane, size factor 1:1, code pattern: 3 71 * - 4 wavelet bands per plane, size factor 1:4, code pattern: 2,3,3,3,3 274 int plane, band_num, indx, transform_id, scan_indx; in decode_band_hdr() local 280 plane = get_bits(&ctx->gb, 2); in decode_band_hdr() 282 if (band->plane != plane || band->band_num != band_num) { in decode_band_hdr() 517 if (!band->plane && !band->band_num && ctx->in_q) { in decode_mb_info() 554 } else if (mb->cbp || (!band->plane && !band->band_num && in decode_mb_info()
|
H A D | snow.c | 106 memset(s->plane[plane_index].band[level][orientation].state, MID_STATE, sizeof(s->plane[plane_index].band[level][orientation].state)); in ff_snow_reset_contexts() 389 || !s->plane[plane_index].fast_mc ) in ff_snow_pred_block() 390 mc_block(&s->plane[plane_index], dst, src, stride, b_w, b_h, dx, dy); in ff_snow_pred_block() 546 s->plane[plane_index].width = w; in ff_snow_common_init_after_header() 547 s->plane[plane_index].height= h; in ff_snow_common_init_after_header() 551 SubBand *b= &s->plane[plane_index].band[level][orientation]; in ff_snow_common_init_after_header() 555 b->stride= s->plane[plane_index].width << (s->spatial_decomposition_count - level); in ff_snow_common_init_after_header() 574 b->parent= &s->plane[plane_index].band[level-1][orientation]; in ff_snow_common_init_after_header() 729 SubBand *b= &s->plane[plane_inde in ff_snow_common_end() [all...] |
H A D | ivi_dsp.h | 40 * @param[in] plane pointer to the descriptor of the plane being processed 44 void ff_ivi_recompose53(const IVIPlaneDesc *plane, uint8_t *dst, 50 * @param[in] plane pointer to the descriptor of the plane being processed 54 void ff_ivi_recompose_haar(const IVIPlaneDesc *plane, uint8_t *dst,
|
H A D | ffv1.c | 68 PlaneContext *const p = &fs->plane[j]; in ff_ffv1_init_slice_state() 173 PlaneContext *p = &fs->plane[i]; in ff_ffv1_clear_slice_state() 212 PlaneContext *p = &fs->plane[i]; in ff_ffv1_close()
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_colorizer.py | 218 for plane in ('background', 'foreground'): 219 with self.subTest(tag=tag, plane=plane): 221 self.assertEqual(text.tag_cget(tag, plane), '') 223 self.assertEqual(text.tag_cget(tag, plane), 224 highlight(element=tag.lower())[plane])
|
/third_party/mesa3d/src/mesa/main/ |
H A D | clip.h | 39 _mesa_update_clip_plane(struct gl_context *ctx, GLuint plane);
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_draw_hw_select.c | 167 * if all vertices of the primitive are outside (plane equation <0) of in fast_frustum_culling() 168 * any plane, the primitive must be invisible. in fast_frustum_culling() 216 int max_vert, nir_ssa_def *plane) in clip_with_plane() 229 nir_ssa_def *d = nir_fdot(b, v, plane); in clip_with_plane() 241 * +: inside plane in clip_with_plane() 242 * -: outside plane in clip_with_plane() 243 * 0: just on the plane in clip_with_plane() 254 * no '+-+-', so one clip plane can only grow array by 1. in clip_with_plane() 353 nir_variable *plane = nir_variable_create( in get_user_clip_plane() local 356 set_uniform_location(plane, clip_plane in get_user_clip_plane() 215 clip_with_plane(nir_builder *b, nir_variable *vert, nir_variable *num_vert, int max_vert, nir_ssa_def *plane) clip_with_plane() argument 497 nir_ssa_def *plane = nir_load_array_var(b, clip_planes, idx); build_line_nir_shader() local 570 nir_ssa_def *plane = nir_load_array_var(b, clip_planes, idx); build_planar_primitive_nir_shader() local [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | pixdesc.c | 41 int plane = comp.plane; in av_read_image_line2() local 52 const uint8_t *p = data[plane] + y * linesize[plane] + (skip >> 3); in av_read_image_line2() 66 const uint8_t *p = data[plane] + y * linesize[plane] + in av_read_image_line2() 106 int plane = comp.plane; in av_write_image_line2() local 115 uint8_t *p = data[plane] + y * linesize[plane] in av_write_image_line2() [all...] |
/third_party/skia/tests/ |
H A D | YUVTest.cpp | 73 REPORTER_ASSERT(reporter, pixmaps.plane(i).info() == yuvaPixmapInfo.planeInfo(i)); in codec_yuv() 76 REPORTER_ASSERT(reporter, pixmaps.plane(i).rowBytes() == 0); in codec_yuv()
|
/third_party/skia/gm/ |
H A D | yuvtorgbsubset.cpp | 74 bitmaps[i].installPixels(fPixmaps.plane(i)); in makePixmaps() 96 bitmap.installPixels(fPixmaps.plane(i));
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_texture.c | 572 struct pipe_resource *resource, unsigned plane, unsigned layer, in si_resource_get_param() 577 while (plane && resource->next && !si_texture_is_aux_plane(resource->next)) { in si_resource_get_param() 578 --plane; in si_resource_get_param() 601 &tex->surface, plane, level); in si_resource_get_param() 610 &tex->surface, plane, layer) + level_offset; in si_resource_get_param() 674 unsigned plane = whandle->plane; in si_texture_get_handle() local 677 while (plane && resource->next && !si_texture_is_aux_plane(resource->next)) { in si_texture_get_handle() 679 --plane; in si_texture_get_handle() 696 if (plane) { in si_texture_get_handle() 571 si_resource_get_param(struct pipe_screen *screen, struct pipe_context *context, struct pipe_resource *resource, unsigned plane, unsigned layer, unsigned level, enum pipe_resource_param param, unsigned handle_usage, uint64_t *value) si_resource_get_param() argument 1603 unsigned plane = 1; si_texture_from_winsys_buffer() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_colormap.c | 387 for (int plane = 0; plane < 3; plane++) { in import_map() 388 const int c = plane == 0 ? 1 : plane == 1 ? 2 : 0; in import_map() 392 const float *src = (const float *)(in->data[plane] + y * in->linesize[plane]); in import_map()
|
/third_party/backends/sanei/ |
H A D | sanei_ir.c | 3 * sanei_ir - functions for utilizing the infrared plane 513 /* Reduce red spectral overlap from an infrared image plane 1123 SANE_Uint *plane; in sanei_ir_dilate_mean() local 1139 plane = malloc (itop * sizeof (SANE_Uint)); in sanei_ir_dilate_mean() 1141 if (!idx_map || !dist_map || !plane) in sanei_ir_dilate_mean() 1171 sanei_ir_filter_mean (params, color, plane, win_size, win_size); in sanei_ir_dilate_mean() 1180 sanei_ir_filter_mean (params, plane, color, win_size, in sanei_ir_dilate_mean() 1194 color[i] = plane[i]; in sanei_ir_dilate_mean() 1199 free (plane); in sanei_ir_dilate_mean()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_tests.c | 916 unsigned plane = i == 2 ? 0 : i; in test_nv12() local 918 if (!screen->resource_get_param(screen, NULL, res, plane, 0, 0, in test_nv12() 926 if (!screen->resource_get_param(screen, NULL, res, plane, 0, 0, in test_nv12() 934 if (!screen->resource_get_param(screen, NULL, res, plane, 0, 0, in test_nv12() 942 if (!screen->resource_get_param(screen, NULL, res, plane, 0, 0, in test_nv12() 950 if (!screen->resource_get_param(screen, NULL, res, plane, 0, 0, in test_nv12() 988 handle[i].plane = i % 2; in test_nv12()
|
/third_party/skia/src/core/ |
H A D | SkVMBlitter.cpp | 728 size_t plane = mask.computeImageSize(); in blitMask() local 730 program->eval(w, fUniforms.buf.data(), dptr, sprite, mptr + 1*plane in blitMask() 731 , mptr + 2*plane in blitMask() 732 , mptr + 0*plane); in blitMask() 734 program->eval(w, fUniforms.buf.data(), dptr, mptr + 1*plane in blitMask() 735 , mptr + 2*plane in blitMask() 736 , mptr + 0*plane); in blitMask()
|
/third_party/mesa3d/src/gallium/include/frontend/ |
H A D | winsys_handle.h | 40 * Input for resource_get_handle, allows to export of a specific plane of a 43 unsigned plane; member
|
H A D | vdpau_dmabuf.h | 85 VdpVideoSurfacePlane plane,
|
/third_party/mesa3d/src/amd/common/ |
H A D | ac_surface.h | 125 * compatibility. If either is true, the corresponding plane cannot be 239 /* The size of the 2D plane containing all mipmap levels. */ 465 unsigned plane, unsigned layer); 468 unsigned plane, unsigned level); 471 unsigned plane);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | capture_gles_1_0_params.cpp | 28 GLenum plane, in CaptureClipPlanex_equation() 67 GLenum plane, in CaptureGetClipPlanef_equation() 76 GLenum plane, in CaptureGetClipPlanex_equation() 26 CaptureClipPlanex_equation(const State &glState, bool isCallValid, GLenum plane, const GLfixed *equation, ParamCapture *paramCapture) CaptureClipPlanex_equation() argument 65 CaptureGetClipPlanef_equation(const State &glState, bool isCallValid, GLenum plane, GLfloat *equation, ParamCapture *paramCapture) CaptureGetClipPlanef_equation() argument 74 CaptureGetClipPlanex_equation(const State &glState, bool isCallValid, GLenum plane, GLfixed *equation, ParamCapture *paramCapture) CaptureGetClipPlanex_equation() argument
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context_gles_1_0_autogen.h | 20 void clipPlanex(GLenum plane, const GLfixed *equation); \ 35 void getClipPlanef(GLenum plane, GLfloat *equation); \ 36 void getClipPlanex(GLenum plane, GLfixed *equation); \
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_cmd.c | 1207 * plane is enabled then all 3d rendering is clipped against 1208 * the plane. 1221 uint32 index, const float *plane) in SVGA3D_SetClipPlane() 1233 cmd->plane[0] = plane[0]; in SVGA3D_SetClipPlane() 1234 cmd->plane[1] = plane[1]; in SVGA3D_SetClipPlane() 1235 cmd->plane[2] = plane[2]; in SVGA3D_SetClipPlane() 1236 cmd->plane[ in SVGA3D_SetClipPlane() 1220 SVGA3D_SetClipPlane(struct svga_winsys_context *swc, uint32 index, const float *plane) SVGA3D_SetClipPlane() argument [all...] |
/third_party/ffmpeg/libavfilter/metal/ |
H A D | utils.h | 55 int plane,
|
/third_party/json/docs/examples/ |
H A D | update__range.cpp | 12 json o2 = R"( {"color": "blue", "speed": 100, "names": {"en": "plane"}} )"_json; in main()
|
H A D | update.cpp | 12 json o2 = R"( {"color": "blue", "speed": 100, "names": {"en": "plane"}} )"_json; in main()
|