/external/clang/test/CodeGen/ |
catch-undef-behavior.c | 1 // RUN: %clang_cc1 -fsanitize=alignment,null,object-size,shift-base,shift-exponent,return,signed-integer-overflow,vla-bound,float-cast-overflow,integer-divide-by-zero,bool,returns-nonnull-attribute,nonnull-attribute -fsanitize-recover=alignment,null,object-size,shift-base,shift-exponent,signed-integer-overflow,vla-bound,float-cast-overflow,integer-divide-by-zero,bool,returns-nonnull-attribute,nonnull-attribute -emit-llvm %s -o - -triple x86_64-linux-gnu | opt -instnamer -S | FileCheck %s --check-prefix=CHECK-COMMON --check-prefix=CHECK-UBSAN 2 // RUN: %clang_cc1 -fsanitize-trap=alignment,null,object-size,shift-base,shift-exponent,return,signed-integer-overflow,vla-bound,float-cast-overflow,integer-divide-by-zero,bool,returns-nonnull-attribute,nonnull-attribute -fsanitize-recover=alignment,null,object-size,shift-base,shift-exponent,signed-integer-overflow,vla-bound,float-cast-overflow,integer-divide-by-zero,bool,returns-nonnull-attribute,nonnull-attribute -fsanitize=alignment,null,object-size,shift-base,shift-exponent,return,signed-integer-overflow,vla-bound,float-cast-overflow,integer-divide-by-zero,bool,returns-nonnull-attribute,nonnull-attribute -fsanitize-recover=alignme (…) [all...] |
/toolchain/binutils/binutils-2.25/gas/doc/ |
c-tilegx.texi | 195 that the value does not overflow. 200 that the value does not overflow. 205 that the value does not overflow. 223 checks that the value does not overflow. 229 value does not overflow. 257 checks that the value does not overflow. 262 a plt entry, and it also checks that the value does not overflow. 273 checks that the value does not overflow. 279 TLS accesses. It also checks that the value does not overflow. 290 checks that the value does not overflow [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
MallocOverflowSecurityChecker.cpp | 14 // elements, this will actually allocate only two because of overflow. 172 // which cannot cause an overflow. 188 // that can never overflow after multiplication. e.g., the assignment 230 // protect against an overflow. 260 // OutputPossibleOverflows - We've found a possible overflow earlier, 262 // preventing the overflow. 265 // detect the most blatent cases of overflow and educate the 285 D, this, "malloc() size overflow", categories::UnixAPI, 286 "the computation of the size of the memory allocation may overflow",
|
/external/opencv3/3rdparty/openexr/Half/ |
half.cpp | 63 // Overflow handler for float-to-half conversion; 64 // generates a hardware floating-point overflow, 69 half::overflow () 74 f *= f; // this will overflow before 138 // Rounding may cause the significand to overflow and make 198 m = 0; // overflow in significand, 203 // Handle exponent overflow 208 overflow (); // Cause a hardware floating point overflow;
|
/libcore/ojluni/src/main/java/java/nio/charset/ |
CoderResult.java | 51 * <li><p> <i>Overflow</i> is reported when there is insufficient room 53 * unique result object {@link #OVERFLOW}, whose {@link #isOverflow() 76 * errors but <tt>false</tt> for those that describe underflow or overflow 94 = { "UNDERFLOW", "OVERFLOW", "MALFORMED", "UNMAPPABLE" }; 124 * Tells whether or not this object describes an overflow condition. </p> 126 * @return <tt>true</tt> if, and only if, this object denotes overflow 189 * Result object indicating overflow, meaning that there is insufficient 192 public static final CoderResult OVERFLOW 261 * If this object is {@link #OVERFLOW}
|
/bionic/tests/ |
fortify_test.cpp | 63 // this buffer overflow. TODO: Fix clang. 73 // this buffer overflow. TODO: Fix clang. 84 // this buffer overflow. TODO: Fix clang. 94 // this buffer overflow. TODO: Fix clang. 105 // this buffer overflow. TODO: Fix clang. 116 // this buffer overflow. TODO: Fix clang. 125 // this buffer overflow. TODO: Fix clang. 148 // this buffer overflow. TODO: Fix clang. 173 // this buffer overflow. TODO: Fix clang. 189 // this buffer overflow. TODO: Fix clang [all...] |
/cts/tools/tradefed-host/res/report/ |
cts_result.css | 143 overflow:hidden; 153 overflow:hidden; 164 overflow:hidden; 175 overflow:hidden; 185 overflow:auto;
|
/external/bison/lib/ |
mbswidth.c | 141 goto overflow; 151 goto overflow; 174 goto overflow; 182 goto overflow; 191 overflow:
|
/external/flac/libFLAC/ |
memory.c | 75 if(elements > SIZE_MAX / sizeof(*pu)) /* overflow check */ 104 if(elements > SIZE_MAX / sizeof(*pu)) /* overflow check */ 133 if(elements > SIZE_MAX / sizeof(*pu)) /* overflow check */ 162 if(elements > SIZE_MAX / sizeof(*pu)) /* overflow check */ 193 if(elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
RuntimeDyldCOFFI386.h | 122 "relocation overflow"); 139 "relocation overflow"); 154 "relocation overflow"); 167 "relocation overflow"); 178 "relocation overflow");
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfCheckedArithmetic.h | 41 // on overflow, underflow or division by zero. 69 throw Iex::OverflowExc ("Integer multiplication overflow."); 105 throw Iex::OverflowExc ("Integer addition overflow."); 141 // would overflow, then throw an Iex::OverflowExc exception. 153 throw Iex::OverflowExc ("Integer multiplication overflow.");
|
/external/valgrind/VEX/test/ |
test-i386-shift.h | 35 /* overflow is undefined if count != 1 */ 48 /* overflow is undefined if count != 1 */ 71 /* overflow is undefined if count != 1 */ 84 /* overflow is undefined if count != 1 */ 100 /* overflow is undefined if count != 1 */
|
/packages/apps/Email/src/com/beetstra/jutf7/ |
UTF7StyleCharsetDecoder.java | 73 return overflow(in);
80 return overflow(in);
95 return overflow(in);
103 private CoderResult overflow(ByteBuffer in) {
method in class:UTF7StyleCharsetDecoder 105 return CoderResult.OVERFLOW;
|
/prebuilts/go/darwin-x86/src/encoding/binary/ |
varint.go | 57 // n < 0: value larger than 64 bits (overflow) 66 return 0, -(i + 1) // overflow 91 // n < 0: value larger than 64 bits (overflow) 103 var overflow = errors.New("binary: varint overflows a 64-bit integer") 116 return x, overflow
|
/prebuilts/go/linux-x86/src/encoding/binary/ |
varint.go | 57 // n < 0: value larger than 64 bits (overflow) 66 return 0, -(i + 1) // overflow 91 // n < 0: value larger than 64 bits (overflow) 103 var overflow = errors.New("binary: varint overflows a 64-bit integer") 116 return x, overflow
|
/system/core/libcutils/ |
strdup16to8.c | 33 /* A small note on integer overflow. The result can 34 * potentially be as big as 3*len, which will overflow 85 if (utf8Len < utf8Cur) /* overflow detected */ 115 * its malloc(SIZE_MAX) in case of overflow. 158 * too since it is an overflow value for our
|
/toolchain/binutils/binutils-2.25/include/elf/ |
mep.h | 53 RELOC_NUMBER (R_MEP_LOW16, 10) /* ---- ---- ---- ---- fedc ba98 7654 3210 U no-overflow */ 54 RELOC_NUMBER (R_MEP_HI16U, 11) /* ---- ---- ---- ---- vuts rqpo nmlk jihg U no-overflow */ 55 RELOC_NUMBER (R_MEP_HI16S, 12) /* ---- ---- ---- ---- vuts rqpo nmlk jihg S no-overflow */ 66 RELOC_NUMBER (R_MEP_GNU_VTINHERIT, 20) /* ---- ---- ---- ---- U no-overflow */ 67 RELOC_NUMBER (R_MEP_GNU_VTENTRY, 21) /* ---- ---- ---- ---- U no-overflow */
|
/frameworks/base/docs/image_sources/preview/ |
m-preview-timeline.svg | 56 style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" /> 66 style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" /> 74 style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" /> 79 style="color:#000000;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 82 style="color:#000000;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:36px;line-height:125%;font-family:Roboto;-inkscape-font-specification:'Roboto, Light';text-align:center;writing-mode:lr-tb;text-anchor:middle;display:inline;overflow:visible;visibility:visible;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" 96 style="color:#000000;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 101 style="color:#000000;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> 104 style="font-size:36px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Roboto;-inkscape-font-specification:Roboto Light" 117 style="font-size:36px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Roboto;-inkscape-font-specification:Roboto Light" 130 style="font-size:36px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Roboto;-inkscape-font-specification:Roboto Light [all...] |
/bionic/libc/upstream-freebsd/lib/libc/gen/ |
ldexp.c | 112 if (k > 0x7fe) return huge*_copysign(huge,x); /* overflow */ 116 if (n > 50000) /* in case integer overflow in n+k */ 117 return huge*_copysign(huge,x); /*overflow*/
|
/bionic/libm/include/arm64/machine/ |
fenv.h | 49 * * [10] - OFE, Overflow exception trap; 58 * * [28] - V, Overflow conditon flag for AArch32 (AArch64 sets PSTATE.V); 65 * * [2] - OFC, Overflow cumulative exception;
|
/bionic/libm/include/mips/machine/ |
fenv.h | 48 * 14 -> cause bit for overflow exception 53 * 9 -> enable exception for overflow exception 58 * 4 -> flag overflow exception
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
k_exp.c | 39 * Compute exp(x), scaled to avoid spurious overflow. An exponent is 67 * where care is needed to avoid overflow. 71 * has filtered out very large x, for which overflow would be inevitable.
|
/development/ndk/platforms/android-21/arch-arm64/include/machine/ |
fenv.h | 49 * * [10] - OFE, Overflow exception trap; 58 * * [28] - V, Overflow conditon flag for AArch32 (AArch64 sets PSTATE.V); 65 * * [2] - OFC, Overflow cumulative exception;
|
/development/ndk/platforms/android-21/arch-mips/include/machine/ |
fenv.h | 48 * 14 -> cause bit for overflow exception 53 * 9 -> enable exception for overflow exception 58 * 4 -> flag overflow exception
|
/development/ndk/platforms/android-21/arch-mips64/include/machine/ |
fenv.h | 48 * 14 -> cause bit for overflow exception 53 * 9 -> enable exception for overflow exception 58 * 4 -> flag overflow exception
|