Home
last modified time | relevance | path

Searched refs:f_width (Results 1 – 25 of 373) sorted by relevance

12345678910>>...15

/dports/lang/fth/fth-1.4.1/src/
H A Dprintf.c166 f_width = atoi(f); in doprnt()
247 f_width = f_width - (int) (bp - buf); in doprnt()
345 f_width = f_width - (int) (bp - buf); in doprnt()
375 if (f_width == 0) { in doprnt()
452 f_width -= prec; in doprnt()
475 f_width = 0; in doprnt()
1067 f_width = atoi(f); in string_doprnt()
1133 f_width = f_width - (int) (bp - buf); in string_doprnt()
1211 f_width = f_width - (int) (bp - buf); in string_doprnt()
1307 f_width -= prec; in string_doprnt()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono_sensor/cuda/
H A Dimage_ops.cu25 __global__ void image_gauss_kernel_vert(unsigned char* buf, int w, int h, int c, int f_width, float… in image_gauss_kernel_vert() argument
38 for (int i = -f_width; i <= f_width; i++) { in image_gauss_kernel_vert()
44 sum += dweights[i + f_width] * ((float)buf[index_in]); in image_gauss_kernel_vert()
51 __global__ void image_gauss_kernel_horiz(unsigned char* buf, int w, int h, int c, int f_width, floa… in image_gauss_kernel_horiz() argument
60 for (int i = -f_width; i <= f_width; i++) { in image_gauss_kernel_horiz()
64 sum += dweights[i + f_width] * ((float)buf[index_in]); in image_gauss_kernel_horiz()
160 int f_width = (int)(3.14f * f_std); in cuda_image_gauss_blur_char() local
162 int entries = 2 * f_width + 1; in cuda_image_gauss_blur_char()
166 for (int i = 0; i <= 2 * f_width; i++) { in cuda_image_gauss_blur_char()
167 int offset = i - f_width; in cuda_image_gauss_blur_char()
[all …]
/dports/science/2d-rewriter/2d-rewriter-1.6/
H A Dview.c34 static int f_width, f_height, w_x, w_y, w_width, w_height, mag = 1; variable
50 f_width = FieldWidth; in InitView()
54 w_x = f_width / 2; in InitView()
133 if (xe > f_width) in Redraw()
134 xe = f_width; in Redraw()
175 if (w_x >= f_width - 1) in Key()
178 if (w_x > f_width - 1) in Key()
179 w_x = f_width - 1; in Key()
/dports/graphics/sswf/sswf-1.8.4/src/lib/
H A Dlibsswf_tag_image.c++197 f_image.f_width = 0; in TagImage()
691 im.f_width = cinfo.output_width; in LoadJPEG()
694 size = im.f_width * im.f_height; in LoadJPEG()
889 im.f_width = width; in LoadTGA()
1058 if(im.f_width != mask.f_width in SetAlpha()
1062 im.f_width, im.f_height, mask.f_width, mask.f_height); in SetAlpha()
1065 cnt = im.f_width * im.f_height; in SetAlpha()
1179 f_image.f_width = width; in SetImage()
1283 w = f_image.f_width; in Save()
1292 if((f_image.f_width & 1) != 0) { in Save()
[all …]
H A Dlibsswf_tag_sound.c++922 f_width = 0; in TagSound()
1129 f_width = 16; in LoadMP3File()
1421 out_bytes -= f_width == 16 ? 2 : 1; in Resample()
1479 if(f_width == 16) { in Resample()
1568 case 8: in_bytes = 1; out_bytes = 1; f_width = 8; break; in SetData()
1679 if(f_width == 16) { in SetData()
1728 if(f_width == 8) { in SetMono()
1768 if(f_width == 16 && f_samples > 0) { in Set8Bits()
1783 f_width = 8; in Set8Bits()
1871 sub_data.WriteBits(f_width == 16 ? 1 : 0, 1); in Save()
[all …]
/dports/graphics/sswf/sswf-1.8.4/src/tools/
H A Djpg2swf.c++194 rect.Set(0, bitmap.f_width * 20, 0, bitmap.f_height * 20); in convert_image()
203 matrix.SetTranslate(bitmap.f_width * -10, bitmap.f_height * -10); in convert_image()
207 rect.Set(bitmap.f_width * -10 - 20, bitmap.f_width * 10 + 20, in convert_image()
211 …shape->AddMove(sswf::TagShape::MORPH_MODE_SHAPE0, bitmap.f_width * -10 - 20, bitmap.f_height * -10… in convert_image()
212 shape->AddEdge(sswf::TagShape::MORPH_MODE_SHAPE0, bitmap.f_width * 20 + 40, 0); in convert_image()
214 shape->AddEdge(sswf::TagShape::MORPH_MODE_SHAPE0, -bitmap.f_width * 20 - 40, 0); in convert_image()
225 matrix.SetTranslate(bitmap.f_width * 10, bitmap.f_height * 10); in convert_image()
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/image-0.23.4/src/
H A Dgif.rs97 let (f_width, f_height, left, top); in read_image()
102 f_width = u32::from(frame.width); in read_image()
113 if (left, top) != (0, 0) || (width, height) != (f_width, f_height) { in read_image()
125 let image = ImageBuffer::from_raw(f_width, f_height, &mut *buf).ok_or_else( in read_image()
128 …rorKind::GenericFeature(format!("Image dimensions ({}, {}) are too large", f_width, f_height)))))?; in read_image()
183 let (left, top, delay, dispose, f_width, f_height); in next()
190 f_width = u32::from(frame.width); in next()
214 let mut frame_buffer = match ImageBuffer::from_raw(f_width, f_height, vec) { in next()
219 …edErrorKind::GenericFeature(format!("Image dimensions ({}, {}) are too large", f_width, f_height)), in next()
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/image-0.23.12/src/codecs/
H A Dgif.rs97 let (f_width, f_height, left, top); in read_image()
102 f_width = u32::from(frame.width); in read_image()
113 if (left, top) != (0, 0) || (width, height) != (f_width, f_height) { in read_image()
125 let image = ImageBuffer::from_raw(f_width, f_height, &mut *buf).ok_or_else( in read_image()
128 …rorKind::GenericFeature(format!("Image dimensions ({}, {}) are too large", f_width, f_height)))))?; in read_image()
183 let (left, top, delay, dispose, f_width, f_height); in next()
190 f_width = u32::from(frame.width); in next()
214 let mut frame_buffer = match ImageBuffer::from_raw(f_width, f_height, vec) { in next()
219 …edErrorKind::GenericFeature(format!("Image dimensions ({}, {}) are too large", f_width, f_height)), in next()
/dports/graphics/viu/viu-1.1/cargo-crates/image-0.23.9/src/
H A Dgif.rs97 let (f_width, f_height, left, top); in read_image()
102 f_width = u32::from(frame.width); in read_image()
113 if (left, top) != (0, 0) || (width, height) != (f_width, f_height) { in read_image()
125 let image = ImageBuffer::from_raw(f_width, f_height, &mut *buf).ok_or_else( in read_image()
128 …rorKind::GenericFeature(format!("Image dimensions ({}, {}) are too large", f_width, f_height)))))?; in read_image()
183 let (left, top, delay, dispose, f_width, f_height); in next()
190 f_width = u32::from(frame.width); in next()
214 let mut frame_buffer = match ImageBuffer::from_raw(f_width, f_height, vec) { in next()
219 …edErrorKind::GenericFeature(format!("Image dimensions ({}, {}) are too large", f_width, f_height)), in next()
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/image-0.22.3/src/
H A Dgif.rs97 let (f_width, f_height, left, top); in read_image()
102 f_width = u32::from(frame.width); in read_image()
113 let image_buffer_raw = ImageBuffer::from_raw(f_width, f_height, buf).ok_or_else(|| in read_image()
162 let (left, top, delay, dispose, f_width, f_height); in next()
169 f_width = u32::from(frame.width); in next()
193 let image_buffer_raw = match ImageBuffer::from_raw(f_width, f_height, vec) { in next()
245 for x in left..min(left + f_width, self.width) { in next()
/dports/graphics/viu/viu-1.1/cargo-crates/image-0.22.5/src/
H A Dgif.rs97 let (f_width, f_height, left, top); in read_image()
102 f_width = u32::from(frame.width); in read_image()
113 let image_buffer_raw = ImageBuffer::from_raw(f_width, f_height, buf).ok_or_else(|| in read_image()
162 let (left, top, delay, dispose, f_width, f_height); in next()
169 f_width = u32::from(frame.width); in next()
193 let image_buffer_raw = match ImageBuffer::from_raw(f_width, f_height, vec) { in next()
245 for x in left..min(left + f_width, self.width) { in next()
/dports/converters/bsdconv/bsdconv-11.6/tools/
H A Dunicode_gen.py14 f_width=open("modules/inter/_WIDTH.h", "w") variable
40 f_width.write("/* Generated from {url}*/\n".format(url=m_url["EastAsianWidth.txt"]));
333 f_width.write("""
388f_width.write("{{ 0x{beg}, 0x{end}, {prop} }},\n".format(beg=width_beg, end=width_end, prop=width_…
392f_width.write("{{ 0x{beg}, 0x{end}, {prop} }},\n".format(beg=width_beg, end=width_end, prop=width_…
401 f_width.write("{{ 0x{beg}, 0x{end}, {prop} }},\n".format(beg=width_beg, end=width_end, prop=width_p…
402 f_width.write("};\n")
403 f_width.close()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/image/src/
H A Dgif.rs98 let (f_width, f_height, left, top); in read_image()
103 f_width = u32::from(frame.width); in read_image()
112 if (left, top) != (0, 0) || (width, height) != (f_width, f_height) { in read_image()
124 let image = ImageBuffer::from_raw(f_width, f_height, &mut *buf).ok_or_else( in read_image()
181 let (left, top, delay, dispose, f_width, f_height); in next()
188 f_width = u32::from(frame.width); in next()
212 let image_buffer_raw = match ImageBuffer::from_raw(f_width, f_height, vec) { in next()
264 for x in left..min(left + f_width, self.width) { in next()
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/ddsutils/
H A Dddsutils.cpp425 int f_width = width; in dds_save_image() local
438 f_size = (f_width * f_height * (bpp >> 3)); in dds_save_image()
446 f_width /= 2; in dds_save_image()
449 if (f_width < 1) in dds_save_image()
450 f_width = 1; in dds_save_image()
457 f_width = width; in dds_save_image()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-nanopi-r4s/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-wandboard/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-cubieboard/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-firefly-rk3399/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
/dports/sysutils/u-boot-sinovoip-bpi-m3/u-boot-2021.07/include/
H A Dsh_pfc.h51 #define PINMUX_CFG_REG(name, r, r_width, f_width) \ argument
52 .reg = r, .reg_width = r_width, .field_width = f_width, \
53 .cnt = (unsigned long [r_width / f_width]) {}, \
54 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])

12345678910>>...15