Home
last modified time | relevance | path

Searched refs:mask_width (Results 1 – 25 of 162) sorted by relevance

1234567

/dports/games/libretro-paralleln64/parallel-n64-6e26fbb/glide2gl/src/Glide64/
H A DMiClWr.c48 uint32_t mask_width = (1 << mask); in Mirror8bS() local
49 uint32_t mask_mask = (mask_width-1); in Mirror8bS()
50 int32_t count = max_width - mask_width; in Mirror8bS()
60 if ( mask_width & (v10 + mask_width) ) in Mirror8bS()
96 uint32_t mask_width = (1 << mask); in Mirror16bS() local
97 uint32_t mask_mask = (mask_width-1) << 1; in Mirror16bS()
98 int32_t count = max_width - mask_width; in Mirror16bS()
107 if ( mask_width & (v10 + mask_width) ) in Mirror16bS()
164 uint32_t mask_width = (1 << mask); in Mirror32bS() local
165 uint32_t mask_mask = (mask_width-1) << 2; in Mirror32bS()
[all …]
H A DTexCache.c69 int mask_width, mask_height; member
181 width = MIN(mask_width, tile_width); // changed from mask_width only in GetTexInfo()
201 if (mask_width > 256 && mask_height > 256) in GetTexInfo()
203 mask_width = tile_width; in GetTexInfo()
207 width = mask_width; in GetTexInfo()
208 gDP.tiles[tile].width = mask_width; in GetTexInfo()
213 width = MIN(mask_width, tile_width); in GetTexInfo()
331 info->mask_width = mask_width; in GetTexInfo()
1165 uint32_t mask_width = (1 << g_gdp.tile[td].mask_s); in LoadTex() local
1166 uint32_t mask_mask = (mask_width-1) >> shift_a; in LoadTex()
[all …]
/dports/x11/pixman/pixman-0.40.0/test/
H A Dscaling-test.c59 int mask_width, mask_height; in test_composite() local
105 mask_width = prng_rand_n (MAX_SRC_WIDTH) + 1; in test_composite()
110 mask_width = mask_height = 1; in test_composite()
116 mask_stride = mask_width * mask_bpp + prng_rand_n (MAX_STRIDE) * mask_bpp; in test_composite()
132 mask_x = -(mask_width / 4) + prng_rand_n (mask_width * 3 / 2); in test_composite()
173 mask_fmt, mask_width, mask_height, maskbuf, mask_stride); in test_composite()
294 clip_boxes[i].x1 = prng_rand_n (mask_width); in test_composite()
297 clip_boxes[i].x1 + prng_rand_n (mask_width - clip_boxes[i].x1); in test_composite()
372 mask_width, mask_height, mask_x, mask_y); in test_composite()
/dports/graphics/gimp-app/gimp-2.10.30/app/paint/
H A Dgimpbrushcore-loops.cc132 mask_height, PIXELS_PER_THREAD / mask_width, in gimp_brush_core_subsample_mask_impl()
151 y0 * mask_width; in gimp_brush_core_subsample_mask_impl()
155 for (j = 0; j < mask_width; j++) in gimp_brush_core_subsample_mask_impl()
173 for (j = 0; j < mask_width; j++) in gimp_brush_core_subsample_mask_impl()
231 gint mask_width = gimp_temp_buf_get_width (mask); in gimp_brush_core_subsample_mask() local
240 if ((mask_width % 2) == 0) in gimp_brush_core_subsample_mask()
282 dest = gimp_temp_buf_new (mask_width + 2, in gimp_brush_core_subsample_mask()
541 gint mask_width = gimp_temp_buf_get_width (mask); in gimp_brush_core_solidify_mask_impl() local
546 GEGL_RECTANGLE (0, 0, mask_width, mask_height), in gimp_brush_core_solidify_mask_impl()
555 area->y * mask_width + area->x; in gimp_brush_core_solidify_mask_impl()
[all …]
/dports/games/ponscripter-07th-mod/ponscripter-fork-3.0.0/src/
H A Dgraphics_x86_common.h126 int mask_width = mask_surface->w; in alphaMaskBlend_SSE_Common() local
141 if (mx >= mask_width) { mx = 0; } in alphaMaskBlend_SSE_Common()
150 if (__builtin_expect(mx + 3 < mask_width, true)) { in alphaMaskBlend_SSE_Common()
155 if (mx + i < mask_width) { in alphaMaskBlend_SSE_Common()
158 tmp[i] = mask_buf[mx + i - mask_width]; in alphaMaskBlend_SSE_Common()
183 if (mx >= mask_width) { mx -= mask_width; } in alphaMaskBlend_SSE_Common()
188 if (mx >= mask_width) { mx = 0; } in alphaMaskBlend_SSE_Common()
/dports/multimedia/motion/motion-release-4.3.2/src/
H A Dpicture.c842 int x, y, mask_width, mask_height, maxval; in get_pgm() local
866 if (sscanf(line, "%d %d", &mask_width, &mask_height) != 2) { in get_pgm()
889 image = mymalloc((mask_width * mask_height * 3) / 2); in get_pgm()
892 if ((int)fread(&image[y * mask_width], 1, mask_width, picture) != mask_width) in get_pgm()
895 for (x = 0; x < mask_width; x++) in get_pgm()
896 image[y * mask_width + x] = (int)image[y * mask_width + x] * 255 / maxval; in get_pgm()
901 if (mask_width != width || mask_height != height) { in get_pgm()
906 ,mask_width, mask_height, width, height); in get_pgm()
913 (mask_height - 1) * y / (height - 1) * mask_width + in get_pgm()
914 (mask_width - 1) * x / (width - 1)]; in get_pgm()
/dports/converters/pdf2djvu/pdf2djvu-0.9.17.1/
H A Dpdf-dpi.cc49 …pdf::Stream *mask_stream, int mask_width, int mask_height, bool mask_invert, bool mask_interpolate) in drawMaskedImage() argument
52 this->process_image(state, mask_width, mask_height); in drawMaskedImage()
57 pdf::Stream *mask_stream, int mask_width, int mask_height, in drawSoftMaskedImage() argument
61 this->process_image(state, mask_width, mask_height); in drawSoftMaskedImage()
/dports/graphics/gimageview/gimageview-0.2.27/src/
H A Dcursors.c47 int mask_width; member
87 g_assert (cursors[type].data_width == cursors[type].mask_width); in cursor_get()
96 cursors[type].mask_width, in cursor_get()
/dports/graphics/gimp-app/gimp-2.10.30/app/core/
H A Dgimpdrawable-bucket-fill.c148 gint *mask_width, in gimp_drawable_get_bucket_fill_buffer() argument
300 if (mask_width) in gimp_drawable_get_bucket_fill_buffer()
301 *mask_width = width; in gimp_drawable_get_bucket_fill_buffer()
348 gint *mask_width, in gimp_drawable_get_line_art_fill_buffer() argument
488 if (mask_width) in gimp_drawable_get_line_art_fill_buffer()
489 *mask_width = width; in gimp_drawable_get_line_art_fill_buffer()
H A Dgimpdrawable-bucket-fill.h44 gint *mask_width,
56 gint *mask_width,
H A Dgimpbrush.c281 gint mask_width; in gimp_brush_get_new_preview() local
289 mask_width = gimp_temp_buf_get_width (mask_buf); in gimp_brush_get_new_preview()
292 if (mask_width > width || mask_height > height) in gimp_brush_get_new_preview()
294 gdouble ratio_x = (gdouble) width / (gdouble) mask_width; in gimp_brush_get_new_preview()
330 mask_width = gimp_temp_buf_get_width (mask_buf); in gimp_brush_get_new_preview()
337 return_buf = gimp_temp_buf_new (mask_width, mask_height, in gimp_brush_get_new_preview()
355 for (x = 0; x < mask_width ; x++) in gimp_brush_get_new_preview()
370 for (x = 0; x < mask_width ; x++) in gimp_brush_get_new_preview()
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gdk/quartz/
H A Dgdkcursor-quartz.c100 NSInteger mask_width, mask_height; in create_builtin_cursor() local
121 mask_width = xcursors[cursor_type+1].width; in create_builtin_cursor()
125 pixelsWide:mask_width pixelsHigh:mask_height in create_builtin_cursor()
142 for (x = 0; x < mask_width; x++) in create_builtin_cursor()
144 if (get_bit (mask_start, mask_width, mask_height, x, y)) in create_builtin_cursor()
/dports/shells/viewglob/viewglob-2.0.4/vgdisplay/
H A Ddircont.c734 gint mask_width, mask_height; in header_expose_event() local
737 pango_layout_get_pixel_size(big_mask_layout, &mask_width, NULL); in header_expose_event()
739 if (3*DIR_NAME_SPACER + name_width + mask_width < in header_expose_event()
745 header->allocation.width - mask_width - DIR_NAME_SPACER, in header_expose_event()
751 pango_layout_get_pixel_size(small_mask_layout, &mask_width, NULL); in header_expose_event()
755 header->allocation.width - mask_width - COUNT_SPACER, in header_expose_event()
762 &mask_width, &mask_height); in header_expose_event()
764 if (mask_height && mask_width in header_expose_event()
770 (header->allocation.width - mask_width)/2 - 2, in header_expose_event()
772 mask_width + 4, mask_height); in header_expose_event()
[all …]
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/class/libraries/vendor/smottt/wideimage/lib/WideImage/Operation/
H A DApplyMask.php50 $mask_width = $mask->getWidth();
73 if ($mx >= 0 && $mx < $mask_width && $my >= 0 && $my < $mask_height) {
/dports/sysutils/cpufetch/cpufetch-1.00/src/x86/
H A Dapic.c39 uint32_t create_mask(uint32_t num_entries, uint32_t *mask_width) { in create_mask() argument
49 if (mask_width) *mask_width = 0; in create_mask()
53 if (mask_width) *mask_width = i; in create_mask()
/dports/x11-toolkits/gtk20/gtk+-2.24.33/gdk/quartz/
H A Dgdkcursor-quartz.c87 NSInteger mask_width, mask_height; in create_builtin_cursor() local
108 mask_width = xcursors[cursor_type+1].width; in create_builtin_cursor()
112 pixelsWide:mask_width pixelsHigh:mask_height in create_builtin_cursor()
129 for (x = 0; x < mask_width; x++) in create_builtin_cursor()
131 if (get_bit (mask_start, mask_width, mask_height, x, y)) in create_builtin_cursor()
/dports/net/tcpdump/tcpdump-4.99.1/
H A Dprint-bootp.c906 u_int mask_width, significant_octets, i; in rfc1048_print() local
918 mask_width = GET_U_1(bp); in rfc1048_print()
922 if (mask_width > 32) { in rfc1048_print()
923 ND_PRINT("[ERROR: Mask width (%u) > 32]", mask_width); in rfc1048_print()
928 significant_octets = (mask_width + 7) / 8; in rfc1048_print()
937 if (mask_width == 0) in rfc1048_print()
949 ND_PRINT("/%u", mask_width); in rfc1048_print()
/dports/games/wmqstat/wmqstat-0.0.4/appcore/
H A Dwmqstat.c66 int mask_width = 64; variable
96 createXBMfromXPM(mask_bits, wmqstat_xpm, mask_width, mask_height); in main()
97 openXwindow(argc, argv, wmqstat_xpm, mask_bits, mask_width, mask_height); in main()
/dports/www/node10/node-v10.24.1/deps/v8/src/compiler/mips64/
H A Dinstruction-selector-mips64.cc511 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32And()
526 if (lsb + mask_width > 32) mask_width = 32 - lsb; in VisitWord32And()
530 g.TempImmediate(mask_width)); in VisitWord32And()
561 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64And()
576 if (lsb + mask_width > 64) mask_width = 64 - lsb; in VisitWord64And()
678 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32Shl()
682 if ((shift + mask_width) >= 32) { in VisitWord32Shl()
713 g.TempImmediate(mask_width)); in VisitWord32Shr()
770 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64Shl()
775 if ((shift + mask_width) >= 64) { in VisitWord64Shl()
[all …]
/dports/x11-toolkits/tkshape/shape0.4/demos/images/
H A Dptr-mask.xbm1 #define ptr-mask_width 8
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/compiler/backend/mips64/
H A Dinstruction-selector-mips64.cc543 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32And()
558 if (lsb + mask_width > 32) mask_width = 32 - lsb; in VisitWord32And()
562 g.TempImmediate(mask_width)); in VisitWord32And()
592 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64And()
607 if (lsb + mask_width > 64) mask_width = 64 - lsb; in VisitWord64And()
704 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32Shl()
708 if ((shift + mask_width) >= 32) { in VisitWord32Shl()
738 g.TempImmediate(mask_width)); in VisitWord32Shr()
793 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64Shl()
798 if ((shift + mask_width) >= 64) { in VisitWord64Shl()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/compiler/backend/loong64/
H A Dinstruction-selector-loong64.cc596 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32And()
611 if (lsb + mask_width > 32) mask_width = 32 - lsb; in VisitWord32And()
615 g.TempImmediate(mask_width)); in VisitWord32And()
645 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64And()
661 if (lsb + mask_width > 64) mask_width = 64 - lsb; in VisitWord64And()
758 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32Shl()
762 if ((shift + mask_width) >= 32) { in VisitWord32Shl()
793 g.TempImmediate(mask_width)); in VisitWord32Shr()
848 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64Shl()
853 if ((shift + mask_width) >= 64) { in VisitWord64Shl()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/compiler/backend/mips64/
H A Dinstruction-selector-mips64.cc574 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32And()
589 if (lsb + mask_width > 32) mask_width = 32 - lsb; in VisitWord32And()
593 g.TempImmediate(mask_width)); in VisitWord32And()
623 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64And()
639 if (lsb + mask_width > 64) mask_width = 64 - lsb; in VisitWord64And()
736 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32Shl()
740 if ((shift + mask_width) >= 32) { in VisitWord32Shl()
771 g.TempImmediate(mask_width)); in VisitWord32Shr()
826 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64Shl()
831 if ((shift + mask_width) >= 64) { in VisitWord64Shl()
[all …]
/dports/math/fricas/fricas-1.3.7/src/doc/bitmaps/
H A Dmask.bitmap1 #define mask_width 16
/dports/lang/v8/v8-9.6.180.12/src/compiler/backend/mips64/
H A Dinstruction-selector-mips64.cc612 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32And()
627 if (lsb + mask_width > 32) mask_width = 32 - lsb; in VisitWord32And()
631 g.TempImmediate(mask_width)); in VisitWord32And()
661 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64And()
677 if (lsb + mask_width > 64) mask_width = 64 - lsb; in VisitWord64And()
774 if ((mask_width != 0) && (mask_msb + mask_width == 32)) { in VisitWord32Shl()
778 if ((shift + mask_width) >= 32) { in VisitWord32Shl()
809 g.TempImmediate(mask_width)); in VisitWord32Shr()
864 if ((mask_width != 0) && (mask_msb + mask_width == 64)) { in VisitWord64Shl()
869 if ((shift + mask_width) >= 64) { in VisitWord64Shl()
[all …]

1234567