HomeSort by relevance Sort by last modified time
    Searched defs:NewSize (Results 1 - 25 of 56) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
SetSize.c 36 UINTN NewSize;
68 NewSize = 0;
74 NewSize = 0;
76 NewSize = ShellStrToUintn(Temp1);
92 Status = FileHandleSetSize(FileHandle, NewSize);
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/ArmVirtPlatformLib/
Virt.c 76 UINT64 NewSize, CurSize;
83 NewSize = 0;
122 NewSize = CurSize;
135 PcdStatus = PcdSet64S (PcdSystemMemorySize, NewSize);
146 ASSERT (NewSize >= SIZE_128MB);
150 ((UINT64)PcdGet64 (PcdFdBaseAddress) >= (NewBase + NewSize)));
  /external/llvm/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
IndexedMap.h 69 unsigned NewSize = toIndex_(n) + 1;
70 if (NewSize > storage_.size())
71 resize(NewSize);
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 192 the size specified by NewSize.
207 If NewSize is zero and Ptr is not a null pointer, the object it points to
214 The following combinations of Ptr and NewSize can occur:<BR>
215 Ptr NewSize<BR>
218 - NULL > 0 Same as malloc(NewSize)
220 - valid NewSize >= OldSize Returns malloc(NewSize) with Oldsize bytes copied from Ptr
221 - valid NewSize < OldSize Returns new buffer with Oldsize bytes copied from Ptr
226 @param NewSize Size, in bytes, of the new object to allocate space for.
230 region of the requested size is returned. If NewSize is zero,
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 143 unsigned NewSize;
148 NewSize = 4;
161 NewSize = 6;
169 // Remember that this instruction is NewSize bytes, increase the size of the
170 // block by NewSize-2, remember to iterate.
171 BlockSizes[MBB.getNumber()] += NewSize-2;
172 MBBStartOffset += NewSize;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
IndexedMap.h 71 unsigned NewSize = toIndex_(n) + 1;
72 if (NewSize > storage_.size())
73 resize(NewSize);
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430BranchSelector.cpp 140 unsigned NewSize;
145 NewSize = 4;
158 NewSize = 6;
166 // Remember that this instruction is NewSize bytes, increase the size of the
167 // block by NewSize-2, remember to iterate.
168 BlockSizes[MBB.getNumber()] += NewSize-2;
169 MBBStartOffset += NewSize;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Rm.c 79 UINTN NewSize;
128 NewSize = StrSize(Node->FullName) + StrSize(Node2->FullName);
129 TempName = AllocateZeroPool(NewSize);
133 StrCpyS(TempName, NewSize/sizeof(CHAR16), Node->FullName);
135 StrCatS(TempName, NewSize/sizeof(CHAR16), Node2->FullName);
  /external/llvm/lib/Support/
StringMap.cpp 199 unsigned NewSize;
206 NewSize = NumBuckets*2;
209 NewSize = NumBuckets;
218 (StringMapEntryBase **)calloc(NewSize+1, sizeof(StringMapEntryBase *) +
220 unsigned *NewHashArray = (unsigned *)(NewTableArray + NewSize + 1);
221 NewTableArray[NewSize] = (StringMapEntryBase*)2;
230 unsigned NewBucket = FullHash & (NewSize-1);
232 NewTableArray[FullHash & (NewSize-1)] = Bucket;
233 NewHashArray[FullHash & (NewSize-1)] = FullHash;
242 NewBucket = (NewBucket + ProbeSize++) & (NewSize-1)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
StringMap.cpp 182 unsigned NewSize;
188 NewSize = NumBuckets*2;
190 NewSize = NumBuckets;
197 ItemBucket *NewTableArray =(ItemBucket*)calloc(NewSize+1, sizeof(ItemBucket));
198 NewTableArray[NewSize].Item = (StringMapEntryBase*)2;
206 unsigned NewBucket = FullHash & (NewSize-1);
208 NewTableArray[FullHash & (NewSize-1)].Item = IB->Item;
209 NewTableArray[FullHash & (NewSize-1)].FullHashValue = FullHash;
216 NewBucket = (NewBucket + ProbeSize++) & (NewSize-1);
228 NumBuckets = NewSize;
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
StringMap.cpp 197 unsigned NewSize;
204 NewSize = NumBuckets*2;
207 NewSize = NumBuckets;
216 (StringMapEntryBase **)calloc(NewSize+1, sizeof(StringMapEntryBase *) +
218 unsigned *NewHashArray = (unsigned *)(NewTableArray + NewSize + 1);
219 NewTableArray[NewSize] = (StringMapEntryBase*)2;
228 unsigned NewBucket = FullHash & (NewSize-1);
230 NewTableArray[FullHash & (NewSize-1)] = Bucket;
231 NewHashArray[FullHash & (NewSize-1)] = FullHash;
240 NewBucket = (NewBucket + ProbeSize++) & (NewSize-1)
    [all...]

Completed in 789 milliseconds

1 2 3