HomeSort by relevance Sort by last modified time
    Searched defs:TAG_TYPE_BITS (Results 1 - 7 of 7) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
WireFormatMicro.java 55 static final int TAG_TYPE_BITS = 3;
56 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
65 return tag >>> TAG_TYPE_BITS;
70 return (fieldNumber << TAG_TYPE_BITS) | wireType;
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
WireFormatNano.java 57 static final int TAG_TYPE_BITS = 3;
58 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
67 return tag >>> TAG_TYPE_BITS;
72 return (fieldNumber << TAG_TYPE_BITS) | wireType;
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
wire_format.py 40 TAG_TYPE_BITS = 3 # Number of bits used to hold type info in a proto tag.
41 TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1 # 0x7
44 # We use the least-significant TAG_TYPE_BITS bits of the varint-encoded
90 return (field_number << TAG_TYPE_BITS) | wire_type
97 return (tag >> TAG_TYPE_BITS), (tag & TAG_TYPE_MASK)
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 55 static final int TAG_TYPE_BITS = 3;
56 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
65 return tag >>> TAG_TYPE_BITS;
70 return (fieldNumber << TAG_TYPE_BITS) | wireType;
  /external/protobuf/python/google/protobuf/internal/
wire_format.py 40 TAG_TYPE_BITS = 3 # Number of bits used to hold type info in a proto tag.
41 TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1 # 0x7
44 # We use the least-significant TAG_TYPE_BITS bits of the varint-encoded
90 return (field_number << TAG_TYPE_BITS) | wire_type
97 return (tag >> TAG_TYPE_BITS), (tag & TAG_TYPE_MASK)
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 

Completed in 207 milliseconds