Home
last modified time | relevance | path

Searched refs:match_int (Results 1 – 25 of 168) sorted by relevance

1234567

/dports/sysutils/slurm-wlm/slurm-20.02.7/testsuite/expect/
H A Dtest1.3859 set match_int 0
77 set match_int 1
93 if {[expr $match_wait + $match_int + $match_term] != 3} {
94 log_error "srun failed to properly process SIGINT, ($match_wait + $match_int + $match_term != 3)"
108 set match_int 0
124 set match_int 1
128 set match_int 1
144 if {[expr $match_wait + $match_int + $match_term] != 2} {
145 log_error "srun failed to properly process SIGINT, ($match_wait + $match_int + $match_term != 2)"
147 } elseif {$match_int != 0} {
[all …]
/dports/sysutils/apcctrl/apcctrl-0.8.21/src/lib/
H A Dapcconfig.c42 static HANDLER match_int, match_range, match_str; variable
131 {"POLLTIME", match_int, WHERE(polltime), 0},
153 {"NISPORT", match_int, WHERE(statusport), 0},
157 {"EVENTSFILEMAX", match_int, WHERE(eventfilemax), 0},
163 {"STATTIME", match_int, WHERE(stattime), 0},
164 {"DATATIME", match_int, WHERE(datatime), 0},
168 {"HITRANSFER", match_int, WHERE(hitrans), 0},
169 {"LOTRANSFER", match_int, WHERE(lotrans), 0},
170 {"LOWBATT", match_int, WHERE(dlowbatt), 0},
171 {"WAKEUP", match_int, WHERE(dwake), 0},
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/debuginfo/
H A Dstep-into-match.rs346 match_int(1); in main()
347 match_int(2); in main()
348 match_int(0); in main()
349 match_int(-1); in main()
366 fn match_int(y: i32) -> u16 { in match_int() function
/dports/sysutils/apcupsd/apcupsd-3.14.14/src/lib/
H A Dapcconfig.c42 static HANDLER match_int, match_range, match_str; variable
130 {"POLLTIME", match_int, WHERE(polltime), 0},
139 {"ANNOY", match_int, WHERE(annoy), 0},
140 {"ANNOYDELAY", match_int, WHERE(annoydelay), 0},
141 {"ONBATTERYDELAY", match_int, WHERE(onbattdelay), 0},
142 {"TIMEOUT", match_int, WHERE(maxtime), 0},
144 {"BATTERYLEVEL", match_int, WHERE(percent), 0},
151 {"NISPORT", match_int, WHERE(statusport), 0},
155 {"EVENTSFILEMAX", match_int, WHERE(eventfilemax), 0},
161 {"STATTIME", match_int, WHERE(stattime), 0},
[all …]
/dports/biology/kallisto/kallisto-0.46.1/src/
H A DMerge.cpp36 auto match_int = [&](std::string name, int64_t& val ) -> bool { in MergeBatchDirectories() local
52 if (match_int("n_processed", tmp)) { in MergeBatchDirectories()
55 if (match_int("n_pseudoaligned", tmp)) { in MergeBatchDirectories()
58 if (match_int("n_unique", tmp)) { in MergeBatchDirectories()
61 if (index_version == -1 && match_int("index_version",tmp)) { in MergeBatchDirectories()
64 if (num_targets == -1 && match_int("n_targets", tmp)) { in MergeBatchDirectories()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/hfsplus/
H A Doptions.c135 if (match_int(&args[0], &tmp)) { in hfsplus_parse_options()
146 if (match_int(&args[0], &tmp)) { in hfsplus_parse_options()
157 if (match_int(&args[0], &sbi->part)) { in hfsplus_parse_options()
163 if (match_int(&args[0], &sbi->session)) { in hfsplus_parse_options()
/dports/multimedia/libv4l/linux-5.13-rc2/fs/hfsplus/
H A Doptions.c135 if (match_int(&args[0], &tmp)) { in hfsplus_parse_options()
146 if (match_int(&args[0], &tmp)) { in hfsplus_parse_options()
157 if (match_int(&args[0], &sbi->part)) { in hfsplus_parse_options()
163 if (match_int(&args[0], &sbi->session)) { in hfsplus_parse_options()
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/hfsplus/
H A Doptions.c135 if (match_int(&args[0], &tmp)) { in hfsplus_parse_options()
146 if (match_int(&args[0], &tmp)) { in hfsplus_parse_options()
157 if (match_int(&args[0], &sbi->part)) { in hfsplus_parse_options()
163 if (match_int(&args[0], &sbi->session)) { in hfsplus_parse_options()
/dports/multimedia/libv4l/linux-5.13-rc2/fs/autofs/
H A Dinode.c162 if (match_int(args, &pipefd)) in parse_options()
167 if (match_int(args, &option)) in parse_options()
175 if (match_int(args, &option)) in parse_options()
183 if (match_int(args, &option)) in parse_options()
189 if (match_int(args, &option)) in parse_options()
194 if (match_int(args, &option)) in parse_options()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/autofs/
H A Dinode.c162 if (match_int(args, &pipefd)) in parse_options()
167 if (match_int(args, &option)) in parse_options()
175 if (match_int(args, &option)) in parse_options()
183 if (match_int(args, &option)) in parse_options()
189 if (match_int(args, &option)) in parse_options()
194 if (match_int(args, &option)) in parse_options()
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/autofs/
H A Dinode.c162 if (match_int(args, &pipefd)) in parse_options()
167 if (match_int(args, &option)) in parse_options()
175 if (match_int(args, &option)) in parse_options()
183 if (match_int(args, &option)) in parse_options()
189 if (match_int(args, &option)) in parse_options()
194 if (match_int(args, &option)) in parse_options()
/dports/lang/rust/rustc-1.58.1-src/src/tools/miri/tests/run-pass/
H A Dints.rs23 fn match_int() -> i16 { in match_int() function
52 assert_eq!(match_int(), 20); in main()
/dports/x11-wm/afterstep-stable/afterstep-devel-2.2.12/libAfterStep/
H A Dasdatabase.c196 static int match_int (ASDatabase * db, DBMatchType type) in match_int() function
325 db_rec->desk = match_int (db, MATCH_Desk); in fill_asdb_record()
327 db_rec->layer = match_int (db, MATCH_layer); in fill_asdb_record()
330 db_rec->viewport_x = match_int (db, MATCH_ViewportX); in fill_asdb_record()
333 db_rec->viewport_y = match_int (db, MATCH_ViewportY); in fill_asdb_record()
335 db_rec->border_width = match_int (db, MATCH_border_width); in fill_asdb_record()
337 db_rec->resize_width = match_int (db, MATCH_resize_width); in fill_asdb_record()
339 db_rec->gravity = match_int (db, MATCH_gravity); in fill_asdb_record()
341 db_rec->window_opacity = match_int (db, MATCH_window_opacity); in fill_asdb_record()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/unicode/
H A Dutf8-core.c188 if (match_int(&args[0], maj) || match_int(&args[1], min) || in utf8_parse_version()
189 match_int(&args[2], rev)) in utf8_parse_version()
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/unicode/
H A Dutf8-core.c188 if (match_int(&args[0], maj) || match_int(&args[1], min) || in utf8_parse_version()
189 match_int(&args[2], rev)) in utf8_parse_version()
/dports/multimedia/libv4l/linux-5.13-rc2/fs/unicode/
H A Dutf8-core.c188 if (match_int(&args[0], maj) || match_int(&args[1], min) || in utf8_parse_version()
189 match_int(&args[2], rev)) in utf8_parse_version()
/dports/net/rabbitmq-c-devel/rabbitmq-c-0.10.0/tests/
H A Dtest_parse_url.c59 static void match_int(const char *what, int expect, int got) { in match_int() function
83 match_int("port", port, ci.port); in parse_success()
/dports/net/rabbitmq-c/rabbitmq-c-0.11.0/tests/
H A Dtest_parse_url.c59 static void match_int(const char *what, int expect, int got) { in match_int() function
83 match_int("port", port, ci.port); in parse_success()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/nvme/host/
H A Dfabrics.c641 if (match_int(args, &token)) { in nvmf_parse_options()
654 if (match_int(args, &token)) { in nvmf_parse_options()
672 if (match_int(args, &token)) { in nvmf_parse_options()
688 if (match_int(args, &token)) { in nvmf_parse_options()
698 if (match_int(args, &token)) { in nvmf_parse_options()
737 if (match_int(args, &token)) { in nvmf_parse_options()
785 if (match_int(args, &token)) { in nvmf_parse_options()
797 if (match_int(args, &token)) { in nvmf_parse_options()
809 if (match_int(args, &token)) { in nvmf_parse_options()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/nvme/host/
H A Dfabrics.c641 if (match_int(args, &token)) { in nvmf_parse_options()
654 if (match_int(args, &token)) { in nvmf_parse_options()
672 if (match_int(args, &token)) { in nvmf_parse_options()
688 if (match_int(args, &token)) { in nvmf_parse_options()
698 if (match_int(args, &token)) { in nvmf_parse_options()
737 if (match_int(args, &token)) { in nvmf_parse_options()
785 if (match_int(args, &token)) { in nvmf_parse_options()
797 if (match_int(args, &token)) { in nvmf_parse_options()
809 if (match_int(args, &token)) { in nvmf_parse_options()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/nvme/host/
H A Dfabrics.c641 if (match_int(args, &token)) { in nvmf_parse_options()
654 if (match_int(args, &token)) { in nvmf_parse_options()
672 if (match_int(args, &token)) { in nvmf_parse_options()
688 if (match_int(args, &token)) { in nvmf_parse_options()
698 if (match_int(args, &token)) { in nvmf_parse_options()
737 if (match_int(args, &token)) { in nvmf_parse_options()
785 if (match_int(args, &token)) { in nvmf_parse_options()
797 if (match_int(args, &token)) { in nvmf_parse_options()
809 if (match_int(args, &token)) { in nvmf_parse_options()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/9p/
H A Dv9fs.c197 r = match_int(&args[0], &option); in v9fs_parse_options()
211 r = match_int(&args[0], &option); in v9fs_parse_options()
226 r = match_int(&args[0], &option); in v9fs_parse_options()
241 r = match_int(&args[0], &option); in v9fs_parse_options()
352 r = match_int(&args[0], &option); in v9fs_parse_options()
/dports/multimedia/libv4l/linux-5.13-rc2/fs/9p/
H A Dv9fs.c197 r = match_int(&args[0], &option); in v9fs_parse_options()
211 r = match_int(&args[0], &option); in v9fs_parse_options()
226 r = match_int(&args[0], &option); in v9fs_parse_options()
241 r = match_int(&args[0], &option); in v9fs_parse_options()
352 r = match_int(&args[0], &option); in v9fs_parse_options()
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/9p/
H A Dv9fs.c197 r = match_int(&args[0], &option); in v9fs_parse_options()
211 r = match_int(&args[0], &option); in v9fs_parse_options()
226 r = match_int(&args[0], &option); in v9fs_parse_options()
241 r = match_int(&args[0], &option); in v9fs_parse_options()
352 r = match_int(&args[0], &option); in v9fs_parse_options()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/hfs/
H A Dsuper.c249 if (match_int(&args[0], &tmp)) { in parse_options()
260 if (match_int(&args[0], &tmp)) { in parse_options()
293 if (match_int(&args[0], &hsb->part)) { in parse_options()
299 if (match_int(&args[0], &hsb->session)) { in parse_options()

1234567