Searched refs:fill (Results 1 - 200 of 1555) sorted by relevance

12345678

/linux-4.1.27/arch/x86/realmode/rm/
H A Dtrampoline_common.S3 tr_idt: .fill 1, 6, 0
/linux-4.1.27/include/linux/decompress/
H A Dunlzma.h5 long (*fill)(void*, unsigned long),
H A Dbunzip2.h5 long (*fill)(void*, unsigned long),
H A Dinflate.h5 long (*fill)(void*, unsigned long),
H A Dunlz4.h5 long (*fill)(void*, unsigned long),
H A Dunlzo.h5 long (*fill)(void*, unsigned long),
H A Dgeneric.h5 long (*fill)(void*, unsigned long),
13 *fill - function to fill inbuf when empty
19 *If len != 0, inbuf should contain all the necessary input data, and fill
23 *fill will be called (repeatedly...) to read data, at most XXX_IOBUF_SIZE
H A Dunxz.h14 long (*fill)(void *dest, unsigned long size),
/linux-4.1.27/tools/testing/selftests/powerpc/copyloops/
H A Dvalidate.c18 void *fill) do_one()
29 memcpy(srcp, fill, len); do_one()
64 char *src, *dst, *redzone, *fill; test_copy_loop() local
71 fill = malloc(BUFLEN); test_copy_loop()
73 if (!src || !dst || !redzone || !fill) { test_copy_loop()
82 fill[i] = i & 0xff; test_copy_loop()
88 redzone, fill); test_copy_loop()
16 do_one(char *src, char *dst, unsigned long src_off, unsigned long dst_off, unsigned long len, void *redzone, void *fill) do_one() argument
/linux-4.1.27/scripts/
H A Dbootgraph.pl164 $styles[0] = "fill:rgb(0,0,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
165 $styles[1] = "fill:rgb(0,255,0);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
166 $styles[2] = "fill:rgb(255,0,20);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
167 $styles[3] = "fill:rgb(255,255,20);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
168 $styles[4] = "fill:rgb(255,0,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
169 $styles[5] = "fill:rgb(0,255,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
170 $styles[6] = "fill:rgb(0,128,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
171 $styles[7] = "fill:rgb(0,255,128);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
172 $styles[8] = "fill:rgb(255,0,128);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
173 $styles[9] = "fill:rgb(255,255,128);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
174 $styles[10] = "fill:rgb(255,128,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
175 $styles[11] = "fill:rgb(128,255,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
177 my $style_wait = "fill:rgb(128,128,128);fill-opacity:0.5;stroke-width:0;stroke:rgb(0,0,0)";
/linux-4.1.27/lib/
H A Ddecompress_unlz4.c35 long (*fill)(void *, unsigned long), unlz4()
66 if (input && fill) { unlz4()
67 error("Both input pointer and fill function provided,"); unlz4()
71 } else if (!fill) { unlz4()
72 error("NULL input pointer and missing fill function"); unlz4()
86 if (fill) { unlz4()
87 size = fill(inp, 4); unlz4()
96 if (!fill) { unlz4()
110 if (fill) { unlz4()
111 size = fill(inp, 4); unlz4()
122 if (!fill) { unlz4()
135 if (!fill) { unlz4()
143 size = fill(inp, chunksize); unlz4()
174 if (!fill) { unlz4()
200 long (*fill)(void*, unsigned long), __decompress()
207 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); __decompress()
199 __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
H A Ddecompress_unlzo.c113 long (*fill)(void *, unsigned long), unlzo()
138 if (input && fill) { unlzo()
139 error("Both input pointer and fill function provided, don't know what to do"); unlzo()
143 } else if (!fill) { unlzo()
144 error("NULL input pointer and missing fill function"); unlzo()
158 if (fill) { unlzo()
166 in_len = fill(in_buf, HEADER_SIZE_MAX); unlzo()
176 if (fill) { unlzo()
187 if (fill && in_len < 4) { unlzo()
188 skip = fill(in_buf + in_len, 4 - in_len); unlzo()
213 if (fill && in_len < 8) { unlzo()
214 skip = fill(in_buf + in_len, 8 - in_len); unlzo()
232 if (fill && in_len < src_len) { unlzo()
233 skip = fill(in_buf + in_len, src_len - in_len); unlzo()
267 if (fill) { unlzo()
293 long (*fill)(void*, unsigned long), __decompress()
299 return unlzo(buf, len, fill, flush, out_buf, pos, error); __decompress()
292 __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
H A Ddecompress_inflate.c38 long (*fill)(void*, unsigned long), __gunzip()
84 if (!fill) __gunzip()
85 fill = nofill; __gunzip()
88 len = fill(zbuf, GZIP_IOBUF_SIZE); __gunzip()
132 /* TODO: handle case where both pos and fill are set */ __gunzip()
133 len = fill(zbuf, GZIP_IOBUF_SIZE); __gunzip()
187 long (*fill)(void*, unsigned long), gunzip()
193 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); gunzip()
197 long (*fill)(void*, unsigned long), __decompress()
203 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); __decompress()
37 __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
186 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
196 __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
H A Dbtree.c417 int fill; btree_grow() local
423 fill = getfill(geo, head->node, 0); btree_grow()
424 setkey(geo, node, 0, bkey(geo, head->node, fill - 1)); btree_grow()
435 int fill; btree_shrink() local
441 fill = getfill(geo, node, 0); btree_shrink()
442 BUG_ON(fill > 1); btree_shrink()
453 int i, pos, fill, err; btree_insert_level() local
465 fill = getfill(geo, node, pos); btree_insert_level()
467 BUG_ON(pos < fill && keycmp(geo, node, pos, key) == 0); btree_insert_level()
469 if (fill == geo->no_pairs) { btree_insert_level()
477 bkey(geo, node, fill / 2 - 1), btree_insert_level()
483 for (i = 0; i < fill / 2; i++) { btree_insert_level()
486 setkey(geo, node, i, bkey(geo, node, i + fill / 2)); btree_insert_level()
487 setval(geo, node, i, bval(geo, node, i + fill / 2)); btree_insert_level()
488 clearpair(geo, node, i + fill / 2); btree_insert_level()
490 if (fill & 1) { btree_insert_level()
491 setkey(geo, node, i, bkey(geo, node, fill - 1)); btree_insert_level()
492 setval(geo, node, i, bval(geo, node, fill - 1)); btree_insert_level()
493 clearpair(geo, node, fill - 1); btree_insert_level()
497 BUG_ON(fill >= geo->no_pairs); btree_insert_level()
500 for (i = fill; i > pos; i--) { btree_insert_level()
541 unsigned long *key, int level, unsigned long *child, int fill) rebalance()
546 if (fill == 0) { rebalance()
563 if (fill + no_left <= geo->no_pairs) { rebalance()
566 child, fill, rebalance()
574 if (fill + no_right <= geo->no_pairs) { rebalance()
576 child, fill, rebalance()
586 * nodes can be merged". Which means that the average fill of rebalance()
595 int i, pos, fill; btree_remove_level() local
607 fill = getfill(geo, node, pos); btree_remove_level()
613 for (i = pos; i < fill - 1; i++) { btree_remove_level()
617 clearpair(geo, node, fill - 1); btree_remove_level()
619 if (fill - 1 < geo->no_pairs / 2) { btree_remove_level()
621 rebalance(head, geo, key, level, node, fill - 1); btree_remove_level()
622 else if (fill - 1 == 1) btree_remove_level()
540 rebalance(struct btree_head *head, struct btree_geo *geo, unsigned long *key, int level, unsigned long *child, int fill) rebalance() argument
H A Ddecompress_unlzma.c68 long (*fill)(void*, unsigned long); member in struct:rc
93 rc->buffer_size = rc->fill((char *)rc->buffer, LZMA_IOBUF_SIZE); rc_read()
102 long (*fill)(void*, unsigned long), rc_init()
105 if (fill) rc_init()
106 rc->fill = fill; rc_init()
108 rc->fill = nofill; rc_init()
538 long (*fill)(void*, unsigned long), unlzma()
578 rc_init(&rc, fill, inbuf, in_len); unlzma()
671 long (*fill)(void*, unsigned long), __decompress()
677 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); __decompress()
101 rc_init(struct rc *rc, long (*fill)(void*, unsigned long), char *buffer, long buffer_size) rc_init() argument
537 unlzma(unsigned char *buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *output, long *posp, void(*error)(char *x) ) unlzma() argument
670 __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
H A Dcrc8.c24 * crc8_populate_msb - fill crc table for given polynomial in reverse bit order.
46 * crc8_populate_lsb - fill crc table for given polynomial in regular bit order.
H A Dsyscall.c29 * @maxargs: number of elements in @args to fill
42 * returns zero with *@callno set to -1 and does not fill in @args.
H A Ddecompress_unxz.c249 * fill() and flush() won't be used.
252 long (*fill)(void *dest, unsigned long size), unxz()
269 if (fill == NULL && flush == NULL) unxz()
299 if (fill == NULL && flush == NULL) { unxz()
303 if (b.in_pos == b.in_size && fill != NULL) { unxz()
309 in_size = fill(in, XZ_IOBUF_SIZE); unxz()
399 long (*fill)(void*, unsigned long), __decompress()
405 return unxz(buf, len, fill, flush, out_buf, pos, error); __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
H A Ddecompress_bunzip2.c95 long (*fill)(void*, unsigned long); member in struct:bunzip_data
128 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); get_bits()
629 long (*fill)(void*, unsigned long)) start_bunzip()
648 if (fill != NULL) start_bunzip()
649 bd->fill = fill; start_bunzip()
651 bd->fill = nofill; start_bunzip()
679 long (*fill)(void*, unsigned long), bunzip2()
705 i = start_bunzip(&bd, inbuf, len, fill); bunzip2()
747 long (*fill)(void*, unsigned long), __decompress()
753 return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); __decompress()
628 start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, long (*fill)(void*, unsigned long)) start_bunzip() argument
678 bunzip2(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *outbuf, long *pos, void(*error)(char *x)) bunzip2() argument
746 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *outbuf, long olen, long *pos, void (*error)(char *x)) __decompress() argument
/linux-4.1.27/drivers/scsi/libfc/
H A Dfc_frame.c43 len = (fr_len(fp) + 3) & ~3; /* round up length to include fill */ fc_frame_crc_check()
77 size_t fill; fc_frame_alloc_fill() local
79 fill = payload_len % 4; fc_frame_alloc_fill()
80 if (fill != 0) fc_frame_alloc_fill()
81 fill = 4 - fill; fc_frame_alloc_fill()
82 fp = _fc_frame_alloc(payload_len + fill); fc_frame_alloc_fill()
84 memset((char *) fr_hdr(fp) + payload_len, 0, fill); fc_frame_alloc_fill()
H A Dfc_libfc.c158 * fc_fill_hdr() - fill FC header fields based on request
172 u32 fill; fc_fill_hdr() local
178 fill = -fr_len(fp) & 3; fc_fill_hdr()
179 if (fill) { fc_fill_hdr()
181 memset(skb_put(fp_skb(fp), fill), 0, fill); fc_fill_hdr()
182 f_ctl |= fill; fc_fill_hdr()
216 * fc_fill_reply_hdr() - fill FC reply header fields based on request
/linux-4.1.27/arch/ia64/kernel/
H A Dhead.S679 ldf.fill.nta f32=[in0],loc0
680 ldf.fill.nta f40=[ r3],loc0
681 ldf.fill.nta f48=[r14],loc0
682 ldf.fill.nta f56=[r15],loc0
684 ldf.fill.nta f64=[in0],loc0
685 ldf.fill.nta f72=[ r3],loc0
686 ldf.fill.nta f80=[r14],loc0
687 ldf.fill.nta f88=[r15],loc0
689 ldf.fill.nta f96=[in0],loc1
690 ldf.fill.nta f104=[ r3],loc1
691 ldf.fill.nta f112=[r14],loc1
692 ldf.fill.nta f120=[r15],loc1
694 ldf.fill.nta f33=[in0],loc0
695 ldf.fill.nta f41=[ r3],loc0
696 ldf.fill.nta f49=[r14],loc0
697 ldf.fill.nta f57=[r15],loc0
699 ldf.fill.nta f65=[in0],loc0
700 ldf.fill.nta f73=[ r3],loc0
701 ldf.fill.nta f81=[r14],loc0
702 ldf.fill.nta f89=[r15],loc0
704 ldf.fill.nta f97=[in0],loc1
705 ldf.fill.nta f105=[ r3],loc1
706 ldf.fill.nta f113=[r14],loc1
707 ldf.fill.nta f121=[r15],loc1
709 ldf.fill.nta f34=[in0],loc0
710 ldf.fill.nta f42=[ r3],loc0
711 ldf.fill.nta f50=[r14],loc0
712 ldf.fill.nta f58=[r15],loc0
714 ldf.fill.nta f66=[in0],loc0
715 ldf.fill.nta f74=[ r3],loc0
716 ldf.fill.nta f82=[r14],loc0
717 ldf.fill.nta f90=[r15],loc0
719 ldf.fill.nta f98=[in0],loc1
720 ldf.fill.nta f106=[ r3],loc1
721 ldf.fill.nta f114=[r14],loc1
722 ldf.fill.nta f122=[r15],loc1
724 ldf.fill.nta f35=[in0],loc0
725 ldf.fill.nta f43=[ r3],loc0
726 ldf.fill.nta f51=[r14],loc0
727 ldf.fill.nta f59=[r15],loc0
729 ldf.fill.nta f67=[in0],loc0
730 ldf.fill.nta f75=[ r3],loc0
731 ldf.fill.nta f83=[r14],loc0
732 ldf.fill.nta f91=[r15],loc0
734 ldf.fill.nta f99=[in0],loc1
735 ldf.fill.nta f107=[ r3],loc1
736 ldf.fill.nta f115=[r14],loc1
737 ldf.fill.nta f123=[r15],loc1
739 ldf.fill.nta f36=[in0],loc0
740 ldf.fill.nta f44=[ r3],loc0
741 ldf.fill.nta f52=[r14],loc0
742 ldf.fill.nta f60=[r15],loc0
744 ldf.fill.nta f68=[in0],loc0
745 ldf.fill.nta f76=[ r3],loc0
746 ldf.fill.nta f84=[r14],loc0
747 ldf.fill.nta f92=[r15],loc0
749 ldf.fill.nta f100=[in0],loc1
750 ldf.fill.nta f108=[ r3],loc1
751 ldf.fill.nta f116=[r14],loc1
752 ldf.fill.nta f124=[r15],loc1
754 ldf.fill.nta f37=[in0],loc0
755 ldf.fill.nta f45=[ r3],loc0
756 ldf.fill.nta f53=[r14],loc0
757 ldf.fill.nta f61=[r15],loc0
759 ldf.fill.nta f69=[in0],loc0
760 ldf.fill.nta f77=[ r3],loc0
761 ldf.fill.nta f85=[r14],loc0
762 ldf.fill.nta f93=[r15],loc0
764 ldf.fill.nta f101=[in0],loc1
765 ldf.fill.nta f109=[ r3],loc1
766 ldf.fill.nta f117=[r14],loc1
767 ldf.fill.nta f125=[r15],loc1
769 ldf.fill.nta f38 =[in0],loc0
770 ldf.fill.nta f46 =[ r3],loc0
771 ldf.fill.nta f54 =[r14],loc0
772 ldf.fill.nta f62 =[r15],loc0
774 ldf.fill.nta f70 =[in0],loc0
775 ldf.fill.nta f78 =[ r3],loc0
776 ldf.fill.nta f86 =[r14],loc0
777 ldf.fill.nta f94 =[r15],loc0
779 ldf.fill.nta f102=[in0],loc1
780 ldf.fill.nta f110=[ r3],loc1
781 ldf.fill.nta f118=[r14],loc1
782 ldf.fill.nta f126=[r15],loc1
784 ldf.fill.nta f39 =[in0],loc0
785 ldf.fill.nta f47 =[ r3],loc0
786 ldf.fill.nta f55 =[r14],loc0
787 ldf.fill.nta f63 =[r15],loc0
789 ldf.fill.nta f71 =[in0],loc0
790 ldf.fill.nta f79 =[ r3],loc0
791 ldf.fill.nta f87 =[r14],loc0
792 ldf.fill.nta f95 =[r15],loc0
794 ldf.fill.nta f103=[in0]
795 ldf.fill.nta f111=[ r3]
796 ldf.fill.nta f119=[r14]
797 ldf.fill.nta f127=[r15]
1181 ldf.fill.nta f2=[r25],16;;
1182 ldf.fill.nta f3=[r25],16;;
1183 ldf.fill.nta f4=[r25],16;;
1184 ldf.fill.nta f5=[r25],16;;
1185 ldf.fill.nta f16=[r25],16;;
1186 ldf.fill.nta f17=[r25],16;;
1187 ldf.fill.nta f18=[r25],16;;
1188 ldf.fill.nta f19=[r25],16;;
1189 ldf.fill.nta f20=[r25],16;;
1190 ldf.fill.nta f21=[r25],16;;
1191 ldf.fill.nta f22=[r25],16;;
1192 ldf.fill.nta f23=[r25],16;;
1193 ldf.fill.nta f24=[r25],16;;
1194 ldf.fill.nta f25=[r25],16;;
1195 ldf.fill.nta f26=[r25],16;;
1196 ldf.fill.nta f27=[r25],16;;
1197 ldf.fill.nta f28=[r25],16;;
1198 ldf.fill.nta f29=[r25],16;;
1199 ldf.fill.nta f30=[r25],16;;
1200 ldf.fill.nta f31=[r25],16;;
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 f26=[sp]; ldf.fill f27=[sp]; mov f28=f0
99 ldf.fill f29=[sp]; ldf.fill f30=[sp]; mov f31=f0
399 ldf.fill f2=[r14],32
400 ldf.fill f3=[r15],32
402 ldf.fill f4=[r14],32
403 ldf.fill f5=[r15],32
405 ldf.fill f12=[r14],32
406 ldf.fill f13=[r15],32
408 ldf.fill f14=[r14],32
409 ldf.fill f15=[r15],32
411 ldf.fill f16=[r14],32
412 ldf.fill f17=[r15],32
414 ldf.fill f18=[r14],32
415 ldf.fill f19=[r15],32
418 ldf.fill f20=[r14],32
419 ldf.fill f21=[r15],32
422 ldf.fill f22=[r14],32
423 ldf.fill f23=[r15],32
430 ldf.fill f24=[r14],32
431 ldf.fill f25=[r15],32
434 ldf.fill f26=[r14],32
435 ldf.fill f27=[r15],32
438 ldf.fill f28=[r14],32
439 ldf.fill f29=[r15],32
442 ldf.fill f30=[r14],32
443 ldf.fill f31=[r15],24
446 ld8.fill r4=[r14],16
447 ld8.fill r5=[r15],16
450 ld8.fill r6=[r14],16
451 ld8.fill r7=[r15],16
515 ldf.fill f6=[r16],32
516 ldf.fill f7=[r17],32
518 ldf.fill f8=[r16],32
519 ldf.fill f9=[r17],32
521 ldf.fill f10=[r16]
522 ldf.fill f11=[r17]
793 ld8.fill r1=[r3],16 // M0|1 load r1
801 ld8.fill r13=[r3],16 // M0|1
804 ld8.fill r12=[r2] // M0|1 restore r12 (sp)
805 ld8.fill r15=[r3] // M0|1 restore r15
884 ld8.fill r16=[r3],PT(AR_CSD)-PT(R16)
888 ld8.fill r24=[r29]
897 ld8.fill r8=[r3],16
899 ld8.fill r9=[r2],16
900 ld8.fill r10=[r3],PT(R17)-PT(R10)
902 ld8.fill r11=[r2],PT(R18)-PT(R11)
903 ld8.fill r17=[r3],16
905 ld8.fill r18=[r2],16
906 ld8.fill r19=[r3],16
908 ld8.fill r20=[r2],16
909 ld8.fill r21=[r3],16
916 ld8.fill r22=[r2],24
917 ld8.fill r23=[r3],24
920 ld8.fill r25=[r2],16
921 ld8.fill r26=[r3],16
924 ld8.fill r27=[r2],16
925 ld8.fill r28=[r3],16
927 ld8.fill r29=[r2],16
928 ld8.fill r30=[r3],24
930 ld8.fill r31=[r2],PT(F9)-PT(R31)
933 ldf.fill f9=[r2],PT(F6)-PT(F9)
934 ldf.fill f10=[r3],PT(F8)-PT(F10)
936 ldf.fill f6=[r2],PT(F7)-PT(F6)
938 ldf.fill f7=[r2],PT(F11)-PT(F7)
939 ldf.fill f8=[r3],32
944 ldf.fill f11=[r2]
980 ld8.fill r1=[r17],16 // load r1
982 ld8.fill r12=[r16],16
983 ld8.fill r13=[r17],16
991 ld8.fill r15=[r17],16
996 ld8.fill r14=[r16],16
997 ld8.fill r2=[r17]
1010 ld8.fill r3=[r16] // deferred
1015 ld8.fill r3=[r16]
H A Dmca_asm.S728 ldf.fill f2=[temp1],32
729 ldf.fill f3=[temp2],32
731 ldf.fill f4=[temp1],32
732 ldf.fill f5=[temp2],32
734 ldf.fill f12=[temp1],32
735 ldf.fill f13=[temp2],32
737 ldf.fill f14=[temp1],32
738 ldf.fill f15=[temp2],32
740 ldf.fill f16=[temp1],32
741 ldf.fill f17=[temp2],32
743 ldf.fill f18=[temp1],32
744 ldf.fill f19=[temp2],32
746 ldf.fill f20=[temp1],32
747 ldf.fill f21=[temp2],32
749 ldf.fill f22=[temp1],32
750 ldf.fill f23=[temp2],32
752 ldf.fill f24=[temp1],32
753 ldf.fill f25=[temp2],32
755 ldf.fill f26=[temp1],32
756 ldf.fill f27=[temp2],32
758 ldf.fill f28=[temp1],32
759 ldf.fill f29=[temp2],32
761 ldf.fill f30=[temp1],SW(B2)-SW(F30)
762 ldf.fill f31=[temp2],SW(B3)-SW(F31)
807 ldf.fill f6=[temp1],PT(F8)-PT(F6)
808 ldf.fill f7=[temp2],PT(F9)-PT(F7)
810 ldf.fill f8=[temp1],PT(F10)-PT(F8)
811 ldf.fill f9=[temp2],PT(F11)-PT(F9)
813 ldf.fill f10=[temp1]
814 ldf.fill f11=[temp2]
H A Dgate.S176 ldf.fill f6=[base0],32
177 ldf.fill f7=[base1],32
179 ldf.fill f8=[base0],32
180 ldf.fill f9=[base1],32
182 ldf.fill f10=[base0],32
183 ldf.fill f11=[base1],32
185 ldf.fill f12=[base0],32
186 ldf.fill f13=[base1],32
188 ldf.fill f14=[base0],32
189 ldf.fill f15=[base1],32
H A Dpal.S289 ldf.fill f10 = [in0],32
290 ldf.fill f11 = [r2],32
292 ldf.fill f12 = [in0],32
293 ldf.fill f13 = [r2],32
295 ldf.fill f14 = [in0],32
296 ldf.fill f15 = [r2],32
H A Drelocate_kernel.S177 .fill 8192, 1, 0
180 .fill 8192, 1, 0
/linux-4.1.27/drivers/isdn/hisax/
H A Dhisax_fcpcipnp.h15 u_char fill; member in struct:hdlc_stat_reg
23 u_char fill;
H A Dhfc_pci.h202 u_char fill[0x2100 - 0x2082]; /* alignment */ member in struct:__anon5280
227 u_char fill[32768]; member in union:__anon5281
H A Dhfc4s8s_l1.c430 Write_hfc8(l1->hw, A_CON_HDLC, 0xc); /* HDLC mode, flag fill, connect ST */ bch_l2l1()
441 Write_hfc8(l1->hw, A_CON_HDLC, 0xc); /* HDLC mode, flag fill, connect ST */ bch_l2l1()
477 Write_hfc8(l1->hw, A_CON_HDLC, 0xf); /* Transparent mode, 1 fill, connect ST */ bch_l2l1()
488 Write_hfc8(l1->hw, A_CON_HDLC, 0xf); /* Transparent mode, 1 fill, connect ST */ bch_l2l1()
1299 Write_hfc8(hw, A_CON_HDLC, 0x11); /* HDLC mode, 1 fill, connect ST */ hfc_hardware_enable()
1308 Write_hfc8(hw, A_CON_HDLC, 0x11); /* HDLC mode, 1 fill, connect ST */ hfc_hardware_enable()
1317 Write_hfc8(hw, A_CON_HDLC, 0x11); /* HDLC mode, 1 fill, connect ST */ hfc_hardware_enable()
/linux-4.1.27/tools/perf/util/
H A Dsvghelper.c116 fprintf(svgfile, " rect.process { fill:rgb(180,180,180); fill-opacity:0.9; stroke-width:1; stroke:rgb( 0, 0, 0); } \n"); open_svg()
117 fprintf(svgfile, " rect.process2 { fill:rgb(180,180,180); fill-opacity:0.9; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
118 fprintf(svgfile, " rect.process3 { fill:rgb(180,180,180); fill-opacity:0.5; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
119 fprintf(svgfile, " rect.sample { fill:rgb( 0, 0,255); fill-opacity:0.8; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
120 fprintf(svgfile, " rect.sample_hi{ fill:rgb(255,128, 0); fill-opacity:0.8; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
121 fprintf(svgfile, " rect.error { fill:rgb(255, 0, 0); fill-opacity:0.5; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
122 fprintf(svgfile, " rect.net { fill:rgb( 0,128, 0); fill-opacity:0.5; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
123 fprintf(svgfile, " rect.disk { fill:rgb( 0, 0,255); fill-opacity:0.5; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
124 fprintf(svgfile, " rect.sync { fill:rgb(128,128, 0); fill-opacity:0.5; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
125 fprintf(svgfile, " rect.poll { fill:rgb( 0,128,128); fill-opacity:0.2; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
126 fprintf(svgfile, " rect.blocked { fill:rgb(255, 0, 0); fill-opacity:0.5; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
127 fprintf(svgfile, " rect.waiting { fill:rgb(224,214, 0); fill-opacity:0.8; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
128 fprintf(svgfile, " rect.WAITING { fill:rgb(255,214, 48); fill-opacity:0.6; stroke-width:0; stroke:rgb( 0, 0, 0); } \n"); open_svg()
129 fprintf(svgfile, " rect.cpu { fill:rgb(192,192,192); fill-opacity:0.2; stroke-width:0.5; stroke:rgb(128,128,128); } \n"); open_svg()
130 fprintf(svgfile, " rect.pstate { fill:rgb(128,128,128); fill-opacity:0.8; stroke-width:0; } \n"); open_svg()
131 fprintf(svgfile, " rect.c1 { fill:rgb(255,214,214); fill-opacity:0.5; stroke-width:0; } \n"); open_svg()
132 fprintf(svgfile, " rect.c2 { fill:rgb(255,172,172); fill-opacity:0.5; stroke-width:0; } \n"); open_svg()
133 fprintf(svgfile, " rect.c3 { fill:rgb(255,130,130); fill-opacity:0.5; stroke-width:0; } \n"); open_svg()
134 fprintf(svgfile, " rect.c4 { fill:rgb(255, 88, 88); fill-opacity:0.5; stroke-width:0; } \n"); open_svg()
135 fprintf(svgfile, " rect.c5 { fill:rgb(255, 44, 44); fill-opacity:0.5; stroke-width:0; } \n"); open_svg()
136 fprintf(svgfile, " rect.c6 { fill:rgb(255, 0, 0); fill-opacity:0.5; stroke-width:0; } \n"); open_svg()
547 fprintf(svgfile, "<circle cx=\"%.8f\" cy=\"%.2f\" r = \"0.01\" style=\"fill:rgb(32,255,32)\"/>\n", svg_partial_wakeline()
576 fprintf(svgfile, "<circle cx=\"%.8f\" cy=\"%.2f\" r = \"0.01\" style=\"fill:rgb(32,255,32)\"/>\n", svg_wakeline()
594 fprintf(svgfile, "<circle cx=\"%.8f\" cy=\"%.2f\" r = \"0.01\" style=\"fill:rgb(255,128,128)\"/>\n", svg_interrupt()
596 fprintf(svgfile, "<circle cx=\"%.8f\" cy=\"%.2f\" r = \"0.01\" style=\"fill:rgb(255,128,128)\"/>\n", svg_interrupt()
/linux-4.1.27/include/uapi/linux/netfilter/
H A Dxt_CHECKSUM.h14 #define XT_CHECKSUM_OP_FILL 0x01 /* fill in checksum in IP header */
/linux-4.1.27/arch/sh/include/asm/
H A Ddevice.h12 /* allocate contiguous memory chunk and fill in struct resource */
/linux-4.1.27/arch/sh/include/cpu-sh5/cpu/
H A Dmmu_context.h16 /* This has to be a common function because the next location to fill
/linux-4.1.27/tools/virtio/asm/
H A Dbarrier.h12 #error Please fill in barrier macros
/linux-4.1.27/arch/arm/include/asm/
H A Dmtd-xip.h20 /* fill instruction prefetch */
/linux-4.1.27/drivers/scsi/libsas/
H A Dsas_task.c6 /* fill task_status_struct based on SSP response frame */ sas_ssp_task_response()
/linux-4.1.27/arch/um/include/asm/
H A Da.out-core.h20 * fill in the user structure for an a.out core dump
/linux-4.1.27/arch/alpha/include/uapi/asm/
H A Dsigcontext.h11 * actually fill in all the values..
/linux-4.1.27/drivers/net/ethernet/pasemi/
H A Dpasemi_mac.c566 /* Compensate for when fill has wrapped and clean has not */ pasemi_mac_free_tx_resources()
629 int fill, count; pasemi_mac_replenish_rx_ring() local
634 fill = rx_ring(mac)->next_to_fill; pasemi_mac_replenish_rx_ring()
636 struct pasemi_mac_buffer *info = &RX_DESC_INFO(rx, fill); pasemi_mac_replenish_rx_ring()
637 u64 *buff = &RX_BUFF(rx, fill); pasemi_mac_replenish_rx_ring()
662 fill++; pasemi_mac_replenish_rx_ring()
887 /* Compensate for when fill has wrapped but clean has not */ pasemi_mac_clean_tx()
920 /* Since we always fill with an even number of entries, make pasemi_mac_clean_tx()
1399 int cs_size, i, fill, hdr, cpyhdr, evt; pasemi_mac_queue_csdesc() local
1423 fill = csring->next_to_fill; pasemi_mac_queue_csdesc()
1424 hdr = fill; pasemi_mac_queue_csdesc()
1426 CS_DESC(csring, fill++) = fund; pasemi_mac_queue_csdesc()
1428 csdma = csring->chan.ring_dma + (fill & (CS_RING_SIZE-1)) * 8 + 2; pasemi_mac_queue_csdesc()
1429 CS_DESC(csring, fill++) = 0; pasemi_mac_queue_csdesc()
1431 CS_DESC(csring, fill) = XCT_PTR_LEN(map_size[0]-nh_off) | XCT_PTR_ADDR(map[0]+nh_off); pasemi_mac_queue_csdesc()
1433 CS_DESC(csring, fill+i) = XCT_PTR_LEN(map_size[i]) | XCT_PTR_ADDR(map[i]); pasemi_mac_queue_csdesc()
1435 fill += i; pasemi_mac_queue_csdesc()
1436 if (fill & 1) pasemi_mac_queue_csdesc()
1437 fill++; pasemi_mac_queue_csdesc()
1440 cpyhdr = fill; pasemi_mac_queue_csdesc()
1441 CS_DESC(csring, fill++) = XCT_FUN_O | XCT_FUN_FUN(csring->fun) | pasemi_mac_queue_csdesc()
1443 CS_DESC(csring, fill++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(cs_dest) | XCT_PTR_T; pasemi_mac_queue_csdesc()
1444 CS_DESC(csring, fill++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(csdma); pasemi_mac_queue_csdesc()
1445 fill++; pasemi_mac_queue_csdesc()
1451 CS_DESC(csring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O | pasemi_mac_queue_csdesc()
1453 CS_DESC(csring, fill++) = 0; pasemi_mac_queue_csdesc()
1454 CS_DESC(csring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O | pasemi_mac_queue_csdesc()
1456 CS_DESC(csring, fill++) = 0; pasemi_mac_queue_csdesc()
1457 csring->next_to_fill = fill & (CS_RING_SIZE-1); pasemi_mac_queue_csdesc()
1459 cs_size = fill - hdr; pasemi_mac_queue_csdesc()
1463 fill = txring->next_to_fill; pasemi_mac_queue_csdesc()
1464 TX_DESC(txring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O | pasemi_mac_queue_csdesc()
1466 TX_DESC(txring, fill++) = 0; pasemi_mac_queue_csdesc()
1467 TX_DESC(txring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O | pasemi_mac_queue_csdesc()
1469 TX_DESC(txring, fill++) = 0; pasemi_mac_queue_csdesc()
1470 txring->next_to_fill = fill; pasemi_mac_queue_csdesc()
1486 int fill; pasemi_mac_start_tx() local
1553 fill = txring->next_to_fill; pasemi_mac_start_tx()
1554 TX_DESC(txring, fill) = mactx; pasemi_mac_start_tx()
1555 TX_DESC_INFO(txring, fill).dma = nfrags; pasemi_mac_start_tx()
1556 fill++; pasemi_mac_start_tx()
1557 TX_DESC_INFO(txring, fill).skb = skb; pasemi_mac_start_tx()
1559 TX_DESC(txring, fill+i) = pasemi_mac_start_tx()
1561 TX_DESC_INFO(txring, fill+i).dma = map[i]; pasemi_mac_start_tx()
1571 txring->next_to_fill = (fill + nfrags + 1) & (TX_RING_SIZE-1); pasemi_mac_start_tx()
1662 * interface ring, then finally re-fill the rx ring with pasemi_mac_change_mtu()
/linux-4.1.27/arch/ia64/lib/
H A Dmemset.S128 TEXT_ALIGN(32) // --------------------- // L1A: store ahead into cache lines; fill later
198 .l1b: // ------------------------------------ // L1B: store ahead into cache lines; fill later
329 (p_y) st1 [ptr1] = value, 1 // fill 1 (odd-aligned) byte [15, 14 (or less) left]
337 (p_yy) st2 [ptr1] = value, 4 // fill 2 (aligned) bytes
338 (p_yy) st2 [ptr2] = value, 4 // fill 2 (aligned) bytes [11, 10 (o less) left]
346 (p_y) st2 [ptr1] = value, 4 // fill 2 (aligned) bytes
347 (p_y) st2 [ptr2] = value, 4 // fill 2 (aligned) bytes [7, 6 (or less) left]
351 (p_yy) st2 [ptr1] = value, 4 // fill 2 (aligned) bytes
352 (p_yy) st2 [ptr2] = value, 4 // fill 2 (aligned) bytes [3, 2 (or less) left]
358 (p_scr) st2 [ptr1] = value // fill 2 (aligned) bytes
359 (p_y) st1 [ptr3] = value // fill last byte (using ptr3)
/linux-4.1.27/drivers/crypto/
H A Dmxs-dcp.c79 uint32_t fill; member in struct:dcp_async_ctx
235 desc->size = actx->fill; mxs_dcp_run_aes()
275 actx->fill = 0; mxs_dcp_aes_block_crypt()
294 if (actx->fill + len > out_off) mxs_dcp_aes_block_crypt()
295 clen = out_off - actx->fill; mxs_dcp_aes_block_crypt()
299 memcpy(in_buf + actx->fill, src_buf, clen); mxs_dcp_aes_block_crypt()
302 actx->fill += clen; mxs_dcp_aes_block_crypt()
308 if (actx->fill == out_off || sg_is_last(src)) { mxs_dcp_aes_block_crypt()
315 while (dst && actx->fill) { mxs_dcp_aes_block_crypt()
321 actx->fill); mxs_dcp_aes_block_crypt()
326 actx->fill -= rem; mxs_dcp_aes_block_crypt()
536 desc->size = actx->fill; mxs_dcp_run_sha()
588 if (actx->fill + len > DCP_BUF_SZ) dcp_sha_req_to_buf()
589 clen = DCP_BUF_SZ - actx->fill; dcp_sha_req_to_buf()
593 memcpy(in_buf + actx->fill, src_buf, clen); dcp_sha_req_to_buf()
596 actx->fill += clen; dcp_sha_req_to_buf()
602 if (len && actx->fill == DCP_BUF_SZ) { dcp_sha_req_to_buf()
606 actx->fill = 0; dcp_sha_req_to_buf()
623 actx->fill = 0; dcp_sha_req_to_buf()
694 actx->fill = 0; dcp_sha_init()
H A Dbfin_crc.h25 /* Value to fill */
97 #define MODE_DATA_FILL 2 /* MTM data fill */
/linux-4.1.27/drivers/isdn/hardware/eicon/
H A Dpc_maint.h134 byte fill[6]; member in struct:pc_maint
146 byte fill[4]; /* data at offset 16 */ member in struct:pc_maint
158 byte fill[4]; /* data at offset 16 */ member in struct:mi_pc_maint
/linux-4.1.27/fs/xfs/
H A Dxfs_itable.h21 * xfs_bulkstat() is used to fill in xfs_bstat structures as well as dm_stat
23 * that will iget the inode and fill in the appropriate structure.
48 bulkstat_one_pf formatter, /* func that'd fill a single buf */
/linux-4.1.27/drivers/media/usb/as102/
H A Das10x_cmd_stream.c40 /* fill command */ as10x_cmd_add_PID_filter()
97 /* fill command */ as10x_cmd_del_PID_filter()
141 /* fill command */ as10x_cmd_start_streaming()
184 /* fill command */ as10x_cmd_stop_streaming()
H A Das10x_cmd.c39 /* fill command */ as10x_cmd_turn_on()
80 /* fill command */ as10x_cmd_turn_off()
122 /* fill command */ as10x_cmd_set_tune()
177 /* fill command */ as10x_cmd_get_tune_status()
229 /* fill command */ as10x_cmd_get_tps()
288 /* fill command */ as10x_cmd_get_demod_stats()
348 /* fill command */ as10x_cmd_get_impulse_resp()
H A Das10x_cmd_cfg.c45 /* fill command */ as10x_cmd_get_context()
101 /* fill command */ as10x_cmd_set_context()
155 /* fill command */ as10x_cmd_eLNA_change_mode()
/linux-4.1.27/include/uapi/linux/
H A Datmarp.h23 #define ATMARP_SETENTRY _IO('a',ATMIOC_CLIP+3) /* fill or hide ARP entry */
H A Dipx.h15 unsigned char sipx_zero; /* 16 byte fill */
H A Dif_pppox.h72 * sockaddr_pppox) to fill it. We use a protocol specific sockaddr
H A Dtarget_core_user.h36 * entry->rsp.scsi_status, fill in rsp.sense_buffer if appropriate,
H A Duinput.h110 * 2. Allocate a uinput_ff_upload struct, fill in request_id with
124 * 2. Allocate a uinput_ff_erase struct, fill in request_id with
/linux-4.1.27/arch/s390/appldata/
H A Dappldata.h33 /* fill in from here */
/linux-4.1.27/arch/mn10300/kernel/
H A Dfpu-nofpu.c25 * fill in the FPU structure for a core dump
/linux-4.1.27/arch/powerpc/include/uapi/asm/
H A Dipcbuf.h9 * - 1 32-bit value to fill up for 8-byte alignment
/linux-4.1.27/kernel/trace/
H A Dtrace_stat.h7 * If you want to provide a stat file (one-shot statistics), fill
/linux-4.1.27/net/rds/
H A Dinfo.h12 * These functions must fill in the fields of @lens to reflect the size
/linux-4.1.27/arch/mn10300/lib/
H A Dmemset.S1 /* Optimised simple memory fill
32 beq memset_done # return if zero-length fill
/linux-4.1.27/net/bridge/
H A Dbr_nf_core.c66 * Currently, we fill in the PMTU entry because netfilter
69 * require us to fill additional fields.
/linux-4.1.27/drivers/vfio/pci/
H A Dvfio_pci.c334 struct vfio_pci_fill_info *fill = data; vfio_pci_fill_devs() local
337 if (fill->cur == fill->max) vfio_pci_fill_devs()
344 fill->devices[fill->cur].group_id = iommu_group_id(iommu_group); vfio_pci_fill_devs()
345 fill->devices[fill->cur].segment = pci_domain_nr(pdev->bus); vfio_pci_fill_devs()
346 fill->devices[fill->cur].bus = pdev->bus->number; vfio_pci_fill_devs()
347 fill->devices[fill->cur].devfn = pdev->devfn; vfio_pci_fill_devs()
348 fill->cur++; vfio_pci_fill_devs()
615 struct vfio_pci_fill_info fill = { 0 }; vfio_pci_ioctl() local
639 &fill.max, slot); vfio_pci_ioctl()
643 WARN_ON(!fill.max); /* Should always be at least one */ vfio_pci_ioctl()
646 * If there's enough space, fill it now, otherwise return vfio_pci_ioctl()
649 if (hdr.argsz < sizeof(hdr) + (fill.max * sizeof(*devices))) { vfio_pci_ioctl()
651 hdr.count = fill.max; vfio_pci_ioctl()
655 devices = kcalloc(fill.max, sizeof(*devices), GFP_KERNEL); vfio_pci_ioctl()
659 fill.devices = devices; vfio_pci_ioctl()
663 &fill, slot); vfio_pci_ioctl()
667 * we may come up short of fill.max. If a device was vfio_pci_ioctl()
671 hdr.count = fill.cur; vfio_pci_ioctl()
/linux-4.1.27/lib/zlib_inflate/
H A Dinftrees.c36 unsigned fill; /* index for replicating entries */ zlib_inflate_table() local
136 Create and fill in decoding tables. In this loop, the table being zlib_inflate_table()
141 fill the table with replicated entries. zlib_inflate_table()
190 next = *table; /* current table to fill in */ zlib_inflate_table()
220 fill = 1U << curr; zlib_inflate_table()
221 min = fill; /* save offset to next table */ zlib_inflate_table()
223 fill -= incr; zlib_inflate_table()
224 next[(huff >> drop) + fill] = this; zlib_inflate_table()
225 } while (fill != 0); zlib_inflate_table()
282 drops back to the root table to fill in any remaining entries there. zlib_inflate_table()
/linux-4.1.27/arch/x86/kernel/
H A Dhead_64.S345 .fill early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc
454 .fill 511,8,0
458 .fill 512*EARLY_DYNAMIC_PAGE_TABLES,8,0
464 .fill 512,8,0
476 .fill 511, 8, 0
485 .fill L3_START_KERNEL,8,0
505 .fill 506,8,0
508 .fill 5,8,0
511 .fill 512,8,0
H A Dhead_32.S548 .fill early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc
671 .fill 1024*KPMDS,4,0
674 .fill 1024,4,0
677 .fill 1024,4,0
679 .fill 4096,1,0
681 .fill 1024,4,0
769 .fill GDT_ENTRY_BOOT_CS,8,0
H A Dcheck.c12 * remaining free memory in that area and fill it with a distinct
/linux-4.1.27/drivers/infiniband/hw/ehca/
H A Dipz_pt_fn.c154 page->fill++; alloc_small_queue_page()
156 if (page->fill == IPZ_SPAGE_PER_KPAGE >> order) alloc_small_queue_page()
185 page->fill--; free_small_queue_page()
187 if (page->fill == 0) { free_small_queue_page()
192 if (page->fill == (IPZ_SPAGE_PER_KPAGE >> order) - 1) free_small_queue_page()
/linux-4.1.27/drivers/net/ethernet/altera/
H A Daltera_msgdmahw.h91 u32 rw_fill_level; /* bit 31:16 - write fill level
92 * bit 15:0 - read fill level
136 /* mSGDMA CSR fill level bits
/linux-4.1.27/arch/mips/loongson/lemote-2f/
H A Dec_kb3310b.h29 * 1, fill the PORT_HIGH as EC register high part.
30 * 2, fill the PORT_LOW as EC register low part.
31 * 3, fill the PORT_DATA as EC register write data or get the data from it.
/linux-4.1.27/fs/configfs/
H A Dfile.c55 * fill_read_buffer - allocate and fill buffer from item.
60 * config_item's show() method to fill the buffer with this attribute's
90 * @buf: buffer to fill.
98 * We call fill_read_buffer() to allocate and fill the buffer from the
100 * the beginning of the file). That should fill the entire buffer with
188 * We allocate and fill the data from the user in fill_write_buffer(),
/linux-4.1.27/drivers/misc/sgi-gru/
H A Dgrulib.h121 char fill[10]; member in struct:gru_dump_chiplet_state_req
150 int fill[16]; member in struct:gru_config_info
/linux-4.1.27/drivers/gpu/drm/qxl/
H A Dqxl_draw.c275 * send a fill command instead, much cheaper. qxl_draw_dirty_fb()
471 drawable->u.fill.brush.type = SPICE_BRUSH_TYPE_SOLID; qxl_draw_fill()
472 drawable->u.fill.brush.u.color = color; qxl_draw_fill()
473 drawable->u.fill.rop_descriptor = rop; qxl_draw_fill()
474 drawable->u.fill.mask.flags = 0; qxl_draw_fill()
475 drawable->u.fill.mask.pos.x = 0; qxl_draw_fill()
476 drawable->u.fill.mask.pos.y = 0; qxl_draw_fill()
477 drawable->u.fill.mask.bitmap = 0; qxl_draw_fill()
/linux-4.1.27/arch/alpha/lib/
H A Dmemcpy.c41 * is aligned, but we don't fill in a full quad-word
58 * aligned, but we don't fill in a full quad-word
H A Dstrncat.S63 0: cmplt $27, $24, $2 # did we fill the buffer completely?
H A Dev67-strncat.S62 cmplt $27, $24, $5 # E : did we fill the buffer completely?
/linux-4.1.27/sound/parisc/
H A Dharmony.h93 #define HARMONY_DSTATUS_PN 0x00000200 /* playback fill */
94 #define HARMONY_DSTATUS_RN 0x00000002 /* record fill */
/linux-4.1.27/arch/x86/platform/efi/
H A Defi_stub_64.S96 .fill 3,8,0
/linux-4.1.27/arch/x86/platform/intel-mid/device_libs/
H A Dplatform_gpio_keys.c44 .nbuttons = -1, /* will fill it after search */
H A Dplatform_ipc.c35 * We need to call platform init of IPC devices to fill misc_pdata ipc_device_handler()
/linux-4.1.27/arch/x86/include/asm/
H A Da.out-core.h23 * fill in the user structure for an a.out core dump
/linux-4.1.27/arch/mips/include/asm/mach-bcm63xx/
H A Dbcm63xx_dev_enet.h20 /* or fill phy info to use an external one */
/linux-4.1.27/include/linux/
H A Dof_pdt.h33 /* return 0 on success; fill in 'len' with number of bytes in path */
H A Defs_vh.h39 __be32 vh_fill; /* fill out to 512 bytes */
H A Dconcap.h93 Protocols that don't process these primitives might fill in
100 be provided here, too. The net device would just fill them in its
H A Dcrc8.h40 * crc8_populate_lsb - fill crc table for given polynomial in regular bit order.
58 * crc8_populate_msb - fill crc table for given polynomial in reverse bit order.
H A DmISDNhw.h60 #define FLG_FILLEMPTY 16 /* fill fifo on first frame (empty) */
159 u8 fill[MISDN_BCH_FILL_SIZE]; member in struct:bchannel
H A Dasn1_ber_bytecode.h60 /* These are here to help fill up space */
H A Dhw_random.h31 * @read: New API. drivers can fill up to max bytes of data
/linux-4.1.27/arch/mn10300/mm/
H A Ddma-alloc.c53 /* fill the memory with obvious rubbish */ dma_alloc_coherent()
/linux-4.1.27/arch/powerpc/boot/
H A Daddnote.c177 /* fill in the program header entry */ main()
190 /* fill in the note area we point to */ main()
200 /* fill in the second program header entry and the RPA note area */ main()
213 /* fill in the note area we point to */ main()
H A Dhack-coff.c2 * hack-coff.c - hack the header of an xcoff file to fill in
H A Dredboot.h15 * architectures and it's up to the platform specific code to fill
/linux-4.1.27/arch/blackfin/lib/
H A Dmemset.S32 R1 = R1.B (Z); /* R1 = fill char */
/linux-4.1.27/security/keys/encrypted-keys/
H A Decryptfs_format.c43 * ecryptfs_fill_auth_tok - fill the ecryptfs_auth_tok structure
/linux-4.1.27/include/asm-generic/
H A Dtopology.h32 /* Other architectures wishing to use this simple topology API should fill
/linux-4.1.27/sound/pci/trident/
H A Dtrident_memory.c49 /* fill TLB entrie(s) corresponding to page with ptr */
51 /* fill TLB entrie(s) corresponding to page with silence pointer */
71 /* fill TLB entries -- we need to fill two entries */ set_tlb_bus()
101 /* fill TLB entries -- UNIT_PAGES entries must be filled */ set_tlb_bus()
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
H A Drx_desc.h343 * Reserved: HW should fill with zero. FW should ignore.
479 * Reserved: HW should fill with zero. FW should ignore.
533 * Reserved: HW should fill with zero. FW should ignore.
602 * Reserved: HW should fill with zero. FW should ignore.
609 * Reserved: HW should fill with zero. FW should ignore.
751 * Reserved: HW should fill with 0, FW should ignore.
757 * Reserved: HW should fill with 0, FW should ignore.
810 * Reserved: HW should fill with 0, FW should ignore.
825 * Reserved: HW should fill with 0, FW should ignore.
832 * Reserved: HW should fill with 0, FW should ignore.
839 * Reserved: HW should fill with 0, FW should ignore.
987 * Reserved: HW should fill with 0, FW should ignore.
1004 * Reserved: HW should fill with 0, FW should ignore.
1013 * Reserved: HW should fill with 0, FW should ignore.
/linux-4.1.27/drivers/net/wimax/i2400m/
H A Di2400m.h116 * On probe, it needs to fill the i2400m members marked as [fill], as
231 * Members marked with [fill] must be filled out/initialized before
241 * @bus_tx_block_size: [fill] USB imposes a 16 block size, but other
245 * @bus_tx_room_min: [fill] Minimum room required while allocating
249 * @bus_pl_size_max: [fill] Maximum payload size.
251 * @bus_setup: [optional fill] Function called by the bus-generic code
258 * @bus_release: [optional fill] Function called by the bus-generic
267 * @bus_dev_start: [optional fill] Function called by the bus-generic
274 * @bus_dev_stop: [optional fill] Function called by the bus-generic
282 * @bus_tx_kick: [fill] Function called by the bus-generic code to let
288 * @bus_reset: [fill] Function called by the bus-generic code to reset
306 * @bus_bm_retries: [fill] How many times shall a firmware upload /
317 * @bus_bm_cmd_send: [fill] Function called to send a boot-mode
322 * @bus_bm_wait_for_ack: [fill] Function called to wait for a
332 * @bus_fw_names: [fill] a NULL-terminated array with the names of the
341 * @bus_bm_mac_addr_impaired: [fill] Set to true if the device's MAC
345 * @bus_bm_pokes_table: [fill/optional] A table of device addresses
/linux-4.1.27/sound/pci/emu10k1/
H A Dmemory.c49 /* fill PTB entrie(s) corresponding to page with addr */
51 /* fill PTB entrie(s) corresponding to page with silence pointer */
54 /* fill PTB entries -- we need to fill UNIT_PAGES entries */ set_ptb_entry()
155 /* fill PTB */ map_memblk()
325 /* fill buffer addresses but pointers are not stored so that snd_emu10k1_alloc_pages()
/linux-4.1.27/drivers/net/arcnet/
H A Darc-rawmode.c154 * FIXME: fill in the last byte of the dest ipaddr here to better build_header()
160 /* otherwise, just fill it in and go! */ build_header()
H A Dcapmode.c121 * FIXME: fill in the last byte of the dest ipaddr here to better build_header()
127 /* otherwise, just fill it in and go! */ build_header()
H A Drfc1051.c205 * FIXME: fill in the last byte of the dest ipaddr here to better build_header()
211 /* otherwise, just fill it in and go! */ build_header()
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Dplx9080.h145 #define DMM_PAF0 0x00000000 /* Programmable Almost fill level */
146 #define DMM_PAF1 0x00000020 /* Programmable Almost fill level */
147 #define DMM_PAF2 0x00000040 /* Programmable Almost fill level */
148 #define DMM_PAF3 0x00000060 /* Programmable Almost fill level */
149 #define DMM_PAF4 0x00000080 /* Programmable Almost fill level */
150 #define DMM_PAF5 0x000000A0 /* Programmable Almost fill level */
151 #define DMM_PAF6 0x000000C0 /* Programmable Almost fill level */
152 #define DMM_PAF7 0x000000D0 /* Programmable Almost fill level */
/linux-4.1.27/drivers/staging/octeon/
H A Dethernet-mem.c39 * cvm_oct_fill_hw_skbuff - fill the supplied hardware pool with skbuffs
92 * cvm_oct_fill_hw_memory - fill a hardware pool with memory.
/linux-4.1.27/drivers/parisc/
H A Diommu-helpers.h91 ** in the DMA stream. Allocates PDIR entries but does not fill them.
94 ** Doing the fill separate from the coalescing/allocation keeps the
/linux-4.1.27/drivers/dma/ioat/
H A Ddma_v2.h106 * @fill: hardware fill descriptor
/linux-4.1.27/arch/sh/kernel/cpu/sh4/
H A Dperf_event.c67 * 0x21 Instruction cache fill
68 * 0x22 Operand cache fill
/linux-4.1.27/kernel/
H A Dtsacct.c27 * fill in basic accounting fields
90 * fill in extended accounting fields
H A Dtaskstats.c176 * fill in relevant parts of struct taskstsats as follows fill_stats()
183 /* fill in basic acct fields */ fill_stats()
189 /* fill in extended acct fields */ fill_stats()
236 * fill in relevant parts of struct taskstsats as follows fill_stats_for_tgid()
628 /* fill the tsk->signal->stats structure */ taskstats_exit()
/linux-4.1.27/net/802/
H A Dfddi.c91 * Determine the packet's protocol ID and fill in skb fields.
93 * up. It's used to fill in specific skb fields and to set
/linux-4.1.27/sound/core/seq/
H A Dseq_system.c69 /* fill standard header data, source port & channel are filled in */ setheader()
84 /* fill data */ setheader()
/linux-4.1.27/sound/drivers/vx/
H A Dvx_cmd.h215 * vx_send_pipe_cmd_params - fill first command word for pipe commands
234 * vx_set_stream_cmd_params - fill first command word for stream commands
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/
H A Dcurproc.h94 * fill-column: 80
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/
H A Dlinux-curproc.c108 * fill-column: 80
/linux-4.1.27/drivers/gpio/
H A Dgpiolib-of.c68 * @flags: a flags pointer to fill in
86 /* .of_xlate might decide to not fill in the flags, so clear it. */ of_get_named_gpiod_flags()
234 * @flags: a flags pointer to fill in
272 * To use this function you should allocate and fill mm_gc with:
/linux-4.1.27/arch/sh/kernel/
H A Dmachvec.c113 * Manually walk the vec, fill in anything that the board hasn't yet sh_mv_setup()
/linux-4.1.27/drivers/usb/gadget/
H A Dusbstring.c23 * usb_gadget_get_string - fill out a string descriptor
H A Dconfig.c25 * usb_descriptor_fillbuf - fill buffer with descriptors
45 /* fill buffer from src[] until null descriptor ptr */ usb_descriptor_fillbuf()
142 /* fill in pointers starting at "tmp", usb_copy_descriptors()
/linux-4.1.27/include/net/
H A Dfib_rules.h65 int (*fill)(struct fib_rule *, struct sk_buff *, member in struct:fib_rules_ops
H A Dwimax.h265 * @net_dev: [fill] Pointer to the &struct net_device this WiMAX
268 * @op_msg_from_user: [fill] Driver-specific operation to
273 * @op_rfkill_sw_toggle: [fill] Driver-specific operation to act on
282 * @op_reset: [fill] Driver specific operation to reset the
299 * @name: [fill] A way to identify this device. We need to register a
344 * 4. Fill all the fields marked with [fill]; once called
480 * ...fill up skb...
/linux-4.1.27/include/net/netfilter/
H A Dnf_conntrack_l3proto.h27 * Try to fill in the third arg: nhoff is offset of l3 proto
/linux-4.1.27/arch/mips/include/uapi/asm/
H A Dsiginfo.h14 #undef __ARCH_SI_TRAPNO /* exception code needs to fill this ... */
/linux-4.1.27/arch/mips/lantiq/
H A Dprom.c91 /* call the soc specific detetcion code and get it to fill soc_info */ prom_init()
/linux-4.1.27/arch/cris/arch-v10/mm/
H A Dfault.c34 /* fast TLB-fill fault handler
/linux-4.1.27/arch/cris/kernel/
H A Dvmlinux.lds.S114 * We fill to the next page, so we can discard all init
/linux-4.1.27/arch/m68k/include/asm/
H A Da.out-core.h21 * fill in the user structure for an a.out core dump
H A Dm53xxacr.h28 #define CACR_DNFB 0x00000400 /* Inhibited fill buffer */
/linux-4.1.27/Documentation/EDID/
H A Dedid.S176 .fill 7,2,0x0101 /* Unused */
248 .fill 12-(end1-start1), 1, 0x20 /* Padded spaces */
263 .fill 12-(end2-start2), 1, 0x20 /* Padded spaces */
270 .fill 12-(end3-start3), 1, 0x20 /* Padded spaces */
/linux-4.1.27/net/ceph/
H A Dsnapshot.c38 * to fill in snapc->seq and snapc->snaps[0..snap_count-1].
/linux-4.1.27/security/
H A Dlsm_audit.c35 * ipv4_skb_to_auditdata : fill auditdata from skb
37 * @ad : the audit data to fill
104 * ipv6_skb_to_auditdata : fill auditdata from skb
106 * @ad : the audit data to fill
/linux-4.1.27/tools/perf/tests/
H A Dtask-exit.c58 * perf_evlist__prepare_workload we'll fill in the only thread test__task_exit()
/linux-4.1.27/drivers/i2c/busses/
H A Di2c-cros-ec-tunnel.c71 * @buf: The buffer to fill. We assume that the buffer is big enough.
115 * @i2c_msgs: The i2c messages to to fill up.
139 * @i2c_msgs: The i2c messages to to fill up.
/linux-4.1.27/drivers/infiniband/hw/mlx5/
H A Dmem.c141 * umem - umem to use to fill the pages
145 * num_pages - total number of pages to fill
146 * pas - bus addresses array to fill
/linux-4.1.27/arch/tile/kernel/
H A Dhead_64.S217 .fill PAGE_SIZE,1,0
241 * We fill the PAGE_OFFSET pmd with huge pages with
256 * We fill the MEM_SV_START pmd with huge pages with
/linux-4.1.27/arch/x86/boot/compressed/
H A Dhead_32.S233 .fill 11,8,0
245 .fill BOOT_HEAP_SIZE, 1, 0
247 .fill BOOT_STACK_SIZE, 1, 0
H A Dhead_64.S451 .fill 11,8,0
458 .fill 11,8,0
469 .fill BOOT_HEAP_SIZE, 1, 0
471 .fill BOOT_STACK_SIZE, 1, 0
480 .fill 6*4096, 1, 0
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Dsi_dma.c62 * @ib: indirect buffer to fill with commands
96 * @ib: indirect buffer to fill with commands
143 * @ib: indirect buffer to fill with commands
H A Dni_dma.c308 * @ib: indirect buffer to fill with commands
344 * @ib: indirect buffer to fill with commands
392 * @ib: indirect buffer to fill with commands
440 * @ib: indirect buffer to fill with padding
/linux-4.1.27/drivers/video/fbdev/core/
H A Dcfbfillrect.c31 * Aligned pattern fill using 32/64-bit memory accesses
85 * Unaligned generic pattern fill using 32/64-bit memory accesses
370 MODULE_DESCRIPTION("Generic software accelerated fill rectangle");
H A Dsysfillrect.c21 * Aligned pattern fill using 32/64-bit memory accesses
74 * Unaligned generic pattern fill using 32/64-bit memory accesses
334 MODULE_DESCRIPTION("Generic fill rectangle (sys-to-sys)");
/linux-4.1.27/arch/mips/lib/
H A Dmemset.S150 beqz t1, .Lmemset_partial\@ /* no block to fill */
218 1: PTR_ADDIU a0, 1 /* fill bytewise */
266 * a1: char to fill with
/linux-4.1.27/sound/firewire/fireworks/
H A Dfireworks_command.c132 /* fill transaction header fields */ efw_transaction()
142 /* fill transaction command parameters */ efw_transaction()
166 /* fill transaction response parameters */ efw_transaction()
/linux-4.1.27/fs/logfs/
H A Djournal.c690 int err = 0, fill = super->s_je_fill; write_alias_journal() local
693 fill, ino, bix, level, child_no, be64_to_cpu(val)); write_alias_journal()
694 oa[fill].ino = cpu_to_be64(ino); write_alias_journal()
695 oa[fill].bix = cpu_to_be64(bix); write_alias_journal()
696 oa[fill].val = val; write_alias_journal()
697 oa[fill].level = (__force u8)level; write_alias_journal()
698 oa[fill].child_no = cpu_to_be16(child_no); write_alias_journal()
699 fill++; write_alias_journal()
700 if (fill >= sb->s_blocksize / sizeof(*oa)) { write_alias_journal()
702 fill = 0; write_alias_journal()
705 super->s_je_fill = fill; write_alias_journal()
/linux-4.1.27/drivers/net/fddi/skfp/
H A Dsmt.c1154 * fill values in UNA parameter
1164 * fill values in SDE parameter
1180 * fill in values in station state parameter
1220 * fill values in timestamp parameter
1261 * fill values in station policy parameter
1292 * fill values in latency equivalent parameter
1315 * fill values in MAC neighbors parameter
1328 * fill values in path descriptor
1382 * fill values in mac status
1409 * fill values in LEM status
1431 * fill version parameter
1446 * fill frame status capabilities
1470 * fill mac counter field
1482 * fill mac frame not copied counter
1494 * fill manufacturer field
1506 * fill user field
1517 * fill set count
1529 * fill echo data
/linux-4.1.27/drivers/net/ethernet/sgi/
H A Dmeth.h27 #define METH_RX_HEAD 34 /* status + 3 quad garbage-fill + 2 byte zero-pad */
85 u64 pad1:1;/*fill it with ones*/
86 u64 pad2:15;/*fill with 0*/
/linux-4.1.27/drivers/spi/
H A Dspi-bcm2835.c177 /* fill in tx fifo as much as possible */ bcm2835_spi_transfer_one_poll()
203 /* fill in fifo if we have gpio-cs bcm2835_spi_transfer_one_irq()
215 /* fill in tx fifo as much as possible */ bcm2835_spi_transfer_one_irq()
221 * empty) interrupt, upon which we will fill the TX FIFO with the bcm2835_spi_transfer_one_irq()
/linux-4.1.27/drivers/s390/cio/
H A Dqdio_setup.c192 /* fill in sbal */ setup_storage_lists()
196 /* fill in slib */ setup_storage_lists()
206 /* fill in sl */ setup_storage_lists()
487 /* fill input and output descriptors */ qdio_setup_irq()
/linux-4.1.27/drivers/staging/rtl8723au/include/
H A Dodm_debug.h53 /* For example, Tx/Rx descriptor to fill, Tx/Rx descriptor completed status, */
H A Drtl8723a_dm.h123 /* Add for Reading Initial Data Rate SEL Register 0x484 during watchdog. Using for fill tx desc. 2011.3.21 by Thomas */
/linux-4.1.27/drivers/staging/rtl8188eu/include/
H A Dodm_debug.h50 /* For example, Tx/Rx descriptor to fill, Tx/Rx descr. completed status, */
/linux-4.1.27/drivers/pcmcia/
H A Dpxa2xx_trizeps4.c73 /* just fill in fix states */ trizeps_pcmcia_socket_state()
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
H A Dfw_inc.c159 wil_err_fw(wil, "bad size for fill record: %zu\n", size); fw_handle_fill()
164 wil_err_fw(wil, "fill size too short: %zu\n", s); fw_handle_fill()
169 wil_err_fw(wil, "fill size not aligned: %zu\n", s); fw_handle_fill()
176 wil_dbg_fw(wil, "fill [0x%08x] <== 0x%08x, %zu bytes\n", fw_handle_fill()
/linux-4.1.27/arch/sparc/kernel/
H A Dprom_common.c121 * here, despite sharing the same interface. SPARC32 doesn't fill in 'buf',
H A Dspiterrs.S168 cmp %g3, 0x80 ! first win spill/fill trap
170 cmp %g3, 0xff ! last win spill/fill trap
/linux-4.1.27/drivers/acpi/
H A Devent.c121 /* fill the data */ acpi_bus_generate_netlink_event()
/linux-4.1.27/drivers/ata/
H A Dpata_isapnp.c68 /* acquire resources and fill host */ isapnp_init_one()
/linux-4.1.27/drivers/media/common/saa7146/
H A Dsaa7146_core.c250 __le32 *ptr, fill; saa7146_pgtable_build_single() local
275 /* safety; fill the page table up with the last valid page */ saa7146_pgtable_build_single()
276 fill = *(ptr-1); saa7146_pgtable_build_single()
278 *ptr++ = fill; saa7146_pgtable_build_single()
H A Dsaa7146_video.c222 __le32 fill; saa7146_pgtable_build() local
283 fill = *(ptr2-1); saa7146_pgtable_build()
285 *ptr2 = fill; saa7146_pgtable_build()
292 fill = *(ptr3-1); saa7146_pgtable_build()
294 *ptr3 = fill; saa7146_pgtable_build()
298 fill = pt1->cpu[m1]; saa7146_pgtable_build()
300 *ptr1 = fill; saa7146_pgtable_build()
/linux-4.1.27/include/net/irda/
H A Dircomm_core.h74 int max_data_size; /* The amount of data we can fill in each frame */
/linux-4.1.27/include/sound/
H A Dak4xxx-adda.h66 /* template should fill the following fields */
/linux-4.1.27/include/linux/mtd/
H A Dxip.h61 * Macro to fill instruction prefetch
/linux-4.1.27/arch/s390/kernel/
H A Dhead.S39 .fill 80-24,1,0x40 # bytes 24-79 are discarded !!
71 .fill 16,4,0x0
269 .Lcpuid:.fill 8,1,0
365 .fill 16,4,0x0
/linux-4.1.27/arch/ia64/sn/include/
H A Dioerror.h29 * data structure, and fill in the proper fields. This has the advantage
/linux-4.1.27/arch/arm/mach-tegra/
H A Dtegra.c114 * Finished with the static registrations now; fill in the missing tegra_dt_init()
/linux-4.1.27/arch/arm/plat-samsung/include/plat/
H A Ddevs.h92 * @pdev: Pointer to the device to fill in.
H A Dsdhci.h26 * @set: Pointer to the platform data to fill in.
/linux-4.1.27/fs/freevxfs/
H A Dvxfs_immed.c87 * @page: page frame to fill in.
/linux-4.1.27/kernel/locking/
H A Drtmutex-debug.c65 * We fill out the fields in the waiter to store the information about
/linux-4.1.27/lib/xz/
H A Dxz_dec_bcj.c440 * and try to fill the output buffer by decoding more data from the xz_dec_bcj_run()
474 * If there wasn't enough input to the next filter to fill xz_dec_bcj_run()
484 * yet, try to fill the temp buffer by decoding more data from the xz_dec_bcj_run()
486 * fill the actual output buffer by copying filtered data from temp. xz_dec_bcj_run()
/linux-4.1.27/net/netlabel/
H A Dnetlabel_user.c87 * Start an audit message using the type specified in @type and fill the audit
/linux-4.1.27/samples/bpf/
H A Dtest_verifier.c283 "check valid spill/fill",
288 /* fill it back into R2 */
299 "check corrupted spill/fill",
307 /* fill back into R0 should fail */
/linux-4.1.27/tools/testing/selftests/timers/
H A Dthreadtest.c121 /* fill the list */ independent_thread()
/linux-4.1.27/sound/soc/samsung/
H A Ds3c-i2s-v2.h87 * @i2s: Our local i2s structure to fill in.
/linux-4.1.27/drivers/isdn/hardware/mISDN/
H A Dhfc_pci.h203 u_char fill[0x2100 - 0x2082]; /* alignment */ member in struct:bzfifo
224 u_char fill[32768]; member in union:fifo_area
/linux-4.1.27/drivers/media/pci/cx18/
H A Dcx18-av-vbi.c70 /* u8 fill[]; Variable number of fill bytes */
/linux-4.1.27/drivers/staging/i2o/
H A Dmemory.c56 * i2o_dma_map_single - Map pointer to controller and fill in I2O message.
113 * i2o_dma_map_sg - Map a SG List to controller and fill in I2O message.
/linux-4.1.27/drivers/staging/unisys/visorchipset/
H A Dvisorchipset.h192 * to be the server for. visorchipset will fill in <responders>, to
204 * to be the client for. visorchipset will fill in <responders>, to
/linux-4.1.27/arch/xtensa/kernel/
H A Dhead.S375 .fill PAGE_SIZE, 1, 0
379 .fill PAGE_SIZE, 1, 0
/linux-4.1.27/block/
H A Dblk-lib.c281 * blkdev_issue_zeroout - zero-fill a block range
289 * Zero-fill a block range. If the discard flag is set and the block
/linux-4.1.27/block/partitions/
H A Daix.c126 * Allocates space for pvd and fill it with disk blocks at @lba
151 * Allocates space for lvn and fill it with disk blocks at @lba
/linux-4.1.27/drivers/acpi/acpica/
H A Dutbuffer.c97 /* Dump fill spaces */ acpi_ut_dump_buffer()
264 /* Dump fill spaces */ acpi_ut_dump_buffer_to_file()
/linux-4.1.27/drivers/uwb/
H A Dallocator.c336 /* fill the not available vector from the available bm */ uwb_rsv_find_best_allocation()
367 /* fill the safe and unsafe bitmaps */ uwb_rsv_find_best_allocation()
/linux-4.1.27/include/linux/sunrpc/
H A Dcache.h131 * a cache fill
140 * delayed awaiting cache-fill
/linux-4.1.27/include/media/
H A Dv4l2-dv-timings.h63 * If a valid timing for the given index is found, it will fill in @t and
84 * On success it will fill in @t with the found timings and it returns true.
/linux-4.1.27/arch/hexagon/kernel/
H A Dhead.S232 .fill _PAGE_SIZE,1,0
237 .fill _PAGE_SIZE,1,0
/linux-4.1.27/arch/ia64/include/asm/sn/
H A Dioc3.h49 char fill[0x170]; member in struct:ioc3_sioregs
77 char fill[0x4c]; member in struct:ioc3
/linux-4.1.27/sound/soc/intel/atom/
H A Dsst-mfld-platform-compress.c117 /* fill the device type and stream id to pass to SST driver */ sst_platform_compr_set_params()
119 pr_debug("compr_set_params: fill stream params ret_val = 0x%x\n", retval); sst_platform_compr_set_params()
/linux-4.1.27/drivers/media/pci/ttpci/
H A Dav7110_av.c745 int fill; write_ts_header2() local
748 fill = (TS_SIZE - 4) - length; write_ts_header2()
751 if (fill) write_ts_header2()
759 if (fill) { write_ts_header2()
760 buf[4] = fill - 1; write_ts_header2()
762 if (fill > 1) { write_ts_header2()
766 for (i = 6; i < fill + 4; i++) { write_ts_header2()
/linux-4.1.27/drivers/media/usb/stkwebcam/
H A Dstk-webcam.c304 unsigned char *fill = NULL; stk_isoc_handler() local
338 fill = fb->buffer + fb->v4lbuf.bytesused; stk_isoc_handler()
373 fill = fb->buffer; stk_isoc_handler()
378 fill = fb->buffer; stk_isoc_handler()
386 fill = fb->buffer; stk_isoc_handler()
402 memcpy(fill, iso_buf, framelen); stk_isoc_handler()
404 fill += framelen; stk_isoc_handler()
/linux-4.1.27/drivers/net/ethernet/sfc/
H A Drx.c30 /* Preferred number of descriptors to fill at once */
43 /* This is the percentage fill level below which new RX descriptors
319 * This will aim to fill the RX descriptor queue up to
321 * memory to do so, a slow fill will be scheduled.
336 /* Calculate current fill level, and exit if we don't need to fill */ efx_fast_push_rx_descriptors()
342 /* Record minimum fill level */ efx_fast_push_rx_descriptors()
/linux-4.1.27/drivers/video/fbdev/
H A Dtgafb.c655 /* Expand the color values to fill 32-bits. */ tgafb_mono_imageblit()
949 /* ??? We could implement ROP_XOR with opaque fill mode tgafb_fillrect()
958 /* Expand the color value to fill 8 pixels. */ tgafb_fillrect()
978 /* The DATA register holds the fill mask for block fill mode. tgafb_fillrect()
982 /* Enable block fill mode. */ tgafb_fillrect()
989 /* We can fill 2k pixels per operation. Notice blocks that fit tgafb_fillrect()
991 and fill more than one line per write. */ tgafb_fillrect()
1028 /* Disable block fill mode. */ tgafb_fillrect()
/linux-4.1.27/drivers/pci/hotplug/
H A Dacpiphp_ibm.c345 * @buffer: the kernel space buffer to fill
378 * @context: a pointer to our handle to fill when we find the device
379 * @rv: a return value to fill if desired
/linux-4.1.27/drivers/thermal/
H A Dclock_cooling.c335 * @state: fill this variable with the max cooling state.
359 * @state: fill this variable with the current cooling state.
409 * The OPP layer is used to fetch and fill the available frequencies for
/linux-4.1.27/drivers/usb/wusbcore/
H A Dwusbhc.c263 * - fill out ports_max, mmcies_max and mmcie_{add,rm} before calling.
265 * - fill out wusbhc->uwb_rc and refcount it before calling
266 * - fill out the wusbhc->sec_modes array
/linux-4.1.27/init/
H A Ddo_mounts.c607 void *fill = ramfs_fill_super; rootfs_mount() local
613 fill = shmem_fill_super; rootfs_mount()
615 return mount_nodev(fs_type, flags, data, fill); rootfs_mount()
/linux-4.1.27/arch/arm/mach-s3c24xx/
H A Diotiming-s3c2410.c290 * @bt: The bank timing to fill in (uses cached BANKCON)
355 * @iot: The IO timing information to fill out.
423 * @timings: The IO timing information to fill out.
/linux-4.1.27/sound/core/
H A Dpcm_misc.c36 unsigned char silence[8]; /* silence data to fill */
381 * Return: The format pattern to fill or %NULL if error.
423 /* non-zero samples, fill using a loop */ snd_pcm_format_set_silence()
/linux-4.1.27/drivers/md/
H A Ddm-cache-metadata.h127 * structures and fill in the hints in whatever order it wishes.
/linux-4.1.27/drivers/hwtracing/coresight/
H A Dcoresight-tpiu.c67 /* TODO: fill this up */ tpiu_enable_hw()
/linux-4.1.27/drivers/mtd/ubi/
H A Dmisc.c102 * reserved, and if necessary, reserves more PEBs to fill that gap, according
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
H A Den_selftest.c72 for (i = 0; i < packet_size; ++i) /* fill our packet */ mlx4_en_test_loopback_xmit()

Completed in 4008 milliseconds

12345678