Searched defs:Size (Results 1 - 25 of 271) sorted by relevance

1234567891011

/external/llvm/lib/Support/
H A Dcircular_raw_ostream.cpp18 void circular_raw_ostream::write_impl(const char *Ptr, size_t Size) { argument
20 TheStream->write(Ptr, Size);
25 while (Size != 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
29 Size -= Bytes;
H A Draw_os_ostream.cpp26 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) { argument
27 OS.write(Ptr, Size);
H A DFormattedStream.cpp23 static unsigned CountColumns(unsigned Column, const char *Ptr, size_t Size) { argument
27 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
41 void formatted_raw_ostream::ComputeColumn(const char *Ptr, size_t Size) { argument
45 if (Ptr <= Scanned && Scanned <= Ptr + Size) {
49 Size - (Scanned - Ptr));
51 ColumnScanned = CountColumns(ColumnScanned, Ptr, Size);
54 Scanned = Ptr + Size;
70 void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) { argument
72 ComputeColumn(Ptr, Size);
76 TheStream->write(Ptr, Size);
[all...]
/external/clang/lib/AST/
H A DDeclGroup.cpp22 unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls; local
23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
/external/llvm/lib/Target/PTX/
H A DPTXParamManager.cpp23 unsigned PTXParamManager::addArgumentParam(unsigned Size) { argument
26 Param.Size = Size;
40 unsigned PTXParamManager::addReturnParam(unsigned Size) { argument
43 Param.Size = Size;
57 unsigned PTXParamManager::addLocalParam(unsigned Size) { argument
60 Param.Size = Size;
/external/chromium/base/win/
H A Dscoped_hglobal.h29 size_t Size() const { return GlobalSize(glob_); } function in class:base::win::ScopedHGlobal
/external/clang/lib/Index/
H A DProgramImpl.h47 void *Allocate(unsigned Size, unsigned Align = 8) { argument
48 return BumpAlloc.Allocate(Size, Align);
/external/llvm/include/llvm/Bitcode/
H A DReaderWriter.h109 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
119 KnownHeaderSize = 4*4, // Size of header we read.
121 SizeField = 3*4 // Offset in bytes to Size field.
131 unsigned Size = ( BufPtr[SizeField ] | local
136 // Verify that Offset+Size fits in the file.
137 if (Offset+Size > unsigned(BufEnd-BufPtr))
140 BufEnd = BufPtr+Size;
/external/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h29 /// @param Size Size of live interval as returnexd by getSize()
31 static inline float normalizeSpillWeight(float UseDefFreq, unsigned Size) { argument
37 return UseDefFreq / (Size + 25*SlotIndex::InstrDist);
H A DMachineCodeInfo.h26 size_t Size; // Number of bytes in memory used member in class:llvm::MachineCodeInfo
30 MachineCodeInfo() : Size(0), Address(0) {}
33 Size = s;
41 return Size;
/external/llvm/include/llvm/Support/
H A DMemory.h30 MemoryBlock() : Address(0), Size(0) { }
31 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
33 size_t size() const { return Size; }
36 size_t Size; ///< Size, in bytes of the memory area member in class:llvm::sys::MemoryBlock
87 static bool setRangeExecutable(const void *Addr, size_t Size);
91 static bool setRangeWritable(const void *Addr, size_t Size);
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h34 // a pointer to the allocated memory and update Size to reflect how much
36 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) { argument
47 return JMM->startFunctionBody(F, Size);
/external/llvm/lib/MC/
H A DMCAtom.cpp16 void MCAtom::addInst(const MCInst &I, uint64_t Address, unsigned Size) { argument
19 assert(Address < End+Size &&
22 Parent->remap(this, Begin, End+Size);
H A DMCAsmInfo.cpp105 unsigned Size = 0; local
108 Size += sizeof(int8_t);
110 return Size;
114 unsigned Size = 0; local
122 Size += sizeof(int8_t);
124 return Size;
/external/llvm/lib/Target/MBlaze/
H A DMBlazeTargetObjectFile.cpp41 static bool IsInSmallSection(uint64_t Size) { argument
42 return Size > 0 && Size <= 8;
/external/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp45 static bool IsInSmallSection(uint64_t Size) { argument
46 return Size > 0 && Size <= SSThreshold;
/external/mesa3d/src/mesa/program/
H A Dprog_parameter.h64 * The next program parameter's Size will be Size-4 of this parameter.
66 //GLuint Size;
88 GLuint Size; /**< allocated size of Parameters, ParameterValues */ member in struct:gl_program_parameter_list
90 struct gl_program_parameter *Parameters; /**< Array [Size] */
91 //GLfloat (*ParameterValues)[4]; /**< Array [Size] of GLfloat[4] */
H A Dprog_uniform.h64 GLuint Size; /**< allocated size of Uniforms array */ member in struct:gl_uniform_list
68 struct gl_uniform *Uniforms; /**< Array [Size] */
/external/zlib/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs37 public int Size { get { return _size; } } property in class:DotZLib.CircularBuffer
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)
/external/clang/lib/Rewrite/
H A DRewriteRope.cpp83 /// Size - This is the number of bytes of file this node (including any
85 unsigned Size; member in class:__anon2916::RopePieceBTreeNode
91 RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {}
96 unsigned size() const { return Size; }
164 Size = 0;
195 /// FullRecomputeSizeLocally - This method recomputes the 'Size' field by
198 Size = 0;
200 Size += getPiece(i).size();
265 Size -= Pieces[i].size();
267 Size
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp66 DefinedOrUnknownSVal Size = local
72 svalBuilder.evalEQ(state, Extent, Size);
/external/llvm/include/llvm/ExecutionEngine/
H A DJITEventListener.h63 void *Code, size_t Size,
62 NotifyFunctionEmitted(const Function &F, void *Code, size_t Size, const EmittedFunctionDetails &Details) argument
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp104 virtual MemSlab *Allocate(size_t Size) { argument
108 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
113 Slab->Size = Size;
140 EXPECT_LE(Ptr + 3000, ((uintptr_t)Slab) + Slab->Size);
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp157 int Size = Action->getValueAsInt("Size"); local
162 if (Size)
163 O << Size << ", "; local
196 int Size = Action->getValueAsInt("Size"); local
200 << Size << ", " << Align << ", ArgFlags);\n";
/external/webkit/Source/WebKit/chromium/public/
H A DWebSize.h81 WebSize(const gfx::Size& s)
87 WebSize& operator=(const gfx::Size& s)
94 operator gfx::Size() const
96 return gfx::Size(width, height);

Completed in 449 milliseconds

1234567891011