MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / advance

Function advance

src/runtime/CL/mlgo/MLGOParser.cpp:141–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141void advance(CharPosition &pos, char ch)
142{
143 if (ch == '\n')
144 {
145 pos.ln += 1;
146 pos.col = 0;
147 }
148 else
149 {
150 pos.col += 1;
151 }
152}
153void rewind(CharPosition &pos)
154{
155 pos.col -= 1;

Callers 5

worker_threadMethod · 0.85
readMethod · 0.85
num_stMethod · 0.85
float_after_dp_stMethod · 0.85
text_stMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected