Lines Matching refs:begin
96 auto it = input_shapes.begin(); in LSTMOpModel()
124 auto it2 = output_shapes.begin(); in LSTMOpModel()
149 it2 = output_shapes.begin(); in LSTMOpModel()
161 void Set##X(const std::vector<float>& f) { X##_.insert(X##_.end(), f.begin(), f.end()); }
168 std::fill(OutputStateIn_.begin(), OutputStateIn_.end(), 0.f); in ResetOutputState()
169 std::fill(OutputStateOut_.begin(), OutputStateOut_.end(), 0.f); in ResetOutputState()
173 std::fill(CellStateIn_.begin(), CellStateIn_.end(), 0.f); in ResetCellState()
174 std::fill(CellStateOut_.begin(), CellStateOut_.end(), 0.f); in ResetCellState()
177 void SetInput(int offset, float* begin, float* end) { in SetInput() argument
178 for (; begin != end; begin++, offset++) { in SetInput()
179 Input_[offset] = *begin; in SetInput()