• Home
  • Raw
  • Download

Lines Matching full:offset

57   Buffer.prototype.getUint8 = function(offset) {  argument
58 return this.dataView.getUint8(offset);
60 Buffer.prototype.getUint16 = function(offset) { argument
61 return this.dataView.getUint16(offset, kHostIsLittleEndian);
63 Buffer.prototype.getUint32 = function(offset) { argument
64 return this.dataView.getUint32(offset, kHostIsLittleEndian);
66 Buffer.prototype.getUint64 = function(offset) { argument
69 lo = this.dataView.getUint32(offset, kHostIsLittleEndian);
70 hi = this.dataView.getUint32(offset + 4, kHostIsLittleEndian);
72 hi = this.dataView.getUint32(offset, kHostIsLittleEndian);
73 lo = this.dataView.getUint32(offset + 4, kHostIsLittleEndian);
78 Buffer.prototype.getInt8 = function(offset) { argument
79 return this.dataView.getInt8(offset);
81 Buffer.prototype.getInt16 = function(offset) { argument
82 return this.dataView.getInt16(offset, kHostIsLittleEndian);
84 Buffer.prototype.getInt32 = function(offset) { argument
85 return this.dataView.getInt32(offset, kHostIsLittleEndian);
87 Buffer.prototype.getInt64 = function(offset) { argument
90 lo = this.dataView.getUint32(offset, kHostIsLittleEndian);
91 hi = this.dataView.getInt32(offset + 4, kHostIsLittleEndian);
93 hi = this.dataView.getInt32(offset, kHostIsLittleEndian);
94 lo = this.dataView.getUint32(offset + 4, kHostIsLittleEndian);
99 Buffer.prototype.getFloat32 = function(offset) { argument
100 return this.dataView.getFloat32(offset, kHostIsLittleEndian);
102 Buffer.prototype.getFloat64 = function(offset) { argument
103 return this.dataView.getFloat64(offset, kHostIsLittleEndian);
106 Buffer.prototype.setUint8 = function(offset, value) { argument
107 this.dataView.setUint8(offset, value);
109 Buffer.prototype.setUint16 = function(offset, value) { argument
110 this.dataView.setUint16(offset, value, kHostIsLittleEndian);
112 Buffer.prototype.setUint32 = function(offset, value) { argument
113 this.dataView.setUint32(offset, value, kHostIsLittleEndian);
115 Buffer.prototype.setUint64 = function(offset, value) { argument
118 this.dataView.setInt32(offset, value, kHostIsLittleEndian);
119 this.dataView.setInt32(offset + 4, hi, kHostIsLittleEndian);
121 this.dataView.setInt32(offset, hi, kHostIsLittleEndian);
122 this.dataView.setInt32(offset + 4, value, kHostIsLittleEndian);
126 Buffer.prototype.setInt8 = function(offset, value) { argument
127 this.dataView.setInt8(offset, value);
129 Buffer.prototype.setInt16 = function(offset, value) { argument
130 this.dataView.setInt16(offset, value, kHostIsLittleEndian);
132 Buffer.prototype.setInt32 = function(offset, value) { argument
133 this.dataView.setInt32(offset, value, kHostIsLittleEndian);
135 Buffer.prototype.setInt64 = function(offset, value) { argument
138 this.dataView.setInt32(offset, value, kHostIsLittleEndian);
139 this.dataView.setInt32(offset + 4, hi, kHostIsLittleEndian);
141 this.dataView.setInt32(offset, hi, kHostIsLittleEndian);
142 this.dataView.setInt32(offset + 4, value, kHostIsLittleEndian);
146 Buffer.prototype.setFloat32 = function(offset, value) { argument
147 this.dataView.setFloat32(offset, value, kHostIsLittleEndian);
149 Buffer.prototype.setFloat64 = function(offset, value) { argument
150 this.dataView.setFloat64(offset, value, kHostIsLittleEndian);