• Home
  • Raw
  • Download

Lines Matching refs:dataQueue

42     void ProcessData(const std::deque<T>& dataQueue,  in ProcessData()  argument
59 for (auto i = 0; i < dataQueue.size(); i++) { in ProcessData()
78 void MixRange(unsigned char op, T value, const std::deque<T>& dataQueue) in MixRange() argument
85 … ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] != value; }, in MixRange()
86 [&](TableRowId id) -> bool { return dataQueue[id] == value; }); in MixRange()
89 … ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] == value; }, in MixRange()
90 [&](TableRowId id) -> bool { return dataQueue[id] != value; }); in MixRange()
93 …ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] != invalidValue; … in MixRange()
94 [&](TableRowId id) -> bool { return dataQueue[id] == invalidValue; }); in MixRange()
97 …ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] == invalidValue; … in MixRange()
98 [&](TableRowId id) -> bool { return dataQueue[id] != invalidValue; }); in MixRange()
101 … ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] <= value; }, in MixRange()
102 [&](TableRowId id) -> bool { return dataQueue[id] > value; }); in MixRange()
105 … ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] < value; }, in MixRange()
106 [&](TableRowId id) -> bool { return dataQueue[id] >= value; }); in MixRange()
109 … ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] > value; }, in MixRange()
110 [&](TableRowId id) -> bool { return dataQueue[id] <= value; }); in MixRange()
113 … ProcessData(dataQueue, remove, [&](TableRowId id) -> bool { return dataQueue[id] >= value; }, in MixRange()
114 [&](TableRowId id) -> bool { return dataQueue[id] < value; }); in MixRange()