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

  /external/libvpx/libvpx/examples/
decode_with_drops.c 47 // `n`, `m`, and `is_range` variables:
82 int is_range = 0; local
97 is_range = (*nptr == '-');
123 skip = (is_range && frame_cnt >= n && frame_cnt <= m) ||
124 (!is_range && m - (frame_cnt - 1) % m <= n);
  /art/runtime/
method_handles.h 135 template <bool is_range>
148 const uint32_t next = (is_range ? first_src_reg_ + arg_index_ : arg_[arg_index_]);
155 const uint32_t next = (is_range ? first_src_reg_ + arg_index_ : arg_[arg_index_]);
162 const uint32_t next = (is_range ? first_src_reg_ + arg_index_ : arg_[arg_index_]);
204 template <bool is_range>
method_handles.cc 302 template <bool is_range>
312 size_t src_reg = is_range ? (first_arg + i) : args[i];
327 template <bool is_range>
347 ShadowFrameGetter<is_range> getter(first_arg, args, caller_frame);
350 return PerformConversions<ShadowFrameGetter<is_range>, ShadowFrameSetter>(self,
418 template <bool is_range>
468 CopyArgumentsFromCallerFrame<is_range>(shadow_frame,
484 size_t first_arg_register = (is_range) ? first_arg : args[0];
501 if (!ConvertAndCopyArgumentsFromCallerFrame<is_range>(self,
534 size_t first_callee_register = is_range ? (first_arg) : args[0]
    [all...]
dex_to_dex_decompiler.cc 48 void DecompileInvokeVirtual(Instruction* inst, Instruction::Code new_opcode, bool is_range) {
51 if (is_range) {
  /art/runtime/interpreter/
interpreter_common.h 111 template<bool is_range, bool do_assignability_check>
162 template<InvokeType type, bool is_range, bool do_access_check>
168 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
169 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
199 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
205 template<bool is_range>
213 template<bool is_range>
222 template<bool is_range>
226 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
234 const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c()
    [all...]
interpreter_common.cc 456 template <bool is_range, bool do_assignability_check>
465 template <bool is_range>
545 template<bool is_range>
553 const uint32_t vRegC = (is_range) ? inst->VRegC_4rcc() : inst->VRegC_45cc();
554 const int invoke_method_idx = (is_range) ? inst->VRegB_4rcc() : inst->VRegB_45cc();
577 const uint32_t callsite_proto_id = (is_range) ? inst->VRegH_4rcc() : inst->VRegH_45cc();
604 if (is_range) {
608 return DoInvokePolymorphic<is_range>(self,
622 return DoInvokePolymorphic<is_range>(self,
    [all...]
  /art/compiler/optimizing/
instruction_builder.h 183 bool is_range,
194 bool is_range,
202 bool is_range,
264 bool is_range,
273 bool is_range,
282 bool is_range,
instruction_builder.cc     [all...]
  /art/runtime/verifier/
method_verifier.h 209 bool is_range, bool allow_failure)
540 void VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range)
612 * The method reference is in vBBBB. The "is_range" parameter determines
622 ArtMethod* VerifyInvocationArgs(const Instruction* inst, MethodType method_type, bool is_range)
628 bool is_range)
633 MethodType method_type, bool is_range,
637 ArtMethod* VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range)
    [all...]
method_verifier.cc 727 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK); local
728 return GetQuickInvokedMethod(inst, register_line, is_range, false);
2894 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE || local
2930 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE); local
3008 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE); local
3031 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE); local
3086 bool is_range = (inst->Opcode() == Instruction::INVOKE_POLYMORPHIC_RANGE); local
3118 bool is_range = (inst->Opcode() == Instruction::INVOKE_CUSTOM_RANGE); local
3444 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK); local
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 99 Instruction::Code new_opcode, bool is_range);
286 Instruction::Code new_opcode, bool is_range) {
290 uint32_t method_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
321 if (is_range) {
  /art/runtime/mirror/
emulated_stack_frame.h 38 template <bool is_range>
emulated_stack_frame.cc 142 template <bool is_range>
188 ShadowFrameGetter<is_range> getter(first_src_reg, arg, caller_frame);
190 if (!PerformConversions<ShadowFrameGetter<is_range>, EmulatedStackFrameAccessor>(
  /system/bt/stack/sdp/
sdp_utils.cc 786 bool is_range = false; local
790 if (is_range == false) {
803 is_range = true;
805 is_range = false;
807 is_range = false;
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 1100 bool is_range; local
2629 const bool is_range = (inst->Opcode() == Instruction::INVOKE_POLYMORPHIC_RANGE); local
    [all...]
  /external/libmtp/src/
libmtp.h.in 596 int is_range;
    [all...]
libmtp.c     [all...]

Completed in 378 milliseconds