| /external/llvm/lib/Analysis/ |
| MemoryBuiltins.cpp | 510 // trouble with APInt size issues. This function handles resizing + overflow 539 bool Overflow; 540 Size = Size.umul_ov(NumElems, Overflow); 541 return Overflow ? unknown() : std::make_pair(Size, Zero);
|
| /external/pdfium/xfa/fxfa/parser/ |
| cxfa_layoutpagemgr.cpp | [all...] |
| /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
| InstCombineCalls.cpp | 409 // The sign bit is set in both cases: this MUST overflow. 423 // The sign bit is clear in both cases: this CANNOT overflow. 502 // If multiplying the maximum values does not overflow then we can turn 504 bool Overflow; 505 LHSMax.umul_ov(RHSMax, Overflow); 506 if (!Overflow) { [all...] |
| InstructionCombining.cpp | 115 // not overflow. This function only handles the Add and Sub opcodes. For 139 bool Overflow = false; 142 BVal.sadd_ov(CVal, Overflow); 144 BVal.ssub_ov(CVal, Overflow); 147 return !Overflow; 356 // but this requires knowing that the addition does not overflow and other [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| decimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
278 were non-zero), or if an overflow or underflow condition occurs. The
304 coefficient), or if an overflow or underflow condition occurs. The
322 class Overflow(Inexact, Rounded):
323 """Numerical overflow.
325 This occurs and signals overflow if the adjusted exponent of a result
376 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
[all...] |
| /external/python/cpython2/Lib/ |
| decimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', 277 were non-zero), or if an overflow or underflow condition occurs. The 303 coefficient), or if an overflow or underflow condition occurs. The 321 class Overflow(Inexact, Rounded): 322 """Numerical overflow. 324 This occurs and signals overflow if the adjusted exponent of a result 375 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, [all...] |
| /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
| bwe_unittest.cc | 67 TEST_F(LinkedSetTest, Overflow) { 213 // Should handle uint16_t overflow. 222 // Should handle set overflow.
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| decimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', 278 were non-zero), or if an overflow or underflow condition occurs. The 304 coefficient), or if an overflow or underflow condition occurs. The 322 class Overflow(Inexact, Rounded): 323 """Numerical overflow. 325 This occurs and signals overflow if the adjusted exponent of a result 376 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| decimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', 278 were non-zero), or if an overflow or underflow condition occurs. The 304 coefficient), or if an overflow or underflow condition occurs. The 322 class Overflow(Inexact, Rounded): 323 """Numerical overflow. 325 This occurs and signals overflow if the adjusted exponent of a result 376 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| decimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', 278 were non-zero), or if an overflow or underflow condition occurs. The 304 coefficient), or if an overflow or underflow condition occurs. The 322 class Overflow(Inexact, Rounded): 323 """Numerical overflow. 325 This occurs and signals overflow if the adjusted exponent of a result 376 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| decimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', 278 were non-zero), or if an overflow or underflow condition occurs. The 304 coefficient), or if an overflow or underflow condition occurs. The 322 class Overflow(Inexact, Rounded): 323 """Numerical overflow. 325 This occurs and signals overflow if the adjusted exponent of a result 376 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, [all...] |
| /external/llvm/lib/Target/AMDGPU/ |
| R600ISelLowering.cpp | 133 // ADD, SUB overflow. [all...] |
| /external/freetype/src/raster/ |
| ftraster.c | 648 /* SUCCESS on success. FAILURE in case of overflow or of incoherent */ 664 ras.error = FT_THROW( Overflow ); 722 /* SUCCESS on success. FAILURE in case of overflow or incoherency. */ 770 FT_TRACE1(( "overflow in End_Profile\n" )); 771 ras.error = FT_THROW( Overflow ); [all...] |
| /external/llvm/lib/CodeGen/SelectionDAG/ |
| LegalizeIntegerTypes.cpp | 522 /// Promote the overflow flag of an overflowing arithmetic node. 554 // Calculate the overflow flag: sign extend the arithmetic result from 561 // Use the calculated overflow everywhere. 747 // Calculate the overflow flag: zero extend the arithmetic result from 753 // Use the calculated overflow everywhere. 760 // Promote the overflow bit trivially. 770 // then also check the high bits of the result to see if overflow happened 782 // Overflow occurred if it occurred in the larger type, or if the high part 785 SDValue Overflow; 787 // Unsigned overflow occurred if the high part is non-zero [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/ |
| longobject.c | 91 overflow */
227 /* Checking for overflow in PyLong_AsLong is a PITA since C doesn't define
240 On overflow, returns -1 and sets *overflow to 1 or -1 depending
241 on the sign of the result. Otherwise *overflow is 0.
248 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow)
258 *overflow = 0;
316 *overflow = sign;
330 *overflow = sign;
342 Returns -1 and sets an error condition if overflow occurs. */ 347 int overflow; local [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/ |
| longobject.c | 87 overflow */
223 /* Checking for overflow in PyLong_AsLong is a PITA since C doesn't define
236 On overflow, returns -1 and sets *overflow to 1 or -1 depending
237 on the sign of the result. Otherwise *overflow is 0.
244 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow)
254 *overflow = 0;
312 *overflow = sign;
326 *overflow = sign;
338 Returns -1 and sets an error condition if overflow occurs. */ 343 int overflow; local 360 int overflow; local [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
| longobject.c | 91 overflow */
227 /* Checking for overflow in PyLong_AsLong is a PITA since C doesn't define
240 On overflow, returns -1 and sets *overflow to 1 or -1 depending
241 on the sign of the result. Otherwise *overflow is 0.
248 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow)
258 *overflow = 0;
316 *overflow = sign;
330 *overflow = sign;
342 Returns -1 and sets an error condition if overflow occurs. */ 347 int overflow; local [all...] |
| /external/python/cpython2/Objects/ |
| longobject.c | 75 overflow */ 211 /* Checking for overflow in PyLong_AsLong is a PITA since C doesn't define 224 On overflow, returns -1 and sets *overflow to 1 or -1 depending 225 on the sign of the result. Otherwise *overflow is 0. 232 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) 242 *overflow = 0; 300 *overflow = sign; 314 *overflow = sign; 326 Returns -1 and sets an error condition if overflow occurs. * 331 int overflow; local 348 int overflow; local [all...] |
| /external/python/cpython3/Objects/ |
| longobject.c | 369 /* Checking for overflow in PyLong_AsLong is a PITA since C doesn't define 384 On overflow, return -1 and set *overflow to 1 or -1 depending on the sign of 385 the result. Otherwise *overflow is 0. 388 In this case *overflow will be 0. 392 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) 402 *overflow = 0; 442 *overflow = sign; 456 *overflow = sign; 468 method. Return -1 and set an error if overflow occurs. * 473 int overflow; local 490 int overflow; local [all...] |
| /external/python/cpython3/Lib/ |
| _pydecimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', 305 were non-zero), or if an overflow or underflow condition occurs. The 331 coefficient), or if an overflow or underflow condition occurs. The 349 class Overflow(Inexact, Rounded): 350 """Numerical overflow. 352 This occurs and signals overflow if the adjusted exponent of a result 418 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, [all...] |
| /external/swiftshader/third_party/LLVM/lib/Analysis/ |
| ScalarEvolution.cpp | 665 // overflow. Hence, we must assure that the result of our computation is 699 // isn't smart enough to ignore the overflow, which leads to much less 717 // multiplying for calculating K! / 2^T to avoid overflow. 718 // Other overflow doesn't matter because we only care about the bottom 776 // The computation is correct in the face of overflow provided that the [all...] |
| /external/clang/test/CXX/expr/expr.const/ |
| p2-0x.cpp | 128 // example, signed integer overflow (Clause 5 [expr]), certain pointer 228 namespace Overflow { 229 // Signed int overflow. 261 // Unsigned int overflow. 267 // Floating-point overflow and NaN.
|
| /external/pdfium/xfa/fxfa/ |
| fxfa_basic.h | 818 Overflow,
|
| /external/tensorflow/tensorflow/core/framework/ |
| tensor_shape_test.cc | 582 TEST(TensorShapeTest, Overflow) { 588 for (const auto& overflow : overflows) { 590 for (auto dim : overflow) { 597 TensorShapeUtils::MakeShape(overflow, &shape).code());
|
| /external/python/cpython3/Modules/_decimal/tests/ |
| deccheck.py | 153 C.Overflow: P.Overflow, [all...] |