/third_party/toybox/toys/pending/ |
H A D | stty.c | 199 static int get_arg(int *i, long long low, long long high) in get_arg() function 332 else if (!strcmp(arg, "line")) new.c_line = get_arg(&i, N_TTY, NR_LDISCS); in do_stty() 333 else if (!strcmp(arg, "min")) new.c_cc[VMIN] = get_arg(&i, 0, 255); in do_stty() 334 else if (!strcmp(arg, "time")) new.c_cc[VTIME] = get_arg(&i, 0, 255); in do_stty() 341 cfsetispeed(&new, speed(get_arg(&i, 0, 4000000))); in do_stty() 343 cfsetospeed(&new, speed(get_arg(&i, 0, 4000000))); in do_stty() 344 else if (!strcmp(arg, "rows")) set_size(1, get_arg(&i, 0, USHRT_MAX)); in do_stty() 346 set_size(0, get_arg(&i, 0, USHRT_MAX)); in do_stty()
|
/kernel/linux/linux-5.10/tools/lib/subcmd/ |
H A D | parse-options.c | 48 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, in get_arg() function 177 err = get_arg(p, opt, flags, NULL); in get_value() 218 err = get_arg(p, opt, flags, (const char **)opt->value); in get_value() 249 if (get_arg(p, opt, flags, &arg)) in get_value() 262 if (get_arg(p, opt, flags, &arg)) in get_value() 278 if (get_arg(p, opt, flags, &arg)) in get_value() 296 if (get_arg(p, opt, flags, &arg)) in get_value() 312 if (get_arg(p, opt, flags, &arg)) in get_value() 328 if (get_arg(p, opt, flags, &arg)) in get_value()
|
/kernel/linux/linux-6.6/tools/lib/subcmd/ |
H A D | parse-options.c | 48 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, in get_arg() function 177 err = get_arg(p, opt, flags, NULL); in get_value() 218 err = get_arg(p, opt, flags, (const char **)opt->value); in get_value() 249 if (get_arg(p, opt, flags, &arg)) in get_value() 262 if (get_arg(p, opt, flags, &arg)) in get_value() 278 if (get_arg(p, opt, flags, &arg)) in get_value() 296 if (get_arg(p, opt, flags, &arg)) in get_value() 312 if (get_arg(p, opt, flags, &arg)) in get_value() 328 if (get_arg(p, opt, flags, &arg)) in get_value()
|
/third_party/openssl/test/ |
H A D | asynctest.c | 170 void *get_arg; in test_ASYNC_callback_status() local 177 || ASYNC_WAIT_CTX_get_callback(waitctx, &get_callback, &get_arg) in test_ASYNC_callback_status() 180 || get_arg != (void*)&set_arg in test_ASYNC_callback_status() 181 || (*get_callback)(get_arg) != 1 in test_ASYNC_callback_status()
|
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-aggregator.c | 40 static char *get_arg(char **args) in get_arg() function 125 for (name = get_arg(&args), offsets = get_arg(&args); name; in aggr_parse() 126 offsets = get_arg(&args)) { in aggr_parse() 156 name = get_arg(&args); in aggr_parse()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | scheck.c | 74 static BoolectorNode *get_arg(Btor *btor, struct instruction *insn, int idx) in get_arg() function 201 BoolectorNode *a = get_arg(btor, insn, 0); in add_precondition() 235 BoolectorNode *a = get_arg(btor, insn, 0); in check_assert() 243 BoolectorNode *a = get_arg(btor, insn, 0); in check_equal() 244 BoolectorNode *b = get_arg(btor, insn, 1); in check_equal()
|
/third_party/python/Objects/ |
H A D | frameobject.c | 114 get_arg(const _Py_CODEUNIT *codestr, Py_ssize_t i) in get_arg() function 320 int j = get_arg(code, i); in mark_stacks() 353 j = get_arg(code, i) + i + 1; in mark_stacks() 360 j = get_arg(code, i) + i + 1; in mark_stacks() 367 j = i + 1 - get_arg(code, i); in mark_stacks() 385 j = get_arg(code, i) + i + 1; in mark_stacks() 441 int n = get_arg(code, i); in mark_stacks() 448 int n = get_arg(code, i); in mark_stacks() 455 int delta = PyCompile_OpcodeStackEffect(opcode, get_arg(code, i)); in mark_stacks()
|
/kernel/linux/linux-5.10/lib/ |
H A D | vsprintf.c | 3055 #define get_arg(type) \ in bstr_printf() macro 3095 set_field_width(&spec, get_arg(int)); in bstr_printf() 3099 set_precision(&spec, get_arg(int)); in bstr_printf() 3112 c = (unsigned char) get_arg(char); in bstr_printf() 3159 str = pointer(fmt, str, end, get_arg(void *), spec); in bstr_printf() 3181 num = get_arg(long long); in bstr_printf() 3185 num = get_arg(unsigned long); in bstr_printf() 3188 num = get_arg(size_t); in bstr_printf() 3191 num = get_arg(ptrdiff_t); in bstr_printf() 3194 num = get_arg(unsigne in bstr_printf() 3225 #undef get_arg bstr_printf() macro [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | vsprintf.c | 3229 #define get_arg(type) \ in bstr_printf() macro 3269 set_field_width(&spec, get_arg(int)); in bstr_printf() 3273 set_precision(&spec, get_arg(int)); in bstr_printf() 3286 c = (unsigned char) get_arg(char); in bstr_printf() 3333 str = pointer(fmt, str, end, get_arg(void *), spec); in bstr_printf() 3355 num = get_arg(long long); in bstr_printf() 3359 num = get_arg(unsigned long); in bstr_printf() 3362 num = get_arg(size_t); in bstr_printf() 3365 num = get_arg(ptrdiff_t); in bstr_printf() 3368 num = get_arg(unsigne in bstr_printf() 3399 #undef get_arg bstr_printf() macro [all...] |
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.h | 118 get_arg(isel_context* ctx, struct ac_arg arg) in get_arg() function
|
H A D | aco_instruction_selection.cpp | 5149 get_arg(ctx, ctx->args->ac.merged_wave_info), Operand::c32(24u | (4u << 16))); 5309 vec->operands[i] = Operand(get_arg(ctx, ctx->args->ac.frag_pos[i])); 5316 bld.vop1(aco_opcode::v_rcp_f32, bld.def(v1), get_arg(ctx, ctx->args->ac.frag_pos[3])); 5337 Temp x_rate = bld.vop3(aco_opcode::v_bfe_u32, bld.def(v1), get_arg(ctx, ctx->args->ac.ancillary), 5339 Temp y_rate = bld.vop3(aco_opcode::v_bfe_u32, bld.def(v1), get_arg(ctx, ctx->args->ac.ancillary), 5362 Temp prim_mask = get_arg(ctx, ctx->args->ac.prim_mask); 5465 Temp input = get_arg(ctx, ctx->args->vs_inputs[location]); 5491 convert_pointer_to_64_bit(ctx, get_arg(ctx, ctx->args->ac.vertex_buffers)); 5519 Temp start_instance = get_arg(ctx, ctx->args->ac.start_instance); 5521 Temp instance_id = get_arg(ct [all...] |
/third_party/rust/crates/clap/src/parser/matches/ |
H A D | arg_matches.rs | 598 let arg = some!(self.get_arg(id)); in grouped_values_of() 631 let value = self.get_arg(id); in value_source() 780 let arg = some!(self.get_arg(id)); in index_of() 862 let arg = some!(self.get_arg(id)); in indices_of() 1307 fn get_arg<'s>(&'s self, arg: &str) -> Option<&'s MatchedArg> { in get_arg() functions
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/mlx5/ |
H A D | main.c | 2039 static int get_arg(unsigned long offset) in get_arg() function 2046 return get_arg(offset); in get_index() 2052 return get_arg(offset) | ((offset >> 16) & 0xff) << 8; in get_extended_index()
|
/kernel/linux/linux-6.6/drivers/infiniband/hw/mlx5/ |
H A D | main.c | 2055 static int get_arg(unsigned long offset) in get_arg() function 2062 return get_arg(offset); in get_index() 2068 return get_arg(offset) | ((offset >> 16) & 0xff) << 8; in get_extended_index()
|