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

1 2 3 4 5

  /external/valgrind/memcheck/tests/
malloc_free_fill.stderr.exp 2 PASSED: malloc-filled
3 PASSED: free-filled
6 PASSED: malloc-filled
7 PASSED: free-filled
8 PASSED: malloc-filled
11 PASSED: malloc-filled
12 PASSED: free-filled
  /external/proguard/src/proguard/gui/splash/
CircleSprite.java 26 * This Sprite represents an animated circle. It can optionally be filled.
32 private final boolean filled; field in class:CircleSprite
40 * @param filled specifies whether the rectangle should be filled.
45 public CircleSprite(boolean filled,
50 this.filled = filled;
65 if (filled)
RectangleSprite.java 26 * This Sprite represents an animated rounded rectangle. It can optionally be filled.
32 private final boolean filled; field in class:RectangleSprite
44 * @param filled specifies whether the rectangle should be filled.
51 public RectangleSprite(boolean filled,
58 this(filled, color, x, y, width, height, new ConstantInt(0), new ConstantInt(0));
64 * @param filled specifies whether the rectangle should be filled.
73 public RectangleSprite(boolean filled,
82 this.filled = filled
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_bitmask.c 59 unsigned filled; member in struct:util_bitmask
79 bm->filled = 0;
132 * Lazily update the filled.
138 assert(bm->filled <= bm->size);
141 if(index == bm->filled) {
142 ++bm->filled;
143 assert(bm->filled <= bm->size);
151 assert(bm->filled <= bm->size);
154 if(index < bm->filled)
155 bm->filled = index
    [all...]
u_handle_table.c 54 unsigned filled; member in struct:handle_table
77 ht->filled = 0;
164 while(ht->filled < ht->size) {
165 if(!ht->objects[ht->filled])
167 ++ht->filled;
170 index = ht->filled;
183 ++ht->filled;
255 if(index < ht->filled)
256 ht->filled = index;
  /external/llvm/test/MC/MachO/
x86_32-optimal_nop.s 4 .align 4, 0 # start with 16 byte alignment filled with zeros
11 .align 4, 0 # start with 16 byte alignment filled with zeros
19 .align 4, 0 # start with 16 byte alignment filled with zeros
26 .align 4, 0 # start with 16 byte alignment filled with zeros
36 .align 4, 0 # start with 16 byte alignment filled with zeros
45 .align 4, 0 # start with 16 byte alignment filled with zeros
53 .align 4, 0 # start with 16 byte alignment filled with zeros
60 .align 4, 0 # start with 16 byte alignment filled with zeros
74 .align 4, 0 # start with 16 byte alignment filled with zeros
87 .align 4, 0 # start with 16 byte alignment filled with zero
    [all...]
  /frameworks/av/media/libmedia/
AudioTrackShared.cpp 141 // We're about to perform a conditional branch based on 'filled',
154 ssize_t filled = rear - front; local
156 if (!(0 <= filled && (size_t) filled <= mFrameCount)) {
158 ALOGE("Shared memory control block is corrupt (filled=%zd, mFrameCount=%zu); "
159 "shutting down", filled, mFrameCount);
165 filled = 0;
170 size_t avail = mIsOut ? mFrameCount - filled : filled;
360 ssize_t filled = rear - front local
622 ssize_t filled = rear - newFront; local
655 ssize_t filled = rear - front; local
776 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
    [all...]
  /cts/suite/cts/deviceTests/filesystemperf/src/com/android/cts/filesystemperf/
AlmostFullTest.java 55 // initial fill done in two stage as disk can be filled by other
66 long filled = 0; local
67 while (filled < diskToFill) {
68 long toFill = diskToFill - filled;
75 filled += toFill;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/filled_new_array/d/
T_filled_new_array_8.d 30 filled-new-array {v5, v6, v7, v8, v9}, [I
37 filled-new-array {v5, v6, v7, v8, v9}, [I
T_filled_new_array_1.d 29 filled-new-array {v5, v6, v7, v8, v9}, [I
T_filled_new_array_10.d 30 filled-new-array {v9}, [Ljava/lang/StringNNNNN;
T_filled_new_array_11.d 30 filled-new-array {v9}, [Ldot/junit/opcodes/filled_new_array/TestStubs;
T_filled_new_array_2.d 29 filled-new-array {v8, v9}, [Ljava/lang/Object;
T_filled_new_array_3.d 29 filled-new-array {v5, v6, v7, v8, v9}, [I
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
Audio_mac.py 92 filled = 0
94 filled = filled + len(data)
95 return filled / self._nchannels / self._sampwidth
  /frameworks/av/media/libnbaio/
MonoPipe.cpp 155 size_t filled = (mMaxFrames - avail) + written; local
157 if (filled <= mSetpoint / 2) {
160 } else if (filled <= (mSetpoint * 3) / 4) {
163 } else if (filled <= (mSetpoint * 5) / 4) {
166 } else if (filled <= (mSetpoint * 3) / 2) {
169 } else if (filled <= (mSetpoint * 7) / 4) {
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketParserD08.java 127 * the bytes filled or the messages parsed.
135 int filled=-1; local
181 filled=_endp.isInputShutdown()?-1:_endp.fill(_buffer);
183 // System.err.printf(">> filled %d/%d%n",filled,available);
184 if (filled<=0)
190 filled=-1;
358 return progress?1:filled;
WebSocketParserRFC6455.java 127 * the bytes filled or the messages parsed.
135 int filled=-1; local
181 filled=_endp.isInputShutdown()?-1:_endp.fill(_buffer);
183 // System.err.printf(">> filled %d/%d%n",filled,available);
184 if (filled<=0)
190 filled=-1;
358 return progress?1:filled;
WebSocketParserD00.java 88 * the bytes filled or the messages parsed.
115 int filled=_endp.isOpen()?_endp.fill(_buffer):-1; local
116 if (filled<=0)
118 progress+=filled;
WebSocketParserD06.java 107 * the bytes filled or the messages parsed.
135 int filled=_endp.isOpen()?_endp.fill(_buffer):-1; local
136 if (filled<=0)
137 return (total_filled+events)>0?(total_filled+events):filled;
138 total_filled+=filled;
WebSocketConnectionD00.java 119 int filled=_endp.fill(_hixieBytes); local
120 if (filled<0)
126 else if (filled==0)
142 int filled=_parser.parseNext(); local
144 progress = flushed>0 || filled>0;
  /external/jetty/src/java/org/eclipse/jetty/io/bio/
StreamEndPoint.java 141 int filled=buffer.readFrom(_in, space); local
142 if (filled<0)
144 return filled;
  /external/elfutils/src/lib/
dynamicsizehash.c 110 ++htab->filled;
111 if (100 * htab->filled > 90 * htab->size)
113 /* Table is filled more than 90%. Resize the table. */
128 htab->filled = 0;
188 htab->filled = 0;
  /external/wpa_supplicant_8/src/ap/
acs.c 297 if (survey->filled & SURVEY_HAS_CHAN_TIME_BUSY)
299 else if (survey->filled & SURVEY_HAS_CHAN_TIME_RX)
310 if (survey->filled & SURVEY_HAS_CHAN_TIME_TX) {
397 if (!(survey->filled & SURVEY_HAS_NF)) {
402 if (!(survey->filled & SURVEY_HAS_CHAN_TIME)) {
407 if (!(survey->filled & SURVEY_HAS_CHAN_TIME_BUSY) &&
408 !(survey->filled & SURVEY_HAS_CHAN_TIME_RX)) {
  /external/speex/libspeex/
jitter.c 84 int filled; /**< Number of entries occupied in "timing" and "counts"*/ member in struct:TimingBuffer
92 tb->filled = 0;
101 if (tb->filled >= MAX_TIMINGS && timing >= tb->timing[tb->filled-1])
110 while (pos<tb->filled && timing >= tb->timing[pos])
115 speex_assert(pos <= tb->filled && pos < MAX_TIMINGS);
118 if (pos < tb->filled)
120 int move_size = tb->filled-pos;
121 if (tb->filled == MAX_TIMINGS)
131 if (tb->filled<MAX_TIMINGS
    [all...]

Completed in 530 milliseconds

1 2 3 4 5