/external/protobuf/python/google/protobuf/internal/ |
encoder.py | 122 tag_size = _TagSize(field_number) 129 return result + local_VarintSize(result) + tag_size 133 result = tag_size * len(value) 140 return tag_size + compute_value_size(value) 151 tag_size = _TagSize(field_number) 158 return result + local_VarintSize(result) + tag_size 162 result = tag_size * len(value) 169 return tag_size + compute_value_size(modify_value(value)) 180 tag_size = _TagSize(field_number) 185 return result + local_VarintSize(result) + tag_size [all...] |
/external/protobuf/src/google/protobuf/ |
wire_format_lite_inl.h | 225 inline bool WireFormatLite::ReadRepeatedPrimitive(int tag_size, 243 int tag_size, 247 GOOGLE_DCHECK_EQ(UInt32Size(tag), tag_size); local 268 const int per_value_size = tag_size + sizeof(value); 294 int tag_size, \ 300 tag_size, tag, input, values); \ 314 int tag_size, 319 tag_size, tag, input, value);
|
wire_format_lite.h | 248 // tag_size and tag should both be compile-time constants provided by the 251 static inline bool ReadRepeatedPrimitive(int tag_size, 259 static bool ReadRepeatedPrimitiveNoInline(int tag_size, 486 int tag_size,
|
extension_set.cc | 1285 int tag_size = WireFormatLite::TagSize(number, real_type(type)); local [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_primitive_field.cc | 181 "total_size += $tag_size$ +\n" 186 "total_size += $tag_size$ + $fixed_size$;\n"); 279 " $tag_size$, $tag$, input, this->mutable_$name$())));\n"); 366 " total_size += $tag_size$ +\n" 373 "total_size += $tag_size$ * this->$name$_size() + data_size;\n");
|
cpp_enum_field.cc | 148 "total_size += $tag_size$ +\n" 345 " total_size += $tag_size$ +\n" 352 "total_size += $tag_size$ * this->$name$_size() + data_size;\n");
|
cpp_message_field.cc | 147 "total_size += $tag_size$ +\n" 259 "total_size += $tag_size$ * this->$name$_size();\n"
|
cpp_field.cc | 62 (*variables)["tag_size"] = SimpleItoa(
|
cpp_field.h | 57 // ['name', 'index', 'number', 'classname', 'declared_type', 'tag_size',
|
cpp_string_field.cc | 257 "total_size += $tag_size$ +\n" 432 "total_size += $tag_size$ * this->$name$_size();\n"
|
/external/srec/portable/src/ |
pmemory.c | 461 #define TAG_SIZE 52 467 LCHAR truncatedTag[TAG_SIZE]; 471 const size_t countToCopy = (TAG_SIZE - 1) - TAG_PREFIX_SIZE; 513 if (len > TAG_SIZE - 1) 517 passert(LSTRLEN(truncatedTag) == TAG_SIZE - 1);
|
/external/e2fsprogs/debugfs/ |
logdump.c | 469 int offset, tag_size = JBD_TAG_SIZE32; local 477 tag_size = JBD_TAG_SIZE64; 494 offset += tag_size;
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_enum_field.cc | 64 (*variables)["tag_size"] = SimpleItoa( 347 " size += $tag_size$;\n" 353 "size += $tag_size$ * get$capitalized_name$List().size();\n");
|
java_primitive_field.cc | 168 (*variables)["tag_size"] = SimpleItoa( 439 " size += $tag_size$;\n" 445 "size += $tag_size$ * get$capitalized_name$List().size();\n");
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_enum_field.cc | 64 (*variables)["tag_size"] = SimpleItoa( 307 " size += $tag_size$;\n" 313 "size += $tag_size$ * get$capitalized_name$List().size();\n");
|
javamicro_primitive_field.cc | 196 (*variables)["tag_size"] = SimpleItoa( 650 " size += $tag_size$;\n" 656 "size += $tag_size$ * get$capitalized_name$List().size();\n");
|