Lines Matching refs:begin
102 auto it = input_shapes.begin(); in LayerNormLSTMOpModel()
133 auto it2 = output_shapes.begin(); in LayerNormLSTMOpModel()
159 it2 = output_shapes.begin(); in LayerNormLSTMOpModel()
171 void Set##X(const std::vector<float>& f) { X##_.insert(X##_.end(), f.begin(), f.end()); }
179 std::fill(OutputStateIn_.begin(), OutputStateIn_.end(), 0.f); in ResetOutputState()
180 std::fill(OutputStateOut_.begin(), OutputStateOut_.end(), 0.f); in ResetOutputState()
184 std::fill(CellStateIn_.begin(), CellStateIn_.end(), 0.f); in ResetCellState()
185 std::fill(CellStateOut_.begin(), CellStateOut_.end(), 0.f); in ResetCellState()
188 void SetInput(int offset, const float* begin, const float* end) { in SetInput() argument
189 for (; begin != end; begin++, offset++) { in SetInput()
190 Input_[offset] = *begin; in SetInput()