Lines Matching defs:value
155 void COutArchive::WriteUInt32(UInt32 value)
159 WriteByte((Byte)value);
160 value >>= 8;
164 void COutArchive::WriteUInt64(UInt64 value)
168 WriteByte((Byte)value);
169 value >>= 8;
173 void COutArchive::WriteNumber(UInt64 value)
180 if (value < ((UInt64(1) << ( 7 * (i + 1)))))
182 firstByte |= Byte(value >> (8 * i));
191 WriteByte((Byte)value);
192 value >>= 8;
196 static unsigned GetBigNumberSize(UInt64 value)
200 if (value < (((UInt64)1 << (i * 7))))
549 const UInt64 kDeveloperID = 0x123456789A; // change that value to real random 40-bit number
917 void CUInt32DefVector::SetItem(unsigned index, bool defined, UInt32 value)
926 Vals[index] = value;
929 void CUInt64DefVector::SetItem(unsigned index, bool defined, UInt64 value)
938 Vals[index] = value;