Home
last modified time | relevance | path

Searched refs:get_bool_option (Results 1 – 25 of 87) sorted by relevance

1234

/dports/biology/sra-tools/sra-tools-2.11.0/tools/sra-pileup/
H A Dsam-dump-opts.c624 rc_t rc = get_bool_option( args, name1, b1 ); in gather_2_bool()
627 rc = get_bool_option( args, name2, b2 ); in gather_2_bool()
653 rc = get_bool_option( args, OPT_PRIM_ONLY, &dump_prim_only ); in gather_flag_options()
658 rc = get_bool_option( args, OPT_CG_SAM, &opts->dump_cg_sam ); in gather_flag_options()
673 rc = get_bool_option( args, OPT_CG_MAPP, &dump_cg_mappings ); in gather_flag_options()
708 rc = get_bool_option( args, OPT_RECAL_HDR, &recalc_header ); in gather_flag_options()
771 rc = get_bool_option( args, OPT_REPORT, &opts->report_options ); in gather_flag_options()
796 rc = get_bool_option( args, OPT_LEGACY, &opts->force_legacy ); in gather_flag_options()
799 rc = get_bool_option( args, OPT_NEW, &opts->force_new ); in gather_flag_options()
814 rc = get_bool_option( args, OPT_NO_MT, &opts->no_mt ); in gather_flag_options()
[all …]
H A Dcmdline_cmn.c138 static rc_t get_bool_option( const Args *args, const char *name, bool *res, const bool def ) in get_bool_option() function
163 rc = get_bool_option( args, OPTION_GZIP, &opts->gzip_output, false ); in get_common_options()
166 rc = get_bool_option( args, OPTION_BZIP, &opts->bzip_output, false ); in get_common_options()
169 rc = get_bool_option( args, OPTION_NO_MT, &opts->no_mt, false ); in get_common_options()
H A Dsra-pileup.c250 static rc_t get_bool_option( const Args *args, const char *name, bool *res, const bool def ) in get_bool_option() function
296 rc = get_bool_option( args, OPTION_DUPS, &opts->process_dups, false ); in get_pileup_options()
299 rc = get_bool_option( args, OPTION_NOQUAL, &opts->omit_qualities, false ); in get_pileup_options()
302 rc = get_bool_option( args, OPTION_NOSKIP, &opts->no_skip, false ); in get_pileup_options()
305 rc = get_bool_option( args, OPTION_SHOWID, &opts->show_id, false ); in get_pileup_options()
308 rc = get_bool_option( args, OPTION_SPOTGRP, &opts->div_by_spotgrp, false ); in get_pileup_options()
311 rc = get_bool_option( args, OPTION_DEPTH_PER_SPOTGRP, &opts->depth_per_spotgrp, false ); in get_pileup_options()
314 rc = get_bool_option( args, OPTION_SEQNAME, &opts->use_seq_name, false ); in get_pileup_options()
/dports/biology/sra-tools/sra-tools-2.11.0/tools/fasterq-dump/
H A Dfasterq-dump.c386 tool_ctx -> compress = get_compress_t( get_bool_option( args, OPTION_GZIP ), in get_user_input()
387 get_bool_option( args, OPTION_BZIP2 ) ); in get_user_input()
392 tool_ctx -> show_progress = get_bool_option( args, OPTION_PROGRESS ); in get_user_input()
393 tool_ctx -> show_details = get_bool_option( args, OPTION_DETAILS ); in get_user_input()
395 tool_ctx -> force = get_bool_option( args, OPTION_FORCE ); in get_user_input()
415 split_spot = get_bool_option( args, OPTION_SPLIT_SPOT ); in get_user_input()
416 split_file = get_bool_option( args, OPTION_SPLIT_FILE ); in get_user_input()
417 split_3 = get_bool_option( args, OPTION_SPLIT_3 ); in get_user_input()
418 whole_spot = get_bool_option( args, OPTION_WHOLE_SPOT ); in get_user_input()
428 tool_ctx -> append = get_bool_option( args, OPTION_APPEND ); in get_user_input()
[all …]
/dports/biology/sra-tools/sra-tools-2.11.0/tools/vdb-diff/
H A Dvdb-diff-context.c88 static bool get_bool_option( const Args *args, const char * option_name, bool dflt ) in get_bool_option() function
160 dctx -> show_progress = get_bool_option( args, OPTION_PROGRESS, false ); in gather_diff_ctx()
161 dctx -> intersect = get_bool_option( args, OPTION_INTERSECT, false ); in gather_diff_ctx()
163 dctx -> columnwise = get_bool_option( args, OPTION_COLUMNWISE, false ); in gather_diff_ctx()
/dports/www/trac-devel/Trac-1.5.3/trac/versioncontrol/
H A Ddiff.py313 def get_bool_option(name, default=0): function
338 arg = get_bool_option('ignoreblanklines')
343 arg = get_bool_option('ignorecase')
348 arg = get_bool_option('ignorewhitespace')
/dports/biology/sra-tools/sra-tools-2.11.0/tools/cache-mgr/
H A Dcache-mgr.c242 static bool get_bool_option( const Args * args, const char * name ) in get_bool_option() function
385 options->detailed = get_bool_option( args, OPTION_DETAIL ); in get_tool_options()
386 options->tstzero = get_bool_option( args, OPTION_TSTZERO ); in get_tool_options()
387 options->remove_dirs = get_bool_option( args, OPTION_REMDIR ); in get_tool_options()
389 if ( get_bool_option( args, OPTION_CREPORT ) ) in get_tool_options()
391 else if ( get_bool_option( args, OPTION_RREPORT ) ) in get_tool_options()
393 else if ( get_bool_option( args, OPTION_UNLOCK ) ) in get_tool_options()
395 else if ( get_bool_option( args, OPTION_CLEAR ) ) in get_tool_options()
/dports/games/xcowsay/xcowsay-1.5.1/src/
H A Dbubblegen.c73 if (get_bool_option("left")) { in bubble_corner_arcs()
104 bool right = !get_bool_option("left"); in bubble_init_cairo()
319 if (get_bool_option("left")) { in bubble_content_left()
381 if (get_bool_option("wrap")) { in make_text_bubble()
H A Dsettings.h29 bool get_bool_option(const char *name);
/dports/biology/sra-tools/sra-tools-2.11.0/test/samline/
H A Dalig-gen.c216 static uint32_t get_bool_option( const Args * args, const char * name ) in get_bool_option() function
578 gctx->header = get_bool_option( args, OPTION_HEADER ); in read_context()
636 if ( get_bool_option( args, OPTION_SHOW ) ) in KMain()
638 else if ( get_bool_option( args, OPTION_REF ) ) in KMain()
640 else if ( get_bool_option( args, OPTION_MDTAG ) ) in KMain()
/dports/www/cadaver/cadaver-0.23.3/src/
H A Doptions.h61 int get_bool_option(enum option_id id);
H A Doptions.c159 ne_set_session_flag(session.sess, NE_SESSFLAG_EXPECT100, get_bool_option(opt_expect100)); in setunset_expect100()
441 int get_bool_option(enum option_id id) in get_bool_option() function
/dports/biology/sra-tools/sra-tools-2.11.0/tools/srapath/
H A Dsrapath.c562 fmt->cache = get_bool_option( args, OPTION_CACHE ); in prepare_request()
563 fmt->path = get_bool_option( args, OPTION_PATH ); in prepare_request()
604 fmt->raw = get_bool_option( args, OPTION_RAW ); in prepare_request()
605 fmt->json = get_bool_option( args, OPTION_JSON ); in prepare_request()
H A Dhelper.h55 bool get_bool_option( const struct Args *args, const char *name );
/dports/lang/gnat_util/gcc-6-20180516/gcc/jit/
H A Djit-playback.c1365 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1403 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1750 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1811 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2164 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2168 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2175 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2183 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2566 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/jit/
H A Djit-playback.c1365 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1403 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1750 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1811 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2164 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2168 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2175 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2183 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2566 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/jit/
H A Djit-playback.c1428 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1466 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1802 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1863 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2216 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2220 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2227 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2235 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2618 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/lang/gcc9/gcc-9.4.0/gcc/jit/
H A Djit-playback.c1429 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1467 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1783 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1844 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2197 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2201 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2208 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2216 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2603 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/jit/
H A Djit-playback.c1428 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1466 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1802 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1863 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2216 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2220 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2227 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2235 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2618 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/jit/
H A Djit-playback.c1499 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1537 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1853 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1914 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2267 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2271 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2278 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2284 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2671 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/jit/
H A Djit-playback.c1428 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1466 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1802 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1863 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2216 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2220 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2227 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2235 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2618 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/jit/
H A Djit-playback.c1499 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1537 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1853 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1914 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2267 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2271 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2278 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2284 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2671 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/jit/
H A Djit-playback.c1428 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1466 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1802 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1863 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2216 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2220 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2227 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2235 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2618 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/jit/
H A Djit-playback.c1428 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1466 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1802 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1863 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2216 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2220 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2227 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2235 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2618 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/jit/
H A Djit-playback.c1429 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess()
1467 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
1783 get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES); in compile()
1844 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE)) in compile()
2197 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in make_fake_args()
2201 if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY)) in make_fake_args()
2208 if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC)) in make_fake_args()
2216 if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING)) in make_fake_args()
2603 if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO)) in dlopen_built_dso()

1234