HomeSort by relevance Sort by last modified time
    Searched refs:arg_offset (Results 1 - 15 of 15) sorted by null

  /art/runtime/interpreter/
unstarted_runtime.cc 89 size_t arg_offset,
91 uint32_t int_value = static_cast<uint32_t>(shadow_frame->GetVReg(arg_offset));
112 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
113 CharacterLowerUpper(self, shadow_frame, result, arg_offset, true);
117 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
118 CharacterLowerUpper(self, shadow_frame, result, arg_offset, false);
168 static mirror::String* GetClassName(Thread* self, ShadowFrame* shadow_frame, size_t arg_offset)
170 mirror::Object* param = shadow_frame->GetVRegReference(arg_offset);
181 size_t arg_offset,
184 mirror::String* class_name = GetClassName(self, shadow_frame, arg_offset);
    [all...]
unstarted_runtime.h 54 size_t arg_offset)
70 size_t arg_offset) \
95 size_t arg_offset,
interpreter_common.cc 478 uint16_t arg_offset,
501 // Basic checks for the arg_offset. If there's no code item, the arg_offset must be 0. Otherwise,
502 // check that the arg_offset isn't greater than the number of registers. A stronger check is
507 DCHECK_EQ(0u, arg_offset) << method->PrettyMethod();
509 DCHECK_LE(arg_offset, shadow_frame->NumberOfVRegs());
516 method->Invoke(self, shadow_frame->GetVRegArgs(arg_offset),
517 (shadow_frame->NumberOfVRegs() - arg_offset) * sizeof(uint32_t),
1046 size_t arg_offset = 0; local
    [all...]
interpreter.cc 278 uint16_t arg_offset = code_item->registers_size_ - code_item->ins_size_; local
279 ArtInterpreterToCompiledCodeBridge(self, nullptr, &shadow_frame, arg_offset, &result);
interpreter_common.h 530 // The arg_offset is the offset to the first input register in the frame.
534 uint16_t arg_offset,
unstarted_runtime_test.cc 53 size_t arg_offset) \
55 interpreter::UnstartedRuntime::Unstarted ## Name(self, shadow_frame, result, arg_offset); \
    [all...]
  /external/python/cpython2/Lib/idlelib/
CallTips.py 157 arg_offset = 0
165 arg_offset = 1
171 arg_offset = 1
175 arg_offset = 1
181 real_args = fob.func_code.co_varnames[arg_offset:argcount]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
CallTips.py 138 arg_offset = 0
145 arg_offset = 1
150 arg_offset = 1
156 real_args = fob.func_code.co_varnames[arg_offset:argcount]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
CallTips.py 138 arg_offset = 0
145 arg_offset = 1
150 arg_offset = 1
156 real_args = fob.func_code.co_varnames[arg_offset:argcount]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 138 arg_offset = 0
145 arg_offset = 1
150 arg_offset = 1
156 real_args = fob.func_code.co_varnames[arg_offset:argcount]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 138 arg_offset = 0
145 arg_offset = 1
150 arg_offset = 1
156 real_args = fob.func_code.co_varnames[arg_offset:argcount]
  /external/python/cpython2/Modules/_ctypes/libffi/src/mips/
ffi.c 867 int argn, unsigned arg_offset, ffi_arg *ar,
880 arg_offset += o - offset;
882 argn += arg_offset / sizeof(ffi_arg);
883 arg_offset = arg_offset % sizeof(ffi_arg);
893 memcpy(tp, argp + arg_offset, elt_type->size);
896 arg_offset += elt_type->size;
898 argn += arg_offset / sizeof(ffi_arg);
899 arg_offset = arg_offset % sizeof(ffi_arg)
    [all...]
  /art/runtime/
common_dex_operations.h 40 uint16_t arg_offset,
reflection.cc 178 void BuildArgArrayFromFrame(ShadowFrame* shadow_frame, uint32_t arg_offset)
181 size_t cur_arg = arg_offset;
    [all...]
  /external/v8/src/
d8.cc 396 int arg_offset);
798 int arg_offset) {
799 if (args.Length() < arg_offset || !args[arg_offset]->IsNumber()) {
803 int index = args[arg_offset]
    [all...]

Completed in 1802 milliseconds