Searched refs:readUint32 (Results 1 – 13 of 13) sorted by relevance
/external/libchrome/mojo/public/js/lib/ |
D | codec.js | 87 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/ |
D | decoder.js | 767 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();
|
D | reader.js | 505 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);
|
D | reader_test.js | 171 assertThrows(function() {reader.readUint32()}); 324 assertNotNull(jspb.BinaryReader.prototype.readUint32); 331 jspb.BinaryReader.prototype.readUint32,
|
D | decoder_test.js | 269 jspb.BinaryDecoder.prototype.readUint32,
|
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/ |
D | union_definition.tmpl | 166 var size = decoder.readUint32(); 168 decoder.readUint32(); 174 var tag = decoder.readUint32();
|
D | struct_definition.tmpl | 132 var numberOfBytes = decoder.readUint32(); 133 var version = decoder.readUint32();
|
/external/syzkaller/pkg/ipc/ |
D | ipc.go | 290 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/ |
D | flatbuffers.js | 929 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/ |
D | frame.go | 975 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/ |
D | monster_test_generated.js | 565 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;
|
D | monster_test_generated.ts | 497 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/ |
D | WasmObjectFile.cpp | 76 static uint32_t readUint32(WasmObjectFile::ReadContext &Ctx) { in readUint32() function 249 Header.Version = readUint32(Ctx); in WasmObjectFile()
|