/external/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 …]
|
/external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/ |
D | ffi_linux64.c | 392 valp next_arg; in ffi_prep_args64() local 429 next_arg.ul = gpr_base.ul; in ffi_prep_args64() 438 *next_arg.ul++ = (unsigned long) (char *) ecif->rvalue; in ffi_prep_args64() 468 *next_arg.d = double_tmp; in ffi_prep_args64() 472 *next_arg.d = double_tmp; in ffi_prep_args64() 473 if (++next_arg.ul == gpr_end.ul) in ffi_prep_args64() 474 next_arg.ul = rest.ul; in ffi_prep_args64() 482 *next_arg.d = double_tmp; in ffi_prep_args64() 486 *next_arg.d = double_tmp; in ffi_prep_args64() 487 if (++next_arg.ul == gpr_end.ul) in ffi_prep_args64() [all …]
|
D | ffi_darwin.c | 124 unsigned long *next_arg = stack + LINKAGE_AREA_GPRS; /* 6 reserved positions. */ in ffi_prep_args() local 146 *next_arg++ = (unsigned long) (char *) ecif->rvalue; in ffi_prep_args() 161 *(float *)next_arg = *(float *) *p_argv; in ffi_prep_args() 163 *(double *)next_arg = double_tmp; in ffi_prep_args() 165 next_arg++; in ffi_prep_args() 175 *(double *)next_arg = double_tmp; in ffi_prep_args() 177 next_arg++; in ffi_prep_args() 180 next_arg += 2; in ffi_prep_args() 196 *(long double *) next_arg = *(long double *) *p_argv; in ffi_prep_args() 197 next_arg += 2; in ffi_prep_args() [all …]
|
D | ffi_sysv.c | 384 valp next_arg; in ffi_prep_args_SYSV() local 417 next_arg.u = stack + 2; in ffi_prep_args_SYSV() 424 FFI_ASSERT (copy_space.c >= next_arg.c); in ffi_prep_args_SYSV() 457 next_arg.u++; in ffi_prep_args_SYSV() 459 *next_arg.d = double_tmp; in ffi_prep_args_SYSV() 460 next_arg.u += 2; in ffi_prep_args_SYSV() 462 *next_arg.d = double_tmp; in ffi_prep_args_SYSV() 463 next_arg.u += 2; in ffi_prep_args_SYSV() 485 next_arg.u++; in ffi_prep_args_SYSV() 487 *next_arg.d = double_tmp; in ffi_prep_args_SYSV() [all …]
|
/external/libtextclassifier/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()
|
/external/openscreen/third_party/abseil/src/absl/strings/internal/str_format/ |
D | parser.cc | 95 UnboundConversion *conv, int *next_arg) { in ConsumeConversion() argument 173 if (ABSL_PREDICT_FALSE(*next_arg != 0)) return nullptr; in ConsumeConversion() 175 *next_arg = -1; in ConsumeConversion() 178 return ConsumeConversion<true>(original_pos, end, conv, next_arg); in ConsumeConversion() 189 conv->width.set_from_arg(++*next_arg); in ConsumeConversion() 206 conv->precision.set_from_arg(++*next_arg); in ConsumeConversion() 240 if (!is_positional) conv->arg_position = ++*next_arg; in ConsumeConversion() 273 UnboundConversion *conv, int *next_arg) { in ConsumeUnboundConversion() argument 274 if (*next_arg < 0) return ConsumeConversion<true>(p, end, conv, next_arg); in ConsumeUnboundConversion() 275 return ConsumeConversion<false>(p, end, conv, next_arg); in ConsumeUnboundConversion()
|
D | parser.h | 93 UnboundConversion* conv, int* next_arg); 142 int next_arg = 0; in ParseFormatString() local 159 if (ABSL_PREDICT_FALSE(next_arg < 0)) { in ParseFormatString() 173 conv.arg_position = ++next_arg; in ParseFormatString() 180 p = ConsumeUnboundConversion(percent + 1, end, &conv, &next_arg); in ParseFormatString()
|
/external/webrtc/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()
|
/external/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()
|
/external/rust/crates/grpcio-sys/grpc/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()
|
/external/angle/third_party/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()
|
/external/llvm-project/llvm/utils/ |
D | add_argument_names.py | 34 next_arg = s.find(',') 35 if next_arg == -1: 38 res += s[:next_arg+1] 39 s = s[next_arg+1:]
|
/external/python/cpython2/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 …]
|
/external/python/cpython3/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 …]
|
/external/python/asn1crypto/dev/ |
D | _task.py | 117 next_arg = False 121 next_arg = True 124 if next_arg:
|
/external/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()
|
/external/swiftshader/third_party/SPIRV-Tools/tools/opt/ |
D | opt.cpp | 624 const char* next_arg = (*argi + 1 < argc) ? argv[*argi + 1] : nullptr; in CanonicalizeFlag() local 638 if (next_arg) { in CanonicalizeFlag() 639 canonical_arg << "=" << next_arg; in CanonicalizeFlag()
|
/external/deqp-deps/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()
|