Searched refs:MinSizeInBytes (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | SmallVector.cpp | 19 void SmallVectorBase::grow_pod(size_t MinSizeInBytes, size_t TSize) { in grow_pod() argument 22 if (NewCapacityInBytes < MinSizeInBytes) in grow_pod() 23 NewCapacityInBytes = MinSizeInBytes; in grow_pod()
|
/external/llvm/lib/Support/ |
D | SmallVector.cpp | 19 void SmallVectorBase::grow_pod(void *FirstEl, size_t MinSizeInBytes, in grow_pod() argument 23 if (NewCapacityInBytes < MinSizeInBytes) in grow_pod() 24 NewCapacityInBytes = MinSizeInBytes; in grow_pod()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | SmallVector.cpp | 19 void SmallVectorBase::grow_pod(void *FirstEl, size_t MinSizeInBytes, in grow_pod() argument 23 if (NewCapacityInBytes < MinSizeInBytes) in grow_pod() 24 NewCapacityInBytes = MinSizeInBytes; in grow_pod()
|
/external/llvm/include/llvm/ADT/ |
D | SmallVector.h | 44 void grow_pod(void *FirstEl, size_t MinSizeInBytes, size_t TSize); 80 void grow_pod(size_t MinSizeInBytes, size_t TSize) { in grow_pod() argument 81 SmallVectorBase::grow_pod(&FirstEl, MinSizeInBytes, TSize); in grow_pod()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | SmallVector.h | 47 void grow_pod(void *FirstEl, size_t MinSizeInBytes, size_t TSize); 81 void grow_pod(size_t MinSizeInBytes, size_t TSize) { in grow_pod() argument 82 SmallVectorBase::grow_pod(&FirstEl, MinSizeInBytes, TSize); in grow_pod()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallVector.h | 83 void grow_pod(size_t MinSizeInBytes, size_t TSize);
|