Home | History | Annotate | Download | only in octane

Lines Matching refs:toCompile

352   var toCompile = "var bufferLength = Math.min(buffer.length, this.outputBufferSize);\
358 toCompile += "var output" + channel + " = 0;"
360 toCompile += "var actualPosition = 0;\
371 toCompile += "output" + channel + " = 0;"
373 toCompile += "}\
377 toCompile += "output" + channel + " = this.lastOutput[" + channel + "];"
379 toCompile += "alreadyProcessedTail = true;\
385 toCompile += "output" + channel + " += buffer[actualPosition++] * amountToNext;"
387 toCompile += "currentPosition = actualPosition;\
392 toCompile += "output" + channel + " += buffer[actualPosition" + ((channel > 0) ? (" + " + channel) : "") + "] * weight;"
394 toCompile += "currentPosition += weight;\
401 toCompile += "outputBuffer[outputOffset++] = output" + channel + " / ratioWeight;"
403 toCompile += "}\
407 toCompile += "this.lastOutput[" + channel + "] = output" + channel + ";"
409 toCompile += "this.tailExists = true;\
422 this.interpolate = Function("buffer", toCompile);