HomeSort by relevance Sort by last modified time
    Searched defs:Size (Results 26 - 50 of 529) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/MC/
ConstantPools.h 30 : Label(L), Value(Val), Size(Sz) {}
33 unsigned Size;
48 // \param Size is the size in bytes of the entry
52 unsigned Size);
83 unsigned Size);
MCELFStreamer.h 59 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
68 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
72 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
74 uint64_t Size, unsigned ByteAlignment = 0) override;
75 void EmitValueImpl(const MCExpr *Value, unsigned Size,
105 uint64_t Size;
  /external/llvm/include/llvm/Support/
Memory.h 25 /// and a size. It is used by the Memory class (a friend) as the result of
31 MemoryBlock() : Address(nullptr), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
34 size_t size() const { return Size; } function in class:llvm::sys::MemoryBlock
37 size_t Size; ///< Size, in bytes of the memory area
69 /// system allocation granularity (64K on Windows, page size on Linux)
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 32 uint64_t Size; // Size of the variable in bytes.
47 size_t FrameSize; // Size of the frame in bytes.
55 // The minimal size of the left-most redzone (header).
Local.h 188 /// in the base pointer). Return the result as a signed integer of intptr size.
210 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask;
221 Size = DL.getStructLayout(STy)->getElementOffset(OpValue);
223 if (Size)
224 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
229 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
239 if (Size != 1) {
241 Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
  /external/llvm/lib/Fuzzer/
FuzzerCrossOver.cpp 19 size_t Size = rand() % MaxLen + 1;
25 while (U->size() < Size && (PosA < A.size() || PosB < B.size())) {
27 size_t SizeLeftU = Size - U->size();
28 if (*Pos < V->size()) {
29 size_t SizeLeftV = V->size() - *Pos;
  /external/llvm/lib/Target/Mips/
MipsAnalyzeImmediate.h 28 const InstSeq &Analyze(uint64_t Imm, unsigned Size, bool LastInstrIsADDiu);
57 unsigned Size;
MipsFrameLowering.cpp 61 // The sp is the stack pointer subtracted/added from the stack size
65 // with offsets that exceeds the stack size: (stacksize+(4*(num_arg-1))
77 // Since the total stack size is unknown on LowerFormalArguments, all
113 unsigned Size = TRI.getMinimalPhysRegClass(*R)->getSize();
114 Offset = RoundUpToAlignment(Offset + Size, Size);
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCAsmBackend.cpp 92 unsigned Size = (getFixupKindInfo(Kind).TargetSize + 7) / 8;
94 assert(Offset + Size <= DataSize && "Invalid fixup offset!");
96 // Big-endian insertion of Size bytes.
98 unsigned ShiftValue = (Size * 8) - 8;
99 for (unsigned I = 0; I != Size; ++I) {
  /external/llvm/lib/Transforms/Utils/
ASanStackFrameLayout.cpp 23 // It is tempting to also sort variables by size so that larger variables
37 // The larger the variable Size the larger is the redzone.
38 // The resulting frame size is a multiple of Alignment.
39 static size_t VarAndRedzoneSize(size_t Size, size_t Alignment) {
41 if (Size <= 4) Res = 16;
42 else if (Size <= 16) Res = 32;
43 else if (Size <= 128) Res = Size + 32;
44 else if (Size <= 512) Res = Size + 64
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 22 UInt64 Size;
31 for (int i = 0; i < Streams.Size(); i++)
35 total += Streams[i].Size;
46 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
63 UInt64 Size;
79 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfEmbeddedFileParameterDictionary_autogen.cpp 11 int64_t SkPdfEmbeddedFileParameterDictionary::Size(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
SkPdfFileTrailerDictionary_autogen.cpp 11 int64_t SkPdfFileTrailerDictionary::Size(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
SkPdfType0FunctionDictionary_autogen.cpp 11 SkPdfArray* SkPdfType0FunctionDictionary::Size(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
  /frameworks/av/media/libstagefright/codecs/common/include/
voMem.h 34 VO_S32 Size; /*!< Buffer stride */
55 voMemInfo.Size=nSize; \
  /frameworks/base/core/java/android/util/
Size.java 24 public final class Size {
26 * Create a new immutable Size instance.
28 * @param width The width of the size, in pixels
29 * @param height The height of the size, in pixels
31 public Size(int width, int height) {
37 * Get the width of the size (in pixels).
45 * Get the height of the size (in pixels).
53 * Check if this size is equal to another size.
59 * A size object is never equal to any other type of object
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.h 30 NativeFrame(int size);
34 // Set the frame data and size in bytes. The NativeFrame object takes ownership of the data.
36 bool SetData(uint8_t* data, int size);
38 // Write the specified data of the given size to the frame at the specified offset. The
40 bool WriteData(const uint8_t* data, int offset, int size);
52 // Resize the frame. You can only resize to a size that fits within the frame's capacity.
56 // Returns the size of the frame in bytes.
57 int Size() {
73 // Size of data buffer in bytes.
  /frameworks/compile/slang/BitWriter_2_9/
ReaderWriter_2_9.h 107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] |
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
  /frameworks/compile/slang/BitWriter_2_9_func/
ReaderWriter_2_9_func.h 107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] |
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
  /frameworks/compile/slang/BitWriter_3_2/
ReaderWriter_3_2.h 107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] |
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
storduid.h 15 ULONG Size;
23 ULONG Size;
  /external/ceres-solver/examples/
fields_of_experts.h 93 // Creates an empty object with size() == 0.
96 // sets size() == 0.
99 // Side length of a square filter in this FoE. They are all of the same size.
100 int Size() const {
  /external/clang/include/clang/AST/
CommentSema.h 82 size_t Size = Source.size();
83 if (Size != 0) {
84 T *Mem = Allocator.Allocate<T>(Size);
86 return llvm::makeArrayRef(Mem, Size);
  /external/clang/lib/Rewrite/
RewriteRope.cpp 83 /// Size - This is the number of bytes of file this node (including any
85 unsigned Size;
91 RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {}
96 unsigned size() const { return Size; } function in class:__anon5439::RopePieceBTreeNode
162 Size = 0;
193 /// FullRecomputeSizeLocally - This method recomputes the 'Size' field by
194 /// summing the size of all RopePieces.
196 Size = 0;
198 Size += getPiece(i).size()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 66 DefinedOrUnknownSVal Size =
72 svalBuilder.evalEQ(state, Extent, Size);

Completed in 978 milliseconds

12 3 4 5 6 7 8 91011>>