Home
last modified time | relevance | path

Searched refs:file (Results 17951 – 17975 of 1681545) sorted by relevance

1...<<711712713714715716717718719720>>...67262

/dports/math/cocoalib/CoCoALib-0.99712/configuration/
H A Dfind-lib-in-std-dirs.sh36 file="$prefix/$subdir/$LIB.a"
37 if [ -f "$file" ]
43 echo "$file" > /dev/stderr
46 STATIC_LIB="$file"
49 file="$prefix/$subdir/$LIB.so"
50 if [ -f "$file" ]
56 echo "$file" > /dev/stderr
59 DYNAMIC_LIB="$file"
62 file="$prefix/$subdir/$LIB.dylib"
63 if [ -f "$file" ]
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/titanic/moves/
H A Drestaurant_pan_handler.cpp35 file->writeNumberLine(1, indent); in save()
36 file->writeNumberLine(_armPickedUp, indent); in save()
37 file->writeQuotedLine(_armlessDestination, indent); in save()
38 file->writeQuotedLine(_armDestination, indent); in save()
40 CMovePlayerTo::save(file, indent); in save()
43 void CRestaurantPanHandler::load(SimpleFile *file) { in load() argument
44 file->readNumber(); in load()
45 _armPickedUp = file->readNumber(); in load()
46 _armlessDestination = file->readString(); in load()
47 _armDestination = file->readString(); in load()
[all …]
/dports/math/4ti2/4ti2-Release_1_6_9/test/ppi/
H A Dcheck-ppi.in41 for file in $FILES; do
42 CHECK_FILES="$file.mat $file.gra"
44 COMMAND="$@ `echo $file | sed 's/ppi//'` "
48 sort < $file.gra > $file.gra.srt
49 sort < "${SRCDIR}"/$file.gra.chk > $file.gra.srt.chk
51 diff -b -q $file.gra.srt $file.gra.srt.chk > /dev/null
59 rm -f $CHECK_FILES $file.gra.srt $file.gra.srt.chk
/dports/emulators/atari800/atari800-3.1.0/src/
H A Dimg_tape.h42 void IMG_TAPE_Close(IMG_TAPE_t *file);
58 void IMG_TAPE_WriteAdvance(IMG_TAPE_t *file, unsigned int duration);
63 int IMG_TAPE_WriteByte(IMG_TAPE_t *file, UBYTE byte, unsigned int pokey_counter);
68 int IMG_TAPE_Flush(IMG_TAPE_t *file);
71 unsigned int IMG_TAPE_GetPosition(IMG_TAPE_t *file);
73 unsigned int IMG_TAPE_GetSize(IMG_TAPE_t *file);
76 void IMG_TAPE_Seek(IMG_TAPE_t *file, unsigned int position);
81 int IMG_TAPE_SerinStatus(IMG_TAPE_t *file, int event_time_left);
87 int IMG_TAPE_SkipToData(IMG_TAPE_t *file, int ms);
93 int IMG_TAPE_ReadToMemory(IMG_TAPE_t *file, UWORD dest_addr, int length);
[all …]
/dports/net/pjsip/pjproject-2.11.1/third_party/webrtc/src/webrtc/modules/audio_processing/logging/
H A Daec_logging.h21 #define RTC_AEC_DEBUG_WAV_WRITE(file, data, num_samples) \ argument
23 rtc_WavWriteSamples(file, data, num_samples); \
41 #define RTC_AEC_DEBUG_RAW_WRITE(file, data, data_size) \ argument
43 (void) fwrite(data, data_size, 1, file); \
47 #define RTC_AEC_DEBUG_RAW_OPEN(name, instance_counter, file) \ argument
49 WebRtcAec_RawFileOpen(name, instance_counter, file); \
53 #define RTC_AEC_DEBUG_RAW_CLOSE(file) \ argument
55 fclose(file); \
59 #define RTC_AEC_DEBUG_WAV_WRITE(file, data, num_samples) \ argument
72 #define RTC_AEC_DEBUG_RAW_WRITE(file, data, data_size) \ argument
[all …]
/dports/graphics/viu/viu-1.1/cargo-crates/tiff-0.3.1/tests/
H A Dfuzz_tests.rs10 let file = File::open(entry.unwrap().path()).unwrap(); in test_directory() localVariable
11 assert!(f(file)); in test_directory()
15 fn decode_tiff(file: File) -> TiffResult<()> { in decode_tiff()
16 let mut decoder = Decoder::new(file)?; in decode_tiff()
23 test_directory("./tests/fuzz_images/oor_panic", |file| { in oor_panic()
24 let _ = decode_tiff(file); in oor_panic()
31 test_directory("./tests/fuzz_images/oom_crash", |file| { in oom_crash()
32 decode_tiff(file).is_err() in oom_crash()
38 test_directory("./tests/fuzz_images/inf_loop", |file| { in inf_loop()
39 let _ = decode_tiff(file); in inf_loop()
[all …]
/dports/graphics/viu/viu-1.1/cargo-crates/tiff-0.5.0/tests/
H A Dfuzz_tests.rs10 let file = File::open(entry.unwrap().path()).unwrap(); in test_directory() localVariable
11 assert!(f(file)); in test_directory()
15 fn decode_tiff(file: File) -> TiffResult<()> { in decode_tiff()
16 let mut decoder = Decoder::new(file)?; in decode_tiff()
23 test_directory("./tests/fuzz_images/oor_panic", |file| { in oor_panic()
24 let _ = decode_tiff(file); in oor_panic()
31 test_directory("./tests/fuzz_images/oom_crash", |file| { in oom_crash()
32 decode_tiff(file).is_err() in oom_crash()
38 test_directory("./tests/fuzz_images/inf_loop", |file| { in inf_loop()
39 let _ = decode_tiff(file); in inf_loop()
[all …]
/dports/www/fusionpbx/fusionpbx-4.4.1/app/dialplan_inbound/
H A Dapp_defaults.php35 while($file = readdir($dh)) { variable
36 if($file != "." && $file != ".." && $file[0] != '.') {
37 if(is_dir($dir . "/" . $file)) {
40 if (strpos($file, $v_needle) !== false && substr($file,-4) == '.xml') {
41 unlink($_SESSION['switch']['dialplan']['dir'].'/public/'.$file);
66 …$file = $_SESSION['switch']['dialplan']['dir']."/public/".$_SESSION['domains'][$domain_uuid]['doma… variable
67 if (!file_exists($file)) {
68 $fout = fopen($file,"w");
74 unset($xml,$file);
/dports/devel/p5-Memoize/Memoize-1.03/t/
H A Dtie_sdbm.t31 $file = "md$$";
32 1 while unlink $file, "$file.dir", "$file.pag";
34 1 while unlink "$file.sdbm_dir";
36 tryout('Memoize::SDBM_File', $file, 1); # Test 1..4
37 1 while unlink $file, "$file.dir", "$file.pag";
39 1 while unlink "$file.sdbm_dir";
43 my ($tiepack, $file, $testno) = @_;
45 tie my %cache => $tiepack, $file, O_RDWR | O_CREAT, 0666
H A Dtie_ndbm.t31 $file = "md$$";
32 1 while unlink $file, "$file.dir", "$file.pag", "$file.db";
33 tryout('Memoize::NDBM_File', $file, 1); # Test 1..4
34 1 while unlink $file, "$file.dir", "$file.pag", "$file.db";
37 my ($tiepack, $file, $testno) = @_;
40 tie my %cache => $tiepack, $file, O_RDWR | O_CREAT, 0666
/dports/www/zola/zola-0.15.2/cargo-crates/tiff-0.6.1/tests/
H A Dfuzz_tests.rs10 let file = File::open(entry.unwrap().path()).unwrap(); in test_directory() localVariable
11 assert!(f(file)); in test_directory()
15 fn decode_tiff(file: File) -> TiffResult<()> { in decode_tiff()
16 let mut decoder = Decoder::new(file)?; in decode_tiff()
23 test_directory("./tests/fuzz_images/oor_panic", |file| { in oor_panic()
24 let _ = decode_tiff(file); in oor_panic()
31 test_directory("./tests/fuzz_images/oom_crash", |file| { in oom_crash()
32 decode_tiff(file).is_err() in oom_crash()
38 test_directory("./tests/fuzz_images/inf_loop", |file| { in inf_loop()
39 let _ = decode_tiff(file); in inf_loop()
[all …]
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/tiff-0.6.1/tests/
H A Dfuzz_tests.rs10 let file = File::open(entry.unwrap().path()).unwrap(); in test_directory() localVariable
11 assert!(f(file)); in test_directory()
15 fn decode_tiff(file: File) -> TiffResult<()> { in decode_tiff()
16 let mut decoder = Decoder::new(file)?; in decode_tiff()
23 test_directory("./tests/fuzz_images/oor_panic", |file| { in oor_panic()
24 let _ = decode_tiff(file); in oor_panic()
31 test_directory("./tests/fuzz_images/oom_crash", |file| { in oom_crash()
32 decode_tiff(file).is_err() in oom_crash()
38 test_directory("./tests/fuzz_images/inf_loop", |file| { in inf_loop()
39 let _ = decode_tiff(file); in inf_loop()
[all …]
/dports/audio/webrtc-audio-processing0/webrtc-audio-processing-0.3.1/webrtc/modules/audio_processing/logging/
H A Daec_logging.h21 #define RTC_AEC_DEBUG_WAV_WRITE(file, data, num_samples) \ argument
23 rtc_WavWriteSamples(file, data, num_samples); \
41 #define RTC_AEC_DEBUG_RAW_WRITE(file, data, data_size) \ argument
43 (void) fwrite(data, data_size, 1, file); \
47 #define RTC_AEC_DEBUG_RAW_OPEN(name, instance_counter, file) \ argument
49 WebRtcAec_RawFileOpen(name, instance_counter, file); \
53 #define RTC_AEC_DEBUG_RAW_CLOSE(file) \ argument
55 fclose(file); \
59 #define RTC_AEC_DEBUG_WAV_WRITE(file, data, num_samples) \ argument
72 #define RTC_AEC_DEBUG_RAW_WRITE(file, data, data_size) \ argument
[all …]
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/tiff-0.6.1/tests/
H A Dfuzz_tests.rs10 let file = File::open(entry.unwrap().path()).unwrap(); in test_directory() localVariable
11 assert!(f(file)); in test_directory()
15 fn decode_tiff(file: File) -> TiffResult<()> { in decode_tiff()
16 let mut decoder = Decoder::new(file)?; in decode_tiff()
23 test_directory("./tests/fuzz_images/oor_panic", |file| { in oor_panic()
24 let _ = decode_tiff(file); in oor_panic()
31 test_directory("./tests/fuzz_images/oom_crash", |file| { in oom_crash()
32 decode_tiff(file).is_err() in oom_crash()
38 test_directory("./tests/fuzz_images/inf_loop", |file| { in inf_loop()
39 let _ = decode_tiff(file); in inf_loop()
[all …]
/dports/multimedia/mswebrtc/mswebrtc-1.1.1/webrtc/webrtc/modules/audio_processing/logging/
H A Daec_logging.h21 #define RTC_AEC_DEBUG_WAV_WRITE(file, data, num_samples) \ argument
23 rtc_WavWriteSamples(file, data, num_samples); \
41 #define RTC_AEC_DEBUG_RAW_WRITE(file, data, data_size) \ argument
43 (void) fwrite(data, data_size, 1, file); \
47 #define RTC_AEC_DEBUG_RAW_OPEN(name, instance_counter, file) \ argument
49 WebRtcAec_RawFileOpen(name, instance_counter, file); \
53 #define RTC_AEC_DEBUG_RAW_CLOSE(file) \ argument
55 fclose(file); \
59 #define RTC_AEC_DEBUG_WAV_WRITE(file, data, num_samples) \ argument
72 #define RTC_AEC_DEBUG_RAW_WRITE(file, data, data_size) \ argument
[all …]
/dports/math/giacxcas/CoCoALib-0.99700/configuration/
H A Dfind-lib-in-std-dirs.sh36 file="$prefix/$subdir/$LIB.a"
37 if [ -f "$file" ]
43 echo "$file" > /dev/stderr
46 STATIC_LIB="$file"
49 file="$prefix/$subdir/$LIB.so"
50 if [ -f "$file" ]
56 echo "$file" > /dev/stderr
59 DYNAMIC_LIB="$file"
62 file="$prefix/$subdir/$LIB.dylib"
63 if [ -f "$file" ]
[all …]
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/cpan/Memoize/t/
H A Dtie_ndbm.t31 $file = "md$$";
32 1 while unlink $file, "$file.dir", "$file.pag", "$file.db";
33 tryout('Memoize::NDBM_File', $file, 1); # Test 1..4
34 1 while unlink $file, "$file.dir", "$file.pag", "$file.db";
37 my ($tiepack, $file, $testno) = @_;
40 tie my %cache => $tiepack, $file, O_RDWR | O_CREAT, 0666
H A Dtie_sdbm.t31 $file = "md$$";
32 1 while unlink $file, "$file.dir", "$file.pag";
34 1 while unlink "$file.sdbm_dir";
36 tryout('Memoize::SDBM_File', $file, 1); # Test 1..4
37 1 while unlink $file, "$file.dir", "$file.pag";
39 1 while unlink "$file.sdbm_dir";
43 my ($tiepack, $file, $testno) = @_;
45 tie my %cache => $tiepack, $file, O_RDWR | O_CREAT, 0666
/dports/lang/ocaml-nox11/ocaml-4.05.0/testsuite/makefiles/
H A DMakefile.expect16 @for file in *.ml; do \
17 printf " ... testing '$$file':"; \
18 TERM=dumb $(EXPECT_TEST) -repo-root $(OTOPDIR) $$file && \
20 $$file.corrected && \
21 mv $$file.corrected.corrected $$file.corrected && \
22 $(DIFF) $$file $$file.corrected && \
27 @for file in *.corrected; do \
28 cp $$file `basename $$file .corrected`; \
/dports/lang/ocaml/ocaml-4.05.0/testsuite/makefiles/
H A DMakefile.expect16 @for file in *.ml; do \
17 printf " ... testing '$$file':"; \
18 TERM=dumb $(EXPECT_TEST) -repo-root $(OTOPDIR) $$file && \
20 $$file.corrected && \
21 mv $$file.corrected.corrected $$file.corrected && \
22 $(DIFF) $$file $$file.corrected && \
27 @for file in *.corrected; do \
28 cp $$file `basename $$file .corrected`; \
/dports/www/pear-HTTP_Upload/HTTP_Upload-0.9.1/docs/
H A Dupload_example.php21 $file = $upload->getFiles('userfile'); variable
22 if (PEAR::isError($file)) {
23 die ($file->getMessage());
25 if ($file->isValid()) {
26 $file->setName('uniq');
28 $dest_name = $file->moveTo($dest_dir);
32 $real = $file->getProp('real');
34 } elseif ($file->isMissing()) {
36 } elseif ($file->isError()) {
37 echo $file->errorMsg() . "\n";
[all …]
/dports/irc/scrollz/ScrollZ-ScrollZ-2.3/
H A Dbsdinstall59 file=$2/$1
67 file=$2/$1
69 file=$2
71 /bin/rm -f $file
77 if test ! -d "$file"; then
78 $cmd $file
82 $cmd $1 $file
84 $strip $file
90 $chown $file
93 $chgrp $file
[all …]
/dports/irc/ircII/ircii-20210314/
H A Dbsdinstall59 file=$2/$1
67 file=$2/$1
69 file=$2
71 /bin/rm -f $file
77 if test ! -d "$file"; then
78 $cmd $file
82 $cmd $1 $file
84 $strip $file
90 $chown $file
93 $chgrp $file
[all …]
/dports/irc/ninja/ninja-1.5.8.1/
H A Dbsdinstall59 file=$2/$1
67 file=$2/$1
69 file=$2
71 /bin/rm -f $file
77 if test ! -d "$file"; then
78 $cmd $file
82 $cmd $1 $file
84 $strip $file
90 $chown $file
93 $chgrp $file
[all …]
/dports/lang/parrot/parrot-8.1.0/t/examples/
H A Dcatchall.t31 foreach my $file (keys %$manifest) {
32 next unless $file =~ m{^examples/.*(pir|pasm)$};
33 next if $file =~ m{^examples/tutorial}; # all are tested in tutorial.t
34 next if $file =~ m{^examples/pir/befunge}; # language, not testable here
35 next if $file =~ m{^examples/languages}; # language, not testable here
36 next if $file =~ m{^examples/opengl}; # depends on OpenGL install
37 next if $file =~ m{^examples/nci/xlib}; # depends on libX11 install
38 $files{$file}=undef;
43 foreach my $file (sort keys %files) {
46 $file;
[all …]

1...<<711712713714715716717718719720>>...67262