/external/eigen/Eigen/src/Eigenvalues/ |
Tridiagonalization.h | 73 Size = MatrixType::RowsAtCompileTime, 74 SizeMinusOne = Size == Dynamic ? Dynamic : (Size > 1 ? Size - 1 : 1), 103 * \param [in] size Positive integer, size of the matrix whose tridiagonal 107 * perform decompositions via compute(). The \p size parameter is only 108 * used as a hint. It is not an error to give a wrong \p size, but it may 113 Tridiagonalization(Index size = Size==Dynamic ? 2 : Size [all...] |
/external/eigen/test/ |
jacobisvd.cpp | 196 enum { Size = MatrixType::RowsAtCompileTime }; 198 typedef Matrix<RealScalar, Size, 1> RealVecType; 342 // Test problem size constructors
|
/external/freetype/src/pfr/ |
pfrload.c | 178 /* check signature and header size */ 230 FT_UInt32 size; local 242 FT_READ_USHORT( size ) || 246 /* save logical font size and offset */ 247 log_font->size = size; 257 if ( FT_STREAM_SEEK( offset ) || FT_FRAME_ENTER( size ) ) 261 limit = p + size; 715 FT_UInt32 size ) 731 if ( FT_STREAM_SEEK( offset ) || FT_FRAME_ENTER( size ) ) [all...] |
/external/llvm/include/llvm/ADT/ |
BitVector.h | 33 unsigned Size; // Size of bitvector in bits. 34 unsigned Capacity; // Size of allocated memory in BitWord. 74 BitVector() : Size(0), Capacity(0) { 80 explicit BitVector(unsigned s, bool t = false) : Size(s) { 89 BitVector(const BitVector &RHS) : Size(RHS.size()) { 90 if (Size == 0) { 96 Capacity = NumBitWords(RHS.size()); 103 : Bits(RHS.Bits), Size(RHS.Size), Capacity(RHS.Capacity) 116 unsigned size() const { return Size; } function in class:llvm::BitVector [all...] |
/external/llvm/include/llvm/Analysis/ |
AliasAnalysis.h | 20 // component specifies the base memory address of the region. The Size specifies 21 // the maximum size (in address units) of the memory region, or UnknownSize if 22 // the size is not known. The TBAA tag identifies the "type" of the memory 27 // alias, regardless of the value of the Size component. 82 /// size arguments in alias queries to indicate that the caller does not 96 /// getTypeStoreSize - Return the DataLayout store size for the given type, 109 /// Size - The maximum size of the location, in address-units, or 110 /// UnknownSize if the size is not known. Note that an unknown size doe [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveIntervalUnion.h | 182 unsigned Size; 185 Array() : Size(0), LIUs(0) {} 188 // Initialize the array to have Size entries. 189 // Reuse an existing allocation if the size matches. 190 void init(LiveIntervalUnion::Allocator&, unsigned Size); 192 unsigned size() const { return Size; } function in class:llvm::LiveIntervalUnion::Array 197 assert(idx < Size && "idx out of bounds");
|
/external/llvm/include/llvm/Object/ |
Archive.h | 31 char Size[10]; ///< Size of data, not including header or padding. 84 /// \return the size of the archive member without the header or padding. 85 uint64_t getSize() const { return Data.size() - StartOfFile; }
|
/external/llvm/include/llvm/Support/ |
Allocator.h | 36 void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); } 55 size_t Size; 63 /// doesn't have to remember the size of the pointer it allocated. 67 virtual MemSlab *Allocate(size_t Size) = 0; 82 virtual MemSlab *Allocate(size_t Size) LLVM_OVERRIDE; 94 /// SlabSize - Allocate data into slabs of this size unless we get an 140 BumpPtrAllocator(size_t size = 4096, size_t threshold = 4096, 150 void *Allocate(size_t Size, size_t Alignment); 192 SpecificBumpPtrAllocator(size_t size = 4096, size_t threshold = 4096 [all...] |
raw_ostream.h | 92 /// determined buffer size. 96 /// specified buffer size. 97 void SetBufferSize(size_t Size) { 99 SetBufferAndMode(new char[Size], Size, InternalBuffer); 108 // Otherwise just return the size of the allocated buffer. 157 size_t Size = Str.size(); 160 if (OutBufCur+Size > OutBufEnd) 161 return write(Str.data(), Size); [all...] |
/external/llvm/lib/Analysis/ |
AliasAnalysis.cpp | 261 uint64_t Size = UnknownSize; 263 Size = C->getValue().getZExtValue(); 269 return Location(MTI->getRawSource(), Size, TBAATag); 274 uint64_t Size = UnknownSize; 276 Size = C->getValue().getZExtValue(); 282 return Location(MTI->getRawDest(), Size, TBAATag); 486 /// getTypeStoreSize - Return the DataLayout store size for the given type,
|
AliasAnalysisEvaluator.cpp | 184 errs() << "Function: " << F.getName() << ": " << Pointers.size() 185 << " pointers, " << CallSites.size() << " call sites\n"; 279 uint64_t Size = AliasAnalysis::UnknownSize; 281 if (ElTy->isSized()) Size = AA.getTypeStoreSize(ElTy); 283 switch (AA.getModRefInfo(*C, *V, Size)) {
|
AliasSetTracker.cpp | 96 uint64_t Size, const MDNode *TBAAInfo, 107 AliasAnalysis::Location(Entry.getValue(), Size, TBAAInfo)); 110 else // First entry of must alias must have maximum size! 111 P->updateSizeAndTBAAInfo(Size, TBAAInfo); 116 Entry.updateSizeAndTBAAInfo(Size, TBAAInfo); 143 bool AliasSet::aliasesPointer(const Value *Ptr, uint64_t Size, 156 AliasAnalysis::Location(Ptr, Size, TBAAInfo)); 162 if (AA.alias(AliasAnalysis::Location(Ptr, Size, TBAAInfo), 169 for (unsigned i = 0, e = UnknownInsts.size(); i != e; ++i) 171 AliasAnalysis::Location(Ptr, Size, TBAAInfo)) ! [all...] |
/external/llvm/lib/CodeGen/ |
IntrinsicLowering.cpp | 174 default: llvm_unreachable("Unhandled type size of value to byteswap!"); 467 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, 472 Ops[2] = Size; 478 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, 483 Ops[2] = Size; 489 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, 497 Ops[2] = Size;
|
StackSlotColoring.cpp | 215 for (unsigned i = 0, e = OtherLIs.size(); i != e; ++i) { 255 // Change size and alignment of the allocated slot. If there are multiple 256 // objects sharing the same slot, then make sure the size and alignment 261 int64_t Size = OrigSizes[FI]; 262 if (!Share || Size > MFI->getObjectSize(Color)) 263 MFI->setObjectSize(Color, Size); 278 for (unsigned i = 0, e = SSIntervals.size(); i != e; ++i) { 291 for (unsigned i = 0, e = SSIntervals.size(); i != e; ++i) { 300 for (unsigned i = 0, e = SSIntervals.size(); i != e; ++i) 309 for (unsigned SS = 0, SE = SSRefs.size(); SS != SE; ++SS) [all...] |
TargetLoweringObjectFileImpl.cpp | 79 unsigned Size = TM.getDataLayout()->getPointerSize(); 83 const MCExpr *E = MCConstantExpr::Create(Size, getContext()); 87 Streamer.EmitSymbolValue(Sym, Size); 328 /// specified size and relocation information, return a section that it
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
IntelJITEventListener.cpp | 131 LineInfo.reserve(Details.LineStarts.size() + 1); 170 FunctionMessage.line_number_size = LineInfo.size(); 210 uint64_t Size; 213 if (I->getSize(Size)) continue; 222 Size); 224 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); 232 if (LineInfo.size() == 0) { 239 FunctionMessage.line_number_size = LineInfo.size();
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
ExternalFunctions.cpp | 190 if (ArgVals.size() > NumArgs && F->isVarArg()) { 304 assert(Args.size() == 1); 383 unsigned Size = strlen(FmtBuf); 384 FmtBuf[Size] = FmtBuf[Size-1]; 385 FmtBuf[Size+1] = 0; 386 FmtBuf[Size-1] = 'l'; 429 assert(args.size() < 10 && "Only handle up to 10 args to sscanf right now!"); 432 for (unsigned i = 0; i < args.size(); ++i) 445 assert(args.size() < 10 && "Only handle up to 10 args to scanf right now!") [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldImpl.h | 52 /// Size - section size. Doesn't include the stubs. 53 size_t Size; 69 SectionEntry(StringRef name, uint8_t *address, size_t size, 71 : Name(name), Address(address), Size(size), LoadAddress((uintptr_t)address), 72 StubOffset(size), ObjAddress(objAddress) {} 95 /// The size of this relocation (MachO specific). 96 unsigned Size; 100 IsPCRel(false), Size(0) { [all...] |
RuntimeDyldMachO.cpp | 62 for (int i = 0, e = Sections.size(); i != e; ++i) { 79 unsigned char *End = P + EHFrame->Size; 84 return StringRef((char*)EHFrame->Address, EHFrame->Size); 91 RE.IsPCRel, RE.Size); 104 unsigned Size = 1 << LogSize; 113 << " Size: " << Size 125 Size, 134 Size, 144 Size, [all...] |
/external/llvm/lib/MC/ |
MCELFStreamer.cpp | 256 void MCELFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, 275 struct LocalCommon L = {&SD, Size, ByteAlignment}; 278 SD.setCommon(Size, ByteAlignment); 281 SD.setSize(MCConstantExpr::Create(Size, getContext())); 289 void MCELFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, 296 EmitCommonSymbol(Symbol, Size, ByteAlignment); 299 void MCELFStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size) { 303 MCObjectStreamer::EmitValueImpl(Value, Size); 418 for (unsigned i = 0, e = F.getFixups().size(); i != e; ++i) 430 for (unsigned i = 0, e = Fixups.size(); i != e; ++i [all...] |
/external/llvm/lib/MC/MCParser/ |
ELFAsmParser.cpp | 64 addDirectiveHandler<&ELFAsmParser::ParseDirectiveSize>(".size"); 235 unsigned Size = 0; 252 CurSize = getTok().getIdentifier().size() + 2; 255 CurSize = getTok().getIdentifier().size(); 261 Size += CurSize; 262 SectionName = StringRef(FirstLoc.getPointer(), Size); 268 if (Size == 0) 285 for (unsigned i = 0; i < flagsStr.size(); i++) { 351 int64_t Size = 0; 404 return TokError("expected the entry size"); [all...] |
/external/llvm/lib/Support/ |
FoldingSet.cpp | 31 return static_cast<unsigned>(hash_combine_range(Data, Data+Size)); 35 if (Size != RHS.Size) return false; 36 return memcmp(Data, RHS.Data, Size*sizeof(*Data)) == 0; 42 if (Size != RHS.Size) 43 return Size < RHS.Size; 44 return memcmp(Data, RHS.Data, Size*sizeof(*Data)) < 0; 88 unsigned Size = String.size() [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64BranchFixupPass.cpp | 51 /// Information about the offset and size of a single basic block. 64 /// Size of the basic block in bytes. If the block contains inline 67 /// The size does not include any alignment padding whether from the 69 unsigned Size; 76 /// size. The real size may be smaller than Size bytes by a multiple of 1 80 BasicBlockInfo() : Offset(0), Size(0), KnownBits(0), Unalign(0) {} 87 // If the block size isn't a multiple of the known bits, assume the 89 if (Size & ((1u << Bits) - 1) [all...] |
/external/llvm/lib/Target/Mips/Disassembler/ |
MipsDisassembler.cpp | 61 uint64_t &size, 80 uint64_t &size, 238 uint64_t &size, 245 size = 0; 269 uint64_t &Size, 276 DecodeStatus Result = readInstruction32(Region, Address, Size, 285 Size = 4; 294 uint64_t &Size, 301 DecodeStatus Result = readInstruction32(Region, Address, Size, 310 Size = 4 [all...] |
/external/llvm/lib/Target/Mips/ |
MipsLongBranch.cpp | 15 // 2. If program has inline assembly statements whose size cannot be 55 uint64_t Size, Address; 59 MBBInfo() : Size(0), HasLongBranch(false), Br(0) {} 171 MBBInfos.resize(MF->size()); 175 for (unsigned I = 0, E = MBBInfos.size(); I < E; ++I) { 178 // Compute size of MBB. 181 MBBInfos[I].Size += TII->GetInstSizeInBytes(&*MI); 204 Offset += MBBInfos[N].Size; 211 Offset += MBBInfos[N].Size; 267 int64_t Offset = TgtAddress - (I.Address + I.Size - BalTgtMBBSize * 4) [all...] |