Home
last modified time | relevance | path

Searched refs:check_flag (Results 1 – 25 of 494) sorted by path

12345678910>>...20

/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/enumflags2_derive-0.7.3/src/
H A Dlib.rs231 fn check_flag(type_name: &Ident, flag: &Flag, bits: u8) -> Result<Option<TokenStream>, syn::Error> { in check_flag() function
284 .flat_map(|variant| check_flag(ident, variant, bits).transpose()) in gen_enumflags()
/dports/accessibility/wl-gammarelay-rs/wl-gammarelay-rs-0.2.1/cargo-crates/mio-0.7.14/src/sys/unix/selector/
H A Dkqueue.rs488 fn check_flag(got: &Flags, want: &Flags) -> bool { in debug_details() function
493 check_flag, in debug_details()
/dports/archivers/innoextract/innoextract-1.9/cmake/
H A DCompileCheck.cmake122 function(check_flag RESULT FLAG TYPE) function
131 endfunction(check_flag)
156 check_flag(result "${FLAG}" compiler)
161 check_flag(result "${FLAG}" linker)
/dports/astro/nightfall/nightfall-1.92/
H A DLightConfig.c597 int check_flag, float lower, float upper, in parse_double() argument
622 if (check_flag == CHECK_UPPER || check_flag == CHECK_UPPER_WARN_LOWER) { in parse_double()
627 if (check_flag == CHECK_UPPER_WARN_LOWER && third < lower) { in parse_double()
634 else if (check_flag == CHECK_LOWER) { in parse_double()
640 else if (check_flag == CHECK_BOTH) { in parse_double()
646 else if (check_flag == CHECK_NONE) { in parse_double()
/dports/astro/sextractor/sextractor-2.5.0/src/
H A Dmakeit.c149 if (prefs.check_flag) in makeit()
321 if (prefs.check_flag) in makeit()
362 if (prefs.check_flag) in makeit()
410 if (prefs.check_flag) in makeit()
H A Dprefs.c483 prefs.check_flag = 0; in useprefs()
486 prefs.check_flag = 1; in useprefs()
488 if (prefs.check_flag && prefs.ncheck_name!=prefs.ncheck_type) in useprefs()
498 if (prefs.check_flag) in useprefs()
509 if (prefs.check_flag) in useprefs()
H A Dprefs.h130 int check_flag; /* CHECK-image flag */ member
H A Dreadimage.c97 if (prefs.check_flag) in loadstrip()
164 if (prefs.check_flag) in loadstrip()
/dports/audio/alsa-utils/alsa-utils-1.2.2/amixer/
H A Damixer.c1309 check_flag = 1; in sset_enum()
1315 return check_flag; in sset_enum()
1349 check_flag = 1; in sset_channels()
1353 check_flag = 1; in sset_channels()
1357 check_flag = 1; in sset_channels()
1361 check_flag = 1; in sset_channels()
1371 check_flag = 1; in sset_channels()
1386 check_flag = 1; in sset_channels()
1390 check_flag = 1; in sset_channels()
1394 check_flag = 1; in sset_channels()
[all …]
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/mio-0.7.14/src/sys/unix/selector/
H A Dkqueue.rs488 fn check_flag(got: &Flags, want: &Flags) -> bool { in debug_details() function
493 check_flag, in debug_details()
/dports/audio/guitarix-lv2/guitarix-0.43.1/tools/ampsim/circuit/
H A Dcircuit.cc89 check_flag(&flag, "KINGetNumNonlinSolvIters", 1); in PrintFinalStats()
91 check_flag(&flag, "KINGetNumFuncEvals", 1); in PrintFinalStats()
94 check_flag(&flag, "KINDlsGetNumJacEvals", 1); in PrintFinalStats()
96 check_flag(&flag, "KINDlsGetNumFuncEvals", 1); in PrintFinalStats()
411 if (check_flag((void *)s, "N_VNew_Serial", 0)) return 1; in findzero()
418 if (check_flag((void *)kmem, "KINCreate", 0)) return 1; in findzero()
423 if (check_flag(&flag, "KINSetUserData", 1)) return flag; in findzero()
427 if (check_flag(&flag, "KINSetConstraints", 1)) { in findzero()
438 if (check_flag(&flag, "KINInit", 1)) return flag; in findzero()
443 if (check_flag(&flag, "KINDense", 1)) return flag; in findzero()
[all …]
/dports/audio/jamulus/jamulus-r3_8_1/libs/opus/
H A Dopus_functions.cmake99 function(check_flag NAME FLAG) function
116 check_flag(SSE1 /arch:SSE)
131 check_flag(SSE2 /arch:SSE2)
146 check_flag(SSE4_1 /arch:SSE2) # SSE2 and above
160 check_flag(AVX /arch:AVX)
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/mio-0.7.14/src/sys/unix/selector/
H A Dkqueue.rs488 fn check_flag(got: &Flags, want: &Flags) -> bool { in debug_details() function
493 check_flag, in debug_details()
/dports/audio/opus/opus-1.3.1/
H A Dopus_functions.cmake99 function(check_flag NAME FLAG) function
116 check_flag(SSE1 /arch:SSE)
131 check_flag(SSE2 /arch:SSE2)
146 check_flag(SSE4_1 /arch:SSE2) # SSE2 and above
160 check_flag(AVX /arch:AVX)
/dports/audio/sc3-plugins/sc3-plugins-Version-3.9.0/source/NovaDiskIO/sync/test/run/
H A Dcondition_test_common.hpp21 struct check_flag struct
25 explicit check_flag(bool const& flag_) : flag(flag_) in check_flag() argument
29 check_flag(check_flag const& that) : flag(that.flag) in check_flag() argument
38 BOOST_DELETED_FUNCTION(check_flag& operator=(check_flag const&))
64 cond_var.wait(lock,check_flag(flag)); in wait_with_predicate()
90 if(cond_var.timed_wait(lock,timeout,check_flag(flag)) && flag) in timed_wait_with_predicate()
98 … if(cond_var.timed_wait(lock,boost::posix_time::seconds(timeout_seconds),check_flag(flag)) && flag) in relative_timed_wait_with_predicate()
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/mio-0.7.0/src/sys/unix/selector/
H A Dkqueue.rs477 fn check_flag(got: &Flags, want: &Flags) -> bool { in debug_details() function
482 check_flag, in debug_details()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/boost_sync/test/run/
H A Dcondition_test_common.hpp21 struct check_flag struct
25 explicit check_flag(bool const& flag_) : flag(flag_) in check_flag() argument
29 check_flag(check_flag const& that) : flag(that.flag) in check_flag() function
38 BOOST_DELETED_FUNCTION(check_flag& operator=(check_flag const&))
64 cond_var.wait(lock,check_flag(flag)); in wait_with_predicate()
90 if(cond_var.timed_wait(lock,timeout,check_flag(flag)) && flag) in timed_wait_with_predicate()
98 … if(cond_var.timed_wait(lock,boost::posix_time::seconds(timeout_seconds),check_flag(flag)) && flag) in relative_timed_wait_with_predicate()
/dports/benchmarks/stress-ng/stress-ng-0.13.09/debian/
H A Dchangelog5813 * stress-file-ioctl: only declare check_flag when it is really
/dports/benchmarks/stress-ng/stress-ng-0.13.09/
H A Dstress-file-ioctl.c35 static void check_flag( in check_flag() function
147 check_flag(args, "FIONBIO", fd, O_NONBLOCK, ret, true); in stress_file_ioctl()
155 check_flag(args, "FIONBIO", fd, O_NONBLOCK, ret, false); in stress_file_ioctl()
170 check_flag(args, "FIONASYNC", fd, O_ASYNC, ret, true); in stress_file_ioctl()
178 check_flag(args, "FIONASYNC", fd, O_ASYNC, ret, false); in stress_file_ioctl()
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/docker/docker/contrib/
H A Dcheck-config.sh88 check_flag() { function
101 echo -n "- "; check_flag "$flag"
/dports/databases/mariadb103-client/mariadb-10.3.34/sql/
H A Dsql_base.cc994 uint check_flag) in find_dup_table() argument
1053 if (check_flag & CHECK_DUP_SKIP_TEMP_TABLE && in find_dup_table()
1058 if (check_flag & CHECK_DUP_FOR_CREATE) in find_dup_table()
1062 if (check_flag & CHECK_DUP_ALLOW_DIFFERENT_ALIAS) in find_dup_table()
1128 uint check_flag) in unique_table() argument
1160 if ((dup= find_dup_table(thd, child, child->next_global, check_flag))) in unique_table()
1165 dup= find_dup_table(thd, table, table_list, check_flag); in unique_table()
H A Dsql_base.h279 uint check_flag);
/dports/databases/mariadb103-server/mariadb-10.3.34/sql/
H A Dsql_base.cc994 uint check_flag)
1053 if (check_flag & CHECK_DUP_SKIP_TEMP_TABLE &&
1058 if (check_flag & CHECK_DUP_FOR_CREATE)
1062 if (check_flag & CHECK_DUP_ALLOW_DIFFERENT_ALIAS)
1128 uint check_flag)
1160 if ((dup= find_dup_table(thd, child, child->next_global, check_flag)))
1165 dup= find_dup_table(thd, table, table_list, check_flag);
H A Dsql_base.h279 uint check_flag);
/dports/databases/mariadb104-client/mariadb-10.4.24/sql/
H A Dsql_base.cc1152 uint check_flag) in find_dup_table() argument
1211 if (check_flag & CHECK_DUP_SKIP_TEMP_TABLE && in find_dup_table()
1216 if (check_flag & CHECK_DUP_FOR_CREATE) in find_dup_table()
1220 if (check_flag & CHECK_DUP_ALLOW_DIFFERENT_ALIAS) in find_dup_table()
1286 uint check_flag) in unique_table() argument
1318 if ((dup= find_dup_table(thd, child, child->next_global, check_flag))) in unique_table()
1323 dup= find_dup_table(thd, table, table_list, check_flag); in unique_table()

12345678910>>...20