Searched refs:storage (Results 1 - 8 of 8) sorted by relevance

/dalvik/vm/
H A DBitVector.cpp37 assert(sizeof(bv->storage[0]) == 4); /* assuming 32-bit units */
45 bv->storage = (u4*) calloc(count, sizeof(u4));
57 free(pBits->storage);
74 if (pBits->storage[word] != 0xffffffff) {
78 bit = ffs(~(pBits->storage[word])) -1;
80 pBits->storage[word] |= 1 << bit;
91 pBits->storage = (u4*)realloc(pBits->storage,
93 memset(&pBits->storage[pBits->storageSize], 0x00,
114 pBits->storage
[all...]
H A DBitVector.h32 u4* storage; member in struct:BitVector
/dalvik/vm/jdwp/
H A DExpandBuf.cpp31 u1* storage; member in struct:ExpandBuf
39 * Allocate a JdwpBuf and some initial storage.
46 newBuf->storage = (u1*) malloc(kInitialStorage);
54 * Free a JdwpBuf and associated storage.
61 free(pBuf->storage);
70 return pBuf->storage;
96 newPtr = (u1*) realloc(pBuf->storage, pBuf->maxLen);
102 pBuf->storage = newPtr;
113 gapStart = pBuf->storage + pBuf->curLen;
126 *(pBuf->storage
[all...]
/dalvik/tools/hprof-conv/
H A DHprofConv.c99 unsigned char* storage; member in struct:__anon14
114 newBuf->storage = (unsigned char*) malloc(kInitialSize);
122 * Release the storage associated with an ExpandBuf.
127 free(pBuf->storage);
140 return pBuf->storage;
168 unsigned char* newStorage = realloc(pBuf->storage, newSize);
174 pBuf->storage = newStorage;
188 memcpy(pBuf->storage + pBuf->curLen, data, count);
209 pBuf->storage[pBuf->curLen++] = (unsigned char) ic;
228 actual = fread(pBuf->storage
[all...]
/dalvik/vm/compiler/
H A DUtility.cpp275 assert(sizeof(bv->storage[0]) == 4); /* assuming 32-bit units */
283 bv->storage = (u4*) dvmCompilerNew(count * sizeof(u4), true);
306 memcpy(newStorage, pBits->storage, pBits->storageSize * sizeof(u4));
309 pBits->storage = newStorage;
313 pBits->storage[num >> 5] |= 1 << (num & 0x1f);
333 pBits->storage[num >> 5] &= ~(1 << (num & 0x1f));
343 memset(pBits->storage, value, pBits->storageSize * (int)sizeof(u4));
H A DSSATransformation.cpp375 dest->storage[idx] |= src1->storage[idx] & ~src2->storage[idx];
/dalvik/vm/native/
H A Ddalvik_system_VMDebug.cpp433 int* storage = (int*)(void*)countArray->contents; local
445 memcpy(storage, gDvm.executedInstrCounts, length * sizeof(int));
/dalvik/vm/analysis/
H A DCodeVerify.cpp99 * A single large alloc, with all of the storage needed for RegisterLine
2989 * Returns an updated copy of "storage".
2991 static u1* assignLineStorage(u1* storage, RegisterLine* line, argument
2994 line->regTypes = (RegType*) storage;
2995 storage += regTypeSize;
2998 line->monitorEntries = (MonitorEntries*) storage;
2999 storage += monEntSize;
3000 line->monitorStack = (u4*) storage;
3001 storage += stackSize;
3006 return storage;
3115 u1* storage = (u1*)regTable->lineAlloc; local
[all...]

Completed in 5723 milliseconds