HomeSort by relevance Sort by last modified time
    Searched defs:overflow (Results 76 - 100 of 192) sorted by null

1 2 34 5 6 7 8

  /external/zlib/src/contrib/iostream/
zfstream.cpp 173 int gzfilebuf::overflow( int c ) { function in class:gzfilebuf
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
dec_amr.h 41 Description: Update function prototype for Decoder_amr(). Include overflow
157 Flag overflow; member in struct:Decoder_amrState
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cod_amr.h 41 Description: Added overflow flag as an element to the cod_amrState data
170 /* Overflow flag */
171 Flag overflow; member in struct:__anon51161
  /frameworks/av/media/libstagefright/foundation/tests/
Flagged_test.cpp 182 volatile bool overflow = true; local
183 b.get().setFlags(overflow ? kUnsafe : kSafe);
295 // static_assert(helper::topBits<u32>(33) == 0xFFFFFFFFU, ""); // should OVERFLOW
301 // static_assert(helper::topBits<u8>(9) == 0xFFU, ""); // should OVERFLOW
  /external/clang/test/SemaCXX/
enum.cpp 108 enum { overflow = 123456 * 234567 }; enumerator in enum:__anon18004
  /external/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/
PpScanner.cpp 302 // Patch up the name and length for overflow
337 // Assume failure combined with a large exponent was overflow, in
341 // Assume failure combined with a small exponent was overflow.
810 bool overflow = false; local
    [all...]
  /external/gemmlowp/fixedpoint/
fixedpoint_sse.h 280 /* We divide the inputs before the add to avoid the overflow and costly test
282 /* of checking if an overflow occured on signed add */
290 /* Other possibility detecting overflow and xor the sign if an overflow
292 __m128i one, sign_bit_mask, sum, rounded_half_sum, overflow, result; local
297 overflow =
300 result = BitXor(rounded_half_sum, overflow);
fixedpoint.h 89 // Integer addition. Not saturating. Overflow is undefined behavior.
95 // Integer subtraction. Not saturating. Overflow is undefined behavior.
106 // Integer unary negative. Not saturating. Overflow is undefined behavior.
113 // power of two. Not saturating. Overflow is undefined behavior.
309 bool overflow = a == b && a == std::numeric_limits<std::int32_t>::min(); local
316 return overflow ? std::numeric_limits<std::int32_t>::max() : ab_x2_high32;
322 bool overflow = a == b && a == std::numeric_limits<std::int16_t>::min(); local
329 return overflow ? std::numeric_limits<std::int16_t>::max() : ab_x2_high16;
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedIntsTest.java 171 // tests that we get exception whre an overflow would occur.
172 long overflow = 1L << 32; local
173 String overflowAsString = Long.toString(overflow, radix);
UnsignedLongsTest.java 194 // tests that we get exception whre an overflow would occur.
195 BigInteger overflow = max.add(ONE); local
196 String overflowAsString = overflow.toString(radix);
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntsTest.java 188 // tests that we get exception whre an overflow would occur.
189 long overflow = 1L << 32; local
190 String overflowAsString = Long.toString(overflow, radix);
UnsignedLongsTest.java 211 // tests that we get exception whre an overflow would occur.
212 BigInteger overflow = max.add(ONE); local
213 String overflowAsString = overflow.toString(radix);
  /external/icu/icu4c/source/common/
ucnv_u16.cpp 61 char overflow[4]; local
182 * prepare for overflow output
185 overflow[0]=(char)(c>>8);
186 overflow[1]=(char)c;
200 length=0; /* from here on, length counts the bytes in overflow[] */
213 /* output the surrogate pair, will overflow (see conditions comment above) */
215 overflow[0]=(char)(c>>8);
216 overflow[1]=(char)c;
217 overflow[2]=(char)(trail>>8);
218 overflow[3]=(char)trail
662 char overflow[4]; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_debug.c 187 boolean underflow, overflow; local
199 overflow = !check_random_pattern(map + buf->underflow_size + buf->base.size,
202 if(overflow) {
203 debug_printf("buffer overflow (size %"PRIu64" plus offset %"PRIu64" to %"PRIu64"%s bytes) detected\n",
210 if(underflow || overflow)
214 debug_assert(!overflow);
219 if(overflow)
  /external/mesa3d/src/gallium/drivers/vc5/
vc5_simulator.c 77 struct mem_block *overflow; member in struct:vc5_simulator_state
262 fprintf(stderr, "Buffer overflow in %s\n", bo->name);
292 /* Add one more for the overflow area that isn't wrapped in a BO. */
332 /* Add the static overflow memory area. */
334 bo_state[i].paddr = sim_state.overflow->ofs;
335 bo_state[i].size = sim_state.overflow->size;
351 void *overflow = calloc(1, sim_state.overflow->size);
352 fwrite(overflow, 1, sim_state.overflow->size, f)
    [all...]
  /external/tensorflow/tensorflow/python/lib/core/
py_seq_tensor.cc 299 int overflow = 0; local
301 *out = PyLong_AsLongLongAndOverflow(v, &overflow);
302 if (TF_PREDICT_FALSE(overflow)) return ErrorOutOfRange;
327 int overflow = 0; local
329 i = PyLong_AsLongLongAndOverflow(v, &overflow);
330 if (TF_PREDICT_FALSE(overflow)) return ErrorOutOfRange;
344 // Check for 32-bit overflow.
368 // Check for overflow.
  /external/v8/src/
assembler.cc 161 if (info.overflow()) return ConstantPoolEntry::OVERFLOWED;
169 // Double overflow detection must take into account the reach for both types
222 // overflow state.
223 if (merged || info.overflow()) return access;
263 const bool overflow = info.overflow(); local
279 end = overflow ? info.overflow_start : static_cast<int>(entries.size());
282 if (!overflow) return;
331 if (info_[ConstantPoolEntry::DOUBLE].overflow()) {
336 if (info_[ConstantPoolEntry::INTPTR].overflow()) {
    [all...]
  /frameworks/av/drm/libmediadrm/
ICrypto.cpp 387 bool overflow = false; local
393 overflow = true;
398 overflow = true;
402 if (overflow || sumSubsampleSizes != totalSize) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
Fraction.java 178 long overflow = Integer.MAX_VALUE; local
181 if (a0 > overflow) {
209 if ((p2 > overflow) || (q2 > overflow)) {
541 // make sure we don't overflow unless the result *must* overflow.
  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa_impl.c 365 char overflow = 0; local
384 overflow = rsa->num_blindings >= MAX_BLINDINGS_PER_RSA;
395 if (overflow) {
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_txfm_sse2.h 176 int overflow = k_check_epi32_overflow_4(preg0, preg1, preg2, preg3, zero); local
177 if (!overflow) {
178 overflow = k_check_epi32_overflow_4(preg4, preg5, preg6, preg7, zero);
180 return overflow;
190 int overflow = k_check_epi32_overflow_4(preg0, preg1, preg2, preg3, zero); local
191 if (!overflow) {
192 overflow = k_check_epi32_overflow_4(preg4, preg5, preg6, preg7, zero);
193 if (!overflow) {
194 overflow = k_check_epi32_overflow_4(preg8, preg9, preg10, preg11, zero);
195 if (!overflow) {
216 int overflow = k_check_epi32_overflow_4(preg0, preg1, preg2, preg3, zero); local
    [all...]
  /external/lzma/C/
MtDec.h 62 MTDEC_PARSE_OVERFLOW, // MT buffers overflow, need switch to single-thread
148 BoolInt overflow; member in struct:_CMtDec
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_simulator.c 71 struct mem_block *overflow; member in struct:vc4_simulator_state
294 /* Add one more for the overflow area that isn't wrapped in a BO. */
334 /* Add the static overflow memory area. */
336 bo_state[i].paddr = sim_state.overflow->ofs;
337 bo_state[i].size = sim_state.overflow->size;
353 void *overflow = calloc(1, sim_state.overflow->size); local
354 fwrite(overflow, 1, sim_state.overflow->size, f);
355 free(overflow);
    [all...]
  /external/v8/src/runtime/
runtime-strings.cc 136 // In case of empty handle and no pending exception we have stack overflow.
499 bool overflow = false; local
514 overflow = true;
522 if (!overflow && separator_length > 0) {
530 overflow = true;
536 overflow = true;
539 if (overflow) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
mathmodule.c 12 large to approximate by a machine float, overflow is signaled and the
50 the standard recommends raising 'overflow', Python should raise an
208 x, the obvious algorithm risks overflow, so we instead
407 fraction evaluation algorithm used below also risks overflow for large x;
454 overflow if x and nterms are not too large. On an IEEE 754 machine, with x
626 * on overflow, but also generally *allows* them to set
632 * overflow, so testing the result for zero suffices to
669 The last rule is used to catch overflow on platforms which follow
676 'overflow' floating-point exception mapping to OverflowError.
678 the possibility of overflow; fortunately, that covers everything we
1188 int overflow; local
    [all...]

Completed in 2749 milliseconds

1 2 34 5 6 7 8