Searched refs:destination (Results 1 – 3 of 3) sorted by relevance
172 byte[] destination = new byte[outputAllocation.getBytesSize()]; in getOutputData()173 outputAllocation.copyTo(destination); in getOutputData()175 return destination; in getOutputData()193 byte[] destination = new byte[inputAllocation.getBytesSize()]; in getInputData()194 inputAllocation.copyTo(destination); in getInputData()196 return destination; in getInputData()
115 this.destination = {}942 …audioNode.connect(audioContextHandle.destination); //Send and chain the output of the…9621 var destination = (this.memory[0xFF53] << 8) | this.memory[0xFF54];9631 if (destination < 0x1800) {9632 memory[0x8000 | destination] = memoryReader[source](this, source++);9633 memory[0x8001 | destination] = memoryReader[source](this, source++);9634 memory[0x8002 | destination] = memoryReader[source](this, source++);9635 memory[0x8003 | destination] = memoryReader[source](this, source++);9636 memory[0x8004 | destination] = memoryReader[source](this, source++);9637 memory[0x8005 | destination] = memoryReader[source](this, source++);[all …]
42 Object.extend = function(destination, source) { argument44 destination[property] = source[property];46 return destination;