Lines Matching refs:res
14 uintType res = 0; \
17 if (c < '0' || c > '9') { if (end) *end = s; return res; } \
18 if (res > (k_ ## uintType ## _max) / 10) return 0; \
19 res *= 10; \
21 if (res > (k_ ## uintType ## _max) - v) return 0; \
22 res += v; }}
40 UInt32 res = ConvertStringToUInt32(s2, &end2);
43 if (res > ((UInt32)1 << (32 - 1)))
46 else if ((res & ((UInt32)1 << (32 - 1))) != 0)
51 return -(Int32)res;
52 return (Int32)res;
66 UInt32 res = ConvertStringToUInt32(s2, &end2);
69 if (res > ((UInt32)1 << (32 - 1)))
72 else if ((res & ((UInt32)1 << (32 - 1))) != 0)
77 return -(Int32)res;
78 return (Int32)res;
85 UInt32 res = 0;
93 return res;
95 if ((res & (UInt32)7 << (32 - 3)) != 0)
97 res <<= 3;
98 res |= (unsigned)(c - '0');
106 UInt64 res = 0;
114 return res;
116 if ((res & (UInt64)7 << (64 - 3)) != 0)
118 res <<= 3;
119 res |= (unsigned)(c - '0');
127 UInt32 res = 0;
139 return res;
141 if ((res & (UInt32)0xF << (32 - 4)) != 0)
143 res <<= 4;
144 res |= v;
152 UInt64 res = 0;
164 return res;
166 if ((res & (UInt64)0xF << (64 - 4)) != 0)
168 res <<= 4;
169 res |= v;