Searched defs:Offsets (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_loca.h23 union Offsets { union in struct:SkOTTableIndexToLocation
/external/skia/src/sfnt/
H A DSkOTTable_loca.h23 union Offsets { union in struct:SkOTTableIndexToLocation
/external/llvm/lib/Support/
H A DIntervalMap.cpp19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) { argument
21 path.front() = Entry(Root, Size, Offsets.first);
22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second));
/external/clang/lib/Parse/
H A DParseStmtAsm.cpp50 ArrayRef<Token> Toks, ArrayRef<unsigned> Offsets)
52 AsmTokOffsets(Offsets) {
49 ClangAsmParserCallback(Parser &P, SourceLocation Loc, StringRef AsmString, ArrayRef<Token> Toks, ArrayRef<unsigned> Offsets) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp219 SmallVector<int64_t, 4> Offsets; local
238 Offsets.push_back(Offset1);
240 Offsets.push_back(Offset2);
252 std::sort(Offsets.begin(), Offsets.end());
257 int64_t BaseOff = Offsets[0];
260 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
261 int64_t Offset = Offsets[i];
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DR600MCCodeEmitter.cpp118 int64_t Offsets[3] = { local
127 SrcSelect[ELEMENT_W] << 29 | Offsets[0] << 0 | Offsets[1] << 5 |
128 Offsets[2] << 10;
/external/llvm/tools/lli/
H A DRemoteMemoryManager.cpp94 SmallVector<std::pair<Allocation, uint64_t>, 16> Offsets; local
109 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
126 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
138 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
139 uint64_t Addr = RemoteAddr + Offsets[i].second;
140 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first.MB.base()), Addr);
142 DEBUG(dbgs() << " Mapping local: " << Offsets[i].first.MB.base()
145 MappedSections[Addr] = Offsets[i].first;
/external/llvm/lib/CodeGen/
H A DAnalysis.cpp72 /// If Offsets is non-null, it points to a vector to be filled in
77 SmallVectorImpl<uint64_t> *Offsets,
86 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
95 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
104 if (Offsets)
105 Offsets->push_back(StartingOffset);
75 ComputeValueVTs(const TargetLowering &TLI, Type *Ty, SmallVectorImpl<EVT> &ValueVTs, SmallVectorImpl<uint64_t> *Offsets, uint64_t StartingOffset) argument
/external/llvm/lib/Object/
H A DArchive.cpp336 const char *Offsets = Buf + 4; local
339 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets)
343 // Offsets (the first uint32_t is the number of bytes of the ranlib
348 Offset = *(reinterpret_cast<const support::ulittle32_t *>(Offsets) +
376 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets)
/external/chromium_org/net/base/
H A Dnet_util_icu.cc36 typedef std::vector<size_t> Offsets; typedef in namespace:net::__anon8438
820 Offsets offsets;
/external/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp67 static const SpillSlot Offsets[] = { local
194 NumEntries = array_lengthof(Offsets);
196 return Offsets;
/external/clang/lib/AST/
H A DVTableBuilder.cpp446 /// Offsets - Keeps track of methods and their offsets.
448 SmallVector<MethodAndOffsetPairTy, 16> Offsets; member in struct:__anon16961::VCallOffsetMap
466 bool empty() const { return Offsets.empty(); }
515 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) {
516 if (MethodsCanShareVCallOffset(Offsets[I].first, MD))
521 Offsets.push_back(MethodAndOffsetPairTy(MD, OffsetOffset));
527 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) {
528 if (MethodsCanShareVCallOffset(Offsets[I].first, MD))
529 return Offsets[I].second;
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp79 SmallVectorImpl<uint64_t> *Offsets = nullptr,
91 if (Offsets)
92 Offsets->push_back(Off+j*VT.getVectorElementType().getStoreSize());
96 if (Offsets)
97 Offsets->push_back(Off);
700 SmallVector<uint64_t, 16> Offsets; local
701 ComputePTXValueVTs(*this, Ty, vtparts, &Offsets, 0);
715 unsigned ArgAlign = GreatestCommonDivisor64(align, Offsets[j]);
725 DAG.getConstant(Offsets[j], MVT::i32),
917 SmallVector<uint64_t, 16> Offsets; local
1195 SmallVector<uint64_t, 16> Offsets; local
2064 SmallVector<uint64_t, 16> Offsets; local
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp2826 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); local
2827 if (Offsets.first || Offsets.second) {
2828 if (Offsets.first != 0)
2830 if (Offsets.second != 0)
2832 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
H A DASTReader.cpp951 const std::pair<uint64_t, uint64_t> &Offsets,
955 if (Offsets.first != 0) {
956 Cursor.JumpToBit(Offsets.first);
972 if (Offsets.second != 0) {
973 Cursor.JumpToBit(Offsets.second);
949 ReadDeclContextStorage(ModuleFile &M, BitstreamCursor &Cursor, const std::pair<uint64_t, uint64_t> &Offsets, DeclContextInfo &Info) argument
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp898 const SmallVectorImpl<int64_t> &Offsets,
990 const SmallVectorImpl<int64_t> &Offsets,
1030 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1031 E = Offsets.end(); I != E; ++I) {
1225 SmallVector<int64_t, 8> Offsets; member in class:__anon25463::LSRUse
1360 OS << ", Offsets={";
1361 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1362 E = Offsets.end(); I != E; ++I) {
2280 if (NewOffset != LU.Offsets.back())
2281 LU.Offsets
985 RateFormula(const TargetTransformInfo &TTI, const Formula &F, SmallPtrSet<const SCEV *, 16> &Regs, const DenseSet<const SCEV *> &VisitedRegs, const Loop *L, const SmallVectorImpl<int64_t> &Offsets, ScalarEvolution &SE, DominatorTree &DT, const LSRUse &LU, SmallPtrSet<const SCEV *, 16> *LoserRegs) argument
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmstypes.c4176 cmsFloat64Number* Offsets; local
4188 Offsets = (cmsFloat64Number*) _cmsCalloc(self ->ContextID, OutputChans, sizeof(cmsFloat64Number));
4189 if (Offsets == NULL) {
4209 Offsets[i] = v;
4213 mpe = cmsStageAllocMatrix(self ->ContextID, OutputChans, InputChans, Matrix, Offsets);
4215 _cmsFree(self ->ContextID, Offsets);
4794 cmsUInt32Number *Offsets; member in struct:__anon27817
4807 e->Offsets = (cmsUInt32Number *) _cmsCalloc(ContextID, Count, sizeof(cmsUInt32Number));
4808 if (e->Offsets == NULL) return FALSE;
4813 _cmsFree(ContextID, e -> Offsets);
[all...]

Completed in 604 milliseconds