HomeSort by relevance Sort by last modified time
    Searched defs:uresult (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
mystrtoul.c 260 unsigned long uresult; local
270 uresult = PyOS_strtoul(str, ptr, base);
272 if (uresult <= (unsigned long)LONG_MAX) {
273 result = (long)uresult;
277 else if (sign == '-' && uresult == PY_ABS_LONG_MIN) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
mystrtoul.c 260 unsigned long uresult; local
270 uresult = PyOS_strtoul(str, ptr, base);
272 if (uresult <= (unsigned long)LONG_MAX) {
273 result = (long)uresult;
277 else if (sign == '-' && uresult == PY_ABS_LONG_MIN) {
  /external/pdfium/third_party/base/numerics/
safe_math_impl.h 64 UnsignedDst uresult = static_cast<UnsignedDst>(ux + uy); local
65 *result = static_cast<T>(uresult);
69 ? static_cast<SignedDst>((uresult ^ ux) & (uresult ^ uy)) >= 0
70 : uresult >= uy; // Unsigned is either valid or underflow.
115 UnsignedDst uresult = static_cast<UnsignedDst>(ux - uy); local
116 *result = static_cast<T>(uresult);
120 ? static_cast<SignedDst>((uresult ^ ux) & (ux ^ uy)) >= 0
166 UnsignedDst uresult = static_cast<UnsignedDst>(ux * uy); local
169 *result = is_negative ? 0 - uresult : uresult
    [all...]
  /external/libchrome/base/numerics/
safe_math_impl.h 142 UnsignedDst uresult = static_cast<UnsignedDst>(ux + uy); local
147 static_cast<UnsignedDst>((uresult ^ ux) & (uresult ^ uy))))) {
150 *validity = HasSignBit(uresult) ? RANGE_OVERFLOW : RANGE_UNDERFLOW;
155 return static_cast<T>(uresult);
166 UnsignedDst uresult = static_cast<UnsignedDst>(ux - uy); local
171 static_cast<UnsignedDst>((uresult ^ ux) & (ux ^ uy))))) {
174 *validity = HasSignBit(uresult) ? RANGE_OVERFLOW : RANGE_UNDERFLOW;
179 return static_cast<T>(uresult);
  /external/v8/src/base/
safe_math_impl.h 151 UnsignedDst uresult = ux + uy; local
155 if (HasSignBit(BinaryComplement((uresult ^ ux) & (uresult ^ uy))))
158 *validity = HasSignBit(uresult) ? RANGE_OVERFLOW : RANGE_UNDERFLOW;
163 return static_cast<T>(uresult);
174 UnsignedDst uresult = ux - uy; local
178 if (HasSignBit(BinaryComplement((uresult ^ ux) & (ux ^ uy))))
181 *validity = HasSignBit(uresult) ? RANGE_OVERFLOW : RANGE_UNDERFLOW;
186 return static_cast<T>(uresult);
  /prebuilts/misc/windows/sdl2/test/
testautomation_sdltest.c 88 Uint64 uresult; local
126 uresult = SDLTest_RandomUint64();
158 Uint64 uresult; local
165 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(10, 10, SDL_TRUE);
168 uresult == 10,
169 "Validate result value for parameters (10,10,SDL_TRUE); expected: 10, got: %lld", uresult);
172 uresult = (Uint64)SDLTest_RandomUint8BoundaryValue(10, 11, SDL_TRUE);
175 uresult == 10 || uresult == 11,
176 "Validate result value for parameters (10,11,SDL_TRUE); expected: 10|11, got: %lld", uresult);
268 Uint64 uresult; local
378 Uint64 uresult; local
488 Uint64 uresult; local
    [all...]

Completed in 3129 milliseconds