Home
last modified time | relevance | path

Searched refs:origPtr (Results 1 – 5 of 5) sorted by relevance

/oneTBB/examples/graph/fgbzip2/
H A Ddecompress.cpp303 s->origPtr = 0; in BZ2_decompress()
305 s->origPtr = (s->origPtr << 8) | ((Int32)uc); in BZ2_decompress()
307 s->origPtr = (s->origPtr << 8) | ((Int32)uc); in BZ2_decompress()
309 s->origPtr = (s->origPtr << 8) | ((Int32)uc); in BZ2_decompress()
311 if (s->origPtr < 0) in BZ2_decompress()
313 if (s->origPtr > 10 + 100000 * s->blockSize100k) in BZ2_decompress()
567 if (s->origPtr < 0 || s->origPtr >= nblock) in BZ2_decompress()
616 i = s->origPtr; in BZ2_decompress()
623 } while (i != s->origPtr); in BZ2_decompress()
625 s->tPos = s->origPtr; in BZ2_decompress()
[all …]
H A Dbzlib_private.hpp254 Int32 origPtr; member
398 Int32 origPtr; member
H A Dblocksort.cpp1272 s->origPtr = -1; in BZ2_blockSort()
1275 s->origPtr = i; in BZ2_blockSort()
1279 AssertH(s->origPtr != -1, 1003); in BZ2_blockSort()
H A Dcompress.cpp832 bsW(s, 24, s->origPtr); in BZ2_compressBlock()
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp1320 inline void* reallocAndRetrieve(void* origPtr, size_t reallocSize, size_t& origBlockSize, size_t& r… in reallocAndRetrieve() argument
1321 …rml::internal::LargeMemoryBlock* origLmb = ((rml::internal::LargeObjectHdr *)origPtr - 1)->memoryB… in reallocAndRetrieve()
1324 void* reallocPtr = rml::internal::reallocAligned(defaultMemPool, origPtr, reallocSize, 0); in reallocAndRetrieve()
1340 void* origPtr = scalable_malloc(startSize); in TestReallocDecreasing() local
1346 …reallocPtr = reallocAndRetrieve(origPtr, startSize - 1 * 1024 * 1024, origBlockSize, reallocBlockS… in TestReallocDecreasing()
1348 REQUIRE_MESSAGE(reallocPtr == origPtr, "Original pointer shouldn't change"); in TestReallocDecreasing()
1363 reallocPtr = reallocAndRetrieve(origPtr, reallocSize, origBlockSize, reallocBlockSize); in TestReallocDecreasing()
1375 origPtr = reallocPtr; in TestReallocDecreasing()