MCPcopy Index your code
hub / github.com/dmarman/sha256algorithm / secondLoop

Function secondLoop

src/App.js:193–199  ·  view source on GitHub ↗
(clock)

Source from the content-addressed store, hash-verified

191 }
192
193 function secondLoop(clock) {
194 let step = clock%114; // 115
195 if(step >= 49 && step < 113) return step - 49;
196
197 if(step >= 113) return 63;
198 return 0
199 }
200
201 function chunksLoop(clock) {
202 if(clock < 114) return 1;

Callers 6

onClockFunction · 0.85
onInputChangeFunction · 0.85
onClockFastFunction · 0.85
onClockBackFastFunction · 0.85
onClockBackFunction · 0.85
onClockInitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected