HomeSort by relevance Sort by last modified time
    Searched defs:overflow (Results 126 - 150 of 287) sorted by null

1 2 3 4 56 7 8 91011>>

  /system/bt/stack/smp/
smp_cmac.c 97 UINT8 i, overflow = 0 , next_overflow = 0; local
103 output[i] = (input[i] << 1) | overflow;
104 overflow = next_overflow;
  /system/core/liblog/
log_event_list.c 39 bool overflow; member in struct:__anon74734
60 context->overflow = true;
111 context->overflow = true;
116 context->overflow = true;
122 context->overflow = true;
125 if (context->overflow) {
153 if (context->overflow) {
158 context->overflow = true;
189 if (context->overflow) {
194 context->overflow = true
    [all...]
  /system/core/run-as/
package.c 52 * 'dstlen' is 0, even in case of overflow.
392 int overflow = 0; local
409 overflow = 1;
415 if (overflow) {
  /toolchain/binutils/binutils-2.25/bfd/
cpu-ns32k.c 152 int overflow = 0; local
353 /* FIXME: This overflow checking is incomplete, because the value
358 FIXME: We should also do overflow checking on the result after
393 overflow if howto->bitsize is the number of bits in
405 overflow if howto->bitsize is the number of bits in
415 overflow. */
558 if ((howto->complain_on_overflow != complain_overflow_dont) && overflow)
576 bfd_boolean overflow; local
600 /* Check for overflow. FIXME: We may drop bits during the addition
604 overflow = FALSE
    [all...]
  /external/bison/lib/
strtol.c 248 int overflow; local
348 overflow = 0;
362 /* Check for overflow. */
364 overflow = 1;
384 if (overflow == 0
388 overflow = 1;
391 if (overflow)
  /external/boringssl/src/crypto/rsa/
rsa_impl.c 205 char overflow = 0; local
224 overflow = rsa->num_blindings >= MAX_BLINDINGS_PER_RSA;
235 if (overflow) {
  /external/clang/test/SemaCXX/
enum.cpp 108 enum { overflow = 123456 * 234567 }; enumerator in enum:__anon9537
  /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.c 57 char overflow[4]; local
178 * prepare for overflow output
181 overflow[0]=(char)(c>>8);
182 overflow[1]=(char)c;
196 length=0; /* from here on, length counts the bytes in overflow[] */
209 /* output the surrogate pair, will overflow (see conditions comment above) */
211 overflow[0]=(char)(c>>8);
212 overflow[1]=(char)c;
213 overflow[2]=(char)(trail>>8);
214 overflow[3]=(char)trail
653 char overflow[4]; local
    [all...]
  /external/libvncserver/client_examples/
scrap.c 351 unsigned long overflow; local
393 &seln_format, &nbytes, &overflow,
498 unsigned long overflow; local
536 &nbytes, &overflow, &seln_data) == Success) {
  /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 %u plus offset %u to %u%s bytes) detected\n",
210 if(underflow || overflow)
214 debug_assert(!overflow);
219 if(overflow)
  /frameworks/av/media/libmedia/
ICrypto.cpp 330 bool overflow = false; local
336 overflow = true;
341 overflow = true;
345 if (overflow || sumSubsampleSizes != totalSize) {
  /ndk/sources/cxx-stl/gabi++/src/
cxxabi_vec.cc 153 // std::bad_alloc() on overflow.
154 bool overflow = false; local
157 overflow = true;
161 overflow = true;
163 if (overflow)
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 85 __ok = __ok && !_Traits::eq_int_type(this->overflow(traits_type::eof()),
208 basic_filebuf<_CharT, _Traits>::overflow(int_type __c) { function in class:_Traits
404 return traits_type::eq_int_type(this->overflow(traits_type::eof()),
628 // basic_filebuf<>::overflow() for the reason.)
639 //We first check that the streamsize representation can't overflow a size_t one.
707 bool __ok = !traits_type::eq_int_type(this->overflow(traits_type::eof()),
_sstream.c 142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) function in class:_Alloc
163 return _Traits::eof(); // Overflow always fails if it's read-only
  /prebuilts/go/darwin-x86/src/runtime/
hashmap.go 24 // return the keys in walk order (bucket #, then overflow
33 // Picking loadFactor: too large and we have lots of overflow
37 // loadFactor %overflow bytes/entry hitprobe missprobe
48 // %overflow = percentage of buckets which have an overflow bucket
84 // Each bucket (including its overflow buckets, if any) will have either all or none of its
116 // However, bmap.overflow is a pointer. In order to keep overflow buckets
117 // alive, we store pointers to all overflow buckets in hmap.overflow
161 func (b *bmap) overflow(t *maptype) *bmap { func
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
hashmap.go 24 // return the keys in walk order (bucket #, then overflow
33 // Picking loadFactor: too large and we have lots of overflow
37 // loadFactor %overflow bytes/entry hitprobe missprobe
48 // %overflow = percentage of buckets which have an overflow bucket
84 // Each bucket (including its overflow buckets, if any) will have either all or none of its
116 // However, bmap.overflow is a pointer. In order to keep overflow buckets
117 // alive, we store pointers to all overflow buckets in hmap.overflow
161 func (b *bmap) overflow(t *maptype) *bmap { func
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 85 __ok = __ok && !_Traits::eq_int_type(this->overflow(traits_type::eof()),
208 basic_filebuf<_CharT, _Traits>::overflow(int_type __c) { function in class:_Traits
404 return traits_type::eq_int_type(this->overflow(traits_type::eof()),
628 // basic_filebuf<>::overflow() for the reason.)
639 //We first check that the streamsize representation can't overflow a size_t one.
707 bool __ok = !traits_type::eq_int_type(this->overflow(traits_type::eof()),
_sstream.c 142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) function in class:_Alloc
163 return _Traits::eof(); // Overflow always fails if it's read-only
  /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/gemmlowp/internal/
fixedpoint.h 166 bool overflow = a == b && a == std::numeric_limits<int32_t>::min(); local
172 return overflow ? std::numeric_limits<int32_t>::max() : ab_x2_high32;
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_txfm_sse2.h 223 int overflow = k_check_epi32_overflow_4(preg0, preg1, preg2, preg3, zero); local
224 if (!overflow) {
225 overflow = k_check_epi32_overflow_4(preg4, preg5, preg6, preg7, zero);
227 return overflow;
247 int overflow = k_check_epi32_overflow_4(preg0, preg1, preg2, preg3, zero); local
248 if (!overflow) {
249 overflow = k_check_epi32_overflow_4(preg4, preg5, preg6, preg7, zero);
250 if (!overflow) {
251 overflow = k_check_epi32_overflow_4(preg8, preg9, preg10, preg11,
253 if (!overflow) {
295 int overflow = k_check_epi32_overflow_4(preg0, preg1, preg2, preg3, zero); local
    [all...]

Completed in 2456 milliseconds

1 2 3 4 56 7 8 91011>>