Searched refs:Size (Results 1 - 25 of 456) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
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;
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCBuffer.h25 virtual Size Seek(Long off, int dir) = 0;
26 virtual Size Position(void) const = 0;
27 virtual Size GetSize(void) const = 0;
37 virtual Size Getn(UByte* p, Size n) = 0;
38 virtual int CopyOut(UByte* p, Size& n) = 0;
43 virtual Size Putn(const UByte* p, Size n) = 0;
44 virtual int CopyIn(const UByte* p, Size& n) = 0;
H A DCBufferSegment.h26 static CBufferSegment * New(Size len = kDefaultCBufferSize); // allocate and init a buffer of size len
27 static CBufferSegment * New(UByte *buffer, Size len); // use existing buffer, don't alloc or free it
37 virtual Size Getn(UByte* p, Size n);
38 virtual int CopyOut(UByte* p, Size& n);
43 virtual Size Putn(const UByte* p, Size n);
44 virtual int CopyIn(const UByte* p, Size& n);
53 virtual Size Seek(Long off, int dir);
54 virtual Size Positio
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
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 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 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...]
H A DAllocator.cpp57 End = ((char*)CurSlab) + CurSlab->Size;
67 // preserve the Size and NextPtr fields at the beginning.
68 sys::Memory::setRangeWritable(Slab + 1, Slab->Size - sizeof(MemSlab));
69 memset(Slab + 1, 0xCD, Slab->Size - sizeof(MemSlab));
84 End = ((char*)CurSlab) + CurSlab->Size;
89 void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) { argument
94 BytesAllocated += Size;
103 if (Ptr + Size <= End) {
104 CurPtr = Ptr + Size;
108 // If Size i
169 Allocate(size_t Size) argument
180 PrintRecyclerStats(size_t Size, size_t Align, size_t FreeListSize) argument
[all...]
H A Draw_ostream.cpp80 if (size_t Size = preferred_buffer_size())
81 SetBufferSize(Size);
87 void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, argument
89 assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) ||
90 (Mode != Unbuffered && BufferStart && Size)) &&
99 OutBufEnd = OutBufStart+Size;
287 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { argument
289 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
292 write_impl(Ptr, Size);
297 return write(Ptr, Size);
324 copy_to_buffer(const char *Ptr, size_t Size) argument
518 write_impl(const char *Ptr, size_t Size) argument
695 write_impl(const char *Ptr, size_t Size) argument
734 write_impl(const char *Ptr, size_t Size) argument
778 write_impl(const char *Ptr, size_t Size) argument
[all...]
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Dbitesize.d70 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
79 printa("%8d %S\n%@d\n", @Size);
H A Dtcpwdist.d72 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
80 printa(" PID: %-6d CMD: %S\n%@d\n", @Size);
/macosx-10.9.5/dtrace-118.1/DTTk/Disk/
H A Dbitesize.d70 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
79 printa("%8d %S\n%@d\n", @Size);
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h31 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, argument
33 return JMM->allocateDataSection(Size, Alignment, SectionID);
36 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, argument
38 return JMM->allocateCodeSection(Size, Alignment, SectionID);
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/
H A DMCInstrAnalysis.cpp14 uint64_t Size) const {
20 return Addr+Size+Imm;
H A DMCAsmInfo.cpp98 unsigned Size = 0; local
101 Size += sizeof(int8_t);
103 return Size;
107 unsigned Size = 0; local
115 Size += sizeof(int8_t);
117 return Size;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMMachineFunctionInfo.h39 /// VarArgsRegSaveSize - Size of the register save area for vararg functions.
196 int Size = GPRCS1Frames.size(); local
197 if (fi >= Size) {
198 Size *= 2;
199 if (fi >= Size)
200 Size = fi+1;
201 GPRCS1Frames.resize(Size);
208 int Size = GPRCS2Frames.size(); local
209 if (fi >= Size) {
210 Size *
220 int Size = DPRCSFrames.size(); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/lli/
H A DRemoteTarget.cpp23 bool RemoteTarget::allocateSpace(size_t Size, unsigned Alignment, argument
26 sys::MemoryBlock Mem = sys::Memory::AllocateRWX(Size, Prev, &ErrorMsg);
37 bool RemoteTarget::loadData(uint64_t Address, const void *Data, size_t Size) { argument
38 memcpy ((void*)Address, Data, Size);
39 sys::MemoryBlock Mem((void*)Address, Size);
44 bool RemoteTarget::loadCode(uint64_t Address, const void *Data, size_t Size) { argument
45 memcpy ((void*)Address, Data, Size);
H A DRemoteTarget.h38 /// @param Size Amount of space, in bytes, to allocate.
44 bool allocateSpace(size_t Size, unsigned Alignment, uint64_t &Address);
50 /// @param Size Number of bytes to copy.
54 bool loadData(uint64_t Address, const void *Data, size_t Size);
60 /// @param Size Number of bytes to copy.
64 bool loadCode(uint64_t Address, const void *Data, size_t Size);
H A DRecordingMemoryManager.cpp19 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
23 void *Addr = malloc(Size);
25 sys::MemoryBlock Block(Addr, Size);
31 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
35 void *Addr = malloc(Size);
37 sys::MemoryBlock Block(Addr, Size);
62 uint8_t *RecordingMemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) { argument
66 uint8_t *RecordingMemoryManager::allocateGlobal(uintptr_t Size, unsigned Alignment) { argument
/macosx-10.9.5/dtrace-118.1/DTTk/Net/
H A Dtcpwdist.d72 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
80 printa(" PID: %-6d CMD: %S\n%@d\n", @Size);
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DSStubs.c111 Handle NewHandleClear(Size byteCount)
116 Handle NewHandle(Size byteCount)
121 if (!(h = malloc(sizeof(Ptr) + sizeof(Size))))
133 *((Size *)(h + 1)) = byteCount;
148 Size GetHandleSize(Handle h)
150 return h ? *((Size *)(h + 1)) : 0;
153 void SetHandleSize(Handle h, Size newSize)
163 *((Size *)(h + 1)) = newSize;
171 Size old_size = 0;
179 old_size = *((Size *)(hand
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DMemory.h31 MemoryBlock() : Address(0), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
34 size_t size() const { return Size; }
37 size_t Size; ///< Size, in bytes of the memory area member in class:llvm::sys::MemoryBlock
152 static bool setRangeExecutable(const void *Addr, size_t Size);
156 static bool setRangeWritable(const void *Addr, size_t Size);
H A DRecyclingAllocator.h26 size_t Size = sizeof(T), size_t Align = AlignOf<T>::Alignment>
31 Recycler<T, Size, Align> Base;
59 template<class AllocatorType, class T, size_t Size, size_t Align>
62 T, Size, Align> &Allocator) {
66 template<class AllocatorType, class T, size_t Size, size_t Align>
69 T, Size, Align> &A) {
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-objdump/
H A DMCFunction.cpp38 uint64_t Size; local
52 for (;Index < End; Index += Size) {
56 if (DisAsm->getInstruction(Inst, Size, Region, Index, DebugOut, nulls())){
57 Instructions.push_back(MCDecodedInst(Index, Size, Inst));
59 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size);
60 if (targ != -1ULL && targ == Index+Size)
68 WorkList.push_back(Index+Size);
70 Splits.insert(Index+Size);
74 Splits.insert(Index+Size);
77 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size);
[all...]
/macosx-10.9.5/zlib-53/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)
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DIRBuilder.cpp64 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, argument
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
68 Type *Tys[] = { Ptr->getType(), Size->getType() };
82 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, argument
87 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
88 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
106 CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, argument
111 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
112 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
125 CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) { argument
140 CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) argument
[all...]

Completed in 223 milliseconds

1234567891011>>