/external/protobuf/src/google/protobuf/ |
message_unittest.cc | 250 // The byte is a valid varint, but not a valid tag (zero). 253 // The byte is a malformed varint.
|
unknown_field_set.h | 149 inline uint64 varint() const; 219 inline uint64 UnknownField::varint () const { function in class:google::protobuf::UnknownField
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
CodedInputByteBufferNano.java | 281 * Read a raw Varint from the stream. If larger than 32 bits, discard the 318 /** Read a raw Varint from the stream. */ 367 * into values that can be efficiently encoded with varint. (Otherwise, 368 * negative values must be sign-extended to 64 bits to be varint encoded, 381 * into values that can be efficiently encoded with varint. (Otherwise, 382 * negative values must be sign-extended to 64 bits to be varint encoded,
|
/external/protobuf/python/google/protobuf/internal/ |
decoder.py | 95 """Return an encoder for a basic varint value (does not include tag). 117 raise _DecodeError('Too many bytes when decoding varint.') 141 raise _DecodeError('Too many bytes when decoding varint.') 158 us to trade some work that would be done in pure-python (decoding a varint) 160 In a low-level language it would be much cheaper to decode the varint and 554 """Skip a varint value. Returns the new position."""
|
encoder.py | 74 """Compute the size of a varint value.""" 88 """Compute the size of a signed varint value.""" 335 """Return an encoder for a basic varint value (does not include tag).""" 351 """Return an encoder for a basic signed varint value (does not include 374 """Encode the given integer as a varint and return the bytes. This is only
|
wire_format_test.py | 56 # Test field numbers that will require various varint sizes. 247 # Too-long varint.
|
/external/chromium_org/third_party/sqlite/src/test/ |
capi3.test | 568 CREATE TABLE t1(a VARINT, b BLOB, c VARCHAR(16)); 578 check_header $STMT capi3-5.1 {a b c} {VARINT BLOB VARCHAR(16)} 584 check_header $STMT capi3-5.3 {a b c} {VARINT BLOB VARCHAR(16)} 592 check_header $STMT capi3-5.6 {a b c} {VARINT BLOB VARCHAR(16)} 600 check_header $STMT capi3-5.9 {a b c} {VARINT BLOB VARCHAR(16)} 618 check_header $STMT capi3-5.21 {a sum(b) max(c)} {VARINT {} {}} 630 check_header $STMT capi3-5.31 {x y z} {VARINT {} {}}
|
capi3c.test | 551 CREATE TABLE t1(a VARINT, b BLOB, c VARCHAR(16)); 561 check_header $STMT capi3c-5.1 {a b c} {VARINT BLOB VARCHAR(16)} 567 check_header $STMT capi3c-5.3 {a b c} {VARINT BLOB VARCHAR(16)} 575 check_header $STMT capi3c-5.6 {a b c} {VARINT BLOB VARCHAR(16)} 583 check_header $STMT capi3c-5.9 {a b c} {VARINT BLOB VARCHAR(16)} 601 check_header $STMT capi3c-5.21 {a sum(b) max(c)} {VARINT {} {}} [all...] |
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
encoder.py | 80 """Compute the size of a varint value.""" 94 """Compute the size of a signed varint value.""" 341 """Return an encoder for a basic varint value (does not include tag).""" 357 """Return an encoder for a basic signed varint value (does not include 380 """Encode the given integer as a varint and return the bytes. This is only
|
decoder.py | 102 """Return an encoder for a basic varint value (does not include tag). 124 raise _DecodeError('Too many bytes when decoding varint.') 148 raise _DecodeError('Too many bytes when decoding varint.') 165 us to trade some work that would be done in pure-python (decoding a varint) 167 In a low-level language it would be much cheaper to decode the varint and 633 """Skip a varint value. Returns the new position."""
|
wire_format_test.py | 56 # Test field numbers that will require various varint sizes. 247 # Too-long varint.
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
coded_stream.cc | 328 // We have overrun the maximum size of a varint (10 bytes). Assume 350 // Optimization: If the varint ends at exactly the end of the buffer, 394 // Optimization: If the varint ends at exactly the end of the buffer, 447 // Optimization: If the varint ends at exactly the end of the buffer, 471 // We have overrun the maximum size of a varint (10 bytes). The data
|
/external/protobuf/src/google/protobuf/io/ |
coded_stream.cc | 304 // We have overrun the maximum size of a varint (10 bytes). Assume 326 // Optimization: If the varint ends at exactly the end of the buffer, 369 // Optimization: If the varint ends at exactly the end of the buffer, 420 // Optimization: If the varint ends at exactly the end of the buffer, 444 // We have overrun the maximum size of a varint (10 bytes). The data
|
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/ |
UnknownFieldSetTest.java | 78 // Original field is not a varint, so use a varint. 81 // Original field *is* a varint, so use something else.
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
UnknownFieldSetTest.java | 78 // Original field is not a varint, so use a varint. 81 // Original field *is* a varint, so use something else.
|
/external/chromium/sdch/open-vcdiff/src/ |
varint_bigendian_test.cc | 225 // Varint, it shouldn't have the highest bits set and so can't begin with FF. 277 // This example is taken from the Varint description in RFC 3284, section 2.
|
codetable.h | 61 // the size will be encoded separately from the instruction code, as a Varint
|
/external/chromium_org/sdch/open-vcdiff/src/ |
varint_bigendian_test.cc | 225 // Varint, it shouldn't have the highest bits set and so can't begin with FF. 277 // This example is taken from the Varint description in RFC 3284, section 2.
|
codetable.h | 61 // the size will be encoded separately from the instruction code, as a Varint
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
message_unittest.cc | 250 // The byte is a valid varint, but not a valid tag (zero). 253 // The byte is a malformed varint.
|
unknown_field_set.h | 174 inline uint64 varint() const; 257 inline uint64 UnknownField::varint () const { function in class:google::protobuf::UnknownField
|
/external/open-vcdiff/src/ |
varint_bigendian_test.cc | 225 // Varint, it shouldn't have the highest bits set and so can't begin with FF. 277 // This example is taken from the Varint description in RFC 3284, section 2.
|
codetable.h | 61 // the size will be encoded separately from the instruction code, as a Varint
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2.c | 77 ** varint. We encode variable-length integers in little-endian order 100 ** varint docid; 102 ** varint position; (delta from previous position plus POS_BASE) 103 ** varint startOffset; (delta from previous startOffset) 104 ** varint endOffset; (delta from startOffset) 107 ** varint POS_COLUMN; (marks start of position list for new column) 108 ** varint column; (index of new column) 110 ** varint position; (delta from previous position plus POS_BASE) 111 ** varint startOffset;(delta from previous startOffset) 112 ** varint endOffset; (delta from startOffset [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
util.c | 831 ** If the varint stored in p[0] is larger than can fit in a 32-bit unsigned 882 /* A 32-bit varint is used to store size information in btrees. 883 ** Objects are rarely larger than 2MiB limit of a 3-byte varint. 884 ** A 3-byte varint is sufficient, for example, to record the size 888 ** rare larger cases can be handled by the slower 64-bit varint 909 ** unrolling for the 3- and 4-byte varint cases. This code is
|