OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_allocated
(Results
1 - 5
of
5
) sorted by null
/external/pdfium/core/src/fxcrt/
fx_basic_memmgr.cpp
36
size_t
m_Allocated
;
52
if (pTrunk->m_Size - pTrunk->
m_Allocated
>= size) {
53
void* p = (uint8_t*)(pTrunk + 1) + pTrunk->
m_Allocated
;
54
pTrunk->
m_Allocated
+= size;
63
pTrunk->
m_Allocated
= size;
/external/opencv3/modules/imgcodecs/src/
bitstrm.cpp
65
if( !
m_allocated
)
70
m_allocated
= true;
81
m_allocated
= false;
136
m_allocated
= false;
151
if( !
m_allocated
)
158
if(
m_allocated
)
161
m_allocated
= false;
bitstrm.hpp
79
bool
m_allocated
;
member in class:cv::RBaseStream
/external/deqp/modules/glshared/
glsMemoryStressCase.hpp
71
std::vector<int>
m_allocated
;
member in class:deqp::gls::MemoryStressCase
glsMemoryStressCase.cpp
828
m_allocated
.reserve(m_iterationCount);
880
m_allocated
.push_back(allocator.getObjectCount());
905
int min =
m_allocated
[0];
906
int max =
m_allocated
[0];
910
for (int allocNdx = 0; allocNdx < (int)
m_allocated
.size(); allocNdx++)
912
min = deMin32(
m_allocated
[allocNdx], min);
913
max = deMax32(
m_allocated
[allocNdx], max);
Completed in 1040 milliseconds