OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allocationsize
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp
225
// much memory the caller asked for.
allocationSize
is the total
228
size_t
allocationSize
= TAllocation::
allocationSize
(numBytes);
240
if (currentPageOffset +
allocationSize
<= pageSize) {
245
currentPageOffset +=
allocationSize
;
251
if (
allocationSize
+ headerSkip > pageSize) {
256
size_t numBytesToAlloc =
allocationSize
+ headerSkip;
289
currentPageOffset = (headerSkip +
allocationSize
+ alignmentMask) & ~alignmentMask;
PoolAlloc.h
68
inline static size_t
allocationSize
(size_t size) {
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
AllocationInfo.java
120
AllocationInfo(int allocNumber, String allocatedClass, int
allocationSize
,
124
mAllocationSize =
allocationSize
;
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.h
28
int AllocateFirstFreeBits(unsigned int *bits, unsigned int
allocationSize
, unsigned int bitsSize);
utilities.cpp
162
int AllocateFirstFreeBits(unsigned int *bits, unsigned int
allocationSize
, unsigned int bitsSize)
164
ASSERT(
allocationSize
<= bitsSize);
166
unsigned int mask = std::numeric_limits<unsigned int>::max() >> (std::numeric_limits<unsigned int>::digits -
allocationSize
);
168
for (unsigned int i = 0; i < bitsSize -
allocationSize
+ 1; i++)
/external/clang/lib/CodeGen/
CGExprCXX.cpp
528
// care because it only overflows if
allocationSize
does, too, and
535
llvm::APInt
allocationSize
543
sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy,
allocationSize
);
545
allocationSize
=
allocationSize
.uadd_ov(cookieSize, overflow);
553
size = llvm::ConstantInt::get(CGF.SizeTy,
allocationSize
);
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp
[
all
...]
/external/clang/lib/AST/
Decl.cpp
[
all
...]
Completed in 551 milliseconds