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

1 2

  /dalvik/libdex/
DexCatch.cpp 26 u4 dexGetFirstHandlerOffset(const DexCode* pCode) {
27 if (pCode->triesSize == 0) {
31 const u1* baseData = dexGetCatchHandlerData(pCode);
40 u4 dexGetHandlersSize(const DexCode* pCode) {
41 if (pCode->triesSize == 0) {
45 const u1* data = dexGetCatchHandlerData(pCode);
86 const DexCode* pCode) {
89 return (u4) (pIterator->pEncodedData - dexGetCatchHandlerData(pCode));
DexCatch.h 38 u4 dexGetFirstHandlerOffset(const DexCode* pCode);
41 u4 dexGetHandlersSize(const DexCode* pCode);
83 const DexCode* pCode, u4 offset)
86 dexGetCatchHandlerData(pCode) + offset);
111 const DexCode* pCode);
121 const DexCode* pCode, u4 address) {
122 u2 triesSize = pCode->triesSize;
131 const DexTry* tries = dexGetTries(pCode);
148 offset = dexFindCatchHandlerOffset0(triesSize, dexGetTries(pCode),
157 dexCatchIteratorInit(pIterator, pCode, offset)
    [all...]
DexDebugInfo.cpp 143 const DexCode* pCode,
153 u4 insnsSize = pCode->insnsSize;
156 u2 argReg = pCode->registersSize - pCode->insSize;
166 assert(pCode->insSize == (dexProtoComputeArgsSize(&proto) + 1));
173 assert(pCode->insSize == dexProtoComputeArgsSize(&proto));
184 if ((argReg >= pCode->registersSize) || (descriptor == NULL)) {
230 if (reg > pCode->registersSize) {
253 if (reg > pCode->registersSize) {
264 if (reg > pCode->registersSize)
    [all...]
DexFile.cpp 493 size_t dexGetDexCodeSize(const DexCode* pCode)
503 if (pCode->triesSize != 0) {
504 handlersSize = dexGetHandlersSize(pCode);
505 offset = dexGetFirstHandlerOffset(pCode);
513 dexCatchIteratorInit(&iterator, pCode, offset);
514 offset = dexCatchIteratorGetEndOffset(&iterator, pCode);
517 const u1* handlerData = dexGetCatchHandlerData(pCode);
519 //ALOGD("+++ pCode=%p handlerData=%p last offset=%d",
520 // pCode, handlerData, offset);
523 return (handlerData - (u1*) pCode) + offset
    [all...]
DexFile.h 794 size_t dexGetDexCodeSize(const DexCode* pCode);
797 DEX_INLINE const DexTry* dexGetTries(const DexCode* pCode) {
798 const u2* insnsEnd = &pCode->insns[pCode->insnsSize];
809 DEX_INLINE const u1* dexGetCatchHandlerData(const DexCode* pCode) {
810 const DexTry* pTries = dexGetTries(pCode);
811 return (const u1*) &pTries[pCode->triesSize];
816 const DexCode* pCode)
818 if (pCode->debugInfoOff == 0) {
821 return pDexFile->baseAddr + pCode->debugInfoOff
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
IdenticalCodeFolding.h 40 FoldingCandidate(LDSection* pCode, LDSection* pReloc, Input* pInput)
41 : sect(pCode), reloc_sect(pReloc), obj(pInput) {}
  /dalvik/dexdump/
DexDump.cpp 568 void dumpCatches(DexFile* pDexFile, const DexCode* pCode)
570 u4 triesSize = pCode->triesSize;
579 const DexTry* pTries = dexGetTries(pCode);
590 dexCatchIteratorInit(&iterator, pCode, pTry->handlerOff);
618 void dumpPositions(DexFile* pDexFile, const DexCode* pCode,
627 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx,
643 void dumpLocals(DexFile* pDexFile, const DexCode* pCode,
653 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx,
850 void dumpInstruction(DexFile* pDexFile, const DexCode* pCode, int insnIdx,
855 const u2* insns = pCode->insns
    [all...]
  /art/dexdump/
dexdump.cc 446 static void dumpCatches(const DexFile* pDexFile, const DexFile::CodeItem* pCode) {
447 const u4 triesSize = pCode->tries_size_;
458 const DexFile::TryItem* pTry = pDexFile->GetTryItems(*pCode, i);
462 for (CatchHandlerIterator it(*pCode, *pTry); it.HasNext(); it.Next()) {
616 const DexFile::CodeItem* pCode,
623 const u2* insns = pCode->insns_;
855 const DexFile::CodeItem* pCode, u4 codeOffset) {
869 const u2* insns = pCode->insns_;
870 for (u4 insnIdx = 0; insnIdx < pCode->insns_size_in_code_units_;) {
877 dumpInstruction(pDexFile, pCode, codeOffset, insnIdx, insnWidth, instruction)
    [all...]
  /art/dexlist/
dexlist.cc 96 const DexFile::CodeItem* pCode, u4 codeOffset) {
98 if (pCode == nullptr || codeOffset == 0) {
124 pDexFile->DecodeDebugPositionInfo(pCode, positionsCb, &firstLine);
132 insnsOff, pCode->insns_size_in_code_units_ * 2,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdutil.h 49 WSDXML_NAME *pCode,
bits.h 208 virtual HRESULT WINAPI GetError(BG_ERROR_CONTEXT *pContext,HRESULT *pCode) = 0;
220 HRESULT (WINAPI *GetError)(IBackgroundCopyError *This,BG_ERROR_CONTEXT *pContext,HRESULT *pCode);
234 #define IBackgroundCopyError_GetError(This,pContext,pCode) (This)->lpVtbl->GetError(This,pContext,pCode)
241 HRESULT WINAPI IBackgroundCopyError_GetError_Proxy(IBackgroundCopyError *This,BG_ERROR_CONTEXT *pContext,HRESULT *pCode);
    [all...]
  /external/vulkan-validation-layers/tests/
vkrenderframework.cpp     [all...]
vktestbinding.h 905 info.pCode = code;
    [all...]
layer_validation_tests.cpp     [all...]
  /external/skia/src/gpu/vk/
GrVkProgramBuilder.cpp 132 moduleCreateInfo.pCode = (const uint32_t*)shaderc_result_get_bytes(result);
  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
tracer.c 711 PyObject * pCode = frame->f_code->co_code;
714 if (lasti < MyBytes_GET_SIZE(pCode)) {
715 bytecode = MyBytes_AS_STRING(pCode)[lasti];
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Smoke.cpp 230 sh_info.pCode = Smoke_push_constant_vert;
234 sh_info.pCode = Smoke_vert;
240 sh_info.pCode = Smoke_frag;
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineTimestampTests.cpp 342 deUint32* pCode = (deUint32*)m_context.getBinaryCollection().get(source_name).getBinary();
351 pCode, // const deUint32* pCode;
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkStructTypes.inl 557 const deUint32* pCode;
    [all...]
vkStrUtilImpl.inl     [all...]
  /external/vulkan-validation-layers/demos/
cube.c     [all...]
tri.c     [all...]
  /external/skia/third_party/vulkan/
vulkan.h     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.h     [all...]
  /frameworks/native/vulkan/include/vulkan/
vulkan.h     [all...]

Completed in 235 milliseconds

1 2