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

1 2 3 4 5

  /external/valgrind/main/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/chromium_org/third_party/mesa/src/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/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...]
  /external/chromium_org/remoting/codec/
video_encoder_verbatim.cc 58 int filled = 0; local
66 filled = 0;
71 std::min(row_size - row_pos, max_packet_size_ - filled);
72 memcpy(out + filled, in + row_pos, bytes_to_copy);
74 filled += bytes_to_copy;
87 packet->mutable_data()->resize(filled);
101 // If we have filled the current packet, then send it.
102 if (filled == max_packet_size_ || row_y == rect.height()) {
103 packet->mutable_data()->resize(filled);
  /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
T_filled_new_array_4.d 29 filled-new-array {v5, v6, v7, v8, v10}, [I
T_filled_new_array_5.d 29 filled-new-array {v5, v6, v7, v8, v4}, [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/libmedia/
AudioTrackShared.cpp 121 // We're about to perform a conditional branch based on 'filled',
134 ssize_t filled = rear - front; local
136 if (!(0 <= filled && (size_t) filled <= mFrameCount)) {
137 ALOGE("Shared memory control block is corrupt (filled=%d); shutting down", filled);
143 size_t avail = mIsOut ? mFrameCount - filled : filled;
331 ssize_t filled = rear - front; local
333 if (!(0 <= filled && (size_t) filled <= mFrameCount))
543 ssize_t filled = rear - front; local
663 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
    [all...]
  /frameworks/av/media/libnbaio/
MonoPipe.cpp 137 size_t filled = (mMaxFrames - avail) + written; local
139 if (filled <= mSetpoint / 2) {
142 } else if (filled <= (mSetpoint * 3) / 4) {
145 } else if (filled <= (mSetpoint * 5) / 4) {
148 } else if (filled <= (mSetpoint * 3) / 2) {
151 } else if (filled <= (mSetpoint * 7) / 4) {
  /external/chromium_org/cc/layers/
nine_patch_layer_impl_unittest.cc 123 Region filled; local
128 EXPECT_FALSE(filled.Intersects(quad_rect));
129 filled.Union(quad_rect);
132 EXPECT_EQ(expected_full, filled);
  /external/elfutils/lib/
dynamicsizehash.c 130 ++htab->filled;
131 if (100 * htab->filled > 90 * htab->size)
133 /* Table is filled more than 90%. Resize the table. */
148 htab->filled = 0;
208 htab->filled = 0;
  /external/wpa_supplicant_8/src/ap/
acs.c 294 if (survey->filled & SURVEY_HAS_CHAN_TIME_BUSY)
296 else if (survey->filled & SURVEY_HAS_CHAN_TIME_RX)
307 if (survey->filled & SURVEY_HAS_CHAN_TIME_TX) {
381 if (!(survey->filled & SURVEY_HAS_NF)) {
386 if (!(survey->filled & SURVEY_HAS_CHAN_TIME)) {
391 if (!(survey->filled & SURVEY_HAS_CHAN_TIME_BUSY) &&
392 !(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 403 milliseconds

1 2 3 4 5