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

  /art/test/1945-proxy-method-arguments/
get_args.cc 83 extern "C" StackReference<mirror::Object>* artQuickGetProxyReferenceArgumentAt(size_t arg_pos,
87 jobject GetProxyReferenceArgument(size_t arg_pos, size_t proxy_method_frame_depth) {
99 artQuickGetProxyReferenceArgumentAt(arg_pos, quick_frame);
107 JNIEnv* env ATTRIBUTE_UNUSED, jobject thiz ATTRIBUTE_UNUSED, int arg_pos, int frame_depth) {
108 return GetProxyReferenceArgument(arg_pos, frame_depth);
  /art/test/1945-proxy-method-arguments/src/
Main.java 75 int arg_pos = i + 1; local
76 String arg = (String) getProxyMethodArgument(arg_pos);
77 System.out.println(" arg" + arg_pos + ": " + arg.getClass().getName() + " \"" + arg + "\"");
90 int arg_pos = i + 1; local
91 String arg = (String) getProxyMethodArgument(arg_pos);
92 System.out.println(" arg" + arg_pos + ": " + arg.getClass().getName() + " \"" + arg + "\"");
97 // Get reference argument at position `arg_pos` in proxy frame.
100 private Object getProxyMethodArgument(int arg_pos) {
114 return getArgument(arg_pos, proxy_method_frame_depth);
117 // Get reference argument at position `arg_pos` in frame at depth `frame_depth`
    [all...]
  /art/compiler/jni/quick/
calling_convention.cc 231 unsigned int arg_pos = GetIteratorPositionWithinShorty(); local
232 return arg_pos < NumArgs();
263 int arg_pos = GetIteratorPositionWithinShorty(); local
264 return IsParamAReference(arg_pos);
285 int arg_pos = GetIteratorPositionWithinShorty(); local
286 return IsParamAFloatOrDouble(arg_pos);
299 int arg_pos = GetIteratorPositionWithinShorty(); local
300 return IsParamADouble(arg_pos);
313 int arg_pos = GetIteratorPositionWithinShorty(); local
314 return IsParamALong(arg_pos);
332 int arg_pos = GetIteratorPositionWithinShorty(); local
    [all...]
  /art/runtime/interpreter/
interpreter.cc 425 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) {
430 reinterpret_cast<StackReference<mirror::Object>*>(&args[arg_pos])->AsMirrorPtr();
435 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos];
438 arg_pos++;
442 shadow_frame->SetVReg(cur_reg, args[arg_pos]);
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]
  /external/tensorflow/tensorflow/compiler/jit/
encapsulate_subgraphs_pass.cc     [all...]
  /tools/repohooks/tools/
checkpatch.pl     [all...]

Completed in 344 milliseconds