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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/AST/
DeclGroup.cpp 22 unsigned Size = totalSizeToAlloc<Decl *>(NumDecls);
23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
  /external/llvm/lib/Support/
SmallPtrSet.cpp 28 unsigned Size = size();
29 CurArraySize = Size > 16 ? 1 << (Log2_32_Ceil(Size) + 1) : 32;
40 if (LLVM_UNLIKELY(size() * 4 >= CurArraySize * 3)) {
149 // Otherwise, allocate new heap space (unless we were the same size)
178 // Otherwise, allocate new heap space (unless we were the same size)
196 // Copy over the new array size
250 // FIXME: From here on we assume that both sets have the same small size.
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
SmallPtrSet.cpp 29 unsigned Size = size();
30 CurArraySize = Size > 16 ? 1 << (Log2_32_Ceil(Size) + 1) : 32;
41 if (LLVM_UNLIKELY(size() * 4 >= CurArraySize * 3)) {
150 // Otherwise, allocate new heap space (unless we were the same size)
179 // Otherwise, allocate new heap space (unless we were the same size)
197 // Copy over the new array size
251 // FIXME: From here on we assume that both sets have the same small size.
  /external/webrtc/webrtc/base/
md5digest.cc 15 size_t Md5Digest::Size() const {
sha1digest.cc 15 size_t Sha1Digest::Size() const {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
BmLib.c 62 UINTN Size;
65 while (GetNextDevicePathInstance (&DevicePath, &Size) != NULL) {
  /external/clang/test/CodeGenCXX/
PR24289.cpp 7 __SIZE_TYPE__ Size;
10 : Begin(B), Size(S) {}
  /external/compiler-rt/test/profile/Inputs/
instrprof-merge-match-lib.c 19 /* Returns 0 (size) when an error occurs. */
22 uint64_t Size = __llvm_profile_get_size_for_buffer();
23 if (Size > MaxSize)
34 if (__llvm_profile_check_compatibility(Buffer, Size))
37 return Size;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
AllDiagnostics.h 33 enum { Size = SizeOfStr };
38 fieldTy>::Size
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
AllDiagnostics.h 33 enum { Size = SizeOfStr };
38 fieldTy>::Size
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Basic/
AllDiagnostics.h 33 enum { Size = SizeOfStr };
38 fieldTy>::Size
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Basic/
AllDiagnostics.h 33 enum { Size = SizeOfStr };
38 fieldTy>::Size
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
AllDiagnostics.h 35 enum { Size = SizeOfStr };
40 fieldTy>::Size
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue23545.go 22 func dummyID(x int) [Size]interface{} {
23 var out [Size]interface{}
28 const Size = 32
30 type OutputID [Size]interface{}
  /prebuilts/go/linux-x86/test/fixedbugs/
issue23545.go 22 func dummyID(x int) [Size]interface{} {
23 var out [Size]interface{}
28 const Size = 32
30 type OutputID [Size]interface{}
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Library/
NorFlashPlatformLib.h 21 UINTN Size;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyCmos.c 95 UINT32 Size;
111 Size = 15 * SIZE_1MB;
113 Size = Private->IntThunk->EfiToLegacy16InitTable.OsMemoryAbove1Mb >> 10;
116 LegacyWriteStandardCmos (CMOS_17, (UINT8)(Size & 0xFF));
117 LegacyWriteStandardCmos (CMOS_30, (UINT8)(Size & 0xFF));
118 LegacyWriteStandardCmos (CMOS_18, (UINT8)(Size >> 8));
119 LegacyWriteStandardCmos (CMOS_31, (UINT8)(Size >> 8));
  /device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/
SecGetPerformance.c 48 UINT32 Size;
84 Size = Count * sizeof (UINT64);
86 Ticker = *(UINT64 *) (UINTN) (TopOfTemporaryRam - sizeof (UINT32) - Size - sizeof (UINT32) * 2);

Completed in 2199 milliseconds

1 2 3 4 5 6 7 8 91011>>