Home
last modified time | relevance | path

Searched refs:readUint32 (Results 1 – 13 of 13) sorted by relevance

/external/libchrome/mojo/public/js/lib/
Dcodec.js87 Decoder.prototype.readUint32 = function() { method in Decoder
133 return this.handles[this.readUint32()] || null;
137 return this.associatedEndpointHandles[this.readUint32()] || null;
141 var numberOfBytes = this.readUint32();
142 var numberOfElements = this.readUint32();
150 var numberOfBytes = this.readUint32();
151 var numberOfElements = this.readUint32();
692 var messageHeaderSize = this.decoder.readUint32();
694 var version = this.decoder.readUint32();
695 var interface_id = this.decoder.readUint32();
[all …]
/external/protobuf/js/binary/
Ddecoder.js767 jspb.BinaryDecoder.prototype.readUint32 = function() { method in jspb.BinaryDecoder
787 var bitsLow = this.readUint32();
788 var bitsHigh = this.readUint32();
845 var bitsLow = this.readUint32();
846 var bitsHigh = this.readUint32();
858 var bitsLow = this.readUint32();
871 var bitsLow = this.readUint32();
872 var bitsHigh = this.readUint32();
Dreader.js505 return this.readUint32();
666 jspb.BinaryReader.prototype.readUint32 = function() { method in jspb.BinaryReader
756 return this.decoder_.readUint32();
1036 return this.readPackedField_(this.decoder_.readUint32);
Dreader_test.js171 assertThrows(function() {reader.readUint32()});
324 assertNotNull(jspb.BinaryReader.prototype.readUint32);
331 jspb.BinaryReader.prototype.readUint32,
Ddecoder_test.js269 jspb.BinaryDecoder.prototype.readUint32,
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dunion_definition.tmpl166 var size = decoder.readUint32();
168 decoder.readUint32();
174 var tag = decoder.readUint32();
Dstruct_definition.tmpl132 var numberOfBytes = decoder.readUint32();
133 var version = decoder.readUint32();
/external/syzkaller/pkg/ipc/
Dipc.go290 ncmd, ok := readUint32(&out)
336 typ, ok := readUint32(outp)
350 tmp1, ok1 = readUint32(outp)
351 tmp2, ok2 = readUint32(outp)
373 func readUint32(outp *[]byte) (uint32, bool) { func
/external/flatbuffers/js/
Dflatbuffers.js929 flatbuffers.ByteBuffer.prototype.readUint32 = function(offset) { method in flatbuffers.ByteBuffer
946 return new flatbuffers.Long(this.readUint32(offset), this.readUint32(offset + 4));
/external/syzkaller/vendor/golang.org/x/net/http2/
Dframe.go975 p, v, err = readUint32(p)
1242 p, pp.PromiseID, err = readUint32(p)
1324 func readUint32(p []byte) (remain []byte, v uint32, err error) { func
/external/flatbuffers/tests/
Dmonster_test_generated.js565 return this.bb.readUint32(this.bb_pos);
587 return this.bb.readUint32(this.bb_pos + 4);
1196 return offset ? this.bb.readUint32(this.bb_pos + offset) : 0;
1288 return offset ? this.bb.readUint32(this.bb_pos + offset) : 0;
2819 return offset ? this.bb.readUint32(this.bb_pos + offset) : 0;
Dmonster_test_generated.ts497 return this.bb!.readUint32(this.bb_pos);
519 return this.bb!.readUint32(this.bb_pos + 4);
1105 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
1197 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
2673 return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DWasmObjectFile.cpp76 static uint32_t readUint32(WasmObjectFile::ReadContext &Ctx) { in readUint32() function
249 Header.Version = readUint32(Ctx); in WasmObjectFile()