/third_party/libffi/src/powerpc/ |
D | ffi_linux64.c | 462 valp next_arg; in ffi_prep_args64() local 512 next_arg.ul = gpr_base.ul; in ffi_prep_args64() 524 *next_arg.ul++ = (unsigned long) (char *) ecif->rvalue; in ffi_prep_args64() 546 next_arg.p = FFI_ALIGN (next_arg.p, 16); in ffi_prep_args64() 547 if (next_arg.ul == gpr_end.ul) in ffi_prep_args64() 548 next_arg.ul = rest.ul; in ffi_prep_args64() 552 *next_arg.f128 = **p_argv.f128; in ffi_prep_args64() 553 if (++next_arg.f128 == gpr_end.f128) in ffi_prep_args64() 554 next_arg.f128 = rest.f128; in ffi_prep_args64() 568 *next_arg.d = double_tmp; in ffi_prep_args64() [all …]
|
D | ffi_sysv.c | 407 valp next_arg; in ffi_prep_args_SYSV() local 440 next_arg.u = stack + 2; in ffi_prep_args_SYSV() 447 FFI_ASSERT (copy_space.c >= next_arg.c); in ffi_prep_args_SYSV() 474 if (((next_arg.u - stack) & 1) != 0) in ffi_prep_args_SYSV() 475 next_arg.u += 1; in ffi_prep_args_SYSV() 476 *next_arg.d = double_tmp; in ffi_prep_args_SYSV() 477 next_arg.u += 2; in ffi_prep_args_SYSV() 479 *next_arg.d = double_tmp; in ffi_prep_args_SYSV() 480 next_arg.u += 2; in ffi_prep_args_SYSV() 496 if (((next_arg.u - stack) & 1) != 0) in ffi_prep_args_SYSV() [all …]
|
D | ffi_darwin.c | 125 unsigned long *next_arg = stack + LINKAGE_AREA_GPRS; /* 6 reserved positions. */ in ffi_prep_args() local 147 *next_arg++ = (unsigned long) (char *) ecif->rvalue; in ffi_prep_args() 162 *(float *)next_arg = *(float *) *p_argv; in ffi_prep_args() 164 *(double *)next_arg = double_tmp; in ffi_prep_args() 166 next_arg++; in ffi_prep_args() 176 *(double *)next_arg = double_tmp; in ffi_prep_args() 178 next_arg++; in ffi_prep_args() 181 next_arg += 2; in ffi_prep_args() 197 *(long double *) next_arg = *(long double *) *p_argv; in ffi_prep_args() 198 next_arg += 2; in ffi_prep_args() [all …]
|
/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | parser.cc | 81 UnboundConversion *conv, int *next_arg) { in ConsumeConversion() argument 159 if (ABSL_PREDICT_FALSE(*next_arg != 0)) return nullptr; in ConsumeConversion() 161 *next_arg = -1; in ConsumeConversion() 164 return ConsumeConversion<true>(original_pos, end, conv, next_arg); in ConsumeConversion() 175 conv->width.set_from_arg(++*next_arg); in ConsumeConversion() 192 conv->precision.set_from_arg(++*next_arg); in ConsumeConversion() 226 if (!is_positional) conv->arg_position = ++*next_arg; in ConsumeConversion() 259 UnboundConversion *conv, int *next_arg) { in ConsumeUnboundConversion() argument 260 if (*next_arg < 0) return ConsumeConversion<true>(p, end, conv, next_arg); in ConsumeUnboundConversion() 261 return ConsumeConversion<false>(p, end, conv, next_arg); in ConsumeUnboundConversion()
|
D | parser.h | 79 UnboundConversion* conv, int* next_arg); 128 int next_arg = 0; in ParseFormatString() local 145 if (ABSL_PREDICT_FALSE(next_arg < 0)) { in ParseFormatString() 159 conv.arg_position = ++next_arg; in ParseFormatString() 166 p = ConsumeUnboundConversion(percent + 1, end, &conv, &next_arg); in ParseFormatString()
|
D | bind_test.cc | 29 int next_arg; in TEST_F() member
|
/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/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/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/spirv-tools/tools/opt/ |
D | opt.cpp | 628 const char* next_arg = (*argi + 1 < argc) ? argv[*argi + 1] : nullptr; in CanonicalizeFlag() local 642 if (next_arg) { in CanonicalizeFlag() 643 canonical_arg << "=" << next_arg; in CanonicalizeFlag()
|
/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/mbedtls/tests/suites/ |
D | host_test.function | 515 const char *next_arg; 573 next_arg = argv[arg_index]; 575 if( strcmp( next_arg, "--verbose" ) == 0 || 576 strcmp( next_arg, "-v" ) == 0 ) 580 else if( strcmp(next_arg, "--help" ) == 0 || 581 strcmp(next_arg, "-h" ) == 0 )
|
/third_party/boost/boost/date_time/ |
D | time_facet.hpp | 281 OutItrT put(OutItrT next_arg, in put() argument 287 return this->do_put_special(next_arg, ios_arg, fill_arg, in put() 427 return this->do_put_tm(next_arg, ios_arg, fill_arg, in put() 432 OutItrT put(OutItrT next_arg, in put() argument 438 return this->do_put_special(next_arg, ios_arg, fill_arg, in put() 536 return this->do_put_tm(next_arg, ios_arg, fill_arg, in put()
|
/third_party/e2fsprogs/misc/ |
D | fsck.c | 1183 goto next_arg; in PRS() 1191 goto next_arg; in PRS() 1228 goto next_arg; in PRS() 1240 next_arg: in PRS()
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitNativeMIPS_common.c | 933 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache() argument 935 SLJIT_ASSERT((arg & SLJIT_MEM) && (next_arg & SLJIT_MEM)); in can_cache() 941 …if (argw && argw == next_argw && (arg == next_arg || (arg & OFFS_REG_MASK) == (next_arg & OFFS_REG… in can_cache() 946 if (arg == next_arg) { in can_cache() 956 …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 961 if (!(next_arg & SLJIT_MEM)) { in getput_arg() 962 next_arg = 0; in getput_arg() 985 if (arg == next_arg && argw == (next_argw & 0x3)) { in getput_arg() 1002 if (arg == next_arg && argw == (next_argw & 0x3)) { in getput_arg() 1034 if (arg == next_arg && next_argw - argw <= SIMM_MAX && next_argw - argw >= SIMM_MIN) { in getput_arg()
|
D | sljitNativeSPARC_common.c | 615 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache() argument 617 SLJIT_ASSERT((arg & SLJIT_MEM) && (next_arg & SLJIT_MEM)); in can_cache() 624 if ((arg & OFFS_REG_MASK) == (next_arg & OFFS_REG_MASK) && argw == next_argw) in can_cache() 635 …sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_ar… in getput_arg() argument 641 if (!(next_arg & SLJIT_MEM)) { in getput_arg() 642 next_arg = 0; in getput_arg() 654 if ((arg & OFFS_REG_MASK) == (next_arg & OFFS_REG_MASK) && argw == (next_argw & 0x3)) { in getput_arg()
|
/third_party/python/Lib/ |
D | optparse.py | 1473 (opt, next_arg) = arg.split("=", 1) 1474 rargs.insert(0, next_arg)
|
/third_party/libffi/ |
D | ChangeLog.old | 2074 * src/powerpc/ffi_darwin.c (ffi_prep_args): Increment next_arg and 4977 * src/powerpc/ffi.c (ffi_prep_args64): Correct next_arg calc for
|