| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclGroup.cpp | 22 unsigned Size = totalSizeToAlloc<Decl *>(NumDecls); 23 void *Mem = C.Allocate(Size, alignof(DeclGroup));
|
| StmtObjC.cpp | 49 unsigned Size = 52 void *Mem = Context.Allocate(Size, alignof(ObjCAtTryStmt)); 60 unsigned Size = 62 void *Mem = Context.Allocate(Size, alignof(ObjCAtTryStmt));
|
| /src/external/apache2/llvm/dist/llvm/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)) { 128 // Otherwise, allocate new heap space (unless we were the same size) 156 // Otherwise, allocate new heap space (unless we were the same size) 171 // Copy over the new array size 225 // FIXME: From here on we assume that both sets have the same small size.
|
| LEB128.cpp | 18 /// Utility function to get the size of the ULEB128-encoded value. 20 unsigned Size = 0; 23 Size += sizeof(int8_t); 25 return Size; 28 /// Utility function to get the size of the SLEB128-encoded value. 30 unsigned Size = 0; 38 Size += sizeof(int8_t); 40 return Size;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-yaml-numeric-parser-fuzzer/ |
| yaml-numeric-parser-fuzzer.cpp | 39 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { 40 std::string Input(reinterpret_cast<const char *>(Data), Size);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| AllDiagnostics.h | 34 enum { Size = SizeOfStr }; 39 fieldTy>::Size
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| DebugFrameDataSubsection.cpp | 37 uint32_t Size = sizeof(FrameData) * Frames.size(); 39 Size += sizeof(uint32_t); 40 return Size;
|
| DebugCrossImpSubsection.cpp | 64 uint32_t Size = 0; 66 Size += sizeof(CrossModuleImport); 67 Size += sizeof(support::ulittle32_t) * Item.second.size(); 69 return Size; 76 Ids.reserve(Mappings.size()); 89 Imp.Count = Item->getValue().size();
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerIO.h | 63 size_t Size; 64 bool operator<(const SizedFile &B) const { return Size < B.Size; }
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_ignoreset.cc | 37 uptr IgnoreSet::Size() const {
|
| /src/sys/external/bsd/compiler_rt/dist/test/profile/ |
| instrprof-without-libc.c | 28 uint64_t Size = __llvm_profile_get_size_for_buffer(); 29 if (Size > MaxSize) 44 if (fwrite(Buffer, 1, Size, File) != Size)
|
| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
| CircularBuffer.cs | 37 public int Size { get { return _size; } }
42 int trueCount = Math.Min(count, _capacity - Size);
53 if (Size == _capacity) // no room
63 int trueCount = Math.Min(count,Size);
74 if (Size == 0)
|
| /src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| LayoutOverrideSource.h | 27 /// The size of the record. 28 uint64_t Size; 51 uint64_t &Size, uint64_t &Alignment,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| ConstantPools.h | 33 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {} 37 unsigned Size; 54 // \param Size is the size in bytes of the entry 58 unsigned Size, SMLoc Loc); 92 unsigned Size, SMLoc Loc);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| AllocatorBase.h | 11 /// "Allocator" concept which consists of an Allocate method accepting a size 12 /// and alignment, and a Deallocate accepting a pointer and size. Further, the 14 /// setting size and alignment based on the final type. These overloads are 35 /// Allocate \a Size bytes of \a Alignment aligned memory. This method 37 void *Allocate(size_t Size, size_t Alignment) { 46 return static_cast<DerivedT *>(this)->Allocate(Size, Alignment); 49 /// Deallocate \a Ptr to \a Size bytes of memory allocated by this 51 void Deallocate(const void *Ptr, size_t Size, size_t Alignment) { 61 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size, Alignment); 84 LLVM_ATTRIBUTE_RETURNS_NONNULL void *Allocate(size_t Size, size_t Alignment) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/ |
| MsgPackWriter.cpp | 102 size_t Size = s.size(); 104 if (Size <= FixMax::String) 105 EW.write(static_cast<uint8_t>(FixBits::String | Size)); 106 else if (!Compatible && Size <= UINT8_MAX) { 108 EW.write(static_cast<uint8_t>(Size)); 109 } else if (Size <= UINT16_MAX) { 111 EW.write(static_cast<uint16_t>(Size)); 113 assert(Size <= UINT32_MAX && "String object too long to be encoded"); 115 EW.write(static_cast<uint32_t>(Size)); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachinePassManager.cpp | 58 size_t Size = Passes.size(); 61 for (; MachineModulePasses.count(Idx) && Idx != Size; ++Idx) { 67 if (Idx == Size) 74 for (; !MachineModulePasses.count(Idx) && Idx != Size; ++Idx)
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| Hash.cpp | 22 uint32_t Size = Str.size(); 25 Size / 4); 31 uint32_t RemainderSize = Size % 4; 63 Buffer.size() / sizeof(ulittle32_t)); 69 Buffer = Buffer.slice(Items.size() * sizeof(ulittle32_t));
|
| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| DWARFEmitter.cpp | 48 static Error writeVariableSizedInteger(uint64_t Integer, size_t Size, 50 if (8 == Size) 52 else if (4 == Size) 54 else if (2 == Size) 56 else if (1 == Size) 60 "invalid integer write size: %zu", Size); 65 static void ZeroFillBytes(raw_ostream &OS, size_t Size) { 66 std::vector<uint8_t> FillData(Size, 0); 67 OS.write(reinterpret_cast<char *>(FillData.data()), Size); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| XCoreMachineFunctionInfo.cpp | 72 unsigned Size = TRI.getSpillSize(RC); 74 EHSpillSlot[0] = MFI.CreateStackObject(Size, Alignment, true); 75 EHSpillSlot[1] = MFI.CreateStackObject(Size, Alignment, true);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| PrettyClassDefinitionDumper.cpp | 50 uint32_t Size = Layout.getSize(); 62 WithColor(Printer, PDB_ColorItem::Comment).get() << " [sizeof = " << Size 64 uint32_t BaseCount = Layout.bases().size(); 103 << "% of class size)"; 111 << PctStr << "% of class size)";
|
| /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/ |
| CircularBuffer.cs | 37 public int Size { get { return _size; } }
42 int trueCount = Math.Min(count, _capacity - Size);
53 if (Size == _capacity) // no room
63 int trueCount = Math.Min(count,Size);
74 if (Size == 0)
|
| /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/ |
| CircularBuffer.cs | 37 public int Size { get { return _size; } }
42 int trueCount = Math.Min(count, _capacity - Size);
53 if (Size == _capacity) // no room
63 int trueCount = Math.Min(count,Size);
74 if (Size == 0)
|
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_ignoreset.h | 25 uptr Size() const { return size_; }
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_ignoreset.h | 25 uptr Size() const { return size_; }
|