Home | History | Annotate | Download | only in Common

Lines Matching refs:number

47   UInt64 number = ConvertStringToUInt64(start, &end);

53 if (number >= kLogarithmicSizeLimit)
55 dicSize = (UInt32)1 << (int)number;
61 if (number >= ((UInt64)1 << kLogarithmicSizeLimit))
63 dicSize = (UInt32)number;
66 if (number >= ((UInt64)1 << (kLogarithmicSizeLimit - 10)))
68 dicSize = (UInt32)(number << 10);
71 if (number >= ((UInt64)1 << (kLogarithmicSizeLimit - 20)))
73 dicSize = (UInt32)(number << 20);
136 int ParseStringToUInt32(const UString &srcString, UInt32 &number)
143 number = 0;
146 number = (UInt32)number64;
170 UInt32 number;
171 int index = ParseStringToUInt32(name, number);
174 numThreads = number;