Home
last modified time | relevance | path

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

/third_party/protobuf/csharp/src/Google.Protobuf/
DUnknownField.cs56 private List<ulong> fixed64List; field in Google.Protobuf.UnknownField
80 && Lists.Equals(fixed64List, otherField.fixed64List) in Equals()
93 hash = hash * 47 + Lists.GetHashCode(fixed64List); in GetHashCode()
123 if (fixed64List != null) in WriteTo()
125 foreach (ulong value in fixed64List) in WriteTo()
170 if (fixed64List != null) in GetSerializedSize()
172 result += CodedOutputStream.ComputeTagSize(fieldNumber) * fixed64List.Count; in GetSerializedSize()
173 result += CodedOutputStream.ComputeFixed64Size(1) * fixed64List.Count; in GetSerializedSize()
203 fixed64List = AddAll(fixed64List, other.fixed64List); in MergeFrom()
256 fixed64List = Add(fixed64List, value); in AddFixed64()
/third_party/protobuf/objectivec/
DGPBUnknownField.h58 @property(nonatomic, readonly, strong) GPBUInt64Array *fixed64List;
DGPBUnknownField.m50 @synthesize fixed64List = mutableFixed64List_;
258 GPBUInt64Array *otherFixed64List = other.fixed64List;
DGPBUtilities.m2067 PRINT_LOOP(fixed64List, uint64_t, 0x%llX);