Searched refs:Size (Results 201 - 225 of 1042) sorted by relevance

1234567891011>>

/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:__anon1103::RopePieceBTreeNode
91 RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {}
96 unsigned size() const { return Size; }
162 Size = 0;
193 /// FullRecomputeSizeLocally - This method recomputes the 'Size' field by
196 Size = 0;
198 Size += getPiece(i).size();
262 Size -= Pieces[i].size();
264 Size
[all...]
/external/eigen/test/
H A Dproduct_symm.cpp12 template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, int othersize = OtherSize) argument
14 typedef Matrix<Scalar, Size, Size> MatrixType;
15 typedef Matrix<Scalar, Size, OtherSize> Rhs1;
16 typedef Matrix<Scalar, OtherSize, Size> Rhs2;
18 typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
/external/llvm/include/llvm/Transforms/Utils/
H A DLocal.h210 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask; local
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/CodeGen/
H A DCallingConvLower.cpp48 unsigned Size = ArgFlags.getByValSize(); local
49 if (MinSize > (int)Size)
50 Size = MinSize;
54 MF.getSubtarget().getTargetLowering()->HandleByVal(this, Size, Align);
55 Size = unsigned(RoundUpToAlignment(Size, MinAlign));
56 unsigned Offset = AllocateStack(Size, Align);
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp176 int Size = Action->getValueAsInt("Size"); local
181 if (Size)
182 O << Size << ", "; local
200 int Size = Action->getValueAsInt("Size"); local
217 << Size << ", " << Align << ", "
260 int Size = Action->getValueAsInt("Size"); local
264 << Size << ", " << Alig
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_bufferobjects.c105 ASSERT(offset + size <= obj->Size);
149 ASSERT(offset + size <= obj->Size);
184 st_obj->Base.Size = size;
233 st_obj->Base.Size = 0;
271 if (offset == 0 && length == obj->Size)
288 assert(offset < obj->Size);
289 assert(offset + length <= obj->Size);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOI386.h71 makeValueAddendPCRel(Value, Obj, RelI, 1 << RE.Size);
98 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
107 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
140 unsigned Size = Obj.getAnyRelocationLength(RE); local
144 unsigned NumBytes = 1 << Size;
180 Size);
200 unsigned Size = Obj.getAnyRelocationLength(RE); local
204 unsigned NumBytes = 1 << Size;
217 RelocationEntry R(SectionID, Offset, RelocType, Addend, IsPCRel, Size);
/external/compiler-rt/lib/builtins/
H A Dclear_cache.c34 static void clear_mips_cache(const void* Addr, size_t Size) { argument
39 "beq %[Size], $zero, 20f\n" /* If size == 0, branch around. */
41 "daddu %[Size], %[Addr], %[Size]\n" /* Calculate end address + 1 */
52 "sltu $at, %[Addr], %[Size]\n" /* Compare current with end
69 : [Addr] "+r"(Addr), [Size] "+r"(Size)
/external/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c91 #define UPDATE_memcpy(Data, Size) \
93 memcpy(Buffer, Data, Size); \
94 Buffer += Size; \
/external/eigen/unsupported/test/
H A Dpolynomialutils.cpp18 template<int Size>
22 ret = (Size == Dynamic) ? Dynamic : Size+1
/external/llvm/include/llvm/Bitcode/
H A DReaderWriter.h114 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
127 KnownHeaderSize = 4*4, // Size of header we read.
129 SizeField = 3*4 // Offset in bytes to Size field.
139 unsigned Size = ( BufPtr[SizeField ] | local
144 // Verify that Offset+Size fits in the file.
145 if (VerifyBufferSize && Offset+Size > unsigned(BufEnd-BufPtr))
148 BufEnd = BufPtr+Size;
/external/llvm/lib/MC/
H A DMCMachOStreamer.cpp82 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
99 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
102 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
103 void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size,
385 void MCMachOStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, argument
394 SD.setCommon(Size, ByteAlignment);
397 void MCMachOStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, argument
401 Symbol, Size, ByteAlignment);
405 uint64_t Size, unsigned ByteAlignment) {
423 MCFragment *F = new MCFillFragment(0, 0, Size,
404 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
435 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
/external/llvm/lib/Support/
H A DMD5.cpp79 unsigned long Size = Data.size(); local
172 } while (Size -= 64);
191 unsigned long Size = Data.size(); local
194 if ((lo = (saved_lo + Size) & 0x1fffffff) < saved_lo)
196 hi += Size >> 29;
203 if (Size < free) {
204 memcpy(&buffer[used], Ptr, Size);
210 Size -= free;
214 if (Size >= 64) {
215 Ptr = body(makeArrayRef(Ptr, Size
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64BranchRelaxation.cpp59 /// Size - Size of the basic block in bytes. If the block contains
64 unsigned Size; member in struct:__anon10626::AArch64BranchRelaxation::BasicBlockInfo
66 BasicBlockInfo() : Offset(0), Size(0) {}
72 unsigned PO = Offset + Size;
126 << format("size=%#x\n", BBI.Size);
167 unsigned Size = 0; local
169 Size += TII->GetInstSizeInBytes(&MI);
170 BlockInfo[MBB.getNumber()].Size = Size;
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp54 static bool IsInSmallSection(uint64_t Size) { argument
57 return Size > 0 && Size <= SSThreshold;
/external/llvm/lib/Target/R600/
H A DAMDGPUSubtarget.h159 bool hasBCNT(unsigned Size) const {
160 if (Size == 32)
163 if (Size == 64)
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.h30 SDValue Size, unsigned Align,
37 SDValue Size, unsigned Align, bool IsVolatile,
42 SDValue Src1, SDValue Src2, SDValue Size,
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAliasAnalysis.cpp70 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.AATags),
71 Location(SB, LocB.Size, LocB.AATags));
101 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.AATags),
/external/llvm/tools/dsymutil/
H A DDebugMap.cpp26 uint64_t LinkedAddress, uint32_t Size) {
28 std::make_pair(Name, SymbolMapping(ObjectAddress, LinkedAddress, Size)));
50 Sym.second.Size, Sym.first.data());
25 addSymbol(StringRef Name, uint64_t ObjectAddress, uint64_t LinkedAddress, uint32_t Size) argument
/external/lzma/CPP/7zip/UI/Common/
H A DArchiveOpenCallback.cpp52 case kpidSize: prop = _fileInfo.Size; break;
65 for (int i = 0; i < FileNames.Size(); i++)
111 TotalSize += _fileInfo.Size;
/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h98 if (id < 0 || id >= node_table_.Size()) {
105 I Size() const { return node_table_.Size(); } function in class:fst::Collection
/external/llvm/include/llvm/ADT/
H A DIntervalMap.h262 /// @param Size Number of elements in node.
263 void erase(unsigned i, unsigned j, unsigned Size) { argument
264 moveLeft(j, i, Size - j);
269 /// @param Size Number of elements in node.
270 void erase(unsigned i, unsigned Size) { argument
271 erase(i, i+1, Size);
276 /// @param Size Number of elements in node.
277 void shift(unsigned i, unsigned Size) { argument
278 moveRight(i, i + 1, Size - i);
282 /// @param Size Numbe
286 transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, unsigned Count) argument
297 transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, unsigned Count) argument
310 adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) argument
576 findFrom(unsigned i, unsigned Size, KeyT x) const argument
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp467 template <typename T, int Size>
468 struct Traits<Vector<T, Size> > :
469 ContainerTraits<Vector<T, Size>, Vector<typename Traits<T>::IVal, Size> >
505 template <typename T, int Size> struct ContainerOf { typedef Vector<T, Size> Container; };
508 template <int Size> struct ContainerOf<Void, Size> { typedef Void Container; };
899 template <typename T, int Size>
900 class ExprP<Vector<T, Size> >
[all...]
/external/ceres-solver/internal/ceres/
H A Dresidual_block.cc90 scratch += num_residuals * parameter_block->Size();
148 parameter_block->Size(),
150 parameter_block->Size(),
210 scratch_doubles += parameter_block->Size();
/external/clang/include/clang/Basic/
H A DFileManager.h63 off_t Size; // File size in bytes. member in class:clang::FileEntry
94 off_t getSize() const { return Size; }
239 const FileEntry *getVirtualFile(StringRef Filename, off_t Size,
274 static void modifyFileEntry(FileEntry *File, off_t Size,

Completed in 809 milliseconds

1234567891011>>