HomeSort by relevance Sort by last modified time
    Searched refs:NewSize (Results 101 - 125 of 236) sorted by null

1 2 3 45 6 7 8 910

  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DifferenceEngine.cpp 71 unsigned NewSize = Storage.size() - 1;
72 if (NewSize) {
75 Storage[0] = Storage[NewSize];
77 std::swap(Storage[0], Storage[NewSize]);
87 if (R >= NewSize) {
89 if (L >= NewSize) break;
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 62 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
64 if (NewSize > Size) {
65 Size = NewSize;
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasSetTracker.h 60 void updateSizeAndTBAAInfo(uint64_t NewSize, const MDNode *NewTBAAInfo) {
61 if (NewSize > Size) Size = NewSize;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 62 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
64 if (NewSize > Size) {
65 Size = NewSize;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
AliasSetTracker.h 62 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
64 if (NewSize > Size) {
65 Size = NewSize;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
AliasSetTracker.h 62 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
64 if (NewSize > Size) {
65 Size = NewSize;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 62 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
64 if (NewSize > Size) {
65 Size = NewSize;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
AliasSetTracker.h 62 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
64 if (NewSize > Size) {
65 Size = NewSize;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
AliasSetTracker.h 62 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
64 if (NewSize > Size) {
65 Size = NewSize;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
AliasSetTracker.h 72 bool updateSizeAndAAInfo(uint64_t NewSize, const AAMDNodes &NewAAInfo) {
74 if (NewSize > Size) {
75 Size = NewSize;
  /device/linaro/bootloader/edk2/StdLib/Include/
stdlib.h 56 void *realloc (void *Ptr, size_t NewSize);
641 the size specified by NewSize.
656 If NewSize is zero and Ptr is not a null pointer, the object it points to
664 @param NewSize Size, in bytes, of the new object to allocate space for.
668 region of the requested size is returned. If NewSize is zero,
671 void *realloc(void *Ptr, size_t NewSize);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
PlatformEarlyInit.c 838 UINT64 NewSize;
904 NewSize = MAX (LShiftU64 (1, HighBitSet64 (Size - 1) + 1), SIZE_4KB);
905 if ((Base & ~(NewSize - 1)) != Base) {
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerLoop.cpp 566 size_t NewSize = Corpus.size();
567 assert(NewSize <= OldSize);
570 if (NewSize + 5 >= OldSize)
572 OldSize = NewSize;
652 size_t NewSize = 0;
653 NewSize = MD.Mutate(CurrentUnitData, Size, Options.MaxLen);
654 assert(NewSize > 0 && "Mutator returned empty unit");
655 assert(NewSize <= Options.MaxLen &&
657 Size = NewSize;
  /external/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 269 CharUnits NewSize = NewOffset.alignTo(RL.getAlignment());
270 NewPad += NewSize - NewOffset;
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 465 void *reallocate(void *OldPtr, uptr NewSize) {
479 if (NewSize <= Size) {
480 NewHeader.RequestedSize = NewSize;
486 void *NewPtr = allocate(NewSize, MinAlignment, FromMalloc);
489 memcpy(NewPtr, OldPtr, Min(NewSize, OldSize));
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
FileBuffer.c     [all...]
  /external/llvm/lib/CodeGen/
MachineCombiner.cpp 62 bool doSubstitute(unsigned NewSize, unsigned OldSize);
340 bool MachineCombiner::doSubstitute(unsigned NewSize, unsigned OldSize) {
341 if (OptSize && (NewSize < OldSize))
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
UefiShellLib.c     [all...]

Completed in 944 milliseconds

1 2 3 45 6 7 8 910