Home
last modified time | relevance | path

Searched refs:objectSize (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DIntermediate.cpp1086 int objectSize = getType().getObjectSize(); in fold() local
1094 if (constantNode->getType().getObjectSize() == 1 && objectSize > 1) { in fold()
1095 rightUnionArray = new ConstantUnion[objectSize]; in fold()
1096 for (int i = 0; i < objectSize; ++i) in fold()
1099 } else if (constantNode->getType().getObjectSize() > 1 && objectSize == 1) { in fold()
1105 objectSize = constantNode->getType().getObjectSize(); in fold()
1114 tempConstArray = new ConstantUnion[objectSize]; in fold()
1116 for (int i = 0; i < objectSize; i++) in fold()
1121 tempConstArray = new ConstantUnion[objectSize]; in fold()
1123 for (int i = 0; i < objectSize; i++) in fold()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DFastMalloc.cpp4411 const size_t objectSize = ByteSizeForClass(theSpan->sizeclass); in CreateCacheIfNecessary() local
4415 …for (vm_address_t object = spanStartAddress; object + objectSize <= endOfSpan; object += objectSiz… in CreateCacheIfNecessary()
4417 allocatedPointers.append((vm_range_t){object, objectSize}); in CreateCacheIfNecessary()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2239 llvm::Value *objectSize in emitPointerArithmetic() local
2242 index = CGF.Builder.CreateMul(index, objectSize); in emitPointerArithmetic()