Home
last modified time | relevance | path

Searched refs:Iter (Results 1 - 25 of 277) sorted by relevance

12345678910>>...12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceRegAlloc.cpp386 void LinearScan::addSpillFill(IterationState &Iter) { in addSpillFill() argument
387 // Identify the actual instructions that begin and end Iter.Cur's live range. in addSpillFill()
388 // Iterate through Iter.Cur's node's instruction list until we find the actual in addSpillFill()
389 // instructions with instruction numbers corresponding to Iter.Cur's recorded in addSpillFill()
397 // (3) We still have to iterate through all instructions of Iter.Cur's live in addSpillFill()
400 // would be finding the instruction that begin's Iter.Cur's live range. in addSpillFill()
401 assert(!Iter.Cur->getLiveRange().isEmpty()); in addSpillFill()
402 InstNumberT Start = Iter.Cur->getLiveRange().getStart(); in addSpillFill()
403 InstNumberT End = Iter.Cur->getLiveRange().getEnd(); in addSpillFill()
404 CfgNode *Node = Func->getVMetadata()->getLocalUseNode(Iter in addSpillFill()
510 findRegisterPreference(IterationState &Iter) findRegisterPreference() argument
567 filterFreeWithInactiveRanges(IterationState &Iter) filterFreeWithInactiveRanges() argument
594 filterFreeWithPrecoloredRanges(IterationState &Iter) filterFreeWithPrecoloredRanges() argument
636 allocatePreferredRegister(IterationState &Iter) allocatePreferredRegister() argument
647 allocateFreeRegister(IterationState &Iter, bool Filtered) allocateFreeRegister() argument
663 handleNoFreeRegisters(IterationState &Iter) handleNoFreeRegisters() argument
844 IterationState Iter; scan() local
[all...]
H A DIceRegAlloc.h96 void addSpillFill(IterationState &Iter);
101 void findRegisterPreference(IterationState &Iter);
102 void filterFreeWithInactiveRanges(IterationState &Iter);
103 void filterFreeWithPrecoloredRanges(IterationState &Iter);
105 void allocatePreferredRegister(IterationState &Iter);
106 void allocateFreeRegister(IterationState &Iter, bool Filtered);
107 void handleNoFreeRegisters(IterationState &Iter);
/third_party/googletest/googletest/scripts/
H A Dgen_gtest_pred_impl.py190 def Iter(n, format, sep=''): function
198 Iter(3, 'v%s', sep=', ') returns 'v1, v2, v3'.
212 'vs' : Iter(n, 'v%s', sep=', '),
213 'vts' : Iter(n, '#v%s', sep=', '),
224 impl += Iter(n, """,
230 impl += Iter(n, """,
236 impl += Iter(n, """,
246 impl += Iter(n, """
251 impl += Iter(
270 impl += Iter(
[all...]
/third_party/skia/src/utils/
H A DSkNWayCanvas.cpp38 class SkNWayCanvas::Iter { class in SkNWayCanvas
40 Iter(const SkTDArray<SkCanvas*>& list) : fList(list) { in Iter() function in SkNWayCanvas::Iter
60 Iter iter(fList); in willSave()
69 Iter iter(fList); in getSaveLayerStrategy()
80 Iter iter(fList); in onDoSaveBehind()
89 Iter iter(fList); in willRestore()
97 Iter iter(fList); in onMarkCTM()
105 Iter iter(fList); in didConcat44()
112 Iter iter(fList); in didSetM44()
119 Iter ite in didTranslate()
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-iter.hh254 template<typename Iter, typename Item>
258 static hb_true_type impl (hb_priority<2>, hb_iter_t<Iter, hb_type_identity<Item2>> *);
262 static constexpr bool value = decltype (impl (hb_prioritize, hb_declval (Iter*)))::value;
264 #define hb_is_iterator_of(Iter, Item) hb_is_iterator_of<Iter, Item>::value
265 #define hb_is_iterator(Iter) hb_is_iterator_of (Iter, typename Iter::item_t)
287 template<typename Iter, typename Item>
291 template <typename Iter2 = Iter,
[all...]
H A Dhb-ot-shape-complex-use-machine.hh382 template <typename Iter>
384 hb_iter_with_fallback_t<machine_index_t<Iter>,
385 typename Iter::item_t>
387 machine_index_t (const Iter& it) : it (it) {} in machine_index_t()
390 static constexpr bool is_random_access_iterator = Iter::is_random_access_iterator;
391 static constexpr bool is_sorted_iterator = Iter::is_sorted_iterator;
393 typename Iter::item_t __item__ () const { return *it; } in __item__()
394 typename Iter::item_t __item_at__ (unsigned i) const { return it[i]; } in __item_at__()
407 Iter it;
411 template <typename Iter,
[all...]
/third_party/skia/src/core/
H A DSkArenaAllocList.h31 class Iter { class in SkArenaAllocList
33 Iter() = default;
34 inline Iter& operator++();
37 bool operator==(const Iter& that) const { return fCurr == that.fCurr; } in operator ==()
38 bool operator!=(const Iter& that) const { return !(*this == that); } in operator !=()
42 explicit Iter(Node* node) : fCurr(node) {} in Iter() function in SkArenaAllocList::Iter
46 Iter begin() { return Iter(fHead); } in begin()
47 Iter end() { return Iter(); } in end()
[all...]
H A DSkEnumerate.h17 template <typename Iter, typename C = skstd::monostate>
19 using Captured = decltype(*std::declval<Iter>());
42 constexpr Iterator(ptrdiff_t index, Iter it) : fIndex{index}, fIt{it} { } in Iterator()
52 Iter fIt;
56 constexpr SkEnumerate(Iter begin, Iter end) : SkEnumerate{0, begin, end} {} in SkEnumerate()
91 constexpr SkEnumerate(ptrdiff_t beginIndex, Iter begin, Iter end) in SkEnumerate()
98 Iter fBegin;
99 Iter fEn
[all...]
H A DSkTInternalLList.h191 class Iter { class in SkTInternalLList
198 Iter() : fCurr(nullptr) {} in Iter() function in SkTInternalLList::Iter
199 Iter(const Iter& iter) : fCurr(iter.fCurr) {} in Iter() function in SkTInternalLList::Iter
200 Iter& operator= (const Iter& iter) { fCurr = iter.fCurr; return *this; } in operator =()
239 bool operator!=(const Iter& that) { return fCurr != that.fCurr; } in operator !=()
247 Iter begin() const { in begin()
248 Iter iter; in begin()
249 iter.init(*this, Iter in begin()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
H A DInterfaceFile.cpp33 auto Iter = in addEntry() local
37 if ((Iter != std::end(Container)) && !(Target_ < *Iter)) in addEntry()
38 return Iter; in addEntry()
40 return Container.insert(Iter, Target_); in addEntry()
61 auto Iter = lower_bound(ParentUmbrellas, Target_, in addParentUmbrella() local
65 if ((Iter != ParentUmbrellas.end()) && !(Target_ < Iter->first)) { in addParentUmbrella()
66 Iter->second = Parent; in addParentUmbrella()
70 ParentUmbrellas.emplace(Iter, Target in addParentUmbrella()
75 auto Iter = lower_bound(UUIDs, Target_, addUUID() local
[all...]
/third_party/json/tests/src/
H A Dunit-class_iterator.cpp15 template<typename Iter>
16 using can_post_increment_temporary = decltype((std::declval<Iter>()++)++);
18 template<typename Iter>
19 using can_post_decrement_temporary = decltype((std::declval<Iter>()--)--);
389 using Iter = nlohmann::detail::primitive_iterator_t;
390 CHECK(std::is_same < decltype(std::declval<Iter&>()++), Iter >::value);
394 using Iter = nlohmann::detail::iter_impl<json>;
395 CHECK(std::is_same < decltype(std::declval<Iter&>()++), Iter >
[all...]
/third_party/skia/include/private/
H A DSkTHash.h161 class Iter { class in SkTHashTable
165 Iter(const TTable* table, int slot) : fTable(table), fSlot(slot) {} in Iter() function in SkTHashTable::Iter
167 static Iter MakeBegin(const TTable* table) { in MakeBegin()
168 return Iter{table, table->firstPopulatedSlot()}; in MakeBegin()
171 static Iter MakeEnd(const TTable* table) { in MakeEnd()
172 return Iter{table, table->capacity()}; in MakeEnd()
183 bool operator==(const Iter& that) const { in operator ==()
189 bool operator!=(const Iter& that) const { in operator !=()
193 Iter& operator++() { in operator ++()
198 Iter operato
[all...]
H A DSkDeque.h65 class Iter { class in SkDeque
75 Iter();
77 Iter(const SkDeque& d, IterStart startLoc);
89 // Inherit privately from Iter to prevent access to reverse iteration
90 class F2BIter : private Iter {
95 * Wrap Iter's 2 parameter ctor to force initialization to the
100 using Iter::next;
103 * Wrap Iter::reset to force initialization to the beginning of the
111 using INHERITED = Iter;
/third_party/skia/experimental/graphite/src/
H A DGraphicsPipelineDesc.h55 class Iter { class in skgpu::GraphicsPipelineDesc
57 Iter() : fCurr(nullptr), fRemaining(0) {} in Iter() function in skgpu::GraphicsPipelineDesc::Iter
58 Iter(const Iter& iter) : fCurr(iter.fCurr), fRemaining(iter.fRemaining) {} in Iter() function in skgpu::GraphicsPipelineDesc::Iter
59 Iter& operator= (const Iter& iter) { in operator =()
64 Iter(const Attribute* attrs, int count) : fCurr(attrs), fRemaining(count) { in Iter() function in skgpu::GraphicsPipelineDesc::Iter
68 bool operator!=(const Iter& that) const { return fCurr != that.fCurr; } in operator !=()
95 Iter begin() const { return Iter(fAttribute
[all...]
/third_party/rust/crates/quote/src/
H A Druntime.rs100 type Iter: Iterator; types
102 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter); in quote_into_iter()
106 type Iter = T::Iter; in quote_into_iter() types
108 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
114 type Iter = T::Iter; in quote_into_iter() types
116 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
122 type Iter = slice::Iter<' in quote_into_iter() types
130 type Iter = slice::Iter<'q, T>; quote_into_iter() types
138 type Iter = btree_set::Iter<'q, T>; quote_into_iter() types
146 type Iter = T::Iter; quote_into_iter() types
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCRegisterInfo.h237 MCRegisterInfo::DiffListIterator Iter; member in llvm::MCRegisterInfo::mc_difflist_iterator
242 mc_difflist_iterator(MCRegisterInfo::DiffListIterator Iter) : Iter(Iter) {} in mc_difflist_iterator() argument
246 Iter.init(Reg, DiffList); in mc_difflist_iterator()
247 Val = *Iter; in mc_difflist_iterator()
258 End.Iter.List = nullptr; in end()
263 return Iter.List == Arg.Iter.List; in operator ==()
270 assert(Iter in operator ++()
280 mc_subreg_iterator(MCRegisterInfo::DiffListIterator Iter) mc_subreg_iterator() argument
292 mc_superreg_iterator(MCRegisterInfo::DiffListIterator Iter) mc_superreg_iterator() argument
[all...]
/third_party/skia/src/ports/
H A DSkOSFile_posix.cpp131 static_assert(sizeof(SkOSFileIterData) <= SkOSFile::Iter::kStorageSize, "not_enough_space");
133 SkOSFile::Iter::Iter() { new (fSelf) SkOSFileIterData; } in Iter() function in SkOSFile::Iter
135 SkOSFile::Iter::Iter(const char path[], const char suffix[]) { in Iter() function in SkOSFile::Iter
140 SkOSFile::Iter::~Iter() { in ~Iter()
148 void SkOSFile::Iter::reset(const char path[], const char suffix[]) { in reset()
179 bool SkOSFile::Iter::next(SkString* name, bool getDir) { in next()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseBitVector.h325 ElementListConstIter Iter;
344 Iter = BitVector->Elements.begin();
345 BitNumber = Iter->index() * ElementSize;
346 unsigned BitPos = Iter->find_first();
349 Bits = Iter->word(WordNumber);
365 int NextSetBitNumber = Iter->find_next(BitNumber % ElementSize) ;
368 ++Iter;
372 if (Iter == BitVector->Elements.end()) {
377 BitNumber = Iter->index() * ElementSize;
378 NextSetBitNumber = Iter
[all...]
/third_party/skia/tests/
H A DLListTest.cpp66 typedef SkTInternalLList<ListElement>::Iter Iter; in DEF_TEST() typedef
67 Iter iter; in DEF_TEST()
69 ListElement* cur = iter.init(list, Iter::kHead_IterStart); in DEF_TEST()
74 cur = iter.init(list, Iter::kTail_IterStart); in DEF_TEST()
110 cur = iter.init(list, Iter::kHead_IterStart); in DEF_TEST()
149 cur = iter.init(listA, Iter::kHead_IterStart); in DEF_TEST()
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dmap.rs11 use super::{Entry, Iter, UnorderedMap};
29 pub fn iter(&self) -> Iter<K, V> { in iter()
30 Iter(self.vec.iter()) in iter()
76 type IntoIter = Iter<'a, K, V>;
149 pub struct Iter<'a, K, V>(slice::Iter<'a, (K, V)>); structure names
151 impl<'a, K, V> Iterator for Iter<'a, K, V> {
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dmap.rs11 use super::{Entry, Iter, UnorderedMap};
29 pub fn iter(&self) -> Iter<K, V> { in iter()
30 Iter(self.vec.iter()) in iter()
76 type IntoIter = Iter<'a, K, V>;
149 pub struct Iter<'a, K, V>(slice::Iter<'a, (K, V)>); structure names
151 impl<'a, K, V> Iterator for Iter<'a, K, V> {
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dmap.rs11 use super::{Entry, Iter, UnorderedMap};
29 pub fn iter(&self) -> Iter<K, V> { in iter()
30 Iter(self.vec.iter()) in iter()
76 type IntoIter = Iter<'a, K, V>;
149 pub struct Iter<'a, K, V>(slice::Iter<'a, (K, V)>); structure names
151 impl<'a, K, V> Iterator for Iter<'a, K, V> {
/third_party/rust/crates/cxx/syntax/
H A Dmap.rs11 use super::{Entry, Iter, UnorderedMap};
29 pub fn iter(&self) -> Iter<K, V> { in iter()
30 Iter(self.vec.iter()) in iter()
76 type IntoIter = Iter<'a, K, V>;
149 pub struct Iter<'a, K, V>(slice::Iter<'a, (K, V)>); structure names
151 impl<'a, K, V> Iterator for Iter<'a, K, V> {
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dmap.rs11 use super::{Entry, Iter, UnorderedMap};
29 pub fn iter(&self) -> Iter<K, V> { in iter()
30 Iter(self.vec.iter()) in iter()
76 type IntoIter = Iter<'a, K, V>;
149 pub struct Iter<'a, K, V>(slice::Iter<'a, (K, V)>); structure names
151 impl<'a, K, V> Iterator for Iter<'a, K, V> {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp98 auto Iter = StringToId.find(S); in getIdForString() local
99 assert(Iter != StringToId.end()); in getIdForString()
100 return Iter->second; in getIdForString()
104 auto Iter = IdToString.find(Id); in getStringForId() local
105 assert(Iter != IdToString.end()); in getStringForId()
106 return Iter->second; in getStringForId()

Completed in 14 milliseconds

12345678910>>...12