Home
last modified time | relevance | path

Searched refs:_offset (Results 1 – 25 of 69) sorted by relevance

123

/third_party/node/deps/npm/node_modules/sshpk/lib/
Dssh-buffer.js15 this._offset = 0;
19 return (this._buffer.slice(0, this._offset));
23 return (this._offset >= this._buffer.length);
27 return (this._buffer.slice(this._offset));
31 this._offset += n;
46 var len = this._buffer.readUInt32BE(this._offset);
47 this._offset += 4;
48 assert.ok(this._offset + len <= this._buffer.length,
49 'length out of bounds at +0x' + this._offset.toString(16) +
51 var buf = this._buffer.slice(this._offset, this._offset + len);
[all …]
/third_party/node/deps/npm/node_modules/asn1/lib/ber/
Dwriter.js48 this._offset = 0;
61 return (this._buf.slice(0, this._offset));
70 this._buf[this._offset++] = b;
92 this._buf[this._offset++] = tag;
93 this._buf[this._offset++] = sz;
96 this._buf[this._offset++] = ((i & 0xff000000) >>> 24);
126 this._buf[this._offset++] = tag;
127 this._buf[this._offset++] = 0x01;
128 this._buf[this._offset++] = b ? 0xff : 0x00;
143 this._buf.write(s, this._offset);
[all …]
Dreader.js27 this._offset = 0;
37 get: function () { return (this._offset); }
41 get: function () { return (this._size - this._offset); }
45 get: function () { return (this._buf.slice(this._offset)); }
57 if (this._size - this._offset < 1)
60 var b = this._buf[this._offset] & 0xff;
63 this._offset += 1;
87 offset = this._offset;
136 var o = this.readLength(this._offset + 1); // stored in `length`
140 this._offset = o;
[all …]
/third_party/node/deps/npm/node_modules/socks/build/common/
Dreceivebuffer.js6 this._offset = 0;
10 return this._offset;
16 if (this._offset + data.length >= this._buffer.length) {
21 data.copy(this._buffer, this._offset);
22 return (this._offset += data.length);
25 if (length > this._offset) {
31 if (length > this._offset) {
36 this._buffer.copyWithin(0, length, length + this._offset - length);
37 this._offset -= length;
/third_party/flatbuffers/dart/lib/src/
Dbuilder.dart11 int _offset;
27 _offset = 0;
117 final stringOffset = _offset;
120 _offset = newOffset;
137 final keyOffset = _offset;
140 _offset = newOffset;
155 final blobOffset = _offset;
158 _offset = newOffset;
178 final valueOffset = _offset;
182 _offset = newOffset;
[all …]
Dreference.dart11 final int _offset;
18 Reference._(this._buffer, this._offset, this._parentWidth, int packedType, this._path) {
58 return _readInt(_offset, _parentWidth) != 0;
68 return _readInt(_offset, _parentWidth);
71 return _readUInt(_offset, _parentWidth);
87 return _readFloat(_offset, _parentWidth);
273 final step = _readUInt(_offset, _parentWidth);
274 return _offset - step;
319 …if (_offset < 0 || _buffer.lengthInBytes <= offset + width.index || offset & (BitWidthUtil.toByteW…
/third_party/skia/third_party/externals/freetype/src/otvalid/
Dotvcommn.h78 #define OTV_OPTIONAL_OFFSET( _offset ) \ argument
80 _offset ## _p = p; \
81 _offset = FT_NEXT_USHORT( p ); \
84 #define OTV_OPTIONAL_OFFSET32( _offset ) \ argument
86 _offset ## _p = p; \
87 _offset = FT_NEXT_ULONG( p ); \
/third_party/flutter/skia/third_party/externals/freetype/src/otvalid/
Dotvcommn.h79 #define OTV_OPTIONAL_OFFSET( _offset ) \ argument
81 _offset ## _p = p; \
82 _offset = FT_NEXT_USHORT( p ); \
85 #define OTV_OPTIONAL_OFFSET32( _offset ) \ argument
87 _offset ## _p = p; \
88 _offset = FT_NEXT_ULONG( p ); \
/third_party/freetype/src/otvalid/
Dotvcommn.h78 #define OTV_OPTIONAL_OFFSET( _offset ) \ argument
80 _offset ## _p = p; \
81 _offset = FT_NEXT_USHORT( p ); \
84 #define OTV_OPTIONAL_OFFSET32( _offset ) \ argument
86 _offset ## _p = p; \
87 _offset = FT_NEXT_ULONG( p ); \
/third_party/lwip/src/include/lwip/prot/
Dip4.h83 PACK_STRUCT_FIELD(u16_t _offset);
112 #define IPH_OFFSET(hdr) ((hdr)->_offset)
123 #define IPH_OFFSET_SET(hdr, off) (hdr)->_offset = (off)
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Dgrid_list_demo.dart67 Offset _offset = Offset.zero;
95 _offset = _flingAnimation.value;
102 _normalizedOffset = (details.focalPoint - _offset) / _scale;
112 _offset = _clampOffset(details.focalPoint - _normalizedOffset * _scale);
123 begin: _offset,
124 end: _clampOffset(_offset + direction * distance),
140 ..translate(_offset.dx, _offset.dy)
/third_party/python/Lib/
Dzipfile.py802 self._offset = 0
872 i = self._readbuffer.find(b'\n', self._offset) + 1
874 line = self._readbuffer[self._offset: i]
875 self._offset = i
882 if n > len(self._readbuffer) - self._offset:
884 if len(chunk) > self._offset:
885 self._readbuffer = chunk + self._readbuffer[self._offset:]
886 self._offset = 0
888 self._offset -= len(chunk)
891 return self._readbuffer[self._offset: self._offset + 512]
[all …]
/third_party/flutter/flutter/examples/layers/widgets/
Dgestures.dart67 Offset _offset = Offset.zero;
105 _previousOffset = _offset;
116 _offset = details.focalPoint - normalizedOffset * _zoom;
123 _offset = Offset.zero;
156 offset: _offset,
/third_party/gstreamer/gstplugins_base/gst-libs/gst/riff/
Driff-read.c51 GstPad * pad, guint64 * _offset, guint32 * tag, GstBuffer ** _chunk_data) in gst_riff_read_chunk() argument
57 guint64 offset = *_offset; in gst_riff_read_chunk()
61 g_return_val_if_fail (_offset != NULL, GST_FLOW_ERROR); in gst_riff_read_chunk()
85 *_offset += 8 + size; in gst_riff_read_chunk()
98 *_offset += 8 + GST_ROUND_UP_2 (size); in gst_riff_read_chunk()
129 guint * _offset, guint32 * _fourcc, GstBuffer ** chunk_data) in gst_riff_parse_chunk() argument
135 guint offset = *_offset; in gst_riff_parse_chunk()
139 g_return_val_if_fail (_offset != NULL, FALSE); in gst_riff_parse_chunk()
182 *_offset += 8 + GST_ROUND_UP_2 (size); in gst_riff_parse_chunk()
/third_party/boost/boost/gil/extension/io/targa/detail/
Dscanline_read.hpp62 long offset = this->_info._offset in read()
123 this->_io_dev.seek( static_cast< long >( this->_info._offset )); in initialize()
Dread.hpp216 this->_io_dev.seek( static_cast< long >( this->_info._offset )); in read_data()
247 this->_io_dev.seek( static_cast< long >( this->_info._offset )); in read_rle_data()
/third_party/node/deps/npm/node_modules/sshpk/lib/formats/
Dx509.js131 der._offset = after;
143 der._offset = after;
150 der._offset += der.length;
158 der._offset += der.length;
181 der._offset = after;
336 der._offset += der.length;
377 der._offset = after;
491 sig.cache.copy(der._buf, der._offset);
492 der._offset += sig.cache.length;
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dlsq_solver.dart13 : _offset = 0,
18 : _offset = offset,
22 final int _offset;
28 double operator [](int i) => _elements[i + _offset];
30 _elements[i + _offset] = value;
/third_party/mesa3d/src/util/
Dblob.c214 #define ASSERT_ALIGNED(_offset, _align) \ in BLOB_WRITE_TYPE() argument
215 assert(align64((_offset), (_align)) == (_offset)) in BLOB_WRITE_TYPE()
/third_party/node/deps/npm/node_modules/socks/typings/common/
DreceiveBuffer.d.ts4 private _offset; property in ReceiveBuffer
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dsingle_child_scroll_view.dart350 _offset = offset,
367 ViewportOffset get offset => _offset;
368 ViewportOffset _offset;
371 if (value == _offset)
374 _offset.removeListener(_hasScrolled);
375 _offset = value;
377 _offset.addListener(_hasScrolled);
408 _offset.addListener(_hasScrolled);
413 _offset.removeListener(_hasScrolled);
/third_party/boost/boost/gil/extension/io/bmp/detail/
Dread.hpp243 return static_cast<long>( ( this->_info._offset in get_offset()
249 return static_cast<long>( ( this->_info._offset in get_offset()
458 this->_io_dev.seek( this->_info._offset ); in read_palette_image_rle()
461 std::size_t stream_pos = this->_info._offset; in read_palette_image_rle()
/third_party/node/deps/npm/node_modules/iconv-lite/lib/
Dextend-node.js128 var _offset = offset, _length = length, _encoding = encoding;
147 return original.BufferWrite.call(this, string, _offset, _length, _encoding);
/third_party/flatbuffers/python/flatbuffers/
Dflexbuffers.py285 self._offset = offset if offset >= 0 else len(buf) + offset
286 self._length = len(buf) - self._offset
290 return self._buf[_ShiftSlice(key, self._offset, self._length)]
292 return self._buf[self._offset + key]
298 self._buf[_ShiftSlice(key, self._offset, self._length)] = value
300 self._buf[self._offset + key] = key
305 return 'buf[%d:]' % self._offset
309 return self._buf[self._offset:].find(sub)
313 return Buf(self._buf, self._offset + offset)
/third_party/boost/boost/gil/extension/io/bmp/
Dtags.hpp82 bmp_offset::type _offset; member

123