MCPcopy
hub / github.com/google/brotli / enableLargeWindow

Function enableLargeWindow

js/decode.ts:118–124  ·  view source on GitHub ↗
(s: State)

Source from the content-addressed store, hash-verified

116 return 0;
117}
118function enableLargeWindow(s: State): number {
119 if (s.runningState !== 1) {
120 return makeError(s, -24);
121 }
122 s.isLargeWindow = 1;
123 return 0;
124}
125function attachDictionaryChunk(s: State, data: Int8Array): number {
126 if (s.runningState !== 1) {
127 return makeError(s, -24);

Callers

nothing calls this directly

Calls 1

makeErrorFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…