HomeSort by relevance Sort by last modified time
    Searched refs:tag_bytes (Results 1 - 10 of 10) sorted by null

  /external/protobuf/python/google/protobuf/internal/
encoder.py 438 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_LENGTH_DELIMITED)
441 write(tag_bytes)
450 tag_bytes = TagBytes(field_number, wire_type)
453 write(tag_bytes)
457 tag_bytes = TagBytes(field_number, wire_type)
459 write(tag_bytes)
472 tag_bytes = TagBytes(field_number, wire_format.WIRETYPE_LENGTH_DELIMITED)
475 write(tag_bytes)
484 tag_bytes = TagBytes(field_number, wire_type)
487 write(tag_bytes)
    [all...]
decoder.py 170 """Read a tag from the buffer, and return a (tag_bytes, new_pos) tuple.
219 tag_bytes = encoder.TagBytes(field_number, wire_type)
220 tag_len = len(tag_bytes)
231 if buffer[new_pos:pos] != tag_bytes or new_pos >= end:
373 tag_bytes = encoder.TagBytes(field_number,
376 (tag_bytes, buffer[value_start_pos:pos]))
386 tag_bytes = encoder.TagBytes(field_number, wire_format.WIRETYPE_VARINT)
387 tag_len = len(tag_bytes)
400 (tag_bytes, buffer[pos:new_pos]))
404 if buffer[new_pos:pos] != tag_bytes or new_pos >= end
    [all...]
unknown_fields_test.py 166 for tag_bytes, value in self.unknown_fields:
167 if tag_bytes == field_tag:
168 decoder = unittest_pb2.TestAllTypes._decoders_by_tag[tag_bytes][0]
277 for tag_bytes, value in self.unknown_fields:
278 if tag_bytes == field_tag:
280 tag_bytes][0]
wire_format_test.py 109 for field_number, tag_bytes in ((15, 1), (16, 2), (2047, 2), (2048, 3)):
110 expected_size = expected_value_size + tag_bytes
python_message.py 323 tag_bytes = encoder.TagBytes(field_descriptor.number, wiretype)
344 cls._decoders_by_tag[tag_bytes] = (field_decoder, oneof_descriptor)
    [all...]
  /external/e2fsprogs/debugfs/
do_journal.c 272 int tag_bytes; local
319 tag_bytes = journal_tag_bytes(trans->journal);
322 if ((char *)jdbt + tag_bytes >
354 memcpy(jdbt + tag_bytes,
357 tag_bytes += 16;
377 tag_bytes);
385 jdbt = (journal_block_tag_t *)(((char *)jdbt) + tag_bytes);
625 int tag_bytes = journal_tag_bytes(journal); local
632 while ((tagp - buf + tag_bytes) <= size) {
636 tagp += tag_bytes;
    [all...]
recovery.c 227 int tag_bytes = journal_tag_bytes(journal); local
234 while ((tagp - bh->b_data + tag_bytes) <= size) {
238 tagp += tag_bytes;
452 int tag_bytes = journal_tag_bytes(journal); local
581 while ((tagp - bh->b_data + tag_bytes)
667 tagp += tag_bytes;
  /external/e2fsprogs/e2fsck/
recovery.c 227 int tag_bytes = journal_tag_bytes(journal); local
234 while ((tagp - bh->b_data + tag_bytes) <= size) {
238 tagp += tag_bytes;
452 int tag_bytes = journal_tag_bytes(journal); local
581 while ((tagp - bh->b_data + tag_bytes)
667 tagp += tag_bytes;
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_field_base.cc 65 string tag_bytes = SimpleItoa(tag_array[0]); local
67 tag_bytes += ", " + SimpleItoa(tag_array[i]);
73 (*variables)["tag_bytes"] = tag_bytes;
  /external/ImageMagick/MagickCore/
property.c 1263 tag_bytes[] = {0, 1, 1, 2, 4, 8, 1, 1, 2, 4, 8, 4, 8}; local
    [all...]

Completed in 1214 milliseconds