Lines Matching refs:offset
25 const offset = this.bb.__offset(this.bb_pos, 4);
26 return offset ? this.bb.readInt8(this.bb_pos + offset) : 0;
29 const offset = this.bb.__offset(this.bb_pos, 6);
30 return offset ? this.bb.readInt8(this.bb_pos + offset) : null;
33 const offset = this.bb.__offset(this.bb_pos, 8);
34 return offset ? this.bb.readInt8(this.bb_pos + offset) : 42;
37 const offset = this.bb.__offset(this.bb_pos, 10);
38 return offset ? this.bb.readUint8(this.bb_pos + offset) : 0;
41 const offset = this.bb.__offset(this.bb_pos, 12);
42 return offset ? this.bb.readUint8(this.bb_pos + offset) : null;
45 const offset = this.bb.__offset(this.bb_pos, 14);
46 return offset ? this.bb.readUint8(this.bb_pos + offset) : 42;
49 const offset = this.bb.__offset(this.bb_pos, 16);
50 return offset ? this.bb.readInt16(this.bb_pos + offset) : 0;
53 const offset = this.bb.__offset(this.bb_pos, 18);
54 return offset ? this.bb.readInt16(this.bb_pos + offset) : null;
57 const offset = this.bb.__offset(this.bb_pos, 20);
58 return offset ? this.bb.readInt16(this.bb_pos + offset) : 42;
61 const offset = this.bb.__offset(this.bb_pos, 22);
62 return offset ? this.bb.readUint16(this.bb_pos + offset) : 0;
65 const offset = this.bb.__offset(this.bb_pos, 24);
66 return offset ? this.bb.readUint16(this.bb_pos + offset) : null;
69 const offset = this.bb.__offset(this.bb_pos, 26);
70 return offset ? this.bb.readUint16(this.bb_pos + offset) : 42;
73 const offset = this.bb.__offset(this.bb_pos, 28);
74 return offset ? this.bb.readInt32(this.bb_pos + offset) : 0;
77 const offset = this.bb.__offset(this.bb_pos, 30);
78 return offset ? this.bb.readInt32(this.bb_pos + offset) : null;
81 const offset = this.bb.__offset(this.bb_pos, 32);
82 return offset ? this.bb.readInt32(this.bb_pos + offset) : 42;
85 const offset = this.bb.__offset(this.bb_pos, 34);
86 return offset ? this.bb.readUint32(this.bb_pos + offset) : 0;
89 const offset = this.bb.__offset(this.bb_pos, 36);
90 return offset ? this.bb.readUint32(this.bb_pos + offset) : null;
93 const offset = this.bb.__offset(this.bb_pos, 38);
94 return offset ? this.bb.readUint32(this.bb_pos + offset) : 42;
97 const offset = this.bb.__offset(this.bb_pos, 40);
98 return offset ? this.bb.readInt64(this.bb_pos + offset) : BigInt('0');
101 const offset = this.bb.__offset(this.bb_pos, 42);
102 return offset ? this.bb.readInt64(this.bb_pos + offset) : null;
105 const offset = this.bb.__offset(this.bb_pos, 44);
106 return offset ? this.bb.readInt64(this.bb_pos + offset) : BigInt('42');
109 const offset = this.bb.__offset(this.bb_pos, 46);
110 return offset ? this.bb.readUint64(this.bb_pos + offset) : BigInt('0');
113 const offset = this.bb.__offset(this.bb_pos, 48);
114 return offset ? this.bb.readUint64(this.bb_pos + offset) : null;
117 const offset = this.bb.__offset(this.bb_pos, 50);
118 return offset ? this.bb.readUint64(this.bb_pos + offset) : BigInt('42');
121 const offset = this.bb.__offset(this.bb_pos, 52);
122 return offset ? this.bb.readFloat32(this.bb_pos + offset) : 0.0;
125 const offset = this.bb.__offset(this.bb_pos, 54);
126 return offset ? this.bb.readFloat32(this.bb_pos + offset) : null;
129 const offset = this.bb.__offset(this.bb_pos, 56);
130 return offset ? this.bb.readFloat32(this.bb_pos + offset) : 42.0;
133 const offset = this.bb.__offset(this.bb_pos, 58);
134 return offset ? this.bb.readFloat64(this.bb_pos + offset) : 0.0;
137 const offset = this.bb.__offset(this.bb_pos, 60);
138 return offset ? this.bb.readFloat64(this.bb_pos + offset) : null;
141 const offset = this.bb.__offset(this.bb_pos, 62);
142 return offset ? this.bb.readFloat64(this.bb_pos + offset) : 42.0;
145 const offset = this.bb.__offset(this.bb_pos, 64);
146 return offset ? !!this.bb.readInt8(this.bb_pos + offset) : false;
149 const offset = this.bb.__offset(this.bb_pos, 66);
150 return offset ? !!this.bb.readInt8(this.bb_pos + offset) : null;
153 const offset = this.bb.__offset(this.bb_pos, 68);
154 return offset ? !!this.bb.readInt8(this.bb_pos + offset) : true;
157 const offset = this.bb.__offset(this.bb_pos, 70);
158 return offset ? this.bb.readInt8(this.bb_pos + offset) : OptionalByte.None;
161 const offset = this.bb.__offset(this.bb_pos, 72);
162 return offset ? this.bb.readInt8(this.bb_pos + offset) : null;
165 const offset = this.bb.__offset(this.bb_pos, 74);
166 return offset ? this.bb.readInt8(this.bb_pos + offset) : OptionalByte.One;
280 const offset = builder.endObject();
281 return offset;
283 static finishScalarStuffBuffer(builder, offset) { argument
284 builder.finish(offset, 'NULL');
286 static finishSizePrefixedScalarStuffBuffer(builder, offset) { argument
287 builder.finish(offset, 'NULL', true);