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

  /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...]
  /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/python/cpython2/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/python/cpython3/Python/
mystrtoul.c 266 unsigned long uresult; local
276 uresult = PyOS_strtoul(str, ptr, base);
278 if (uresult <= (unsigned long)LONG_MAX) {
279 result = (long)uresult;
283 else if (sign == '-' && uresult == PY_ABS_LONG_MIN) {
  /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);
  /external/libchrome/base/numerics/
safe_math_impl.h 63 UnsignedDst uresult = static_cast<UnsignedDst>(ux + uy); local
64 *result = static_cast<T>(uresult);
68 ? static_cast<SignedDst>((uresult ^ ux) & (uresult ^ uy)) >= 0
69 : uresult >= uy; // Unsigned is either valid or underflow.
114 UnsignedDst uresult = static_cast<UnsignedDst>(ux - uy); local
115 *result = static_cast<T>(uresult);
119 ? static_cast<SignedDst>((uresult ^ ux) & (ux ^ uy)) >= 0
165 UnsignedDst uresult = static_cast<UnsignedDst>(ux * uy); local
168 *result = is_negative ? 0 - uresult : uresult
    [all...]
  /external/pdfium/third_party/base/numerics/
safe_math_impl.h 64 auto 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 auto uresult = static_cast<UnsignedDst>(ux - uy); local
116 *result = static_cast<T>(uresult);
120 ? static_cast<SignedDst>((uresult ^ ux) & (ux ^ uy)) >= 0
166 auto uresult = static_cast<UnsignedDst>(ux * uy); local
169 *result = is_negative ? 0 - uresult : uresult
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 1442 uint32_t uresult = static_cast<uint32_t>(result); local
1515 uint32_t uresult = static_cast<uint32_t>(result); local
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 392 unsigned long uresult; local
394 uresult = PyLong_AsUnsignedLong(obj);
403 uresult = result;
406 (unsigned long)(uid_t)uresult != uresult)
408 *(uid_t *)p = (uid_t)uresult;
444 unsigned long uresult; local
446 uresult = PyLong_AsUnsignedLong(obj);
455 uresult = result;
458 (unsigned long)(gid_t)uresult != uresult
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 444 unsigned long uresult; local
498 uresult = PyLong_AsUnsignedLong(index);
505 uid = (uid_t)uresult;
519 (unsigned long)uid != uresult)
550 unsigned long uresult; local
605 uresult = PyLong_AsUnsignedLong(index);
612 gid = (gid_t)uresult;
626 (unsigned long)gid != uresult)
    [all...]

Completed in 191 milliseconds