/third_party/ffmpeg/fftools/ |
H A D | opt_common.h | 44 { "sources" , OPT_EXIT | HAS_ARG, { .func_arg = show_sources }, \ 46 { "sinks" , OPT_EXIT | HAS_ARG, { .func_arg = show_sinks }, \ 222 { "loglevel", HAS_ARG, { .func_arg = opt_loglevel }, "set logging level", "loglevel" }, \ 223 { "v", HAS_ARG, { .func_arg = opt_loglevel }, "set logging level", "loglevel" }, \ 225 { "max_alloc", HAS_ARG, { .func_arg = opt_max_alloc }, "set maximum size of a single allocated block", "bytes" }, \ 226 { "cpuflags", HAS_ARG | OPT_EXPERT, { .func_arg = opt_cpuflags }, "force specific cpu flags", "flags" }, \ 227 { "cpucount", HAS_ARG | OPT_EXPERT, { .func_arg = opt_cpucount }, "force specific cpu count", "count" }, \
|
H A D | ffmpeg_opt.c | 3650 { "f", HAS_ARG | OPT_STRING | OPT_OFFSET | 3663 { "c", HAS_ARG | OPT_STRING | OPT_SPEC | 3666 { "codec", HAS_ARG | OPT_STRING | OPT_SPEC | 3669 { "pre", HAS_ARG | OPT_STRING | OPT_SPEC | 3672 { "map", HAS_ARG | OPT_EXPERT | OPT_PERFILE | 3676 { "map_channel", HAS_ARG | OPT_EXPERT | OPT_PERFILE | OPT_OUTPUT, { .func_arg = opt_map_channel }, 3678 { "map_metadata", HAS_ARG | OPT_STRING | OPT_SPEC | 3682 { "map_chapters", HAS_ARG | OPT_INT | OPT_EXPERT | OPT_OFFSET | 3685 { "t", HAS_ARG | OPT_TIME | OPT_OFFSET | 3689 { "to", HAS_ARG | OPT_TIM [all...] |
H A D | ffplay.c | 3564 { "x", HAS_ARG, { .func_arg = opt_width }, "force displayed width", "width" }, 3565 { "y", HAS_ARG, { .func_arg = opt_height }, "force displayed height", "height" }, 3570 { "ast", OPT_STRING | HAS_ARG | OPT_EXPERT, { &wanted_stream_spec[AVMEDIA_TYPE_AUDIO] }, "select desired audio stream", "stream_specifier" }, 3571 { "vst", OPT_STRING | HAS_ARG | OPT_EXPERT, { &wanted_stream_spec[AVMEDIA_TYPE_VIDEO] }, "select desired video stream", "stream_specifier" }, 3572 { "sst", OPT_STRING | HAS_ARG | OPT_EXPERT, { &wanted_stream_spec[AVMEDIA_TYPE_SUBTITLE] }, "select desired subtitle stream", "stream_specifier" }, 3573 { "ss", HAS_ARG, { .func_arg = opt_seek }, "seek to a given position in seconds", "pos" }, 3574 { "t", HAS_ARG, { .func_arg = opt_duration }, "play \"duration\" seconds of audio/video", "duration" }, 3575 { "bytes", OPT_INT | HAS_ARG, { &seek_by_bytes }, "seek by bytes 0=off 1=on -1=auto", "val" }, 3576 { "seek_interval", OPT_FLOAT | HAS_ARG, { &seek_interval }, "set seek interval for left/right keys, in seconds", "seconds" }, 3580 { "volume", OPT_INT | HAS_ARG, { [all...] |
H A D | cmdutils.c | 311 .flags = HAS_ARG, in parse_option() 333 if (po->flags & HAS_ARG && !arg) { in parse_option() 342 return !!(po->flags & HAS_ARG); in parse_option() 429 if (!po->name || po->flags & HAS_ARG) in locate_option() 743 } else if (po->flags & HAS_ARG) { in split_commandline()
|
H A D | cmdutils.h | 138 #define HAS_ARG 0x0001 macro
|
H A D | ffprobe.c | 3959 { "f", HAS_ARG, {.func_arg = opt_format}, "force format", "format" }, 3968 { "print_format", OPT_STRING | HAS_ARG, { &print_format }, 3970 { "of", OPT_STRING | HAS_ARG, { &print_format }, "alias for -print_format", "format" }, 3971 { "select_streams", OPT_STRING | HAS_ARG, { &stream_specifier }, "select the specified streams", "stream_specifier" }, 3974 { "show_data_hash", OPT_STRING | HAS_ARG, { &show_data_hash }, "show packets data hash" }, 3978 { "show_entries", HAS_ARG, {.func_arg = opt_show_entries}, 3981 { "show_log", OPT_INT|HAS_ARG, { &do_show_log }, "show log" }, 3993 { "show_optional_fields", HAS_ARG, { .func_arg = &opt_show_optional_fields }, "show optional fields" }, 3997 { "read_intervals", HAS_ARG, {.func_arg = opt_read_intervals}, "set read intervals", "read_intervals" }, 3998 { "i", HAS_ARG, { [all...] |
/third_party/python/Modules/ |
H A D | _opcode.c | 33 if (HAS_ARG(opcode)) { in _opcode_stack_effect_impl()
|
/third_party/python/Include/ |
H A D | opcode.h | 227 #define HAS_ARG(op) ((op) >= HAVE_ARGUMENT) macro
|
/third_party/python/Python/ |
H A D | compile.c | 199 int oparg = HAS_ARG(opcode) ? instruction->i_oparg : 0; in instr_size() 210 int oparg = HAS_ARG(opcode) ? instruction->i_oparg : 0; in write_instr() 1252 assert(!HAS_ARG(opcode) || IS_ARTIFICIAL(opcode)); in compiler_addop_line() 1496 assert(HAS_ARG(opcode)); in compiler_addop_i_line() 1541 assert(HAS_ARG(opcode) || IS_VIRTUAL_OPCODE(opcode)); in add_jump_to_block() 8087 if (HAS_ARG(i->i_opcode)) {
|
H A D | ceval.c | 138 if (HAS_ARG(opcode)) { in lltrace_instruction()
|