Searched refs:Offsets (Results 1 - 25 of 45) sorted by relevance

12

/external/skia/src/sfnt/
H A DSkOTTable_loca.h23 union Offsets { union in struct:SkOTTableIndexToLocation
/external/llvm/unittests/Transforms/IPO/
H A DLowerTypeTests.cpp18 std::vector<uint64_t> Offsets; member in struct:__anon13726
56 for (auto Offset : T.Offsets)
68 for (auto Offset : T.Offsets)
71 auto I = T.Offsets.begin();
73 if (I != T.Offsets.end() && *I == NonOffset) {
/external/clang/tools/clang-format/
H A DClangFormat.cpp39 Offsets("offset",
142 if (!Offsets.empty() || !Lengths.empty()) {
168 if (Offsets.empty())
169 Offsets.push_back(0);
170 if (Offsets.size() != Lengths.size() &&
171 !(Offsets.size() == 1 && Lengths.empty())) {
175 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
176 if (Offsets[i] >= Code->getBufferSize()) {
177 errs() << "error: offset " << Offsets[i] << " is outside the file\n";
181 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[
[all...]
/external/llvm/lib/Support/
H A DSignals.cpp53 const char **Modules, intptr_t *Offsets,
102 std::vector<intptr_t> Offsets(Depth, 0);
103 if (!findModulesAndOffsets(StackTrace, Depth, Modules.data(), Offsets.data(),
117 Input << Modules[i] << " " << (void*)Offsets[i] << "\n";
171 OS << "(" << Modules[i] << '+' << format_hex(Offsets[i], 0) << ")";
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/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DR600MCCodeEmitter.cpp115 int64_t Offsets[3] = { local
124 SrcSelect[ELEMENT_W] << 29 | Offsets[0] << 0 | Offsets[1] << 5 |
125 Offsets[2] << 10;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DAnalysis.h51 /// If Offsets is non-null, it points to a vector to be filled in
56 SmallVectorImpl<uint64_t> *Offsets = 0,
/external/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h71 SmallVector<uint64_t, 16> Offsets; member in struct:llvm::lowertypetests::BitSetBuilder
82 Offsets.push_back(Offset);
/external/swiftshader/third_party/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/llvm/include/llvm/CodeGen/
H A DAnalysis.h69 /// If Offsets is non-null, it points to a vector to be filled in
74 SmallVectorImpl<uint64_t> *Offsets = nullptr,
/external/swiftshader/third_party/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.cpp495 const char *Offsets = Buf; local
497 Offsets += sizeof(uint64_t);
499 Offsets += sizeof(uint32_t);
502 Offset = read32be(Offsets + SymbolIndex * 4);
504 Offset = read64be(Offsets + SymbolIndex * 8);
507 // Offsets (the first uint32_t is the number of bytes of the ranlib
512 Offset = read32le(Offsets + SymbolIndex * 8 + 4);
515 // Offsets (the first uint64_t is the number of bytes of the ranlib_64
520 Offset = read64le(Offsets + SymbolIndex * 16 + 8);
542 Offset = read32le(Offsets
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.h62 static const SpillSlot Offsets[] = { variable
70 NumEntries = array_lengthof(Offsets);
71 return Offsets;
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCFrameLowering.h132 static const SpillSlot Offsets[] = { local
312 NumEntries = array_lengthof(Offsets);
314 return Offsets;
/external/abi-compliance-checker/modules/Internals/
H A DCallConv.pm173 my %Offsets = ();
198 $Offsets{$Pos} = $Pos;
207 $Offsets{$Pos} = $Offset;
235 $GroupClasses{$Offsets{$Pos}+$Offset} = $SubClasses{$Offset};
281 my @Offsets = sort {int($a)<=>int($b)} keys(%{$PreClasses});
282 if($#Offsets==0) {
288 while($Num<=$#Offsets-1)
290 my $Offset1 = $Offsets[$Num];
291 my $Offset2 = $Offsets[$Num+1];
337 if($Num==$#Offsets) {
[all...]
H A DXmlDump.pm154 if(my @Offsets = keys(%{$TInfo{"VTable"}}))
157 foreach my $Offset (sort { $a<=>$b } @Offsets)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp213 SmallVector<int64_t, 4> Offsets; local
232 Offsets.push_back(Offset1);
234 Offsets.push_back(Offset2);
246 std::sort(Offsets.begin(), Offsets.end());
251 int64_t BaseOff = Offsets[0];
254 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
255 int64_t Offset = Offsets[i];
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp182 SmallVector<int64_t, 4> Offsets; local
198 Offsets.push_back(Offset1);
200 Offsets.push_back(Offset2);
210 std::sort(Offsets.begin(), Offsets.end());
215 int64_t BaseOff = Offsets[0];
218 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
219 int64_t Offset = Offsets[i];
/external/llvm/lib/CodeGen/
H A DAnalysis.cpp82 /// If Offsets is non-null, it points to a vector to be filled in
87 SmallVectorImpl<uint64_t> *Offsets,
96 ComputeValueVTs(TLI, DL, *EI, ValueVTs, Offsets,
105 ComputeValueVTs(TLI, DL, EltTy, ValueVTs, Offsets,
114 if (Offsets)
115 Offsets->push_back(StartingOffset);
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp3424 auto &Offsets = SplitOffsetsMap[I];
3425 assert(Offsets.Splits.empty() &&
3427 Offsets.S = &S;
3428 Offsets.Splits.push_back(P.endOffset() - S.beginOffset());
3438 auto &Offsets = SplitOffsetsMapI->second;
3440 assert(Offsets.S == S && "Found a mismatched slice!");
3441 assert(!Offsets.Splits.empty() &&
3443 assert(Offsets.Splits.back() ==
3444 P.beginOffset() - Offsets.S->beginOffset() &&
3450 Offsets
[all...]
/external/llvm/lib/Support/Windows/
H A DSignals.inc253 intptr_t *Offsets;
270 Data->Offsets[I] = Addr - Beg;
277 const char **Modules, intptr_t *Offsets,
286 Data.Offsets = Offsets;
/external/llvm/lib/Support/Unix/
H A DSignals.inc339 const char **Modules, intptr_t *Offsets,
343 Modules, Offsets, MainExecutableName};
351 const char **Modules, intptr_t *Offsets,
/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmstypes.c4196 cmsFloat64Number* Offsets; local
4212 Offsets = (cmsFloat64Number*) _cmsCalloc(self ->ContextID, OutputChans, sizeof(cmsFloat64Number));
4213 if (Offsets == NULL) {
4225 _cmsFree(self ->ContextID, Offsets);
4238 _cmsFree(self ->ContextID, Offsets);
4241 Offsets[i] = v;
4245 mpe = cmsStageAllocMatrix(self ->ContextID, OutputChans, InputChans, Matrix, Offsets);
4247 _cmsFree(self ->ContextID, Offsets);
4833 cmsUInt32Number *Offsets; member in struct:__anon15905
4846 e->Offsets
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp707 const SmallVectorImpl<int64_t> &Offsets,
807 const SmallVectorImpl<int64_t> &Offsets,
837 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
838 E = Offsets.end(); I != E; ++I) {
1034 SmallVector<int64_t, 8> Offsets; member in class:__anon18946::LSRUse
1155 OS << ", Offsets={";
1156 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1157 E = Offsets.end(); I != E; ++I) {
1931 if (NewOffset != LU.Offsets.back())
1932 LU.Offsets
803 RateFormula(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) argument
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp85 SmallVectorImpl<uint64_t> *Offsets = nullptr,
97 if (Offsets)
98 Offsets->push_back(Off+j*VT.getVectorElementType().getStoreSize());
102 if (Offsets)
103 Offsets->push_back(Off);
1103 SmallVector<uint64_t, 16> Offsets; local
1104 ComputePTXValueVTs(*this, DAG.getDataLayout(), Ty, vtparts, &Offsets,
1121 unsigned ArgAlign = GreatestCommonDivisor64(align, Offsets[j]);
1131 DAG.getConstant(Offsets[j], dl, MVT::i32),
1327 SmallVector<uint64_t, 16> Offsets; local
1610 SmallVector<uint64_t, 16> Offsets; local
[all...]

Completed in 636 milliseconds

12