Home
last modified time | relevance | path

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

/external/lzma/CPP/Windows/
DFileName.cpp567 unsigned fixedSize = GetRootPrefixSize_Of_SuperPath(temp); in GetSuperPathBase() local
568 if (fixedSize == 0) in GetSuperPathBase()
571 UString rem = &temp[fixedSize]; in GetSuperPathBase()
575 temp.DeleteFrom(fixedSize); in GetSuperPathBase()
589 unsigned fixedSize = GetRootPrefixSize_Of_NetworkPath(temp); in GetSuperPathBase() local
595 UString rem = &temp[fixedSize]; in GetSuperPathBase()
599 temp.DeleteFrom(fixedSize); in GetSuperPathBase()
630 unsigned fixedSize = 0; in GetSuperPathBase() local
634 fixedSize = GetRootPrefixSize_Of_SuperPath(curDir); in GetSuperPathBase()
635 if (fixedSize == 0) in GetSuperPathBase()
[all …]
/external/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_primitive_field.cc124 int fixedSize = GetFixedSize(descriptor_->type()); in GenerateSerializedSizeCode() local
125 if (fixedSize == -1) { in GenerateSerializedSizeCode()
132 "fixed_size", SimpleItoa(fixedSize), in GenerateSerializedSizeCode()
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs158 int fixedSize = codec.FixedSize; in CalculatePackedDataSize()
159 if (fixedSize == 0) in CalculatePackedDataSize()
171 return fixedSize * Count; in CalculatePackedDataSize()
/external/protobuf/csharp/src/Google.Protobuf/
DFieldCodec.cs414 int fixedSize, in FieldCodec() argument
415 uint tag) : this(reader, writer, _ => fixedSize, tag) in FieldCodec()
417 FixedSize = fixedSize; in FieldCodec()