HomeSort by: relevance | last modified time | path
    Searched refs:Size (Results 1 - 25 of 1462) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Support/
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;
MemAlloc.cpp 14 llvm::allocate_buffer(size_t Size, size_t Alignment) {
15 return ::operator new(Size
23 void llvm::deallocate_buffer(void *Ptr, size_t Size, size_t Alignment) {
27 Size
raw_os_ostream.cpp 25 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) {
26 OS.write(Ptr, Size);
circular_raw_ostream.cpp 17 void circular_raw_ostream::write_impl(const char *Ptr, size_t Size) {
19 TheStream->write(Ptr, Size);
24 while (Size != 0) {
26 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
28 Size -= Bytes;
FormattedStream.cpp 26 void formatted_raw_ostream::UpdatePosition(const char *Ptr, size_t Size) {
36 if (CP.size() > 1)
55 if (PartialUTF8Char.size()) {
57 getNumBytesForUTF8(PartialUTF8Char[0]) - PartialUTF8Char.size();
58 if (Size < BytesFromBuffer) {
61 PartialUTF8Char.append(StringRef(Ptr, Size));
71 Size -= BytesFromBuffer;
77 for (const char *End = Ptr + Size; Ptr < End; Ptr += NumBytes) {
96 void formatted_raw_ostream::ComputePosition(const char *Ptr, size_t Size) {
100 if (Ptr <= Scanned && Scanned <= Ptr + Size)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpStack.cpp 29 void *InterpStack::grow(size_t Size) {
30 assert(Size < ChunkSize - sizeof(StackChunk) && "Object too large");
32 if (!Chunk || sizeof(StackChunk) + Chunk->size() + Size > ChunkSize) {
44 Chunk->End += Size;
45 StackSize += Size;
49 void *InterpStack::peek(size_t Size) {
53 while (Size > Ptr->size()) {
54 Size -= Ptr->size()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
OptimizedStructLayout.h 24 /// - First, it does not guarantee that the result is minimal in size.
50 OptimizedStructLayoutField(const void *Id, uint64_t Size, Align Alignment,
52 : Offset(FixedOffset), Size(Size), Id(Id), Alignment(Alignment) {
53 assert(Size > 0 && "adding an empty field to the layout");
61 /// The required size of this field in bytes. Does not have to be
63 uint64_t Size;
85 return Offset + Size;
102 /// - The size of a field is not required to be a multiple of, or even
113 /// - every field's size is a multiple of its required alignment an
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/Shared/
TargetProcessControlTypes.cpp 22 R.Size = S.size();
23 if (R.Size > sizeof(uint64_t)) {
24 R.Data.ValuePtr = new uint8_t[R.Size];
25 memcpy(R.Data.ValuePtr, S.data(), R.Size);
28 memcpy(R.Data.Value, S.data(), R.Size);
33 uint64_t Size) {
38 CWrapperFunctionResultData Data, uint64_t Size) {
  /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/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_vector_test.cc 20 EXPECT_EQ(v.Size(), 0u);
22 EXPECT_EQ(v.Size(), 1u);
25 EXPECT_EQ(v.Size(), 2u);
34 EXPECT_EQ(v.Size(), i + 1u);
46 EXPECT_EQ(v.Size(), 2u);
48 EXPECT_EQ(v.Size(), 1u);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
EnumeratedArray.h 22 IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
27 for (IndexType IX = 0; IX < Size; ++IX) {
33 assert(IX >= 0 && IX < Size && "Index is out of bounds.");
39 IndexType, Size> &>(*this)[Index]);
41 inline IndexType size() { return Size; } function in class:llvm::EnumeratedArray
44 ValueType Underlying[Size];
  /src/sys/external/bsd/acpica/dist/compiler/
aslsupport.y 64 unsigned int Size)
70 "\nAslLocalAllocate: Expanding Stack to %u\n\n", Size);
72 Mem = ACPI_ALLOCATE_ZEROED (Size);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetStreamer.h 20 virtual void emitFAlign(unsigned Size, unsigned MaxBytesToEmit){};
21 virtual void emitCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
24 virtual void emitLocalCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size,
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_procmaps_bsd.cc 70 uptr Size = 0;
71 int Err = internal_sysctl(Mib, ARRAY_SIZE(Mib), NULL, &Size, NULL, 0);
73 CHECK_GT(Size, 0);
76 size_t MmapedSize = Size * 4 / 3;
78 Size = MmapedSize;
79 Err = internal_sysctl(Mib, ARRAY_SIZE(Mib), VmMap, &Size, NULL, 0);
84 size_t MmapedSize = Size;
87 Size = 2 * Size + 10 * sizeof(struct kinfo_vmentry);
88 if (Size > 0x10000
    [all...]
  /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/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
JITLoaderGDB.h 20 llvm_orc_registerJITLoaderGDBWrapper(uint8_t *Data, uint64_t Size);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-itanium-demangle-fuzzer/
DummyDemanglerFuzzer.cpp 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-microsoft-demangle-fuzzer/
DummyDemanglerFuzzer.cpp 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rust-demangle-fuzzer/
DummyDemanglerFuzzer.cpp 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-special-case-list-fuzzer/
DummySpecialCaseListFuzzer.cpp 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-yaml-numeric-parser-fuzzer/
DummyYAMLNumericParserFuzzer.cpp 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-yaml-parser-fuzzer/
DummyYAMLParserFuzzer.cpp 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
Types.h 16 /// MaxSize indicates the largest size of integer to consider (in bits) and only
21 const char *getMinimalTypeForEnumBitfield(uint64_t Size);
  /src/external/cddl/dtracetoolkit/dist/Bin/
bitesize.d 3 * bitesize.d - analyse disk I/O size by process.
6 * This produces a report for the size of disk events caused by
19 * value size in bytes
25 * are being rounded up to the nearest sector size or UFS block size.
68 this->size = args[0]->b_bcount;
71 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
80 printa("%8d %S\n%@d\n", @Size);
  /src/external/cddl/dtracetoolkit/dist/Disk/
bitesize.d 3 * bitesize.d - analyse disk I/O size by process.
6 * This produces a report for the size of disk events caused by
19 * value size in bytes
25 * are being rounded up to the nearest sector size or UFS block size.
68 this->size = args[0]->b_bcount;
71 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
80 printa("%8d %S\n%@d\n", @Size);

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 91011>>