Searched refs:Size (Results 51 - 75 of 1105) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp33 size_t Size = (*ExpectedSize)[0];
34 if (Size % 2 != 0)
36 Size /= 2;
37 if (Size == 0)
42 getDataSliceAs<support::ulittle16_t>(getData(), Offset, Size);
46 SmallVector<UTF16, 32> WStr(Size);
102 MinidumpFile::getDataSlice(ArrayRef<uint8_t> Data, size_t Offset, size_t Size) { argument
104 if (Offset + Size < Offset || Offset + Size < Size ||
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCXCOFFStreamer.h23 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
26 uint64_t Size = 0, unsigned ByteAlignment = 0,
29 void EmitXCOFFLocalCommonSymbol(MCSymbol *LabelSym, uint64_t Size,
H A DConstantPools.h34 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
38 unsigned Size; member in struct:llvm::ConstantPoolEntry
55 // \param Size is the size in bytes of the entry
59 unsigned Size, SMLoc Loc);
93 unsigned Size, SMLoc Loc);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringLexer.h21 typedef std::string::size_type Size; typedef in class:lldb_private::StringLexer
38 bool HasAtLeast(Size s);
43 void PutBack(Size s);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsize_class_map.h65 static uptr getClassIdBySize(uptr Size) { argument
66 DCHECK_LE(Size, MaxSize);
67 if (Size <= MidSize)
68 return (Size + MinSize - 1) >> MinSizeLog;
69 const uptr L = getMostSignificantSetBitIndex(Size);
70 const uptr HBits = (Size >> (L - S)) & M;
71 const uptr LBits = Size & ((1UL << (L - S)) - 1);
76 static u32 getMaxCachedHint(uptr Size) { argument
77 DCHECK_LE(Size, MaxSize);
78 DCHECK_NE(Size,
[all...]
H A Dlist.h35 bool empty() const { return Size == 0; }
36 uptr size() const { return Size; }
45 Size = 0;
60 uptr Size; member in struct:scudo::IntrusiveList
66 if (Size == 0) {
84 using IntrusiveList<T>::Size;
94 Size++;
102 Size++;
110 Size--;
121 Size
[all...]
H A Dreport.h46 void NORETURN reportDeleteSizeMismatch(void *Ptr, uptr Size, uptr ExpectedSize);
51 void NORETURN reportCallocOverflow(uptr Count, uptr Size);
52 void NORETURN reportPvallocOverflow(uptr Size);
53 void NORETURN reportInvalidAlignedAllocAlignment(uptr Size, uptr Alignment);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h65 unsigned Size; member in struct:llvm::final::MemOp
133 if (Mem.Size)
134 OS << ",Size=" << Mem.Size;
289 return Kind == Memory && Mem.Size == 0;
292 return Kind == Memory && (!Mem.Size || Mem.Size == 8);
295 return Kind == Memory && (!Mem.Size || Mem.Size == 16);
298 return Kind == Memory && (!Mem.Size || Me
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/
H A DRemoteJITUtils.h31 llvm::Error readBytes(char *Dst, unsigned Size) override {
34 while (Completed < static_cast<ssize_t>(Size)) {
35 ssize_t Read = ::read(InFD, Dst + Completed, Size - Completed);
49 llvm::Error appendBytes(const char *Src, unsigned Size) override {
52 while (Completed < static_cast<ssize_t>(Size)) {
53 ssize_t Written = ::write(OutFD, Src + Completed, Size - Completed);
90 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
93 return MemMgr->allocateCodeSection(Size, Alignment, SectionID, SectionName);
96 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
99 return MemMgr->allocateDataSection(Size, Alignmen
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Daslsupport.y172 unsigned int Size)
178 "\nAslLocalAllocate: Expanding Stack to %u\n\n", Size);
180 Mem = ACPI_ALLOCATE_ZEROED (Size);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h59 /// Size of the preamble in bytes.
60 unsigned Size; member in struct:clang::PreambleBounds
68 PreambleBounds(unsigned Size, bool PreambleEndsAtStartOfLine) argument
69 : Size(Size), PreambleEndsAtStartOfLine(PreambleEndsAtStartOfLine) {}
543 static inline char getCharAndSizeNoWarn(const char *Ptr, unsigned &Size, argument
548 Size = 1;
552 Size = 0;
553 return getCharAndSizeSlowNoWarn(Ptr, Size, LangOpts);
631 unsigned Size local
641 ConsumeChar(const char *Ptr, unsigned Size, Token &Tok) argument
657 getCharAndSize(const char *Ptr, unsigned &Size) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DLayoutOverrideSource.h28 uint64_t Size; member in struct:clang::LayoutOverrideSource::Layout
51 uint64_t &Size, uint64_t &Alignment,
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclGroup.cpp22 unsigned Size = totalSizeToAlloc<Decl *>(NumDecls); local
23 void *Mem = C.Allocate(Size, alignof(DeclGroup));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackWriter.h101 /// N.B. The caller must subsequently call \c Write an additional \p Size
103 void writeArraySize(uint32_t Size);
112 /// N.B. The caller must subsequently call \c Write and additional \c Size*2
115 void writeMapSize(uint32_t Size);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAllocator.h49 /// Allocate \a Size bytes of \a Alignment aligned memory. This method
51 void *Allocate(size_t Size, size_t Alignment) { argument
60 return static_cast<DerivedT *>(this)->Allocate(Size, Alignment);
63 /// Deallocate \a Ptr to \a Size bytes of memory allocated by this
65 void Deallocate(const void *Ptr, size_t Size) { argument
74 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size);
98 LLVM_ATTRIBUTE_RETURNS_NONNULL void *Allocate(size_t Size, argument
100 return safe_malloc(Size);
106 void Deallocate(const void *Ptr, size_t /*Size*/) {
215 Allocate(size_t Size, Alig argument
271 Allocate(size_t Size, size_t Alignment) argument
282 Deallocate(const void *Ptr, size_t Size) argument
310 size_t Size = CustomSizedSlabs[Idx].second; local
429 size_t Size = PtrAndSize.second; local
487 size_t Size = PtrAndSize.second; local
502 operator new(size_t Size, llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold> &Allocator) argument
[all...]
H A Draw_os_ostream.h28 void write_impl(const char *Ptr, size_t Size) override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiSelectionDAGInfo.h27 SDValue Size, unsigned Align, bool isVolatile,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.h27 uptr Size() const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreSelectionDAGInfo.cpp20 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline,
22 unsigned SizeBitWidth = Size.getValueSizeInBits();
25 DAG.MaskedValueIsZero(Size, APInt(SizeBitWidth, 3))) {
32 Entry.Node = Size; Args.push_back(Entry);
18 EmitTargetCodeForMemcpy( SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFSelectionDAGInfo.h24 SDValue Size, unsigned Align, bool isVolatile,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp48 auto RegisterEHFrames = [](uint8_t *Addr, uint32_t Size) {
49 RTDyldMemoryManager::registerEHFramesInProcess(Addr, Size);
52 auto DeregisterEHFrames = [](uint8_t *Addr, uint32_t Size) {
53 RTDyldMemoryManager::deregisterEHFramesInProcess(Addr, Size);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DRandomNumberGenerator.cpp58 std::error_code llvm::getRandomBytes(void *Buffer, size_t Size) { argument
64 if (CryptGenRandom(hProvider, Size, static_cast<BYTE *>(Buffer)))
72 ssize_t BytesRead = read(Fd, Buffer, Size);
75 else if (BytesRead != static_cast<ssize_t>(Size))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/
H A DLanaiDisassembler.h30 getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptor.cpp83 uint32_t Size = sizeof(ModuleInfoHeader) + M + O; local
84 Size = alignTo(Size, 4);
85 return Size;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dbacktrace_sanitizer_common.cpp32 size_t Backtrace(uintptr_t *TraceBuffer, size_t Size) { argument
35 if (Size > __sanitizer::kStackTraceMax)
36 Size = __sanitizer::kStackTraceMax;
41 /* fast unwind */ true, Size - 1);

Completed in 407 milliseconds

1234567891011>>