Home
last modified time | relevance | path

Searched refs:fSlots (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/include/private/
DSkTHash.h39 fSlots.reset(that.fCapacity);
41 fSlots[i] = that.fSlots[i];
51 fSlots = std::move(that.fSlots);
95 Slot& s = fSlots[index]; in find()
124 Slot& s = fSlots[index]; in remove()
141 if (fSlots[i].has_value()) { in foreach()
142 fn(&*fSlots[i]); in foreach()
151 if (fSlots[i].has_value()) { in foreach()
152 fn(*fSlots[i]); in foreach()
213 if (fSlots[i].has_value()) { in firstPopulatedSlot()
[all …]
/third_party/flutter/skia/include/private/
DSkTHash.h32 , fSlots(std::move(other.fSlots)) { other.fCount = other.fCapacity = 0; } in SkTHashTable()
75 Slot& s = fSlots[index]; in find()
104 Slot& s = fSlots[index]; in remove()
115 Slot& emptySlot = fSlots[index]; in remove()
126 Slot& s = fSlots[index]; in remove()
137 Slot& moveFrom = fSlots[index]; in remove()
146 if (!fSlots[i].empty()) { in foreach()
147 fn(&fSlots[i].val); in foreach()
156 if (!fSlots[i].empty()) { in foreach()
157 fn(fSlots[i].val); in foreach()
[all …]
/third_party/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.cpp263 std::vector<Slot> fSlots; member in SkSL::SkVMGenerator
475 arguments[argIdx + i] = fSlots[paramSlot + i].val; in writeFunction()
490 if (fDebugInfo && fSlots[slot].val != value) { in writeToSlot()
500 fSlots[slot].val = value; in writeToSlot()
555 size_t slot = fSlots.size(), in getSlot()
572 fSlots.insert(fSlots.end(), nslots, Slot{initialValue}); in getSlot()
945 val[i] = fSlots[slot + i].val; in writeVariableExpression()
1620 skvm::Val conditionalStore = this->writeConditionalStore(fSlots[slotNum].val, rhs[i], mask); in writeStore()