Home
last modified time | relevance | path

Searched refs:opt_length (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-main/
Dcli.c283 int opt_length = 2 + 1; in cli_opt_usage() local
288 opt_length++; in cli_opt_usage()
291 opt_length += (int) strlen (opt_p); in cli_opt_usage()
293 if (length + 1 + opt_length >= CLI_LINE_LENGTH) in cli_opt_usage()
299 length += opt_length; in cli_opt_usage()
325 int opt_length = (int) (2 + strlen (opt_p)); in cli_opt_usage() local
327 if (length + 1 + opt_length >= CLI_LINE_LENGTH) in cli_opt_usage()
/third_party/protobuf/js/binary/
Ddecoder.js65 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
184 this.end_ = (opt_length !== undefined) ? this.start_ + opt_length :
Dreader.js67 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/examples/
Dcoap-client.c754 unsigned int opt_length; in set_blocksize() local
767 opt_length = coap_encode_var_safe(buf, sizeof(buf), in set_blocksize()
770 coap_insert_optlist(&optlist, coap_new_optlist(opt, opt_length, buf)); in set_blocksize()