Home
last modified time | relevance | path

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

/third_party/lzma/CPP/Windows/
DFileName.cpp613 unsigned fixedSize = GetRootPrefixSize_Of_SuperPath(temp); in GetSuperPathBase() local
614 if (fixedSize == 0) in GetSuperPathBase()
617 UString rem = &temp[fixedSize]; in GetSuperPathBase()
621 temp.DeleteFrom(fixedSize); in GetSuperPathBase()
635 unsigned fixedSize = GetRootPrefixSize_Of_NetworkPath(temp); in GetSuperPathBase() local
641 UString rem = &temp[fixedSize]; in GetSuperPathBase()
645 temp.DeleteFrom(fixedSize); in GetSuperPathBase()
676 unsigned fixedSize = 0; in GetSuperPathBase() local
680 fixedSize = GetRootPrefixSize_Of_SuperPath(curDir); in GetSuperPathBase()
681 if (fixedSize == 0) in GetSuperPathBase()
[all …]
/third_party/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_primitive_field.cc210 int fixedSize = GetFixedSize(descriptor_->type()); in GenerateSerializedSizeCode() local
211 if (fixedSize == -1) { in GenerateSerializedSizeCode()
218 "fixed_size", StrCat(fixedSize), in GenerateSerializedSizeCode()
/third_party/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs208 int fixedSize = codec.FixedSize; in CalculatePackedDataSize()
209 if (fixedSize == 0) in CalculatePackedDataSize()
221 return fixedSize * Count; in CalculatePackedDataSize()
/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldCodec.cs749 int fixedSize,
751 T defaultValue) : this(reader, writer, _ => fixedSize, tag, defaultValue)
753 FixedSize = fixedSize;