Searched refs:sf (Results 1 - 25 of 192) sorted by relevance

12345678

/freebsd-13-stable/sys/arm/include/
H A Dsf_buf.h35 sf_buf_map(struct sf_buf *sf, int flags) argument
38 pmap_qenter(sf->kva, &(sf->m), 1);
42 sf_buf_unmap(struct sf_buf *sf) argument
45 pmap_qremove(sf->kva, 1);
/freebsd-13-stable/sys/mips/include/
H A Dsf_buf.h37 sf_buf_kva(struct sf_buf *sf) argument
41 m = (vm_page_t)sf;
46 sf_buf_page(struct sf_buf *sf) argument
49 return ((vm_page_t)sf);
55 sf_buf_map(struct sf_buf *sf, int flags) argument
58 pmap_qenter(sf->kva, &sf->m, 1);
62 sf_buf_unmap(struct sf_buf *sf) argument
65 pmap_qremove(sf->kva, 1);
/freebsd-13-stable/sys/riscv/include/
H A Dsf_buf.h39 sf_buf_kva(struct sf_buf *sf) argument
42 return (PHYS_TO_DMAP(VM_PAGE_TO_PHYS((vm_page_t)sf)));
46 sf_buf_page(struct sf_buf *sf) argument
49 return ((vm_page_t)sf);
/freebsd-13-stable/sys/arm64/include/
H A Dsf_buf.h39 sf_buf_kva(struct sf_buf *sf) argument
42 return (PHYS_TO_DMAP(VM_PAGE_TO_PHYS((vm_page_t)sf)));
46 sf_buf_page(struct sf_buf *sf) argument
49 return ((vm_page_t)sf);
/freebsd-13-stable/sys/amd64/include/
H A Dsf_buf.h41 sf_buf_kva(struct sf_buf *sf) argument
44 return (PHYS_TO_DMAP(VM_PAGE_TO_PHYS((vm_page_t)sf)));
48 sf_buf_page(struct sf_buf *sf) argument
51 return ((vm_page_t)sf);
/freebsd-13-stable/stand/libsa/
H A Dsplitfs.c47 static int split_openfile(struct split_file *sf);
66 split_file_destroy(struct split_file *sf) argument
70 if (sf->filesc > 0) {
71 for (i = 0; i < sf->filesc; i++) {
72 free(sf->filesv[i]);
73 free(sf->descsv[i]);
75 free(sf->filesv);
76 free(sf->descsv);
78 free(sf);
82 split_openfile(struct split_file *sf) argument
108 struct split_file *sf; local
184 struct split_file *sf; local
197 struct split_file *sf; local
240 struct split_file *sf; local
307 struct split_file *sf = (struct split_file *)f->f_fsdata; local
[all...]
/freebsd-13-stable/lib/libc/sys/
H A Dcompat-ino64.h76 __statfs11_to_statfs(const struct freebsd11_statfs *sf11, struct statfs *sf) argument
79 sf->f_version = STATFS_VERSION;
80 sf->f_type = sf11->f_type;
81 sf->f_flags = sf11->f_flags;
82 sf->f_bsize = sf11->f_bsize;
83 sf->f_iosize = sf11->f_iosize;
84 sf->f_blocks = sf11->f_blocks;
85 sf->f_bfree = sf11->f_bfree;
86 sf->f_bavail = sf11->f_bavail;
87 sf
[all...]
/freebsd-13-stable/sys/netinet/tcp_stacks/
H A Dsack_filter.c93 #define sack_blk_used(sf, i) ((1 << i) & sf->sf_bits)
94 #define sack_blk_set(sf, i) ((1 << i) | sf->sf_bits)
95 #define sack_blk_clr(sf, i) (~(1 << i) & sf->sf_bits)
101 sack_filter_clear(struct sack_filter *sf, tcp_seq seq) argument
103 sf->sf_ack = seq;
104 sf->sf_bits = 0;
105 sf
114 sack_filter_prune(struct sack_filter *sf, tcp_seq th_ack) argument
145 is_sack_on_board(struct sack_filter *sf, struct sackblk *b) argument
247 sack_filter_old(struct sack_filter *sf, struct sackblk *in, int numblks) argument
287 sack_move_to_empty(struct sack_filter *sf, uint32_t idx) argument
305 sack_filter_new(struct sack_filter *sf, struct sackblk *in, int numblks, tcp_seq th_ack) argument
370 sack_blocks_overlap_or_meet(struct sack_filter *sf, struct sackblk *sb, uint32_t skip) argument
422 sack_collapse(struct sack_filter *sf, int32_t src, int32_t into) argument
437 sack_board_collapse(struct sack_filter *sf) argument
478 sack_filter_dump(FILE *out, struct sack_filter *sf) argument
499 sack_filter_blks(struct sack_filter *sf, struct sackblk *in, int numblks, tcp_seq th_ack) argument
561 sack_filter_reject(struct sack_filter *sf, struct sackblk *in) argument
628 struct sack_filter sf; local
[all...]
H A Dsack_filter.h52 void sack_filter_clear(struct sack_filter *sf, tcp_seq seq);
53 int sack_filter_blks(struct sack_filter *sf, struct sackblk *in, int numblks,
55 void sack_filter_reject(struct sack_filter *sf, struct sackblk *in);
/freebsd-13-stable/lib/libbsdstat/
H A Dbsdstat.c40 bsdstat_setfmt(struct bsdstat *sf, const char *fmt0) argument
50 for (i = 0; i < sf->nstats; i++)
51 if (strcasecmp(tok, sf->stats[i].name) == 0)
53 if (i >= sf->nstats) {
55 "skipped\n", sf->name, tok);
58 if (j+4 > (int) sizeof(sf->fmts)) {
60 "stopped at %s\n", sf->name, tok);
64 sf->fmts[j++] = ' ';
65 sf->fmts[j++] = FMTS_IS_STAT;
66 sf
74 bsdstat_collect(struct bsdstat *sf) argument
80 bsdstat_update_tot(struct bsdstat *sf) argument
86 bsdstat_get(struct bsdstat *sf, int s, char b[] __unused, size_t bs __unused) argument
93 bsdstat_print_header(struct bsdstat *sf, FILE *fd) argument
112 bsdstat_print_current(struct bsdstat *sf, FILE *fd) argument
133 bsdstat_print_total(struct bsdstat *sf, FILE *fd) argument
154 bsdstat_print_verbose(struct bsdstat *sf, FILE *fd) argument
174 bsdstat_print_fields(struct bsdstat *sf, FILE *fd) argument
192 bsdstat_init(struct bsdstat *sf, const char *name, const struct fmt *stats, int nstats) argument
[all...]
/freebsd-13-stable/sys/kern/
H A Dsubr_sfbuf.c117 struct sf_buf *sf; local
127 LIST_FOREACH(sf, hash_list, list_entry) {
128 if (sf->m == m) {
129 sf->ref_count++;
130 if (sf->ref_count == 1) {
131 TAILQ_REMOVE(&sf_buf_freelist, sf, free_entry);
136 sf_buf_shootdown(sf, flags);
141 while ((sf = TAILQ_FIRST(&sf_buf_freelist)) == NULL) {
156 TAILQ_REMOVE(&sf_buf_freelist, sf, free_entry);
157 if (sf
177 sf_buf_free(struct sf_buf *sf) argument
199 sf_buf_ref(struct sf_buf *sf) argument
219 struct sf_buf *sf; local
[all...]
/freebsd-13-stable/sys/sys/
H A Dsf_buf.h116 sf_buf_kva(struct sf_buf *sf) argument
119 return (PHYS_TO_DMAP(VM_PAGE_TO_PHYS((vm_page_t)sf)));
121 return (sf->kva);
125 sf_buf_page(struct sf_buf *sf) argument
128 return ((vm_page_t)sf);
130 return (sf->m);
137 sf_buf_map(struct sf_buf *sf, int flags) argument
140 pmap_qenter(sf->kva, &sf->m, 1);
144 sf_buf_unmap(struct sf_buf *sf) argument
169 sf_buf_free(struct sf_buf *sf) argument
174 sf_buf_ref(struct sf_buf *sf) argument
[all...]
/freebsd-13-stable/sys/amd64/ia32/
H A Dia32_signal.c338 struct ia32_sigframe3 sf, *fp; local
359 td->td_sigstk.ss_size - sizeof(sf));
365 sf.sf_signum = sig;
366 sf.sf_scp = (register_t)&fp->sf_siginfo.si_sc;
367 bzero(&sf.sf_siginfo, sizeof(sf.sf_siginfo));
370 sf.sf_arg2 = (register_t)&fp->sf_siginfo;
371 sf.sf_siginfo.si_signo = sig;
372 sf.sf_siginfo.si_code = ksi->ksi_code;
373 sf
438 struct ia32_sigframe4 sf, *sfp; local
549 struct ia32_sigframe sf, *sfp; local
[all...]
/freebsd-13-stable/sys/cddl/compat/opensolaris/sys/
H A Dvm.h54 zfs_unmap_page(struct sf_buf *sf) argument
56 sf_buf_free(sf);
/freebsd-13-stable/contrib/netbsd-tests/bin/df/
H A Dgetmntinfo.c70 struct statvfs *sf; local
75 sf = getnewstatvfs();
76 *sf = *tmpl;
77 total = (int64_t)(u_long)sf->f_blocks * sf->f_bsize;
79 sf->f_bfree = (total - used) / sf->f_bsize;
80 sf->f_bavail = (total * (100 - minfree[i]) / 100 -
81 used) / (int)sf->f_bsize;
82 sf
[all...]
/freebsd-13-stable/bin/pkill/tests/
H A Dpgrep-l_test.sh10 ln -sf /bin/sleep $sleep
H A Dpgrep-v_test.sh10 ln -sf /bin/sleep $sleep
H A Dpkill-P_test.sh11 ln -sf /bin/sleep $sleep
H A Dpgrep-U_test.sh11 ln -sf /bin/sleep $sleep
27 ln -sf /bin/sleep $sleep
H A Dpgrep-_g_test.sh11 ln -sf /bin/sleep $sleep
27 ln -sf /bin/sleep $sleep
H A Dpgrep-g_test.sh11 ln -sf /bin/sleep $sleep
26 ln -sf /bin/sleep $sleep
H A Dpgrep-s_test.sh11 ln -sf /bin/sleep $sleep
26 ln -sf /bin/sleep $sleep
H A Dpkill-U_test.sh11 ln -sf /bin/sleep $sleep
29 ln -sf /bin/sleep $sleep
/freebsd-13-stable/sys/mips/mips/
H A Duio_machdep.c66 struct sf_buf *sf; local
98 sf = NULL;
107 sf = sf_buf_alloc(m, 0);
108 cp = (char *)sf_buf_kva(sf) + page_offset;
118 if (sf != NULL)
119 sf_buf_free(sf);
132 if (sf != NULL)
133 sf_buf_free(sf);
/freebsd-13-stable/contrib/googletest/ci/
H A Dinstall-linux.sh47 ln -sf /usr/bin/ccache $HOME/bin/${CXX};
48 ln -sf /usr/bin/ccache $HOME/bin/${CC};

Completed in 139 milliseconds

12345678