Home
last modified time | relevance | path

Searched refs:vformat (Results 1 – 25 of 1234) sorted by relevance

12345678910>>...50

/dports/devel/sdl12/SDL-1.2.15/src/video/riscos/
H A DSDL_riscosvideo.c188 if (vformat->BitsPerPixel < 8) vformat->BitsPerPixel = 8; in RISCOS_VideoInit()
191 switch (vformat->BitsPerPixel) in RISCOS_VideoInit()
195 vformat->Bmask = 0x00007c00; in RISCOS_VideoInit()
196 vformat->Gmask = 0x000003e0; in RISCOS_VideoInit()
197 vformat->Rmask = 0x0000001f; in RISCOS_VideoInit()
199 vformat->BytesPerPixel = 2; in RISCOS_VideoInit()
204 vformat->Bmask = 0x00ff0000; in RISCOS_VideoInit()
207 vformat->BytesPerPixel = 4; in RISCOS_VideoInit()
211 vformat->Bmask = 0; in RISCOS_VideoInit()
212 vformat->Gmask = 0; in RISCOS_VideoInit()
[all …]
/dports/java/java3d/java3d-1.5.2/j3d-core/src/native/ogl/
H A DGeometryArrayRetained.c1236 jint vformat, in executeGeometryArrayVA() argument
1458 jint vformat, in Java_javax_media_j3d_NativePipeline_executeVA() argument
1660 jint vformat, in Java_javax_media_j3d_NativePipeline_executeVABuffer() argument
1836 jint vformat, in Java_javax_media_j3d_NativePipeline_disableGlobalAlpha() argument
1864 jint vformat, in Java_javax_media_j3d_NativePipeline_setVertexFormat() argument
1874 vformat); in Java_javax_media_j3d_NativePipeline_setVertexFormat()
1918 jint vformat, in executeIndexedGeometryArray() argument
2314 vformat, in Java_javax_media_j3d_NativePipeline_executeIndexedGeometry()
2354 vformat, in Java_javax_media_j3d_NativePipeline_executeIndexedGeometryBuffer()
2725 vformat, in Java_javax_media_j3d_NativePipeline_executeIndexedGeometryVA()
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/src/
H A Ddump_cfg.cpp173 offset += sprintf(&sbuf[offset],vformat[j],mybuf[m]); in convert_string()
208 offset += sprintf(&sbuf[offset],vformat[j],mybuf[m]); in convert_string()
256 fprintf(fp,vformat[j],static_cast<int> (mybuf[m])); in write_lines()
258 fprintf(fp,vformat[j],mybuf[m]); in write_lines()
260 fprintf(fp,vformat[j],typenames[(int) mybuf[m]]); in write_lines()
262 fprintf(fp,vformat[j],static_cast<bigint> (mybuf[m])); in write_lines()
279 fprintf(fp,vformat[j],unwrap_coord); in write_lines()
282 fprintf(fp,vformat[j],static_cast<int> (mybuf[m])); in write_lines()
284 fprintf(fp,vformat[j],mybuf[m]); in write_lines()
286 fprintf(fp,vformat[j],typenames[(int) mybuf[m]]); in write_lines()
[all …]
H A Ddump_local.cpp89 vformat = new char*[size_one]; in DumpLocal()
94 vformat[i] = nullptr; in DumpLocal()
139 for (int i = 0; i < size_one; i++) delete[] vformat[i]; in ~DumpLocal()
140 delete[] vformat; in ~DumpLocal()
173 delete[] vformat[i]; in init_style()
178 vformat[i] = utils::strdup(std::string(format_int_user) + " "); in init_style()
180 vformat[i] = utils::strdup(std::string(format_float_user) + " "); in init_style()
183 else vformat[i] = utils::strdup(word + " "); in init_style()
378 offset += sprintf(&sbuf[offset],vformat[j],mybuf[m]); in convert_string()
382 offset += sprintf(&sbuf[offset],vformat[j],mybuf[m]); in convert_string()
[all …]
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/lib/fmt/test/
H A Dargs-test.cc29 auto result = fmt::vformat("{} and {} and {}", store); in TEST()
59 auto result = fmt::vformat("{} and {} and {}", store); in TEST()
84 fmt::vformat("", store); in TEST()
90 EXPECT_EQ("42", fmt::vformat("{a1}", store)); in TEST()
107 EXPECT_EQ(fmt::vformat("{band}", store), "Rolling Scones"); in TEST()
119 auto result = fmt::vformat("{c1} and {c2} and {c_ref}", store); in TEST()
127 auto result = fmt::vformat("{}", store); in TEST()
131 result = fmt::vformat("{} and {}", store); in TEST()
136 result = fmt::vformat("{}", store); in TEST()
145 auto result = fmt::vformat("{a1} and {}", store); in TEST()
[all …]
/dports/devel/libfmt/fmt-8.0.1/test/
H A Dargs-test.cc29 auto result = fmt::vformat("{} and {} and {}", store); in TEST()
59 auto result = fmt::vformat("{} and {} and {}", store); in TEST()
84 fmt::vformat("", store); in TEST()
90 EXPECT_EQ("42", fmt::vformat("{a1}", store)); in TEST()
107 EXPECT_EQ(fmt::vformat("{band}", store), "Rolling Scones"); in TEST()
119 auto result = fmt::vformat("{c1} and {c2} and {c_ref}", store); in TEST()
127 auto result = fmt::vformat("{}", store); in TEST()
131 result = fmt::vformat("{} and {}", store); in TEST()
136 result = fmt::vformat("{}", store); in TEST()
145 auto result = fmt::vformat("{a1} and {}", store); in TEST()
[all …]
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/arb_texture_view/
H A Drendering-formats.c1397 prog = create_program(vformat); in test_by_sampling()
1423 vformat->type == GL_SHORT || in is_signed()
1424 vformat->type == GL_INT; in is_signed()
1430 switch (vformat->format) { in get_num_components()
1913 view = create_view(vformat, tex); in render_to_view()
1929 if (is_any_integer(vformat)) { in render_to_view()
1930 if (is_signed(vformat)) { in render_to_view()
1960 view = create_view(vformat, tex); in clear_view()
1976 if (is_any_integer(vformat)) { in clear_view()
1977 if (is_signed(vformat)) { in clear_view()
[all …]
/dports/java/java3d/java3d-1.5.2/j3d-core-utils/src/classes/share/com/sun/j3d/utils/pickfast/
H A DPickIntersection.java252 int vformat = geom.getVertexFormat(); in getClosestVertexCoordinates() local
488 int vformat = geom.getVertexFormat(); in getPrimitiveColors() local
490 if ((vformat & GeometryArray.COLOR_4) == in getPrimitiveColors()
546 if ((vformat & GeometryArray.COLOR_4) == in getPrimitiveColors()
575 if ((vformat & GeometryArray.COLOR_4) == in getPrimitiveColors()
627 int vformat = geom.getVertexFormat(); in getPrimitiveCoordinates() local
742 int vformat = geom.getVertexFormat(); in getPrimitiveNormals() local
822 int vformat = geom.getVertexFormat(); in getPrimitiveTexCoords() local
963 int vformat = geo.getVertexFormat(); in getInterleavedVertexOffset() local
983 int vformat = geo.getVertexFormat(); in getInterleavedStride() local
[all …]
/dports/java/java3d/java3d-1.5.2/j3d-core-utils/src/classes/share/com/sun/j3d/utils/picking/
H A DPickIntersection.java500 int vformat = geom.getVertexFormat(); in getClosestVertexCoordinates() local
633 int vformat = geom.getVertexFormat(); in getPrimitiveCoordinates() local
696 int vformat = geo.getVertexFormat(); in getInterleavedVertexOffset() local
702 if ((vformat & GeometryArray.NORMALS) != 0) in getInterleavedVertexOffset()
716 int vformat = geo.getVertexFormat(); in getInterleavedStride() local
737 int vformat = geo.getVertexFormat(); in getInterleavedColorOffset() local
751 int vformat = geo.getVertexFormat(); in getInterleavedNormalOffset() local
800 int vformat = geom.getVertexFormat(); in getPrimitiveNormals() local
872 int vformat = geom.getVertexFormat(); in getPrimitiveColors() local
874 if ((vformat & GeometryArray.COLOR_4) == in getPrimitiveColors()
[all …]
/dports/mail/abook/abook-0.6.1/
H A Dconfigure.ac132 dnl vformat detection
135 AC_ARG_ENABLE(vformat, [ --enable-vformat Use libvformat is available ], [case "${enablev… optenable
136 yes) vformat=true ;;
137 no) vformat=false ;;
138 *) AC_MSG_ERROR(bad value ${enableval} for --enable-vformat) ;;
139 esac], [vformat=false])
140 if test x$vformat = xtrue; then
142 AC_CHECK_LIB([vformat], [vf_read_file], [
144 AC_DEFINE(HAVE_VFORMAT,1,[Defined if the vformat library is available])
152 dnl end of vformat detection
/dports/science/lammps/lammps-stable_29Sep2021/src/COMPRESS/
H A Ddump_cfg_zstd.cpp161 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<int>(mybuf[m])); in write_data()
163 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], mybuf[m]); in write_data()
165 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], typenames[(int) mybuf[m]]); in write_data()
167 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<bigint>(mybuf[m])); in write_data()
189 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], unwrap_coord); in write_data()
192 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<int>(mybuf[m])); in write_data()
194 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], mybuf[m]); in write_data()
196 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], typenames[(int) mybuf[m]]); in write_data()
198 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<bigint>(mybuf[m])); in write_data()
H A Ddump_cfg_gz.cpp153 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<int>(mybuf[m])); in write_data()
155 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], mybuf[m]); in write_data()
157 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], typenames[(int) mybuf[m]]); in write_data()
159 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<bigint>(mybuf[m])); in write_data()
181 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], unwrap_coord); in write_data()
184 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<int>(mybuf[m])); in write_data()
186 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], mybuf[m]); in write_data()
188 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], typenames[(int) mybuf[m]]); in write_data()
190 written = snprintf(vbuffer, VBUFFER_SIZE, vformat[j], static_cast<bigint>(mybuf[m])); in write_data()
/dports/science/sparta/sparta-20Oct2021/src/
H A Ddump.cpp182 delete [] vformat[i]; in init()
186 strcpy(vformat[i],format_column_user[i]); in init()
188 vformat[i] = new char[strlen(format_int_user) + 2]; in init()
189 strcpy(vformat[i],format_int_user); in init()
192 strcpy(vformat[i],format_float_user); in init()
195 strcpy(vformat[i],format_bigint_user); in init()
197 vformat[i] = new char[strlen(ptr) + 2]; in init()
198 strcpy(vformat[i],ptr); in init()
201 vformat[i] = strcat(vformat[i]," "); in init()
453 offset += sprintf(&sbuf[offset],vformat[j], in convert_string()
[all …]
/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/src/
H A Ddump_local.cpp104 vformat = new char*[size_one]; in DumpLocal()
112 vformat[i] = NULL; in DumpLocal()
151 for (int i = 0; i < size_one; i++) delete [] vformat[i]; in ~DumpLocal()
152 delete [] vformat; in ~DumpLocal()
180 delete [] vformat[i]; in init_style()
181 vformat[i] = new char[strlen(ptr) + 2]; in init_style()
182 strcpy(vformat[i],ptr); in init_style()
183 vformat[i] = strcat(vformat[i]," "); in init_style()
326 offset += sprintf(&sbuf[offset],vformat[j],mybuf[m]); in convert_string()
358 if (vtype[j] == INT) fprintf(fp,vformat[j],static_cast<int> (mybuf[m])); in write_lines()
[all …]
/dports/devel/godot/godot-3.2.3-stable/editor/plugins/
H A Dvisual_shader_editor_plugin.cpp2480 …ddOption("Equal", "Conditional", "Functions", "VisualShaderNodeCompare", vformat(compare_func_desc… in VisualShaderEditor()
2502 …add_options.push_back(AddOption("Camera", "Input", "All", "VisualShaderNodeInput", vformat(input_p… in VisualShaderEditor()
2503 …add_options.push_back(AddOption("InvCamera", "Input", "All", "VisualShaderNodeInput", vformat(inpu… in VisualShaderEditor()
2505 …add_options.push_back(AddOption("Normal", "Input", "All", "VisualShaderNodeInput", vformat(input_p… in VisualShaderEditor()
2507 …add_options.push_back(AddOption("Projection", "Input", "All", "VisualShaderNodeInput", vformat(inp… in VisualShaderEditor()
2508 …add_options.push_back(AddOption("Time", "Input", "All", "VisualShaderNodeInput", vformat(input_par… in VisualShaderEditor()
2510 …add_options.push_back(AddOption("World", "Input", "All", "VisualShaderNodeInput", vformat(input_pa… in VisualShaderEditor()
2514 …add_options.push_back(AddOption("Alpha", "Input", "All", "VisualShaderNodeInput", vformat(input_pa… in VisualShaderEditor()
2515 …add_options.push_back(AddOption("Color", "Input", "All", "VisualShaderNodeInput", vformat(input_pa… in VisualShaderEditor()
2519 …add_options.push_back(AddOption("Time", "Input", "All", "VisualShaderNodeInput", vformat(input_par… in VisualShaderEditor()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/editor/plugins/
H A Dvisual_shader_editor_plugin.cpp2480 …ddOption("Equal", "Conditional", "Functions", "VisualShaderNodeCompare", vformat(compare_func_desc… in VisualShaderEditor()
2502 …add_options.push_back(AddOption("Camera", "Input", "All", "VisualShaderNodeInput", vformat(input_p… in VisualShaderEditor()
2503 …add_options.push_back(AddOption("InvCamera", "Input", "All", "VisualShaderNodeInput", vformat(inpu… in VisualShaderEditor()
2505 …add_options.push_back(AddOption("Normal", "Input", "All", "VisualShaderNodeInput", vformat(input_p… in VisualShaderEditor()
2507 …add_options.push_back(AddOption("Projection", "Input", "All", "VisualShaderNodeInput", vformat(inp… in VisualShaderEditor()
2508 …add_options.push_back(AddOption("Time", "Input", "All", "VisualShaderNodeInput", vformat(input_par… in VisualShaderEditor()
2510 …add_options.push_back(AddOption("World", "Input", "All", "VisualShaderNodeInput", vformat(input_pa… in VisualShaderEditor()
2514 …add_options.push_back(AddOption("Alpha", "Input", "All", "VisualShaderNodeInput", vformat(input_pa… in VisualShaderEditor()
2515 …add_options.push_back(AddOption("Color", "Input", "All", "VisualShaderNodeInput", vformat(input_pa… in VisualShaderEditor()
2519 …add_options.push_back(AddOption("Time", "Input", "All", "VisualShaderNodeInput", vformat(input_par… in VisualShaderEditor()
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/src/MPIIO/
H A Ddump_custom_mpiio.cpp252 delete[] vformat[i]; in init_style()
256 strcpy(vformat[i], format_column_user[i]); in init_style()
258 vformat[i] = new char[strlen(format_int_user) + 2]; in init_style()
259 strcpy(vformat[i], format_int_user); in init_style()
261 vformat[i] = new char[strlen(format_float_user) + 2]; in init_style()
262 strcpy(vformat[i], format_float_user); in init_style()
264 vformat[i] = new char[strlen(format_bigint_user) + 2]; in init_style()
265 strcpy(vformat[i], format_bigint_user); in init_style()
267 vformat[i] = new char[strlen(ptr) + 2]; in init_style()
268 strcpy(vformat[i], ptr); in init_style()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/grim/
H A Ddebug.cpp40 Common::String buf = Common::String::vformat(s, args); in debug()
51 Common::String buf = Common::String::vformat(s, args); in warning()
62 Common::String buf = Common::String::vformat(s, args); in error()
73 Common::String buf = Common::String::vformat(s, args); in error()
/dports/devel/godot/godot-3.2.3-stable/modules/bmp/
H A Dimage_loader_bmp.cpp55vformat("1-bpp BMP images must have a width that is a multiple of 8, but the imported BMP is %d pi… in convert_to_image()
57vformat("1-bpp BMP images must have a height that is a multiple of 8, but the imported BMP is %d p… in convert_to_image()
62vformat("4-bpp BMP images must have a width that is a multiple of 2, but the imported BMP is %d pi… in convert_to_image()
64vformat("4-bpp BMP images must have a height that is a multiple of 2, but the imported BMP is %d p… in convert_to_image()
224 vformat("Couldn't parse the BMP info header. The file is likely corrupt: %s", f->get_path())); in load_image()
231 vformat("Couldn't parse the BMP planes. The file is likely corrupt: %s", f->get_path())); in load_image()
249 vformat("Compressed BMP files are not supported: %s", f->get_path())); in load_image()
266 vformat("Couldn't parse the BMP color table: %s", f->get_path())); in load_image()
/dports/devel/godot-tools/godot-3.2.3-stable/modules/bmp/
H A Dimage_loader_bmp.cpp55vformat("1-bpp BMP images must have a width that is a multiple of 8, but the imported BMP is %d pi… in convert_to_image()
57vformat("1-bpp BMP images must have a height that is a multiple of 8, but the imported BMP is %d p… in convert_to_image()
62vformat("4-bpp BMP images must have a width that is a multiple of 2, but the imported BMP is %d pi… in convert_to_image()
64vformat("4-bpp BMP images must have a height that is a multiple of 2, but the imported BMP is %d p… in convert_to_image()
224 vformat("Couldn't parse the BMP info header. The file is likely corrupt: %s", f->get_path())); in load_image()
231 vformat("Couldn't parse the BMP planes. The file is likely corrupt: %s", f->get_path())); in load_image()
249 vformat("Compressed BMP files are not supported: %s", f->get_path())); in load_image()
266 vformat("Couldn't parse the BMP color table: %s", f->get_path())); in load_image()
/dports/devel/sdl12/SDL-1.2.15/src/video/ggi/
H A DSDL_ggivideo.c52 static int GGI_VideoInit(_THIS, SDL_PixelFormat *vformat);
145 int GGI_VideoInit(_THIS, SDL_PixelFormat *vformat) in GGI_VideoInit() argument
208 ggiGetPalette(VIS, 0, 1 << vformat->BitsPerPixel, pal); in GGI_VideoInit()
220 vformat->BitsPerPixel = db->buffer.plb.pixelformat->depth; in GGI_VideoInit()
222 vformat->Rmask = db->buffer.plb.pixelformat->red_mask; in GGI_VideoInit()
223 vformat->Gmask = db->buffer.plb.pixelformat->green_mask; in GGI_VideoInit()
224 vformat->Bmask = db->buffer.plb.pixelformat->blue_mask; in GGI_VideoInit()
237 SDL_modelist[((vformat->BitsPerPixel + 7) / 8) - 1] = &video_mode; in GGI_VideoInit()
/dports/java/java3d/java3d-1.5.2/j3d-core/src/classes/jogl/javax/media/j3d/
H A DJoglPipeline.java166 int vformat, in executeVA() argument
256 int vformat, in executeVABuffer() argument
433 int vcount, int vformat, in buildGA() argument
880 int vformat, in buildGAForByRef() argument
1080 switch (vformat) { in testForInterleavedArrays()
1495 int vformat, in executeGeometryArrayVA() argument
1752 int vformat, in executeIndexedGeometryVA() argument
1824 vformat, vdefined, in executeIndexedGeometryVA()
1844 int vformat, in executeIndexedGeometryVABuffer() argument
1930 vformat, vdefined, in executeIndexedGeometryVABuffer()
[all …]
/dports/x11/xpra/xpra-4.3/xpra/scripts/
H A Dgtk_info.py12 def print_version_dict(d, vformat=pver): argument
15 print("* %-48s : %r" % (str(k).replace(".version", "").ljust(12), vformat(v)))
27 print_nested_dict(gtk_util.get_display_info(), vformat=str)
/dports/games/residualvm/residualvm-0.3.1/engines/grim/
H A Ddebug.cpp60 Common::String buf = Common::String::vformat(s, args); in debug()
71 Common::String buf = Common::String::vformat(s, args); in warning()
82 Common::String buf = Common::String::vformat(s, args); in error()
93 Common::String buf = Common::String::vformat(s, args); in error()
/dports/devel/sdl12/SDL-1.2.15/src/video/nds/
H A DSDL_ndsvideo.c41 static int NDS_VideoInit(_THIS, SDL_PixelFormat *vformat);
164 int NDS_VideoInit(_THIS, SDL_PixelFormat *vformat) in NDS_VideoInit() argument
170 vformat->BitsPerPixel = 16; // mode 3 in NDS_VideoInit()
171 vformat->BytesPerPixel = 2; in NDS_VideoInit()
172 vformat->Rmask = 0x0000f800; in NDS_VideoInit()
173 vformat->Gmask = 0x000007e0; in NDS_VideoInit()
174 vformat->Bmask = 0x0000001f; in NDS_VideoInit()

12345678910>>...50