Home
last modified time | relevance | path

Searched refs:outspec (Results 1 – 25 of 51) sorted by relevance

123

/dports/graphics/openimageio/oiio-Release-2.2.16.0/src/iconvert/
H A Diconvert.cpp173 ImageSpec& outspec) in adjust_spec() argument
178 outspec.format = inspec.format; in adjust_spec()
217 outspec.channelformats.clear(); in adjust_spec()
233 outspec.tile_width = tile[0]; in adjust_spec()
234 outspec.tile_height = tile[1]; in adjust_spec()
235 outspec.tile_depth = tile[2]; in adjust_spec()
238 outspec.tile_width = 0; in adjust_spec()
239 outspec.tile_height = 0; in adjust_spec()
240 outspec.tile_depth = 0; in adjust_spec()
284 outspec.attribute("Keywords", ""); in adjust_spec()
[all …]
/dports/graphics/py-openimageio/oiio-Release-2.2.16.0/src/iconvert/
H A Diconvert.cpp173 ImageSpec& outspec) in adjust_spec() argument
178 outspec.format = inspec.format; in adjust_spec()
217 outspec.channelformats.clear(); in adjust_spec()
233 outspec.tile_width = tile[0]; in adjust_spec()
234 outspec.tile_height = tile[1]; in adjust_spec()
235 outspec.tile_depth = tile[2]; in adjust_spec()
238 outspec.tile_width = 0; in adjust_spec()
239 outspec.tile_height = 0; in adjust_spec()
240 outspec.tile_depth = 0; in adjust_spec()
284 outspec.attribute("Keywords", ""); in adjust_spec()
[all …]
/dports/graphics/openimageio/oiio-Release-2.2.16.0/src/libOpenImageIO/
H A Dimagespeed_test.cpp204 out->write_scanline(y + outspec.y, outspec.z, bufspec.format, in time_write_scanline_at_a_time()
224 outspec.y + outspec.height), in time_write_64_scanlines_at_a_time()
243 for (int z = 0; z < outspec.depth; z += outspec.tile_depth) { in time_write_tile_at_a_time()
244 for (int y = 0; y < outspec.height; y += outspec.tile_height) { in time_write_tile_at_a_time()
245 for (int x = 0; x < outspec.width; x += outspec.tile_width) { in time_write_tile_at_a_time()
246 out->write_tile(x + outspec.x, y + outspec.y, z + outspec.z, in time_write_tile_at_a_time()
267 for (int z = 0; z < outspec.depth; z += outspec.tile_depth) { in time_write_tiles_row_at_a_time()
268 for (int y = 0; y < outspec.height; y += outspec.tile_height) { in time_write_tiles_row_at_a_time()
269 out->write_tiles(outspec.x, outspec.x + outspec.width, in time_write_tiles_row_at_a_time()
270 y + outspec.y, y + outspec.y + outspec.tile_height, in time_write_tiles_row_at_a_time()
[all …]
H A Dimagebuf.cpp1195 for (int z = 0; z < outspec.depth; z += outspec.tile_depth) { in write()
1196 int zend = std::min(z + outspec.z + outspec.tile_depth, in write()
1197 outspec.z + outspec.depth); in write()
1200 int yend = std::min(y + outspec.y + outspec.tile_height, in write()
1201 outspec.y + outspec.height); in write()
1202 ok &= get_pixels(ROI(outspec.x, outspec.x + outspec.width, in write()
1206 ok &= out->write_tiles(outspec.x, outspec.x + outspec.width, in write()
1226 outspec.y + outspec.height); in write()
1227 ok &= get_pixels(ROI(outspec.x, outspec.x + outspec.width, in write()
1228 outspec.y + y, yend, outspec.z, in write()
[all …]
H A Dmaketexture.cpp606 ImageSpec outspec = outspec_template; in write_mipmap() local
607 outspec.set_format(outputdatatype); in write_mipmap()
612 bool clamp_half = (outspec.format == TypeHalf in write_mipmap()
637 outspec.attribute("oiio:sampleborder", 1); in write_mipmap()
642 if (outspec.nchannels == 1 in write_mipmap()
644 outspec.attribute("compression", "zip"); in write_mipmap()
670 if (!out->open(outputfilename.c_str(), outspec)) { in write_mipmap()
711 while (outspec.width > 1 || outspec.height > 1) { in write_mipmap()
734 smallspec = outspec; in write_mipmap()
829 outspec = smallspec; in write_mipmap()
[all …]
/dports/graphics/py-openimageio/oiio-Release-2.2.16.0/src/libOpenImageIO/
H A Dimagespeed_test.cpp204 out->write_scanline(y + outspec.y, outspec.z, bufspec.format, in time_write_scanline_at_a_time()
224 outspec.y + outspec.height), in time_write_64_scanlines_at_a_time()
243 for (int z = 0; z < outspec.depth; z += outspec.tile_depth) { in time_write_tile_at_a_time()
244 for (int y = 0; y < outspec.height; y += outspec.tile_height) { in time_write_tile_at_a_time()
245 for (int x = 0; x < outspec.width; x += outspec.tile_width) { in time_write_tile_at_a_time()
246 out->write_tile(x + outspec.x, y + outspec.y, z + outspec.z, in time_write_tile_at_a_time()
267 for (int z = 0; z < outspec.depth; z += outspec.tile_depth) { in time_write_tiles_row_at_a_time()
268 for (int y = 0; y < outspec.height; y += outspec.tile_height) { in time_write_tiles_row_at_a_time()
269 out->write_tiles(outspec.x, outspec.x + outspec.width, in time_write_tiles_row_at_a_time()
270 y + outspec.y, y + outspec.y + outspec.tile_height, in time_write_tiles_row_at_a_time()
[all …]
H A Dimagebuf.cpp1195 for (int z = 0; z < outspec.depth; z += outspec.tile_depth) { in write()
1196 int zend = std::min(z + outspec.z + outspec.tile_depth, in write()
1197 outspec.z + outspec.depth); in write()
1200 int yend = std::min(y + outspec.y + outspec.tile_height, in write()
1201 outspec.y + outspec.height); in write()
1202 ok &= get_pixels(ROI(outspec.x, outspec.x + outspec.width, in write()
1206 ok &= out->write_tiles(outspec.x, outspec.x + outspec.width, in write()
1226 outspec.y + outspec.height); in write()
1227 ok &= get_pixels(ROI(outspec.x, outspec.x + outspec.width, in write()
1228 outspec.y + y, yend, outspec.z, in write()
[all …]
H A Dmaketexture.cpp606 ImageSpec outspec = outspec_template; in write_mipmap() local
607 outspec.set_format(outputdatatype); in write_mipmap()
612 bool clamp_half = (outspec.format == TypeHalf in write_mipmap()
637 outspec.attribute("oiio:sampleborder", 1); in write_mipmap()
642 if (outspec.nchannels == 1 in write_mipmap()
644 outspec.attribute("compression", "zip"); in write_mipmap()
670 if (!out->open(outputfilename.c_str(), outspec)) { in write_mipmap()
711 while (outspec.width > 1 || outspec.height > 1) { in write_mipmap()
734 smallspec = outspec; in write_mipmap()
829 outspec = smallspec; in write_mipmap()
[all …]
/dports/benchmarks/nuttcp/nuttcp-8.2.2/
H A Dnuttscp558 $outspec = @ARGV[1];
565 if ($outspec =~ /:/) {
647 if ((-d $outspec) || !(-e $outspec)) {
657 elsif (-d $outspec) {
664 if ($outspec !~ /\/$/) {
665 $outspec .= "/";
667 $outspec .= "$intail";
669 if (-e $outspec) {
674 elsif (! -w $outspec) {
741 $lcmd .= " > $outspec";
[all …]
/dports/devel/z88dk/z88dk/examples/trs80/
H A Dsplitlib.c27 char inspec[FSPECLEN+1] = "", outspec[FSPECLEN+1], symbol[9], *drive =""; variable
68 ioerror(outspec);
96 strcpy(outspec, drive); in openout()
97 if (! (outfp = fopen(genspec(inspec, outspec, outext), "w"))) in openout()
98 ioerror(outspec); in openout()
99 printf("\nWriting output file %s\n", outspec); in openout()
/dports/net-mgmt/yaf/yaf-2.11.0/src/
H A Dyafout.c95 g_string_append_printf(namebuf, "%s-", cfg->outspec); in yfOutputOpen()
101 g_string_append_printf(namebuf, "%s", cfg->outspec); in yfOutputOpen()
106 if (!(((strlen(cfg->outspec) == 1) && cfg->outspec[0] != '-'))) { in yfOutputOpen()
H A Dyaf.c981 yaf_config.outspec = str; in yfLuaLoadConfig()
988 yaf_config.outspec = yfLuaGetStrField(L, "daemon"); in yfLuaLoadConfig()
1022 yaf_config.outspec = yfLuaGetStrField(L, "host"); in yfLuaLoadConfig()
1481 if (!yaf_config.outspec) { in yfParseOptions()
1486 yaf_config.connspec.host = yaf_config.outspec; in yfParseOptions()
1517 yaf_config.spreadparams.daemon = yaf_config.outspec; in yfParseOptions()
1585 if (!yaf_config.outspec || !strlen(yaf_config.outspec)) { in yfParseOptions()
1592 yaf_config.outspec = "-"; in yfParseOptions()
1607 if ((strlen(yaf_config.outspec) == 1) && yaf_config.outspec[0] == '-') in yfParseOptions()
1616 if (yaf_config.outspec) { in yfParseOptions()
[all …]
/dports/net-mgmt/super_mediator/super_mediator-1.6.0/src/
H A Dmediator.c117 static char *outspec = NULL; variable
140 {"out", 'o', 0, G_OPTION_ARG_STRING, &outspec,
765 g_free(outspec); in mdConfigureExporter()
797 mdExporterSetFileSpec(exporter, outspec); in mdConfigureExporter()
858 mdExporterSetHost(exporter, outspec); in mdConfigureExporter()
867 } else if (outspec) { in mdConfigureExporter()
870 if ((strlen(outspec) == 1) && outspec[0] == '-') { in mdConfigureExporter()
877 mdExporterSetFileSpec(exporter, outspec); in mdConfigureExporter()
1041 if (outspec == NULL) { in mdParseOptions()
1042 outspec = "-"; in mdParseOptions()
[all …]
/dports/devel/py-pysdl2/PySDL2-0.9.9/sdl2/test/
H A Daudio_test.py276 outspec = audio.SDL_AudioSpec(0, 0, 0, 0)
278 ret = audio.SDL_GetAudioDeviceSpec(0, False, ctypes.byref(outspec))
282 hz = outspec.freq
283 fmt = audio.FORMAT_NAME_MAP[outspec.format] if outspec.format > 0 else 'unknown'
284 chans = outspec.channels
285 bufsize = outspec.samples if outspec.samples > 0 else 'unknown'
/dports/graphics/openimageio/oiio-Release-2.2.16.0/testsuite/python-imageoutput/src/
H A Dtest_imageoutput.py72 outspec = input.spec()
74 outspec.format = outformat
79 ok = output.open (out_filename, outspec)
/dports/graphics/py-openimageio/oiio-Release-2.2.16.0/testsuite/python-imageoutput/src/
H A Dtest_imageoutput.py72 outspec = input.spec()
74 outspec.format = outformat
79 ok = output.open (out_filename, outspec)
/dports/games/retroarch/RetroArch-1.9.7/deps/bearssl-0.6/tools/
H A Dskey.c41 } outspec; typedef
115 print_rsa(const br_rsa_private_key *sk, outspec *os) in print_rsa()
245 print_ec(const br_ec_private_key *sk, outspec *os) in print_ec()
376 keygen_rsa(unsigned size, uint32_t pubexp, outspec *os) in keygen_rsa()
434 keygen_ec(int curve, outspec *os) in keygen_ec()
463 decode_key(const unsigned char *buf, size_t len, outspec *os) in decode_key()
553 outspec os; in do_skey()
/dports/security/bearssl/bearssl-0.6/tools/
H A Dskey.c41 } outspec; typedef
115 print_rsa(const br_rsa_private_key *sk, outspec *os) in print_rsa()
245 print_ec(const br_ec_private_key *sk, outspec *os) in print_ec()
376 keygen_rsa(unsigned size, uint32_t pubexp, outspec *os) in keygen_rsa()
434 keygen_ec(int curve, outspec *os) in keygen_ec()
463 decode_key(const unsigned char *buf, size_t len, outspec *os) in decode_key()
553 outspec os; in do_skey()
/dports/www/srt/srt-1.4.4/testing/
H A Dsrt-test-mpbond.cpp220 string outspec = Option<OutString>(params, o_output); in main() local
221 Verb() << "SRT -> " << outspec; in main()
222 tar = Target::Create(outspec); in main()
/dports/net/libfixbuf/libfixbuf-2.3.1/src/
H A DipfixDump.c50 static char *outspec = NULL; variable
88 {"out", 'o', 0, G_OPTION_ARG_STRING, &outspec,
322 if (outspec == NULL) { in idParseOptions()
326 if ((strlen(outspec) == 1) && outspec[0] == '-') { in idParseOptions()
329 outfile = fopen(outspec, "w"); in idParseOptions()
332 g_get_prgname(), outspec, strerror(errno)); in idParseOptions()
/dports/www/firefox-esr/firefox-91.8.0/mozglue/dllservices/
H A Dgen_dll_blocklist_defs.py315 for outspec in self._outspecs:
318 effective_outspec.update(outspec)
361 BlocklistDescriptor("A11y", ["BROWSER_PROCESS"], outspec=A11Y_OUTPUT_SPEC),
381 "Test", ALL_DEFINITION_LISTS, outspec={"filter": FILTER_TESTS_ONLY}
/dports/www/firefox/firefox-99.0/toolkit/xre/dllservices/mozglue/
H A Dgen_dll_blocklist_defs.py315 for outspec in self._outspecs:
318 effective_outspec.update(outspec)
361 BlocklistDescriptor("A11y", ["BROWSER_PROCESS"], outspec=A11Y_OUTPUT_SPEC),
381 "Test", ALL_DEFINITION_LISTS, outspec={"filter": FILTER_TESTS_ONLY}
/dports/mail/thunderbird/thunderbird-91.8.0/mozglue/dllservices/
H A Dgen_dll_blocklist_defs.py315 for outspec in self._outspecs:
318 effective_outspec.update(outspec)
361 BlocklistDescriptor("A11y", ["BROWSER_PROCESS"], outspec=A11Y_OUTPUT_SPEC),
381 "Test", ALL_DEFINITION_LISTS, outspec={"filter": FILTER_TESTS_ONLY}
/dports/lang/spidermonkey78/firefox-78.9.0/mozglue/dllservices/
H A Dgen_dll_blocklist_defs.py309 for outspec in self._outspecs:
312 effective_outspec.update(outspec)
355 BlocklistDescriptor('A11y', ['BROWSER_PROCESS'], outspec=A11Y_OUTPUT_SPEC),
365 outspec={'filter': FILTER_TESTS_ONLY}),
/dports/databases/postgresql-odbc/psqlodbc-13.02.0000/test/
H A Drunsuite.c210 …har *expected_dir, const char *testname, int outputno, const char *result_dir, const char *outspec) in call_diff() argument
225 snprintf(cmdline, sizeof(cmdline), exec_diffpgm, file1, file2, outspec); in call_diff()
227 snprintf(cmdline, sizeof(cmdline), "diff -c %s %s %s", file1, file2, outspec); in call_diff()

123