Home
last modified time | relevance | path

Searched refs:next_arg (Results 1 - 25 of 39) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
H A Dparser.cc102 UnboundConversion *conv, int *next_arg) { in ConsumeConversion()
161 if (ABSL_PREDICT_FALSE(*next_arg != 0)) return nullptr; in ConsumeConversion()
163 *next_arg = -1; in ConsumeConversion()
164 return ConsumeConversion<true>(original_pos, end, conv, next_arg); in ConsumeConversion()
177 conv->width.set_from_arg(++*next_arg); in ConsumeConversion()
195 conv->precision.set_from_arg(++*next_arg); in ConsumeConversion()
229 if (!is_positional) conv->arg_position = ++*next_arg; in ConsumeConversion()
262 UnboundConversion *conv, int *next_arg) { in ConsumeUnboundConversion()
263 if (*next_arg < 0) return ConsumeConversion<true>(p, end, conv, next_arg); in ConsumeUnboundConversion()
101 ConsumeConversion(const char *pos, const char *const end, UnboundConversion *conv, int *next_arg) ConsumeConversion() argument
261 ConsumeUnboundConversion(const char *p, const char *end, UnboundConversion *conv, int *next_arg) ConsumeUnboundConversion() argument
[all...]
H A Dparser.h90 UnboundConversion* conv, int* next_arg);
150 int next_arg = 0; in ParseFormatString() local
167 if (ABSL_PREDICT_FALSE(next_arg < 0)) { in ParseFormatString()
169 // The only way to get `next_arg < 0` here is to have a positional in ParseFormatString()
170 // argument first which sets next_arg to -1 and then a non-positional in ParseFormatString()
181 conv.arg_position = ++next_arg; in ParseFormatString()
188 p = ConsumeUnboundConversion(percent + 1, end, &conv, &next_arg); in ParseFormatString()
H A Dbind_test.cc43 int next_arg; in TEST_F() member
/third_party/libdrm/tests/amdgpu/
H A Damdgpu_stress.c281 void next_arg(int argc, char **argv, const char *msg) in next_arg() function
375 next_arg(argc, argv, "Missing buffer size"); in main()
392 next_arg(argc, argv, "Missing to buffer"); in main()
397 next_arg(argc, argv, "Missing size"); in main()
399 next_arg(argc, argv, "Missing count"); in main()
/third_party/python/Modules/_ctypes/libffi_osx/powerpc/
H A Dppc-ffi_darwin.c132 /* 'next_arg' grows up as we put parameters in it. */ in ffi_prep_args()
133 unsigned long* next_arg = longStack + 6; /* 6 reserved positions. */ in ffi_prep_args() local
151 *next_arg++ = (unsigned long)(char*)ecif->rvalue; in ffi_prep_args()
168 *(double*)next_arg = double_tmp; in ffi_prep_args()
170 next_arg++; in ffi_prep_args()
182 *(double*)next_arg = double_tmp; in ffi_prep_args()
184 next_arg += MODE_CHOICE(2,1); in ffi_prep_args()
204 *(long double*)next_arg = *(long double*)*p_argv; in ffi_prep_args()
207 next_arg += MODE_CHOICE(4,2); in ffi_prep_args()
219 *(long long*)next_arg in ffi_prep_args()
[all...]
/kernel/linux/linux-6.6/lib/
H A Dcmdline.c227 char *next_arg(char *args, char **param, char **val) in next_arg() function
275 EXPORT_SYMBOL(next_arg); variable
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-generator-prototype.c207 ecma_value_t next_arg) /**< next argument */ in ecma_builtin_generator_prototype_object_next()
209 return ecma_builtin_generator_prototype_object_do (this_arg, next_arg, ECMA_ITERATOR_NEXT); in ecma_builtin_generator_prototype_object_next()
206 ecma_builtin_generator_prototype_object_next(ecma_value_t this_arg, ecma_value_t next_arg) ecma_builtin_generator_prototype_object_next() argument
/third_party/ntfs-3g/libfuse-lite/
H A Dfuse_opt.c84 static int next_arg(struct fuse_opt_context *ctx, const char *opt) in next_arg() function
226 if (next_arg(ctx, arg) == -1) in process_opt_sep_arg()
319 if (next_arg(ctx, arg) == -1) in process_one()
/third_party/libfuse/lib/
H A Dfuse_opt.c100 static int next_arg(struct fuse_opt_context *ctx, const char *opt) in next_arg() function
258 if (next_arg(ctx, arg) == -1) in process_opt_sep_arg()
356 if (next_arg(ctx, arg) == -1) in process_one()
/third_party/skia/third_party/externals/spirv-tools/tools/opt/
H A Dopt.cpp651 const char* next_arg = (*argi + 1 < argc) ? argv[*argi + 1] : nullptr; in CanonicalizeFlag() local
665 if (next_arg) { in CanonicalizeFlag()
666 canonical_arg << "=" << next_arg; in CanonicalizeFlag() local
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/opt/
H A Dopt.cpp651 const char* next_arg = (*argi + 1 < argc) ? argv[*argi + 1] : nullptr; in CanonicalizeFlag() local
665 if (next_arg) { in CanonicalizeFlag()
666 canonical_arg << "=" << next_arg; in CanonicalizeFlag() local
/third_party/spirv-tools/tools/opt/
H A Dopt.cpp667 const char* next_arg = (*argi + 1 < argc) ? argv[*argi + 1] : nullptr; in CanonicalizeFlag() local
681 if (next_arg) { in CanonicalizeFlag()
682 canonical_arg << "=" << next_arg; in CanonicalizeFlag() local
/kernel/linux/linux-5.10/lib/
H A Dcmdline.c201 char *next_arg(char *args, char **param, char **val) in next_arg() function
/kernel/linux/linux-6.6/drivers/gpio/
H A Dgpio-aggregator.c76 args = next_arg(args, &name, &p); in aggr_parse()
78 args = next_arg(args, &offsets, &p); in aggr_parse()
104 args = next_arg(args, &name, &p); in aggr_parse()
/kernel/linux/linux-5.10/arch/s390/boot/
H A Dipl_parm.c241 args = next_arg(args, &param, &val); in parse_boot_command_line()
/kernel/linux/linux-6.6/arch/s390/boot/
H A Dipl_parm.c269 args = next_arg(args, &param, &val); in parse_boot_command_line()
/kernel/linux/linux-6.6/include/linux/
H A Dkernel.h211 extern char *next_arg(char *args, char **param, char **val);
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeRISCV_common.c880 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache() argument
882 SLJIT_ASSERT((arg & SLJIT_MEM) && (next_arg & SLJIT_MEM)); in can_cache()
888 if (argw && argw == next_argw && (arg == next_arg || (arg & OFFS_REG_MASK) == (next_arg & OFFS_REG_MASK))) in can_cache()
893 if (arg == next_arg) { in can_cache()
904 static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in getput_arg() argument
911 if (!(next_arg & SLJIT_MEM)) { in getput_arg()
912 next_arg = 0; in getput_arg()
930 if (arg == next_arg && argw == (next_argw & 0x3)) { in getput_arg()
947 if (arg == next_arg in getput_arg()
[all...]
H A DsljitNativeMIPS_common.c1212 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache() argument
1214 SLJIT_ASSERT((arg & SLJIT_MEM) && (next_arg & SLJIT_MEM)); in can_cache()
1220 if (argw && argw == next_argw && (arg == next_arg || (arg & OFFS_REG_MASK) == (next_arg & OFFS_REG_MASK))) in can_cache()
1225 if (arg == next_arg) { in can_cache()
1236 static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in getput_arg() argument
1242 if (!(next_arg & SLJIT_MEM)) { in getput_arg()
1243 next_arg = 0; in getput_arg()
1268 if (arg == next_arg && argw == (next_argw & 0x3)) { in getput_arg()
1285 if (arg == next_arg in getput_arg()
[all...]
/kernel/linux/linux-5.10/drivers/firmware/efi/libstub/
H A Defi-stub-helper.c209 str = next_arg(str, &param, &val); in efi_parse_options()
/kernel/linux/linux-5.10/arch/x86/boot/compressed/
H A Dkaslr.c282 args = next_arg(args, &param, &val); in handle_mem_options()
/kernel/linux/linux-6.6/arch/x86/boot/compressed/
H A Dkaslr.c278 args = next_arg(args, &param, &val); in handle_mem_options()
/kernel/linux/linux-5.10/include/linux/
H A Dkernel.h364 extern char *next_arg(char *args, char **param, char **val);
/kernel/linux/linux-6.6/drivers/firmware/efi/libstub/
H A Defi-stub-helper.c66 str = next_arg(str, &param, &val); in efi_parse_options()
/third_party/python/Lib/
H A Doptparse.py1473 (opt, next_arg) = arg.split("=", 1)
1474 rargs.insert(0, next_arg)

Completed in 26 milliseconds

12