Home
last modified time | relevance | path

Searched refs:use_fill (Results 1 – 25 of 26) sorted by relevance

12

/dports/cad/iverilog/verilog-11.0/vpi/
H A Dvcd_priv2.cc123 unsigned use_fill = work_queue_fill - 1; in vcd_work_thread_pop() local
124 work_queue_fill = use_fill; in vcd_work_thread_pop()
138 if (use_fill == WORK_QUEUE_SIZE-WORK_QUEUE_BATCH_MIN) in vcd_work_thread_pop()
140 else if (use_fill == 0) in vcd_work_thread_pop()
198 unsigned use_fill = work_queue_fill; in end_batch() local
199 bool was_empty_flag = (use_fill==0) && (current_batch_cnt > 0); in end_batch()
201 use_fill += current_batch_cnt; in end_batch()
202 work_queue_fill = use_fill; in end_batch()
/dports/math/octave-forge-stk/stk/inst/misc/plot/
H A Dstk_plot_shadedci.m48 persistent use_fill
49 if isempty (use_fill)
54 use_fill = (str2double (v{1}) >= 4); variable
57 use_fill = (str2double (v{1}) >= 9); % 9.0 is R2016a variable
66 if use_fill
/dports/graphics/blender/blender-2.91.0/source/blender/editors/gpencil/
H A Dgpencil_vertex_ops.c532 bool use_fill = (gp_style->flag & GP_MATERIAL_FILL_SHOW); in gpencil_extract_palette_from_vertex() local
535 if ((!use_fill) && (!use_stroke)) { in gpencil_extract_palette_from_vertex()
546 if ((use_fill) && (gp_style->fill_style != GP_MATERIAL_FILL_STYLE_SOLID)) { in gpencil_extract_palette_from_vertex()
599 bool use_fill, in get_material_type() argument
603 if ((use_stroke) && (use_fill)) { in get_material_type()
655 if (use_fill) { in get_material_type()
719 bool use_fill = ((gp_style->flag & GP_MATERIAL_FILL_SHOW) && in gpencil_material_to_vertex_exec() local
724 if ((!use_fill) && (!use_stroke)) { in gpencil_material_to_vertex_exec()
735 if ((use_fill) && (gp_style->fill_style != GP_MATERIAL_FILL_STYLE_SOLID)) { in gpencil_material_to_vertex_exec()
742 uint key = get_material_type(gp_style, use_stroke, use_fill, name); in gpencil_material_to_vertex_exec()
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/editors/uvedit/
H A Duvedit_path.c150 bool use_fill; member
185 op_params->use_fill = RNA_boolean_get(op->ptr, "use_fill"); in path_select_params_from_op()
267 bool use_neaerst = (op_params->use_fill == false); in mouse_mesh_uv_shortest_path_vert()
274 if (op_params->use_fill == false) { in mouse_mesh_uv_shortest_path_vert()
300 if (op_params->use_fill) { in mouse_mesh_uv_shortest_path_vert()
438 if (op_params->use_fill) { in mouse_mesh_uv_shortest_path_face()
/dports/devel/gputils/gputils-1.5.0/gplink/
H A Dscript.c389 section_def->use_fill = false; in _do_secdef()
394 section_def->use_fill = found_fill; in _do_secdef()
398 section_def->use_fill = true; in _do_secdef()
/dports/graphics/blender/blender-2.91.0/source/blender/editors/mesh/
H A Deditmesh_path.c80 bool use_fill; member
142 op_params->use_fill = RNA_boolean_get(op->ptr, "use_fill"); in path_select_params_from_op()
203 if (op_params->use_fill) { in mouse_mesh_shortest_path_vert()
393 if (op_params->use_fill) { in mouse_mesh_shortest_path_edge()
521 if (op_params->use_fill) { in mouse_mesh_shortest_path_face()
H A Deditmesh_bisect.c246 const bool use_fill = RNA_boolean_get(op->ptr, "use_fill"); in mesh_bisect_exec() local
344 if (use_fill) { in mesh_bisect_exec()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/extension/internal/
H A Demf-print.cpp152 use_stroke = use_fill = simple_shape = usebk = false; in begin()
1118 use_fill = true; in fill()
1404 use_fill = false; in fill()
1472 use_fill = false; in stroke()
1627 if (use_fill && !use_stroke) { // only fill in print_simple_shape()
1665 if (use_fill && !use_stroke && hpen) { // only fill in print_simple_shape()
1917 if (use_fill) { in print_pathv()
1929 if (use_fill && !use_stroke) { in print_pathv()
1934 } else if (use_fill && use_stroke) { in print_pathv()
1939 } else if (!use_fill && use_stroke) { in print_pathv()
[all …]
H A Dmetafile-print.h82 bool use_fill; variable
H A Dwmf-print.cpp144 use_stroke = use_fill = simple_shape = usebk = false; in begin()
674 use_fill = true; in fill()
820 use_fill = false; // gradients handled, be sure stroke does not use stroke and fill in fill()
850 use_fill = false; in fill()
917 use_fill = false; in stroke()
1334 if (use_fill) { in print_pathv()
/dports/devel/gputils/gputils-1.5.0/libgputils/
H A Dgpcofflink.h54 gp_boolean use_fill; member
H A Dgpcofflink.c1494 if ((section_def->type == SECT_CODEPAGE) && (section_def->use_fill)) { in gp_cofflink_fill_pages()
/dports/cad/py-pymtl/pymtl3-3.1.6/pymtl3/passes/backends/verilog/import_/
H A DVerilogVerilatorImportConfigs.py338 def vprint( s, msg, nspaces = 0, use_fill = False ): argument
340 if use_fill:
/dports/science/minc2/minc-release-2.2.00/progs/mincresample/
H A Dmincresample.h203 int use_fill; /* TRUE if fill values should be used in member
H A Dmincresample.c642 in_vol->volume->use_fill = TRUE; in get_arginfo()
646 in_vol->volume->use_fill = (args.fillvalue != -DBL_MAX); in get_arginfo()
H A Dresample_volumes.c541 if (INTERPOLATE(volume, transf_coord, dptr) || volume->use_fill) { in get_slice()
/dports/math/gretl/gretl-2021d/lib/src/
H A Dgraphing.c5860 use_fill = 1; in plot_fcast_errs()
5882 use_fill = 1; in plot_fcast_errs()
5893 if (use_fill) { in plot_fcast_errs()
5933 if (use_fill) { in plot_fcast_errs()
7818 int use_fill, in real_irf_print_plot() argument
7851 if (use_fill) { in real_irf_print_plot()
7872 if (confint && use_fill) { in real_irf_print_plot()
7886 if (confint && !use_fill) { in real_irf_print_plot()
7928 alpha, confint, use_fill, in gretl_VAR_plot_impulse_response()
8095 if (confint && use_fill) { in gretl_VAR_plot_multiple_irf()
[all …]
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/
H A Dmesh_auto_mirror.py177 use_fill = False,
/dports/graphics/openimageio/oiio-Release-2.2.16.0/src/libtexture/
H A Dtexturesys.cpp2061 bool use_fill = (nchannels_result > actualchannels && options.fill); in sample_bilinear() local
2269 if (use_fill && !all(stvalid)) { in sample_bilinear()
2282 if (use_fill) { in sample_bilinear()
2408 bool use_fill = (nchannels_result > actualchannels && options.fill); in sample_bicubic() local
2740 if (!allvalid && use_fill) { in sample_bicubic()
2759 if (use_fill) { in sample_bicubic()
/dports/graphics/py-openimageio/oiio-Release-2.2.16.0/src/libtexture/
H A Dtexturesys.cpp2061 bool use_fill = (nchannels_result > actualchannels && options.fill); in sample_bilinear() local
2269 if (use_fill && !all(stvalid)) { in sample_bilinear()
2282 if (use_fill) { in sample_bilinear()
2408 bool use_fill = (nchannels_result > actualchannels && options.fill); in sample_bicubic() local
2740 if (!allvalid && use_fill) { in sample_bicubic()
2759 if (use_fill) { in sample_bicubic()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_curve_svg/
H A Dimport_svg.py501 def __init__(self, d, use_fill): argument
513 self._use_fill = use_fill
/dports/devel/py-pyopencl/pyopencl-2018.2/pyopencl/
H A Darray.py2299 use_fill = np.ndarray((chunk_size,), dtype=np.uint8)
2315 use_fill[fill_idx] = 1 if ary.size == 1 else 0
2318 use_fill_cla = to_device(queue, use_fill)
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dgpencil_geom.c2237 const bool use_fill, in gpencil_add_material() argument
2255 if (use_fill) { in gpencil_add_material()
/dports/graphics/gmt/gmt-6.3.0/src/
H A Dgmt_io.c7301 …eader (struct GMT_CTRL *GMT, char *header, struct GMT_PALETTE *P, bool *use_fill, struct GMT_FILL … in gmt_parse_segment_header() argument
7360 *use_fill = true; in gmt_parse_segment_header()
7376 *use_fill = true; in gmt_parse_segment_header()
7397 *use_fill = false; in gmt_parse_segment_header()
7402 *use_fill = (def_fill->use_pattern || def_fill->rgb[0] != -1.0); in gmt_parse_segment_header()
7403 if (*use_fill) change = 1; in gmt_parse_segment_header()
7409 *use_fill = true; in gmt_parse_segment_header()
7419 *use_fill = true; in gmt_parse_segment_header()
7429 *use_fill = true; in gmt_parse_segment_header()
H A Dgmt_prototypes.h389 …eader (struct GMT_CTRL *GMT, char *header, struct GMT_PALETTE *P, bool *use_fill, struct GMT_FILL …

12