HomeSort by: relevance | last modified time | path
    Searched defs:fill (Results 1 - 25 of 66) sorted by relevancy

1 2 3

  /src/sys/arch/atari/stand/xxboot/ahdi-xxboot/
xxboot.ahdi.S 35 .globl _start, main, fill
198 fill: .space 54 | 510-(fill-start) label
xxboot.ahdi.S 35 .globl _start, main, fill
198 fill: .space 54 | 510-(fill-start) label
  /src/sys/arch/atari/stand/xxboot/fdboot/
fdboot.S 35 .globl _start, main, fill
221 fill: .space 22 | 510-(fill-start) label
fdboot.S 35 .globl _start, main, fill
221 fill: .space 22 | 510-(fill-start) label
  /src/sys/arch/atari/stand/xxboot/ahdi-sdb00t/
sdb00t.ahdi.S 35 .globl _start, main, fill
188 fill: .space 16 label
sdb00t.ahdi.S 35 .globl _start, main, fill
188 fill: .space 16 label
  /src/sys/arch/atari/stand/xxboot/ahdi-wdb00t/
wdb00t.ahdi.S 35 .globl _start, main, fill
170 fill: .space 52 label
wdb00t.ahdi.S 35 .globl _start, main, fill
170 fill: .space 52 label
  /src/sys/arch/atari/stand/xxboot/sdboot/
sdboot.S 35 .globl _start, main, fill
203 fill: .space 24 label
sdboot.S 35 .globl _start, main, fill
203 fill: .space 24 label
  /src/sys/arch/atari/stand/xxboot/wdboot/
wdboot.S 35 .globl _start, main, fill
193 fill: .space 30 label
wdboot.S 35 .globl _start, main, fill
193 fill: .space 30 label
  /src/tests/lib/libc/string/
t_memset.c 42 static void fill(char *, size_t, char);
70 "%s did not fill a static buffer",
75 "%s did not fill a static buffer",
119 fill(ret, page, 0);
125 fill(ret, page, 'x');
155 "%s did not fill properly with %zu",
178 "%s did not fill a static buffer",
202 atf_tc_fail("memset(3) did not fill a static buffer");
249 fill(char *buf, size_t len, char x) function in typeref:typename:void
t_memset.c 42 static void fill(char *, size_t, char);
70 "%s did not fill a static buffer",
75 "%s did not fill a static buffer",
119 fill(ret, page, 0);
125 fill(ret, page, 'x');
155 "%s did not fill properly with %zu",
178 "%s did not fill a static buffer",
202 atf_tc_fail("memset(3) did not fill a static buffer");
249 fill(char *buf, size_t len, char x) function in typeref:typename:void
  /src/common/lib/libc/string/
memset2.c 85 memword_t fill; local in function:memset
97 * Pad out the fill byte (v) across a memword_t.
101 fill = (unsigned char)c;
102 fill |= fill << 8;
103 fill |= fill << 16;
104 fill |= fill << (sizeof(c) < sizeof(fill) ? 32 : 0)
    [all...]
memset2.c 85 memword_t fill; local in function:memset
97 * Pad out the fill byte (v) across a memword_t.
101 fill = (unsigned char)c;
102 fill |= fill << 8;
103 fill |= fill << 16;
104 fill |= fill << (sizeof(c) < sizeof(fill) ? 32 : 0)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_generichash/blake2b/ref/
blake2b-ref.c 265 size_t fill = 2 * BLAKE2B_BLOCKBYTES - left; local in function:blake2b_update
267 if (inlen > fill) {
268 memcpy(S->buf + left, in, fill); /* Fill buffer */
269 S->buflen += fill;
275 in += fill;
276 inlen -= fill;
277 } else /* inlen <= fill */
blake2b-ref.c 265 size_t fill = 2 * BLAKE2B_BLOCKBYTES - left; local in function:blake2b_update
267 if (inlen > fill) {
268 memcpy(S->buf + left, in, fill); /* Fill buffer */
269 S->buflen += fill;
275 in += fill;
276 inlen -= fill;
277 } else /* inlen <= fill */
  /src/usr.sbin/mtree/
only.c 106 fill(char *str) function in typeref:typename:void
117 fill(str);
137 fill(line);
only.c 106 fill(char *str) function in typeref:typename:void
117 fill(str);
137 fill(line);
  /src/common/dist/zlib/contrib/infback9/
inftree9.c 45 unsigned fill; /* index for replicating entries */ local in function:inflate_table9
139 Create and fill in decoding tables. In this loop, the table being
144 fill the table with replicated entries.
192 next = *table; /* current table to fill in */
223 fill = 1U << curr;
225 fill -= incr;
226 next[(huff >> drop) + fill] = this;
227 } while (fill != 0);
281 Fill in rest of table for incomplete codes. This loop is similar to the
285 drops back to the root table to fill in any remaining entries there
    [all...]
inftree9.c 45 unsigned fill; /* index for replicating entries */ local in function:inflate_table9
139 Create and fill in decoding tables. In this loop, the table being
144 fill the table with replicated entries.
192 next = *table; /* current table to fill in */
223 fill = 1U << curr;
225 fill -= incr;
226 next[(huff >> drop) + fill] = this;
227 } while (fill != 0);
281 Fill in rest of table for incomplete codes. This loop is similar to the
285 drops back to the root table to fill in any remaining entries there
    [all...]
  /src/common/dist/zlib/
inftrees.c 47 unsigned fill; /* index for replicating entries */ local in function:inflate_table
147 Create and fill in decoding tables. In this loop, the table being
152 fill the table with replicated entries.
198 next = *table; /* current table to fill in */
229 fill = 1U << curr;
230 mmin = fill; /* save offset to next table */
232 fill -= incr;
233 next[(huff >> drop) + fill] = here;
234 } while (fill != 0);
287 /* fill in remaining table entry if code is incomplete (guaranteed to hav
    [all...]
inftrees.c 47 unsigned fill; /* index for replicating entries */ local in function:inflate_table
147 Create and fill in decoding tables. In this loop, the table being
152 fill the table with replicated entries.
198 next = *table; /* current table to fill in */
229 fill = 1U << curr;
230 mmin = fill; /* save offset to next table */
232 fill -= incr;
233 next[(huff >> drop) + fill] = here;
234 } while (fill != 0);
287 /* fill in remaining table entry if code is incomplete (guaranteed to hav
    [all...]
  /src/sys/kern/
subr_hash.c 190 bool fill, query; local in function:hashstat_sysctl
204 fill = false;
206 fill = true;
233 error = hash->hs_func(&hs, fill);

Completed in 37 milliseconds

1 2 3