Lines Matching refs:end
70 const wchar_t *end;
71 number = ConvertStringToUInt32(start, &end);
72 return (unsigned)(end - start);
78 const wchar_t *end;
79 number = ConvertStringToUInt64(start, &end);
80 return (unsigned)(end - start);
177 const wchar_t *end;
178 v = ConvertStringToUInt32(start, &end);
179 if (end == start)
183 start = end;
219 const wchar_t *end;
220 const UInt64 number = ConvertStringToUInt64(s, &end);
221 const unsigned numDigits = (unsigned)(end - s.Ptr());