Searched refs:opt_start (Results 1 – 3 of 3) sorted by relevance
/third_party/protobuf/js/binary/ |
D | decoder.js | 65 jspb.BinaryDecoder = function(opt_bytes, opt_start, opt_length) { argument 97 this.setBlock(opt_bytes, opt_start, opt_length); 118 jspb.BinaryDecoder.alloc = function(opt_bytes, opt_start, opt_length) { argument 122 newDecoder.setBlock(opt_bytes, opt_start, opt_length); 126 return new jspb.BinaryDecoder(opt_bytes, opt_start, opt_length); 181 function(data, opt_start, opt_length) { argument 183 this.start_ = (opt_start !== undefined) ? opt_start : 0;
|
D | reader.js | 67 jspb.BinaryReader = function(opt_bytes, opt_start, opt_length) { argument 72 this.decoder_ = jspb.BinaryDecoder.alloc(opt_bytes, opt_start, opt_length); 124 function(opt_bytes, opt_start, opt_length) { argument 128 newReader.decoder_.setBlock(opt_bytes, opt_start, opt_length); 132 return new jspb.BinaryReader(opt_bytes, opt_start, opt_length);
|
/third_party/libcoap/src/ |
D | coap_option.c | 43 const coap_opt_t *opt_start = opt; /* store where parsing starts */ in coap_opt_parse() local 113 return (opt + result->length) - opt_start; in coap_opt_parse()
|