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

  /dalvik/vm/native/
InternalNativePriv.h 68 void dvmFreeDexOrJar(void* vptr);
dalvik_system_DexFile.c 38 void dvmFreeDexOrJar(void* vptr)
40 DexOrJar* pDexOrJar = (DexOrJar*) vptr;
  /external/webkit/JavaScriptCore/runtime/
JSGlobalData.cpp 86 JSGlobalData::jsArrayVPtr = jsArray->vptr();
91 JSGlobalData::jsByteArrayVPtr = jsByteArray->vptr();
96 JSGlobalData::jsStringVPtr = jsString->vptr();
101 JSGlobalData::jsFunctionVPtr = jsFunction->vptr();
JSArray.h 139 return v.isCell() && v.asCell()->vptr() == globalData->jsArrayVPtr;
141 inline bool isJSArray(JSGlobalData* globalData, JSCell* cell) { return cell->vptr() == globalData->jsArrayVPtr; }
174 if (cell->vptr() == m_jsArrayVPtr) {
JSCell.h 113 void* vptr() { return *reinterpret_cast<void**>(this); } function in class:JSC::JSCell
114 void setVPtr(void* vptr) { *reinterpret_cast<void**>(this) = vptr; }
JSByteArray.cpp 49 ASSERT(vptr() == JSGlobalData::jsByteArrayVPtr);
JSByteArray.h 119 inline bool isJSByteArray(JSGlobalData* globalData, JSValue v) { return v.isCell() && v.asCell()->vptr() == globalData->jsByteArrayVPtr; }
JSString.h 268 ASSERT(vptr() == JSGlobalData::jsStringVPtr);
379 // When an object is created from a different DLL, MSVC changes vptr to a "local" one right after invoking a constructor,
381 // This breaks isJSString(), and we don't need that hack anyway, so we change vptr back to primary one.
520 inline bool isJSString(JSGlobalData* globalData, JSValue v) { return v.isCell() && v.asCell()->vptr() == globalData->jsStringVPtr; }
JSFunction.cpp 84 ASSERT(vptr() == JSGlobalData::jsFunctionVPtr);
JSArray.cpp 191 ASSERT(vptr() == JSGlobalData::jsArrayVPtr);
    [all...]
JSObject.h 44 if (value.isCell() && (value.asCell()->vptr() == globalData.jsFunctionVPtr))
  /external/libvpx/vp8/common/
reconinter.c 217 unsigned char *uptr, *vptr; local
228 vptr = x->pre.v_buffer + offset;
233 x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, 8);
238 RECON_INVOKE(&x->rtcd->recon, copy8x8)(vptr, pre_stride, vpred_ptr, 8);
327 unsigned char *uptr, *vptr; local
353 vptr = x->pre.v_buffer + offset;
358 x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, 8);
363 RECON_INVOKE(&x->rtcd->recon, copy8x8)(vptr, pre_stride, vpred_ptr, 8);
550 unsigned char *uptr, *vptr; local
578 vptr = x->pre.v_buffer + offset
    [all...]
  /external/libxml2/
uri.c 2233 xmlChar *bptr, *uptr, *vptr; local
    [all...]
  /external/libvpx/vp8/encoder/
temporal_filter.c 75 unsigned char *yptr, *uptr, *vptr; local
99 vptr = v_mb_ptr + offset;
105 x->subpixel_predict8x8(vptr, stride,
111 RECON_INVOKE(&x->rtcd->recon, copy8x8)(vptr, stride, &pred[320], 8);
rdopt.c 543 unsigned char *uptr, *vptr; local
561 vptr = x->e_mbd.pre.v_buffer + offset;
566 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
572 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 534 void* vptr; local
570 vptr = (void*)MbQ->mvL0; // for deref type-punned pointer
571 ptrQ = (int16*)vptr;
659 vptr = (void*)MbQ->mvL0;
660 ptrQ = (int16*)vptr;
    [all...]

Completed in 230 milliseconds