Home
last modified time | relevance | path

Searched refs:fill (Results 1 - 25 of 266) sorted by relevance

1234567891011

/kernel/linux/linux-6.6/tools/testing/selftests/sgx/
H A Dtest_encl_bootstrap.S13 .fill 1, 8, 0 # STATE (set by CPU)
14 .fill 1, 8, 0 # FLAGS
16 .fill 1, 4, 0 # CSSA (set by CPU)
17 .fill 1, 4, 1 # NSSA
19 .fill 1, 8, 0 # AEP (set by EENTER and ERESUME)
20 .fill 1, 8, 0 # OFSBASE
21 .fill 1, 8, 0 # OGSBASE
22 .fill 1, 4, 0xFFFFFFFF # FSLIMIT
23 .fill 1, 4, 0xFFFFFFFF # GSLIMIT
24 .fill 402
[all...]
/kernel/linux/linux-5.10/lib/
H A Ddecompress_unlz4.c32 long (*fill)(void *, unsigned long), in unlz4()
63 if (input && fill) { in unlz4()
64 error("Both input pointer and fill function provided,"); in unlz4()
68 } else if (!fill) { in unlz4()
69 error("NULL input pointer and missing fill function"); in unlz4()
83 if (fill) { in unlz4()
84 size = fill(inp, 4); in unlz4()
93 if (!fill) { in unlz4()
107 if (fill) { in unlz4()
108 size = fill(in in unlz4()
207 __decompress(unsigned char *buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *output, long out_len, long *posp, void (*error)(char *x) ) __decompress() argument
[all...]
H A Ddecompress_unlzo.c99 long (*fill)(void *, unsigned long), in unlzo()
124 if (input && fill) { in unlzo()
125 error("Both input pointer and fill function provided, don't know what to do"); in unlzo()
129 } else if (!fill) { in unlzo()
130 error("NULL input pointer and missing fill function"); in unlzo()
144 if (fill) { in unlzo()
152 in_len = fill(in_buf, HEADER_SIZE_MAX); in unlzo()
162 if (fill) { in unlzo()
173 if (fill && in_len < 4) { in unlzo()
174 skip = fill(in_bu in unlzo()
278 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long olen, long *pos, void (*error)(char *x)) __decompress() argument
[all...]
H A Ddecompress_inflate.c43 long (*fill)(void*, unsigned long), in __gunzip()
94 if (!fill) in __gunzip()
95 fill = nofill; in __gunzip()
98 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
146 /* TODO: handle case where both pos and fill are set */ in __gunzip()
147 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
201 long (*fill)(void*, unsigned long), in gunzip()
207 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
211 long (*fill)(void*, unsigned long), in __decompress()
217 return __gunzip(buf, len, fill, flus in __decompress()
42 __gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void(*error)(char *x)) __gunzip() argument
200 gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long *pos, void (*error)(char *x)) gunzip() argument
210 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument
[all...]
H A Dbtree.c417 int fill; in btree_grow() local
423 fill = getfill(geo, head->node, 0); in btree_grow()
424 setkey(geo, node, 0, bkey(geo, head->node, fill - 1)); in btree_grow()
435 int fill; in btree_shrink() local
441 fill = getfill(geo, node, 0); in btree_shrink()
442 BUG_ON(fill > 1); in btree_shrink()
453 int i, pos, fill, err; in btree_insert_level() local
465 fill = getfill(geo, node, pos); in btree_insert_level()
467 BUG_ON(pos < fill && keycmp(geo, node, pos, key) == 0); in btree_insert_level()
469 if (fill in btree_insert_level()
540 rebalance(struct btree_head *head, struct btree_geo *geo, unsigned long *key, int level, unsigned long *child, int fill) rebalance() argument
595 int i, pos, fill; btree_remove_level() local
[all...]
H A Ddecompress_unzstd.c164 long (*fill)(void*, unsigned long), in __unzstd()
189 if (fill == NULL && flush == NULL) in __unzstd()
198 * If in_buf is not provided, we must be using fill(), so allocate in __unzstd()
213 if (fill != NULL) in __unzstd()
214 in_len = fill(in_buf, ZSTD_IOBUF_SIZE); in __unzstd()
285 * If we need to reload data, either we have fill() and can in __unzstd()
291 in_len = fill ? fill(in_buf, ZSTD_IOBUF_SIZE) : -1; in __unzstd()
332 long (*fill)(void*, unsigned long), in unzstd()
338 return __unzstd(buf, len, fill, flus in unzstd()
163 __unzstd(unsigned char *in_buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *in_pos, void (*error)(char *x)) __unzstd() argument
331 unzstd(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long *pos, void (*error)(char *x)) unzstd() argument
341 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument
[all...]
H A Ddecompress_unxz.c249 * fill() and flush() won't be used.
252 long (*fill)(void *dest, unsigned long size), in unxz()
269 if (fill == NULL && flush == NULL) in unxz()
299 if (fill == NULL && flush == NULL) { in unxz()
303 if (b.in_pos == b.in_size && fill != NULL) { in unxz()
309 in_size = fill(in, XZ_IOBUF_SIZE); in unxz()
399 long (*fill)(void*, unsigned long), in __decompress()
405 return unxz(buf, len, fill, flush, out_buf, pos, error); in __decompress()
398 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long olen, long *pos, void (*error)(char *x)) __decompress() argument
/kernel/linux/linux-6.6/lib/
H A Ddecompress_unlz4.c32 long (*fill)(void *, unsigned long), in unlz4()
63 if (input && fill) { in unlz4()
64 error("Both input pointer and fill function provided,"); in unlz4()
68 } else if (!fill) { in unlz4()
69 error("NULL input pointer and missing fill function"); in unlz4()
83 if (fill) { in unlz4()
84 size = fill(inp, 4); in unlz4()
93 if (!fill) { in unlz4()
107 if (fill) { in unlz4()
108 size = fill(in in unlz4()
207 __decompress(unsigned char *buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *output, long out_len, long *posp, void (*error)(char *x) ) __decompress() argument
[all...]
H A Ddecompress_unlzo.c98 long (*fill)(void *, unsigned long), in unlzo()
123 if (input && fill) { in unlzo()
124 error("Both input pointer and fill function provided, don't know what to do"); in unlzo()
128 } else if (!fill) { in unlzo()
129 error("NULL input pointer and missing fill function"); in unlzo()
143 if (fill) { in unlzo()
151 in_len = fill(in_buf, HEADER_SIZE_MAX); in unlzo()
161 if (fill) { in unlzo()
172 if (fill && in_len < 4) { in unlzo()
173 skip = fill(in_bu in unlzo()
277 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long olen, long *pos, void (*error)(char *x)) __decompress() argument
[all...]
H A Ddecompress_inflate.c43 long (*fill)(void*, unsigned long), in __gunzip()
94 if (!fill) in __gunzip()
95 fill = nofill; in __gunzip()
98 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
146 /* TODO: handle case where both pos and fill are set */ in __gunzip()
147 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
201 long (*fill)(void*, unsigned long), in gunzip()
207 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
211 long (*fill)(void*, unsigned long), in __decompress()
217 return __gunzip(buf, len, fill, flus in __decompress()
42 __gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void(*error)(char *x)) __gunzip() argument
200 gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long *pos, void (*error)(char *x)) gunzip() argument
210 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument
[all...]
H A Dbtree.c413 int fill; in btree_grow() local
419 fill = getfill(geo, head->node, 0); in btree_grow()
420 setkey(geo, node, 0, bkey(geo, head->node, fill - 1)); in btree_grow()
431 int fill; in btree_shrink() local
437 fill = getfill(geo, node, 0); in btree_shrink()
438 BUG_ON(fill > 1); in btree_shrink()
449 int i, pos, fill, err; in btree_insert_level() local
461 fill = getfill(geo, node, pos); in btree_insert_level()
463 BUG_ON(pos < fill && keycmp(geo, node, pos, key) == 0); in btree_insert_level()
465 if (fill in btree_insert_level()
536 rebalance(struct btree_head *head, struct btree_geo *geo, unsigned long *key, int level, unsigned long *child, int fill) rebalance() argument
591 int i, pos, fill; btree_remove_level() local
[all...]
H A Ddecompress_unzstd.c166 long (*fill)(void*, unsigned long), in __unzstd()
191 if (fill == NULL && flush == NULL) in __unzstd()
200 * If in_buf is not provided, we must be using fill(), so allocate in __unzstd()
215 if (fill != NULL) in __unzstd()
216 in_len = fill(in_buf, ZSTD_IOBUF_SIZE); in __unzstd()
287 * If we need to reload data, either we have fill() and can in __unzstd()
293 in_len = fill ? fill(in_buf, ZSTD_IOBUF_SIZE) : -1; in __unzstd()
334 long (*fill)(void*, unsigned long), in unzstd()
340 return __unzstd(buf, len, fill, flus in unzstd()
165 __unzstd(unsigned char *in_buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *in_pos, void (*error)(char *x)) __unzstd() argument
333 unzstd(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long *pos, void (*error)(char *x)) unzstd() argument
343 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument
[all...]
/kernel/linux/linux-5.10/arch/ia64/kernel/
H A Dhead.S647 ldf.fill.nta f32=[in0],loc0
648 ldf.fill.nta f40=[ r3],loc0
649 ldf.fill.nta f48=[r14],loc0
650 ldf.fill.nta f56=[r15],loc0
652 ldf.fill.nta f64=[in0],loc0
653 ldf.fill.nta f72=[ r3],loc0
654 ldf.fill.nta f80=[r14],loc0
655 ldf.fill.nta f88=[r15],loc0
657 ldf.fill.nta f96=[in0],loc1
658 ldf.fill
[all...]
H A Dentry.S94 ldf.fill f12=[sp]; mov f13=f0; mov b5=r0
95 ldf.fill f14=[sp]; ldf.fill f15=[sp]; mov f16=f0
96 ldf.fill f17=[sp]; ldf.fill f18=[sp]; mov f19=f0
97 ldf.fill f20=[sp]; ldf.fill f21=[sp]; mov f22=f0
98 ldf.fill f23=[sp]; ldf.fill f24=[sp]; mov f25=f0
99 ldf.fill f2
[all...]
/kernel/linux/linux-6.6/arch/ia64/kernel/
H A Dhead.S640 ldf.fill.nta f32=[in0],loc0
641 ldf.fill.nta f40=[ r3],loc0
642 ldf.fill.nta f48=[r14],loc0
643 ldf.fill.nta f56=[r15],loc0
645 ldf.fill.nta f64=[in0],loc0
646 ldf.fill.nta f72=[ r3],loc0
647 ldf.fill.nta f80=[r14],loc0
648 ldf.fill.nta f88=[r15],loc0
650 ldf.fill.nta f96=[in0],loc1
651 ldf.fill
[all...]
H A Dentry.S93 ldf.fill f12=[sp]; mov f13=f0; mov b5=r0
94 ldf.fill f14=[sp]; ldf.fill f15=[sp]; mov f16=f0
95 ldf.fill f17=[sp]; ldf.fill f18=[sp]; mov f19=f0
96 ldf.fill f20=[sp]; ldf.fill f21=[sp]; mov f22=f0
97 ldf.fill f23=[sp]; ldf.fill f24=[sp]; mov f25=f0
98 ldf.fill f2
[all...]
/kernel/linux/linux-5.10/drivers/scsi/libfc/
H A Dfc_frame.c31 len = (fr_len(fp) + 3) & ~3; /* round up length to include fill */ in fc_frame_crc_check()
65 size_t fill; in fc_frame_alloc_fill() local
67 fill = payload_len % 4; in fc_frame_alloc_fill()
68 if (fill != 0) in fc_frame_alloc_fill()
69 fill = 4 - fill; in fc_frame_alloc_fill()
70 fp = _fc_frame_alloc(payload_len + fill); in fc_frame_alloc_fill()
72 memset((char *) fr_hdr(fp) + payload_len, 0, fill); in fc_frame_alloc_fill()
/kernel/linux/linux-6.6/drivers/scsi/libfc/
H A Dfc_frame.c31 len = (fr_len(fp) + 3) & ~3; /* round up length to include fill */ in fc_frame_crc_check()
65 size_t fill; in fc_frame_alloc_fill() local
67 fill = payload_len % 4; in fc_frame_alloc_fill()
68 if (fill != 0) in fc_frame_alloc_fill()
69 fill = 4 - fill; in fc_frame_alloc_fill()
70 fp = _fc_frame_alloc(payload_len + fill); in fc_frame_alloc_fill()
72 memset((char *) fr_hdr(fp) + payload_len, 0, fill); in fc_frame_alloc_fill()
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/copyloops/
H A Dvalidate.c19 void *fill) in do_one()
30 memcpy(srcp, fill, len); in do_one()
65 char *src, *dst, *redzone, *fill; in test_copy_loop() local
72 fill = malloc(BUFLEN); in test_copy_loop()
74 if (!src || !dst || !redzone || !fill) { in test_copy_loop()
83 fill[i] = i & 0xff; in test_copy_loop()
89 redzone, fill); in test_copy_loop()
17 do_one(char *src, char *dst, unsigned long src_off, unsigned long dst_off, unsigned long len, void *redzone, void *fill) do_one() argument
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/copyloops/
H A Dvalidate.c19 void *fill) in do_one()
30 memcpy(srcp, fill, len); in do_one()
65 char *src, *dst, *redzone, *fill; in test_copy_loop() local
72 fill = malloc(BUFLEN); in test_copy_loop()
74 if (!src || !dst || !redzone || !fill) { in test_copy_loop()
83 fill[i] = i & 0xff; in test_copy_loop()
89 redzone, fill); in test_copy_loop()
17 do_one(char *src, char *dst, unsigned long src_off, unsigned long dst_off, unsigned long len, void *redzone, void *fill) do_one() argument
/kernel/linux/linux-6.6/net/netfilter/
H A Dnft_set_pipapo_avx2.c89 * @len: Count of bits to fill
188 * @fill: Destination bitmap to be filled with current match result
200 * working bitmap, @fill.
214 static int nft_pipapo_avx2_lookup_4b_2(unsigned long *map, unsigned long *fill, in nft_pipapo_avx2_lookup_4b_2() argument
242 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_4b_2()
262 * @fill: Destination bitmap to be filled with current match result
276 static int nft_pipapo_avx2_lookup_4b_4(unsigned long *map, unsigned long *fill, in nft_pipapo_avx2_lookup_4b_4() argument
318 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_4b_4()
338 * @fill: Destination bitmap to be filled with current match result
352 static int nft_pipapo_avx2_lookup_4b_8(unsigned long *map, unsigned long *fill, in nft_pipapo_avx2_lookup_4b_8() argument
447 nft_pipapo_avx2_lookup_4b_12(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_4b_12() argument
536 nft_pipapo_avx2_lookup_4b_32(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_4b_32() argument
671 nft_pipapo_avx2_lookup_8b_1(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_8b_1() argument
728 nft_pipapo_avx2_lookup_8b_2(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_8b_2() argument
792 nft_pipapo_avx2_lookup_8b_4(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_8b_4() argument
867 nft_pipapo_avx2_lookup_8b_6(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_8b_6() argument
952 nft_pipapo_avx2_lookup_8b_16(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_8b_16() argument
1044 nft_pipapo_avx2_lookup_slow(unsigned long *map, unsigned long *fill, struct nft_pipapo_field *f, int offset, const u8 *pkt, bool first, bool last) nft_pipapo_avx2_lookup_slow() argument
1125 unsigned long *res, *fill; nft_pipapo_avx2_lookup() local
[all...]
/kernel/linux/linux-5.10/tools/lib/bpf/
H A Dxsk.c62 struct xsk_ring_prod *fill; member
217 struct xsk_ring_prod *fill, in xsk_create_umem_rings()
246 fill->mask = umem->config.fill_size - 1; in xsk_create_umem_rings()
247 fill->size = umem->config.fill_size; in xsk_create_umem_rings()
248 fill->producer = map + off.fr.producer; in xsk_create_umem_rings()
249 fill->consumer = map + off.fr.consumer; in xsk_create_umem_rings()
250 fill->flags = map + off.fr.flags; in xsk_create_umem_rings()
251 fill->ring = map + off.fr.desc; in xsk_create_umem_rings()
252 fill->cached_cons = umem->config.fill_size; in xsk_create_umem_rings()
277 __u64 size, struct xsk_ring_prod *fill, in xsk_umem__create_v0_0_4()
216 xsk_create_umem_rings(struct xsk_umem *umem, int fd, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp) xsk_create_umem_rings() argument
276 xsk_umem__create_v0_0_4(struct xsk_umem **umem_ptr, void *umem_area, __u64 size, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp, const struct xsk_umem_config *usr_config) xsk_umem__create_v0_0_4() argument
340 xsk_umem__create_v0_0_2(struct xsk_umem **umem_ptr, void *umem_area, __u64 size, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp, const struct xsk_umem_config *usr_config) xsk_umem__create_v0_0_2() argument
659 xsk_create_ctx(struct xsk_socket *xsk, struct xsk_umem *umem, int ifindex, const char *ifname, __u32 queue_id, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp) xsk_create_ctx() argument
697 xsk_socket__create_shared(struct xsk_socket **xsk_ptr, const char *ifname, __u32 queue_id, struct xsk_umem *umem, struct xsk_ring_cons *rx, struct xsk_ring_prod *tx, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp, const struct xsk_socket_config *usr_config) xsk_socket__create_shared() argument
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Dxsk.c69 struct xsk_ring_prod *fill; member
162 struct xsk_ring_prod *fill, in xsk_create_umem_rings()
191 fill->mask = umem->config.fill_size - 1; in xsk_create_umem_rings()
192 fill->size = umem->config.fill_size; in xsk_create_umem_rings()
193 fill->producer = map + off.fr.producer; in xsk_create_umem_rings()
194 fill->consumer = map + off.fr.consumer; in xsk_create_umem_rings()
195 fill->flags = map + off.fr.flags; in xsk_create_umem_rings()
196 fill->ring = map + off.fr.desc; in xsk_create_umem_rings()
197 fill->cached_cons = umem->config.fill_size; in xsk_create_umem_rings()
222 __u64 size, struct xsk_ring_prod *fill, in xsk_umem__create()
161 xsk_create_umem_rings(struct xsk_umem *umem, int fd, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp) xsk_create_umem_rings() argument
221 xsk_umem__create(struct xsk_umem **umem_ptr, void *umem_area, __u64 size, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp, const struct xsk_umem_config *usr_config) xsk_umem__create() argument
500 xsk_create_ctx(struct xsk_socket *xsk, struct xsk_umem *umem, int ifindex, __u32 queue_id, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp) xsk_create_ctx() argument
536 xsk_socket__create_shared(struct xsk_socket **xsk_ptr, int ifindex, __u32 queue_id, struct xsk_umem *umem, struct xsk_ring_cons *rx, struct xsk_ring_prod *tx, struct xsk_ring_prod *fill, struct xsk_ring_cons *comp, const struct xsk_socket_config *usr_config) xsk_socket__create_shared() argument
[all...]
/kernel/linux/linux-6.6/lib/crypto/
H A Dblake2s.c26 const size_t fill = BLAKE2S_BLOCK_SIZE - state->buflen; in blake2s_update() local
30 if (inlen > fill) { in blake2s_update()
31 memcpy(state->buf + state->buflen, in, fill); in blake2s_update()
34 in += fill; in blake2s_update()
35 inlen -= fill; in blake2s_update()
/kernel/linux/linux-6.6/tools/testing/selftests/exec/
H A Dbinfmt_script.py40 # @fill: character to fill between @root and @target to reach @size bytes
44 fill="A", arg="", newline="\n", hashbang="#!"):
55 middle += fill * (NAME_MAX - 1)
58 middle += fill * remaining
118 fill=" ", target="")
123 fill="", target="", newline="")
125 test(name="spaces", size=SIZE-1, good=False, root="", fill=" ",
129 root="", fill=" ", target="")

Completed in 12 milliseconds

1234567891011