/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
D | parser.cc | 102 UnboundConversion *conv, int *next_arg) { in ConsumeConversion() argument 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() argument 263 if (*next_arg < 0) return ConsumeConversion<true>(p, end, conv, next_arg); in ConsumeUnboundConversion() 264 return ConsumeConversion<false>(p, end, conv, next_arg); in ConsumeUnboundConversion()
|
D | parser.h | 90 UnboundConversion* conv, int* next_arg); 150 int next_arg = 0; in ParseFormatString() local 167 if (ABSL_PREDICT_FALSE(next_arg < 0)) { in ParseFormatString() 181 conv.arg_position = ++next_arg; in ParseFormatString() 188 p = ConsumeUnboundConversion(percent + 1, end, &conv, &next_arg); in ParseFormatString()
|
D | bind_test.cc | 43 int next_arg; in TEST_F() member
|
/third_party/python/Modules/_ctypes/libffi_osx/powerpc/ |
D | ppc-ffi_darwin.c | 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 = *(long long*)*p_argv; in ffi_prep_args() 220 next_arg += 2; in ffi_prep_args() [all …]
|
/third_party/libdrm/tests/amdgpu/ |
D | amdgpu_stress.c | 281 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/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-generator-prototype.c | 207 ecma_value_t next_arg) /**< next argument */ in ecma_builtin_generator_prototype_object_next() argument 209 return ecma_builtin_generator_prototype_object_do (this_arg, next_arg, ECMA_ITERATOR_NEXT); in ecma_builtin_generator_prototype_object_next()
|
/third_party/libfuse/lib/ |
D | fuse_opt.c | 100 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/ntfs-3g/libfuse-lite/ |
D | fuse_opt.c | 84 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/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/opt/ |
D | opt.cpp | 651 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()
|
/third_party/skia/third_party/externals/spirv-tools/tools/opt/ |
D | opt.cpp | 651 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()
|
/third_party/spirv-tools/tools/opt/ |
D | opt.cpp | 663 const char* next_arg = (*argi + 1 < argc) ? argv[*argi + 1] : nullptr; in CanonicalizeFlag() local 677 if (next_arg) { in CanonicalizeFlag() 678 canonical_arg << "=" << next_arg; in CanonicalizeFlag()
|
/third_party/mbedtls/tests/suites/ |
D | host_test.function | 478 const char *next_arg; 531 next_arg = argv[arg_index]; 533 if (strcmp(next_arg, "--verbose") == 0 || 534 strcmp(next_arg, "-v") == 0) { 536 } else if (strcmp(next_arg, "--help") == 0 || 537 strcmp(next_arg, "-h") == 0) {
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitNativeRISCV_common.c | 880 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… in can_cache() 893 if (arg == next_arg) { in can_cache() 904 …sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_ar… 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 && argw == (next_argw & 0x3)) { in getput_arg() 968 …if (next_arg && next_argw - argw <= SIMM_MAX && next_argw - argw >= SIMM_MIN && argw_hi != TO_ARGW… in getput_arg() [all …]
|
D | sljitNativeMIPS_common.c | 1212 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… in can_cache() 1225 if (arg == next_arg) { in can_cache() 1236 …it_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_ar… 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 && argw == (next_argw & 0x3)) { in getput_arg() 1306 …if (next_arg && next_argw - argw <= SIMM_MAX && next_argw - argw >= SIMM_MIN && argw_hi != TO_ARGW… in getput_arg() [all …]
|
/third_party/python/Lib/ |
D | optparse.py | 1473 (opt, next_arg) = arg.split("=", 1) 1474 rargs.insert(0, next_arg)
|
/third_party/node/deps/v8/src/execution/arm64/ |
D | simulator-arm64.cc | 3643 int next_arg = 1; in ExecDebugCommand() local 3655 next_arg++; in ExecDebugCommand() 3659 if (argc == next_arg) { in ExecDebugCommand() 3661 } else if (argc == next_arg + 1) { in ExecDebugCommand() 3662 if (!GetValue(argv[next_arg], &words)) { in ExecDebugCommand() 3663 PrintF("%s unrecognized\n", argv[next_arg]); in ExecDebugCommand()
|
/third_party/node/deps/v8/src/execution/mips/ |
D | simulator-mips.cc | 473 int next_arg = 1; in Debug() local 484 next_arg++; in Debug() 490 if (argc == next_arg) { in Debug() 493 if (!GetValue(argv[next_arg], &words)) { in Debug() 500 if (argc == next_arg) { in Debug() 503 if (!GetValue(argv[next_arg], &words)) { in Debug()
|
/third_party/node/deps/v8/src/execution/loong64/ |
D | simulator-loong64.cc | 461 int next_arg = 1; in Debug() local 472 next_arg++; in Debug() 476 if (argc == next_arg) { in Debug() 479 if (!GetValue(argv[next_arg], &words)) { in Debug()
|
/third_party/node/deps/v8/src/execution/ppc/ |
D | simulator-ppc.cc | 361 int next_arg = 1; in Debug() local 372 next_arg++; in Debug() 376 if (argc == next_arg) { in Debug() 379 if (!GetValue(argv[next_arg], &words)) { in Debug()
|
/third_party/node/deps/v8/src/execution/arm/ |
D | simulator-arm.cc | 324 int next_arg = 1; in ExecDebugCommand() local 335 next_arg++; in ExecDebugCommand() 339 if (argc == next_arg) { in ExecDebugCommand() 342 if (!GetValue(argv[next_arg], &words)) { in ExecDebugCommand()
|
/third_party/node/deps/v8/src/execution/riscv64/ |
D | simulator-riscv64.cc | 1772 int next_arg = 1; in Debug() local 1787 next_arg++; in Debug() 1791 if (argc == next_arg) { in Debug() 1794 if (!GetValue(argv[next_arg], &words)) { in Debug()
|
/third_party/node/deps/v8/src/execution/mips64/ |
D | simulator-mips64.cc | 430 int next_arg = 1; in Debug() local 441 next_arg++; in Debug() 445 if (argc == next_arg) { in Debug() 448 if (!GetValue(argv[next_arg], &words)) { in Debug()
|
/third_party/node/deps/v8/src/execution/s390/ |
D | simulator-s390.cc | 393 int next_arg = 1; in Debug() local 404 next_arg++; in Debug() 408 if (argc == next_arg) { in Debug() 411 if (!GetValue(argv[next_arg], &words)) { in Debug()
|