Searched defs:filled (Results 1 - 25 of 28) sorted by relevance

12

/external/proguard/src/proguard/gui/splash/
H A DCircleSprite.java26 * 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, argument
50 this.filled = filled;
65 if (filled)
H A DRectangleSprite.java26 * 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, argument
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, argument
82 this.filled
[all...]
/external/syslinux/com32/gplinclude/dmi/
H A Ddmi_ipmi.h28 bool filled; member in struct:__anon20846
H A Ddmi_chassis.h42 /* The filled field have to be set to true when the dmitable implement that item */
43 bool filled; member in struct:__anon20845
H A Ddmi_base_board.h51 /* The filled field have to be set to true when the dmitable implement that item */
52 bool filled; member in struct:__anon20837
H A Ddmi_battery.h49 /* The filled field have to be set to true when the dmitable implement that item */
50 bool filled; member in struct:__anon20839
H A Ddmi_memory.h49 /* The filled field have to be set to true when the dmitable implement that item */
50 bool filled; member in struct:__anon20847
61 bool filled; member in struct:__anon20848
H A Ddmi_system.h37 /* The filled field have to be set to true when the dmitable implement that item */
38 bool filled; member in struct:__anon20852
42 bool filled; member in struct:__anon20852::__anon20853
H A Ddmi.h82 bool filled; member in struct:__anon20834::__anon20835
H A Ddmi_bios.h104 /* The filled field have to be set to true when the dmitable implement that item */
105 bool filled; member in struct:__anon20843
H A Ddmi_processor.h105 /* The filled field have to be set to true when the dmitable implement that item */
106 bool filled; member in struct:__anon20851
/external/syslinux/com32/gplinclude/vpd/
H A Dvpd.h29 bool filled; member in struct:__anon20855
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_bitmask.c59 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
[all...]
H A Du_handle_table.c54 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/elfutils/libelf/
H A Delf32_updatefile.c479 size_t filled = *filledp; local
482 if (unlikely (fill_len > filled) && filled < FILLBUFSIZE)
485 memset (fillbuf + filled, __libelf_fill_byte, fill_len - filled);
486 *filledp = filled = fill_len;
492 size_t n = MIN (filled, len);
514 size_t filled = 0; local
586 ehdr->e_phoff - ehdr->e_ehsize, fillbuf, &filled)
721 &filled) !
[all...]
/external/fio/lib/
H A Dpattern.c18 * @filled - pointer where number of bytes successfully
27 unsigned int *filled)
43 *filled = end - beg;
54 * @filled - pointer where number of bytes successfully
67 unsigned int *filled)
135 *filled = i;
163 unsigned int out_len, unsigned int *filled,
196 *filled = f->desc->len;
248 * Returns number of bytes filled or err < 0 in case of failure.
267 unsigned int filled; local
25 parse_string(const char *beg, char *out, unsigned int out_len, unsigned int *filled) argument
65 parse_number(const char *beg, char *out, unsigned int out_len, unsigned int *filled) argument
162 parse_format(const char *in, char *out, unsigned int parsed, unsigned int out_len, unsigned int *filled, const struct pattern_fmt_desc *fmt_desc, unsigned int fmt_desc_sz, struct pattern_fmt *fmt, unsigned int fmt_sz) argument
[all...]
/external/speex/libspeex/
H A Djitter.c84 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_TIMING
[all...]
/external/v8/src/snapshot/
H A Ddeserializer.cc213 bool filled = ReadData(start, end, space, obj_address); local
214 CHECK(filled);
/external/r8/src/main/java/com/android/tools/r8/ir/code/
H A DBasicBlock.java94 // A basic block is filled when local value numbering is complete for that block.
95 // A basic block is sealed when all predecessor blocks have been filled.
99 private boolean filled = false; field in class:BasicBlock
108 // Map of registers to current SSA value. Used during SSA numbering and cleared once filled.
346 return filled;
350 filled = true;
377 assert filled;
456 filled = true;
757 builder.append(", filled: " + isFilled());
1055 // Mark the new block filled an
[all...]
/external/python/cpython2/Modules/
H A Dalmodule.c680 "alGetFilled: return the number of filled sample frames in "
686 int filled; local
690 if ((filled = alGetFilled(self->port)) < 0)
692 return PyInt_FromLong((long) filled);
/external/python/cpython2/Objects/
H A Dstringobject.c3995 * There will be at least prec digits, zero-filled on the left if
4017 int numnondigits, skipped, filled; local
4083 filled = prec - numdigits;
4084 if (filled < 0)
4085 filled = 0;
4086 len = numnondigits + filled + numdigits;
4089 if (skipped >= filled &&
4095 buf = (char *)s + skipped - filled;
4111 for (i = 0; i < filled; i++)
/external/skia/src/gpu/
H A DGrTessellator.cpp1494 bool filled = apply_fill_type(fillType, e->fWinding); local
1495 if (filled == prevFilled) {
1498 prevFilled = filled;
1626 // Inner edges get -2 winding. This ensures that the interior is always filled
/external/elfutils/src/
H A Dldgeneric.c3699 /* The name offset will be filled in later. */
3800 bool filled = false; local
3819 if (filled)
3830 filled = true;
3834 assert (filled);
5071 filled in. */
5445 if (ld_state.default_bind_local || ld_state.version_str_tab.filled > 0)
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver.h3195 * in the data buffer. Reply (if any) will be filled in the supplied
4323 * @filled: bitmask indicating which fields have been reported, see
4335 unsigned int filled; member in struct:freq_survey
/external/wpa_supplicant_8/src/drivers/
H A Ddriver.h3195 * in the data buffer. Reply (if any) will be filled in the supplied
4323 * @filled: bitmask indicating which fields have been reported, see
4335 unsigned int filled; member in struct:freq_survey

Completed in 862 milliseconds

12