HomeSort by relevance Sort by last modified time
    Searched refs:mh (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/aac/libFDK/src/arm/
fft_rad2_arm.cpp 146 INT mh = 1 << 1; local
155 mh <<= 1;
167 FIXP_DBL *xt2 = xt1 + (mh<<1);
170 FIXP_DBL *xt2 = xt1 + (mh<<1);
187 xt1 += mh;
188 xt2 += mh;
203 xt1 = xt2 + mh;
204 } while ((r=r-(mh<<1)) != 0);
206 for(j=4; j<mh; j+=4)
217 FIXP_DBL *xt2 = xt1 + (mh<<1)
    [all...]
  /art/runtime/interpreter/
interpreter.h 45 extern JValue EnterInterpreterFromStub(Thread* self, MethodHelper& mh,
50 extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh,
57 extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
interpreter.cc 326 JValue ExecuteGotoImpl(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item,
333 JValue ExecuteGotoImpl<true, false>(Thread* self, MethodHelper& mh,
337 JValue ExecuteGotoImpl<false, false>(Thread* self, MethodHelper& mh,
341 JValue ExecuteGotoImpl<true, true>(Thread* self, MethodHelper& mh,
345 JValue ExecuteGotoImpl<false, true>(Thread* self, MethodHelper& mh,
350 static JValue Execute(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item,
354 static inline JValue Execute(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item,
356 DCHECK(shadow_frame.GetMethod() == mh.GetMethod() ||
367 return ExecuteSwitchImpl<false, true>(self, mh, code_item, shadow_frame, result_register);
369 return ExecuteSwitchImpl<false, false>(self, mh, code_item, shadow_frame, result_register)
    [all...]
interpreter_common.h 70 extern JValue ExecuteSwitchImpl(Thread* self, MethodHelper& mh,
75 extern JValue ExecuteGotoImpl(Thread* self, MethodHelper& mh,
187 static inline String* ResolveString(Thread* self, MethodHelper& mh, uint32_t string_idx)
200 return mh.ResolveString(string_idx);
342 void UnexpectedOpcode(const Instruction* inst, MethodHelper& mh)
347 const uint32_t dex_pc, MethodHelper& mh)
355 << inst->DumpString(mh.GetMethod()->GetDexFile()) << "\n";
interpreter_goto_table_impl.cc 28 // - "mh": the current MethodHelper.
38 TraceExecution(shadow_frame, inst, dex_pc, mh); \
113 JValue ExecuteGotoImpl(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item,
339 MethodHelper mh(hs.NewHandle(shadow_frame.GetMethod()));
340 Class* return_type = mh.GetReturnType();
437 String* s = ResolveString(self, mh, inst->VRegB_21c());
448 String* s = ResolveString(self, mh, inst->VRegB_31c());
    [all...]
interpreter_common.cc 488 void UnexpectedOpcode(const Instruction* inst, MethodHelper& mh) {
489 LOG(FATAL) << "Unexpected instruction: " << inst->DumpString(mh.GetMethod()->GetDexFile());
493 static void UnstartedRuntimeInvoke(Thread* self, MethodHelper& mh,
546 MethodHelper mh(hs.NewHandle(method));
585 Class* arg_type = mh.GetClassFromTypeIdx(params->GetTypeItem(shorty_pos).type_idx_);
653 (method->GetEntryPointFromInterpreter())(self, mh, code_item, new_shadow_frame, result);
655 UnstartedRuntimeInvoke(self, mh, code_item, new_shadow_frame, result, first_dest_reg);
    [all...]
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.h 36 void (*pInterpreterToInterpreterBridge)(Thread* self, MethodHelper& mh,
39 void (*pInterpreterToCompiledCodeBridge)(Thread* self, MethodHelper& mh,
interpreter_entrypoints.cc 28 extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
52 InvokeWithShadowFrame(self, shadow_frame, arg_offset, mh, result);
56 result, mh.GetShorty());
  /external/aac/libFDK/src/
fft_rad2.cpp 158 INT mh=(m>>1); local
173 INT t2 = t1 + (mh<<1);
189 t1 += mh;
190 t2 = t1+(mh<<1);
206 for(j=1; j<mh/4; ++j)
215 INT t2 = t1 + (mh<<1);
229 t1 += mh;
230 t2 = t1+(mh<<1);
243 /* Same as above but for t1,t2 with j>mh/4 and thus cs swapped */
244 t1 = (r+mh/2-j)<<1
363 const INT mh=(m>>1); local
    [all...]
  /external/openssl/crypto/
mem_dbg.c 139 static LHASH_OF(MEM) *mh=NULL; /* hash-table of memory requests
505 if (mh == NULL)
507 if ((mh=lh_MEM_new()) == NULL)
551 if ((mm=lh_MEM_insert(mh, m)) != NULL)
579 if (is_MemCheck_on() && (mh != NULL))
584 mp=lh_MEM_delete(mh,&m);
634 mp=lh_MEM_delete(mh,&m);
645 (void)lh_MEM_insert(mh,mp);
760 if (mh == NULL && amih == NULL)
768 if (mh != NULL
    [all...]
  /external/libcxxabi/src/Unwind/
libunwind_ext.h 30 unw_word_t mh));
UnwindCursor.hpp 42 static pint_t findFDE(pint_t mh, pint_t pc);
43 static void add(pint_t mh, pint_t ip_start, pint_t ip_end, pint_t fde);
44 static void removeAllIn(pint_t mh);
47 unw_word_t fde, unw_word_t mh));
52 pint_t mh; member in struct:libunwind::DwarfFDECache::entry
62 static void dyldUnloadHook(const struct mach_header *mh, intptr_t slide);
96 typename A::pint_t DwarfFDECache<A>::findFDE(pint_t mh, pint_t pc) {
100 if ((mh == p->mh) || (mh == 0))
    [all...]
AddressSpace.hpp 275 const struct mach_header* mh; member in struct:libunwind::dyld_unwind_sections
294 const mach_header *mh = (const mach_header *)dlinfo.dli_saddr; local
298 const uint8_t *p = getsectiondata(mh, "__TEXT", "__eh_frame", &size);
303 info->mh = mh;
319 info.dso_base = (uintptr_t)dyldInfo.mh;
  /art/runtime/
native_bridge_art_interface.cc 32 MethodHelper mh(scope.NewHandle(m));
33 return mh.GetShorty();
reflection.cc 223 mirror::ObjectArray<mirror::Object>* args, MethodHelper& mh)
225 const DexFile::TypeList* classes = mh.GetMethod()->GetParameterTypeList();
234 mh.GetClassFromTypeIdx(classes->GetTypeItem(args_offset).type_idx_);
238 PrettyMethod(mh.GetMethod(), false).c_str(),
266 PrettyMethod(mh.GetMethod(), false).c_str(), \
367 MethodHelper mh(h_m);
370 mirror::Class* param_type = mh.GetClassFromTypeIdx(type_idx);
504 MethodHelper& mh, JValue* result) {
513 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength())
    [all...]
reflection.h 67 MethodHelper& mh, JValue* result)
  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
fft4g.c 468 int j, k, l, m, mh, nw, nc;
488 mh = m >> 1;
489 for (j = 1; j < mh; j++) {
500 t[mh] = a[mh] + a[n - mh];
501 a[mh] -= a[n - mh];
517 m = mh;
536 mh = m >> 1
    [all...]
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 121 static size_t ComputeArgsInRegs(MethodHelper& mh) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
126 size_t num_params = mh.NumArgs();
128 args_in_regs = args_in_regs + (mh.IsParamALongOrDouble(i) ? 2 : 1);
199 MethodHelper mh(hs.NewHandle(method));
206 BuildPortableShadowFrameVisitor shadow_frame_builder(mh, sp,
225 JValue result = interpreter::EnterInterpreterFromStub(self, mh, code_item, *shadow_frame);
  /art/runtime/mirror/
object_test.cc 492 MethodHelper mh(hs.NewHandle(m1_1));
494 EXPECT_TRUE(mh.HasSameNameAndSignature(&mh2));
495 EXPECT_TRUE(mh2.HasSameNameAndSignature(&mh));
497 mh.ChangeMethod(m2_1);
499 EXPECT_TRUE(mh.HasSameNameAndSignature(&mh2));
500 EXPECT_TRUE(mh2.HasSameNameAndSignature(&mh));
502 mh.ChangeMethod(m3_1);
504 EXPECT_TRUE(mh.HasSameNameAndSignature(&mh2));
505 EXPECT_TRUE(mh2.HasSameNameAndSignature(&mh));
507 mh.ChangeMethod(m4_1)
    [all...]
art_method.cc 124 MethodHelper mh(hs.NewHandle(this));
131 if (mh.HasSameNameAndSignature(&interface_mh)) {
214 MethodHelper mh(h_this);
234 Class* iter_exception_type = mh.GetClassFromTypeIdx(iter_type_idx);
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 28 extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh,
31 extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
  /art/runtime/arch/arm64/
entrypoints_init_arm64.cc 27 extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh,
30 extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 29 extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh,
32 extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
  /art/runtime/arch/x86/
entrypoints_init_x86.cc 27 extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh,
30 extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 28 extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh,
31 extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,

Completed in 438 milliseconds

1 2 3