• Home
  • Raw
  • Download

Lines Matching refs:current_arg

239   const uint32_t* current_arg = args_;  in ConvertFpArgs()  local
252 current_arg = AlignUp(current_arg, sizeof(int64_t)); in ConvertFpArgs()
253 ++current_arg; // Skip the low word, let the common code skip the high word. in ConvertFpArgs()
258 float arg = bit_cast<float>(*current_arg); in ConvertFpArgs()
265 current_arg = AlignUp(current_arg, sizeof(int64_t)); in ConvertFpArgs()
267 static_cast<uint64_t>(current_arg[0]) + (static_cast<uint64_t>(current_arg[1]) << 32)); in ConvertFpArgs()
270 ++current_arg; // Skip the low word, let the common code skip the high word. in ConvertFpArgs()
331 ++current_arg; in ConvertFpArgs()
342 const uint32_t* current_arg = args_; in CalculateLengthWithFlag() local
348 hs_.NewHandle(reinterpret_cast32<mirror::String*>(*current_arg)); in CalculateLengthWithFlag()
358 length += (*current_arg != 0u) ? kTrueLength : kFalseLength; in CalculateLengthWithFlag()
364 mirror::String::IsASCII(reinterpret_cast<const uint16_t*>(current_arg)[0]); in CalculateLengthWithFlag()
368 length += Int64Length(static_cast<int32_t>(*current_arg)); in CalculateLengthWithFlag()
372 current_arg = AlignUp(current_arg, sizeof(int64_t)); in CalculateLengthWithFlag()
373 length += Int64Length(*reinterpret_cast<const int64_t*>(current_arg)); in CalculateLengthWithFlag()
374 ++current_arg; // Skip the low word, let the common code skip the high word. in CalculateLengthWithFlag()
378 current_arg = AlignUp(current_arg, sizeof(int64_t)); in CalculateLengthWithFlag()
379 ++current_arg; // Skip the low word, let the common code skip the high word. in CalculateLengthWithFlag()
398 ++current_arg; in CalculateLengthWithFlag()
428 const uint32_t* current_arg = args_; in StoreData() local
444 if (*current_arg != 0u) { in StoreData()
453 *data = *reinterpret_cast<const CharType*>(current_arg); in StoreData()
458 data = AppendInt64(new_string, data, static_cast<int32_t>(*current_arg)); in StoreData()
462 current_arg = AlignUp(current_arg, sizeof(int64_t)); in StoreData()
463 data = AppendInt64(new_string, data, *reinterpret_cast<const int64_t*>(current_arg)); in StoreData()
464 ++current_arg; // Skip the low word, let the common code skip the high word. in StoreData()
468 current_arg = AlignUp(current_arg, sizeof(int64_t)); in StoreData()
469 ++current_arg; // Skip the low word, let the common code skip the high word. in StoreData()
487 ++current_arg; in StoreData()