HomeSort by relevance Sort by last modified time
    Searched full:overrun (Results 1 - 25 of 751) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/memcheck/tests/
match-overrun.vgtest 1 prog: match-overrun
2 vgopts: -q --suppressions=match-overrun.supp
  /external/vboot_reference/tests/
stateful_util_tests.c 27 s.overrun = 1;
29 TEST_EQ(0, s.overrun, "StatefulInit() overrun");
45 TEST_EQ(0, s.overrun, "StatefulSkip(5) overrun");
52 TEST_EQ(0, s.overrun, "StatefulSkip(all) overrun");
58 TEST_EQ(0, s.overrun, "StatefulSkip(0) overrun");
63 TEST_EQ(1, s.overrun, "StatefulSkip(+1) overrun")
    [all...]
  /external/vboot_reference/firmware/lib/
stateful_util.c 17 state->overrun = 0;
22 if (state->overrun)
25 state->overrun = 1;
35 if (state->overrun)
38 state->overrun = 1;
49 if (state->overrun)
52 state->overrun = 1;
64 if (state->overrun)
67 state->overrun = 1;
  /external/vboot_reference/firmware/lib/include/
stateful_util.h 20 uint8_t overrun; /* Flag set to 1 when an overrun occurs. */ member in struct:MemcpyState
33 * On failure, return NULL, set state->overrun to 1.
36 * first failure (buffer overrun), successive calls will always fail.
45 * On failure, return NULL, set state->overrun to 1.
48 * first failure (buffer overrun), successive calls will always fail.
57 * On failure, return NULL, set state->overrun to 1.
60 * first failure (buffer overrun), successive calls will always fail.
69 * On failure, return NULL, set state->overrun to 1.
71 * After the first failure (buffer overrun), successive calls will always fail
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/
assertions.xml 6 timer overrun occurs.
11 expiration signal is finally delivered or accepted. The overrun count
22 timer_getoverrun() returns the overrun count on success.
4-1.sh 8 # Test that timer_getoverrun() returns the overrun count on success.
2-3.c 18 * Steps (testing with just one overrun):
28 * timer expires can happen before the overrun count is gotten, so this
34 * previous overrun (when testing on libc-2004-04-29
123 * Since the overrun count is only meaningful with respect
126 * one expiry and it should have a meaningful overrun count.
2-1.c 11 * Steps (testing with just one overrun):
17 * [First signal made it. Second signal was the overrun.]
  /external/mesa3d/src/compiler/glsl/tests/
blob_test.c 116 * consumed, and that the overrun bit is not set.
186 expect_equal(false, reader.overrun, "read_does_not_overrun");
250 /* Test that we detect overrun. */
265 expect_equal(value, blob_read_uint32(&reader), "read before overrun");
266 expect_equal(false, reader.overrun, "overrun flag not set");
267 expect_equal(0, blob_read_uint32(&reader), "read at overrun");
268 expect_equal(true, reader.overrun, "overrun flag set");
311 expect_equal(false, reader.overrun,
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 30 public static final int OVERRUN = -2;
71 // Discard 1/16 of the most recent data in pipe to avoid another overrun immediately
76 return OVERRUN;
92 // An overrun can occur from here on and be silently ignored,
102 // In particular, an overrun during the System.arraycopy will result in reading corrupt data
  /external/syslinux/lzo/src/
lzo1_d.ch 44 // Overrun detection is internally handled by these macros:
46 // TEST_IP test input overrun at loop begin
47 // NEED_IP test input overrun at every input byte
49 // TEST_OP test output overrun at loop begin
50 // NEED_OP test output overrun at every output byte
  /frameworks/av/media/libnbaio/
PipeReader.cpp 57 avail = OVERRUN;
70 actual = OVERRUN;
89 flushed = OVERRUN;
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
PipeShort.java 82 // An overrun can occur from here on and be silently ignored,
96 // In particular, an overrun during the System.arraycopy will result in reading corrupt data
121 // Discard 1/16 of the most recent data in pipe to avoid another overrun immediately
126 return OVERRUN;
Pipe.java 25 public static final int OVERRUN = -2; // when there's an overrun, return this value
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/speculative/
4-3.c 20 * - ensure that the overrun count is EXPECTEDOVERRUNS
21 * * Note: The POSIX spec is unclear what exactly the overrun count
117 printf("Overrun count == # of repeating timer expirys\n");
119 printf("Overrun count =%d, not # of repeating timer expirys\n",
  /external/valgrind/exp-sgcheck/tests/
hsg.c 2 /* A simple test to demonstrate heap, stack, and global overrun
  /external/mesa3d/src/compiler/glsl/
blob.c 188 blob->overrun = false;
193 * If not, set blob->overrun to indicate that we attempted to read too far.
201 blob->overrun = true;
298 /* If we're already at the end, then this is an overrun. */
300 blob->overrun = true;
305 * we also consider that an overrun.
310 blob->overrun = true;
  /frameworks/av/services/audioflinger/
FastThread.h 59 long mOverrunNs; // overrun likely when write cycle is less than this value
60 long mForceNs; // if overrun detected,
67 bool mIgnoreNextOverrun; // used to ignore initial overrun and first after an
  /frameworks/base/media/tests/NativeMidiDemo/jni/
messagequeue.cpp 68 // copying, we report an overrun. Afterwards we can safely read messages from the copy.
72 overrunMessage = "!!! Message buffer overrun !!!";
93 overrunMessage = "!!! Message buffer overrun !!!";
  /external/ltp/testcases/open_posix_testsuite/functional/timers/
plan.txt 96 - Have multiple timers in a process blocked and ensure overrun count
98 - Have a repeating timer blocked for a period of time and ensure overrun
100 - Ensure overrun count and timer_gettime() return correct values when
102 - Try to call timer_getoverrun() as an overrun is happening.
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
float1.c 43 a buffer overrun. */
float4.c 45 a buffer overrun. */
  /frameworks/av/media/libnbaio/include_mono/media/nbaio/
NBAIO.h 41 OVERRUN = (UNKNOWN_ERROR + 0x101), // availableToRead(), read(), or readVia() detected
42 // lost input due to overrun; an event is counted and
245 // Number of frames lost due to overrun since construction.
258 // OVERRUN One or more frames were lost due to overrun, try again to read more recent data.
273 // OVERRUN read() has not been called frequently enough, or with enough frames to keep up.
274 // One or more frames were lost due to overrun, try again to read more recent data.
277 // Flush data from buffer. There is no notion of overrun as all data is dropped.
304 // OVERRUN read() has not been called frequently enough, or with enough frames to keep up.
305 // One or more frames were lost due to overrun, try again to read more recent data
    [all...]
  /external/bison/lib/
time.in.h 224 /* Encourage applications to avoid unsafe functions that can overrun
229 _GL_WARN_ON_USE (asctime, "asctime can overrun buffers in some cases - "
234 _GL_WARN_ON_USE (asctime, "asctime_r can overrun buffers in some cases - "
239 _GL_WARN_ON_USE (asctime, "ctime can overrun buffers in some cases - "
244 _GL_WARN_ON_USE (asctime, "ctime_r can overrun buffers in some cases - "
  /external/syslinux/gpxe/src/util/
zbin.c 149 fprintf ( stderr, "Input buffer overrun on copy\n" );
155 fprintf ( stderr, "Output buffer overrun on copy\n" );
180 fprintf ( stderr, "Input buffer overrun on pack\n" );
186 fprintf ( stderr, "Output buffer overrun on pack\n" );
205 fprintf ( stderr, "Output buffer overrun on pack\n" );

Completed in 924 milliseconds

1 2 3 4 5 6 7 8 91011>>