HomeSort by relevance Sort by last modified time
    Searched defs:NewElts (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/Support/
SmallVector.cpp 26 void *NewElts;
28 NewElts = malloc(NewCapacityInBytes);
31 memcpy(NewElts, this->BeginX, CurSizeBytes);
34 NewElts = realloc(this->BeginX, NewCapacityInBytes);
36 assert(NewElts && "Out of memory");
38 this->EndX = (char*)NewElts+CurSizeBytes;
39 this->BeginX = NewElts;
  /external/swiftshader/third_party/LLVM/lib/Support/
SmallVector.cpp 25 void *NewElts;
27 NewElts = malloc(NewCapacityInBytes);
30 memcpy(NewElts, this->BeginX, CurSizeBytes);
33 NewElts = realloc(this->BeginX, NewCapacityInBytes);
36 this->EndX = (char*)NewElts+CurSizeBytes;
37 this->BeginX = NewElts;
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
SmallVector.cpp 26 void *NewElts;
28 NewElts = malloc(NewCapacityInBytes);
31 memcpy(NewElts, this->BeginX, CurSizeBytes);
34 NewElts = realloc(this->BeginX, NewCapacityInBytes);
36 assert(NewElts && "Out of memory");
38 this->EndX = (char*)NewElts+CurSizeBytes;
39 this->BeginX = NewElts;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
SmallVector.cpp 53 void *NewElts;
55 NewElts = safe_malloc(NewCapacity * TSize);
58 memcpy(NewElts, this->BeginX, size() * TSize);
61 NewElts = safe_realloc(this->BeginX, NewCapacity * TSize);
64 this->BeginX = NewElts;
  /external/clang/include/clang/AST/
ASTVector.h 384 T *NewElts = new (C, llvm::alignOf<T>()) T[NewCapacity];
389 std::uninitialized_copy(Begin, End, NewElts);
394 memcpy(NewElts, Begin, CurSize * sizeof(T));
399 Begin = NewElts;
400 End = NewElts+CurSize;
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 228 T *NewElts = C.getAllocator().template Allocate<T>(NewCapacity);
233 std::uninitialized_copy(Begin, End, NewElts);
238 memcpy(NewElts, Begin, CurSize * sizeof(T));
244 Begin = NewElts;
245 End = NewElts+CurSize;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 311 std::vector<SDValue> NewElts;
312 NewElts.reserve(NumElts*2);
319 NewElts.push_back(Lo);
320 NewElts.push_back(Hi);
325 NewVT, NewElts.size()),
326 &NewElts[0], NewElts.size());
LegalizeVectorTypes.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
SmallVector.h 247 T *NewElts = static_cast<T*>(llvm::safe_malloc(NewCapacity*sizeof(T)));
250 this->uninitialized_move(this->begin(), this->end(), NewElts);
259 this->BeginX = NewElts;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 388 SmallVector<SDValue, 16> NewElts;
389 NewElts.reserve(NumElts*2);
396 NewElts.push_back(Lo);
397 NewElts.push_back(Hi);
400 EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewVT, NewElts.size());
401 SDValue NewVec = DAG.getBuildVector(NewVecVT, dl, NewElts);
LegalizeVectorTypes.cpp     [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 237 T *NewElts = static_cast<T*>(malloc(NewCapacity*sizeof(T)));
240 this->uninitialized_move(this->begin(), this->end(), NewElts);
249 this->setEnd(NewElts+CurSize);
250 this->BeginX = NewElts;
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 393 std::vector<SDValue> NewElts;
394 NewElts.reserve(NumElts*2);
401 NewElts.push_back(Lo);
402 NewElts.push_back(Hi);
407 NewVT, NewElts.size()),
408 NewElts);
LegalizeVectorTypes.cpp     [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallVector.h 207 T *NewElts = static_cast<T*>(malloc(NewCapacity*sizeof(T)));
210 this->uninitialized_copy(this->begin(), this->end(), NewElts);
219 this->setEnd(NewElts+CurSize);
220 this->BeginX = NewElts;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallVector.h 240 T *NewElts = static_cast<T*>(malloc(NewCapacity*sizeof(T)));
243 this->uninitialized_move(this->begin(), this->end(), NewElts);
252 this->setEnd(NewElts+CurSize);
253 this->BeginX = NewElts;

Completed in 1510 milliseconds