Home | History | Annotate | Download | only in vm

Lines Matching full:storagesize

43     bv->storageSize = count;
73 for (word = 0; word < pBits->storageSize; word++) {
92 (pBits->storageSize + kBitVectorGrowth) * sizeof(u4));
93 memset(&pBits->storage[pBits->storageSize], 0x00,
95 pBits->storageSize += kBitVectorGrowth;
104 if (num >= pBits->storageSize * sizeof(u4) * 8) {
107 num, pBits->storageSize * sizeof(u4) * 8);
113 assert(newSize > pBits->storageSize);
119 memset(&pBits->storage[pBits->storageSize], 0x00,
120 (newSize - pBits->storageSize) * sizeof(u4));
121 pBits->storageSize = newSize;
132 assert(num < pBits->storageSize * sizeof(u4) * 8);
142 unsigned int count = pBits->storageSize;
154 assert(((numBits + 31) >> 5) <= pBits->storageSize);
169 assert(num < pBits->storageSize * sizeof(u4) * 8);
183 for (word = 0; word < pBits->storageSize; word++) {
207 if (bv1->storageSize != bv2->storageSize) {
209 bv1->storageSize, bv2->storageSize);
223 memcpy(dest->storage, src->storage, sizeof(u4) * dest->storageSize);
232 if (dest->storageSize != src1->storageSize ||
233 dest->storageSize != src2->storageSize ||
239 for (idx = 0; idx < dest->storageSize; idx++) {
251 if (dest->storageSize != src1->storageSize ||
252 dest->storageSize != src2->storageSize ||
258 for (idx = 0; idx < dest->storageSize; idx++) {
269 if (src1->storageSize != src2->storageSize ||
274 for (idx = 0; idx < src1->storageSize; idx++) {
284 iterator->bitSize = pBits->storageSize * sizeof(u4) * 8;
294 assert(iterator->bitSize == pBits->storageSize * sizeof(u4) * 8);
323 for (idx = 0; idx < dst->storageSize; idx++) {