HomeSort by relevance Sort by last modified time
    Searched refs:OVERFLOW (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/compiler-rt/test/msan/
param_tls_limit.cc 18 // In case of overflow, argument is unpoisoned.
19 #define OVERFLOW(x) assert(__msan_test_shadow(&x, sizeof(x)) == -1)
20 // In case of no overflow, it is still poisoned.
37 OVERFLOW(s);
41 OVERFLOW(s);
47 OVERFLOW(s);
48 OVERFLOW(c);
49 OVERFLOW(d);
57 OVERFLOW(c);
58 OVERFLOW(d)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CoderResultTest.java 47 * Test the constant OVERFLOW and UNDERFLOW.
50 assertNotSame(CoderResult.OVERFLOW, CoderResult.UNDERFLOW);
52 assertNotNull(CoderResult.OVERFLOW);
53 assertFalse(CoderResult.OVERFLOW.isError());
54 assertFalse(CoderResult.OVERFLOW.isMalformed());
55 assertFalse(CoderResult.OVERFLOW.isUnderflow());
56 assertFalse(CoderResult.OVERFLOW.isUnmappable());
57 assertTrue(CoderResult.OVERFLOW.isOverflow());
58 assertTrue(CoderResult.OVERFLOW.toString().indexOf("OVERFLOW") != -1)
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetUTF8.java 74 return CoderResult.OVERFLOW;
145 /* put in overflow buffer (not handled here) */
147 cr = CoderResult.OVERFLOW;
163 cr = CoderResult.OVERFLOW;
175 cr = CoderResult.OVERFLOW;
280 /* put in overflow buffer (not handled here) */
282 cr = CoderResult.OVERFLOW;
300 cr = CoderResult.OVERFLOW;
312 cr = CoderResult.OVERFLOW;
359 return CoderResult.OVERFLOW;
    [all...]
CharsetASCII.java 45 return CoderResult.OVERFLOW;
74 * perform the core loop... if it returns null, it must be due to an overflow or
86 cr = CoderResult.OVERFLOW;
92 if (cr == CoderResult.OVERFLOW) {
146 return CoderResult.OVERFLOW;
193 return CoderResult.OVERFLOW;
230 * perform the core loop... if it returns null, it must be due to an overflow or
242 cr = CoderResult.OVERFLOW;
250 if (cr == CoderResult.OVERFLOW) {
305 return CoderResult.OVERFLOW;
    [all...]
CharsetUTF7.java 247 cr = CoderResult.OVERFLOW;
263 cr=CoderResult.OVERFLOW;
437 cr=CoderResult.OVERFLOW;
547 cr=CoderResult.OVERFLOW;
565 cr=CoderResult.OVERFLOW;
598 cr=CoderResult.OVERFLOW;
631 cr=CoderResult.OVERFLOW;
658 cr=CoderResult.OVERFLOW;
    [all...]
CharsetUTF32.java 132 return CoderResult.OVERFLOW;
151 /* Put in overflow buffer (not handled here) */
154 return CoderResult.OVERFLOW;
183 return CoderResult.OVERFLOW;
193 return CoderResult.OVERFLOW;
205 return CoderResult.OVERFLOW;
Charset88591.java 52 return CoderResult.OVERFLOW;
110 return CoderResult.OVERFLOW;
CharsetHZ.java 73 return CoderResult.OVERFLOW;
213 return CoderResult.OVERFLOW;
248 return CoderResult.OVERFLOW;
352 return CoderResult.OVERFLOW;
369 cr = CoderResult.OVERFLOW;
CharsetUTF16.java 179 return CoderResult.OVERFLOW;
231 /* Put in overflow buffer (not handled here) */
234 return CoderResult.OVERFLOW;
258 return CoderResult.OVERFLOW;
268 return CoderResult.OVERFLOW;
280 return CoderResult.OVERFLOW;
CharsetCompoundText.java 355 return CoderResult.OVERFLOW;
459 err = CoderResult.OVERFLOW;
464 err = CoderResult.OVERFLOW;
518 return CoderResult.OVERFLOW;
554 err = CoderResult.OVERFLOW;
595 err = CoderResult.OVERFLOW;
CharsetLMBCS.java     [all...]
CharsetSCSU.java 320 /* target overflow */
327 cr = CoderResult.OVERFLOW;
359 cr = CoderResult.OVERFLOW;
451 /* target overflow */
458 cr = CoderResult.OVERFLOW;
511 cr = CoderResult.OVERFLOW;
581 if(cr==CoderResult.OVERFLOW){
    [all...]
CharsetEncoderICU.java 312 /* flush the target overflow buffer */
322 /* the overflow buffer contains too much, keep the rest */
330 return CoderResult.OVERFLOW;
333 /* copy the overflow contents to the target */
340 /* the overflow buffer is completely copied to the target */
345 /* the overflow buffer is emptied and there is no new input: we are done */
350 * Do not simply return with a buffer overflow error if
570 * the check for buffer overflow is redundant but it is
705 cr = CoderResult.OVERFLOW;
714 //write overflow
    [all...]
CharsetBOCU1.java 614 * first to the overflow buffer what does not fit into the
657 /* target overflow */
659 cr = CoderResult.OVERFLOW;
665 cr = CoderResult.OVERFLOW;
    [all...]
CharsetDecoderICU.java 303 /* flush the target overflow buffer */
308 /* the overflow buffer contains too much, keep the rest */
316 return CoderResult.OVERFLOW;
319 /* copy the overflow contents to the target */
326 /* the overflow buffer is completely copied to the target */
331 /* the overflow buffer is emptied and there is no new input: we are done */
336 * Do not simply return with a buffer overflow error if
588 * the check for buffer overflow is redundant but it is
685 /* write overflow */
688 cr = CoderResult.OVERFLOW;
    [all...]
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetEncoder.java 90 * Note that this method might return <code>CoderResult.OVERFLOW</code> (as
108 return CoderResult.OVERFLOW;
119 * Note that this method might return <code>CoderResult.OVERFLOW</code>,
126 * However, String.getBytes() fails if CoderResult.OVERFLOW is returned,
147 return CoderResult.OVERFLOW;
166 return CoderResult.OVERFLOW;
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;
  /external/fdlibm/
k_standard.c 35 * 4 -- hypot overflow
36 * 5 -- cosh overflow
37 * 6 -- exp overflow
45 * 14-- ieee_lgamma(finite) overflow
52 * 21-- ieee_pow(x,y) overflow
56 * 25-- ieee_sinh(finite) overflow
63 * 32-- scalb overflow
71 * 40-- ieee_gamma(finite) overflow
143 /* ieee_hypot(finite,finite) overflow */
144 exc.type = OVERFLOW;
    [all...]
fdlibm.h 94 #define OVERFLOW 3
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 116 return CoderResult.OVERFLOW;
142 return CoderResult.OVERFLOW;
CharsetEncoderICU.java 145 return CoderResult.OVERFLOW;
172 return CoderResult.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}
  /external/compiler-rt/lib/msan/
msan_report.cc 158 if (next_id_ == kMaxSize_) return OVERFLOW;
169 case OVERFLOW:
175 static const int OVERFLOW = -1;
  /external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/text/
AlphabeticIndexTest.java 63 index.setOverflowLabel("overflow");
79 case OVERFLOW:
95 assertEquals("overflow", overflowBucket.getLabel());
96 assertEquals("overflow", index.getOverflowLabel());
  /libcore/ojluni/src/main/native/
fdlibm.h 109 #define OVERFLOW 3

Completed in 1850 milliseconds

1 2 3