Home
last modified time | relevance | path

Searched refs:f (Results 26 – 50 of 2127) sorted by relevance

12345678910>>...86

/dragonfly/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_gzip.c111 f->data = data; in archive_write_add_filter_gzip()
112 f->open = &archive_compressor_gzip_open; in archive_write_add_filter_gzip()
114 f->close = &archive_compressor_gzip_close; in archive_write_add_filter_gzip()
115 f->free = &archive_compressor_gzip_free; in archive_write_add_filter_gzip()
116 f->code = ARCHIVE_FILTER_GZIP; in archive_write_add_filter_gzip()
117 f->name = "gzip"; in archive_write_add_filter_gzip()
146 f->data = NULL; in archive_compressor_gzip_free()
202 archive_set_error(f->archive, ENOMEM, in archive_compressor_gzip_open()
246 f->data = data; in archive_compressor_gzip_open()
262 archive_set_error(f->archive, ENOMEM, in archive_compressor_gzip_open()
[all …]
H A Darchive_write_add_filter_grzip.c73 f->name = "grzip"; in archive_write_add_filter_grzip()
74 f->code = ARCHIVE_FILTER_GRZIP; in archive_write_add_filter_grzip()
75 f->data = data; in archive_write_add_filter_grzip()
76 f->open = archive_write_grzip_open; in archive_write_add_filter_grzip()
77 f->options = archive_write_grzip_options; in archive_write_add_filter_grzip()
78 f->write = archive_write_grzip_write; in archive_write_add_filter_grzip()
79 f->close = archive_write_grzip_close; in archive_write_add_filter_grzip()
80 f->free = archive_write_grzip_free; in archive_write_add_filter_grzip()
93 (void)f; /* UNUSED */ in archive_write_grzip_options()
103 archive_write_grzip_open(struct archive_write_filter *f) in archive_write_grzip_open() argument
[all …]
H A Darchive_write.c203 f = calloc(1, sizeof(*f)); in __archive_write_allocate_filter()
211 return f; in __archive_write_allocate_filter()
231 r = (f->write)(f, buff, length); in __archive_write_filter()
256 ret = (f->open)(f); in __archive_write_open_filter()
282 for (f = a->filter_first; f != NULL; f = f->next_filter) { in __archive_write_filters_close()
286 ret1 = (f->close)(f); in __archive_write_filters_close()
795 f = f->next_filter; in filter_lookup()
798 return f; in filter_lookup()
805 return f == NULL ? -1 : f->code; in _archive_filter_code()
812 return f != NULL ? f->name : NULL; in _archive_filter_name()
[all …]
H A Darchive_write_add_filter_zstd.c103 f->data = data; in archive_write_add_filter_zstd()
104 f->open = &archive_compressor_zstd_open; in archive_write_add_filter_zstd()
106 f->close = &archive_compressor_zstd_close; in archive_write_add_filter_zstd()
107 f->free = &archive_compressor_zstd_free; in archive_write_add_filter_zstd()
108 f->code = ARCHIVE_FILTER_ZSTD; in archive_write_add_filter_zstd()
109 f->name = "zstd"; in archive_write_add_filter_zstd()
146 f->data = NULL; in archive_compressor_zstd_free()
256 archive_set_error(f->archive, ENOMEM, in archive_compressor_zstd_open()
262 f->write = archive_compressor_zstd_write; in archive_compressor_zstd_open()
339 archive_set_error(f->archive, in drive_compressor()
[all …]
H A Darchive_write_add_filter_lzop.c151 f->name = "lzop"; in archive_write_add_filter_lzop()
152 f->code = ARCHIVE_FILTER_LZOP; in archive_write_add_filter_lzop()
153 f->data = data; in archive_write_add_filter_lzop()
154 f->open = archive_write_lzop_open; in archive_write_add_filter_lzop()
156 f->write = archive_write_lzop_write; in archive_write_add_filter_lzop()
157 f->close = archive_write_lzop_close; in archive_write_add_filter_lzop()
158 f->free = archive_write_lzop_free; in archive_write_add_filter_lzop()
256 archive_set_error(f->archive, ENOMEM, in archive_write_lzop_open()
326 header_bytes = make_header(f); in drive_compressor()
414 r = drive_compressor(f); in archive_write_lzop_write()
[all …]
/dragonfly/gnu/usr.bin/rcs/lib/
H A Drcslex.c870 # define Iclose(f) fclose(f) argument
888 (* f->deallocate) (f);
902 (vm_size_t) (f->lim - f->base)
980 for (f = rilebuf; f->base; f++)
1060 f->ptr = f->base;
1061 f->lim = f->base + s;
1064 f->readlim = f->base;
1146 void testIerror(f) FILE *f; { if (ferror(f)) Ierror(); } in testIerror() argument
1149 void Ifclose(f) RILE *f; { if (f && Iclose(f)!=0) Ierror(); } in Ifclose() argument
1150 void Ofclose(f) FILE *f; { if (f && fclose(f)!=0) Oerror(); } in Ofclose() argument
[all …]
/dragonfly/contrib/gcc-4.7/include/
H A Dfilenames.h40 # define HAS_DRIVE_SPEC(f) HAS_DOS_DRIVE_SPEC (f) argument
42 # define IS_ABSOLUTE_PATH(f) IS_DOS_ABSOLUTE_PATH (f) argument
49 # define HAS_DRIVE_SPEC(f) (0)
51 # define IS_ABSOLUTE_PATH(f) IS_UNIX_ABSOLUTE_PATH (f)
58 #define HAS_DRIVE_SPEC_1(dos_based, f) \ argument
59 ((f)[0] && ((f)[1] == ':') && (dos_based))
63 #define STRIP_DRIVE_SPEC(f) ((f) + 2) argument
66 #define IS_DOS_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (1, f) argument
67 #define HAS_DOS_DRIVE_SPEC(f) HAS_DRIVE_SPEC_1 (1, f) argument
70 #define IS_UNIX_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (0, f) argument
[all …]
/dragonfly/contrib/binutils-2.34/gas/
H A Dehopt.c104 fragS *f; in get_cie_info() local
127 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
130 f = f->fr_next; in get_cie_info()
143 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
146 f = f->fr_next; in get_cie_info()
159 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
162 f = f->fr_next; in get_cie_info()
180 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
183 f = f->fr_next; in get_cie_info()
204 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
[all …]
/dragonfly/contrib/binutils-2.27/gas/
H A Dehopt.c105 fragS *f; in get_cie_info() local
128 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
131 f = f->fr_next; in get_cie_info()
144 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
147 f = f->fr_next; in get_cie_info()
160 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
163 f = f->fr_next; in get_cie_info()
181 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
184 f = f->fr_next; in get_cie_info()
205 while (f != NULL && offset >= f->fr_fix) in get_cie_info()
[all …]
/dragonfly/contrib/diffutils/src/
H A Difdef.c166 f = format_group (thenout, f, ':', groups); in format_group()
169 f = format_group (elseout, f + 1, ')', groups); in format_group()
170 if (*f) in format_group()
171 f++; in format_group()
192 f = do_printf_spec (out, f - 2, 0, 0, groups); in format_group()
291 f = do_printf_spec (out, f - 2, file, from, 0); in print_ifdef_lines()
292 if (f) in print_ifdef_lines()
295 f = f1; in print_ifdef_lines()
315 f++; in do_printf_spec()
333 f = scan_char_literal (f, &value); in do_printf_spec()
[all …]
H A Danalyze.c52 int f; in discard_confusing_lines() local
61 for (f = 0; f < 2; f++) in discard_confusing_lines()
88 for (f = 0; f < 2; f++) in discard_confusing_lines()
119 for (f = 0; f < 2; f++) in discard_confusing_lines()
228 for (f = 0; f < 2; f++) in discard_confusing_lines()
263 for (f = 0; f < 2; f++) in shift_boundaries()
501 for (f = 0; f < 2; f++) in diff_2_files()
507 for (f = 0; f < 2; f++) in diff_2_files()
688 for (f = 0; f < 2; f++) in diff_2_files()
701 for (f = 0; f < 2; ++f) in diff_2_files()
[all …]
/dragonfly/contrib/gdb-7/include/
H A Dfilenames.h42 # define HAS_DRIVE_SPEC(f) HAS_DOS_DRIVE_SPEC (f) argument
44 # define IS_ABSOLUTE_PATH(f) IS_DOS_ABSOLUTE_PATH (f) argument
51 # define HAS_DRIVE_SPEC(f) (0)
53 # define IS_ABSOLUTE_PATH(f) IS_UNIX_ABSOLUTE_PATH (f)
60 #define HAS_DRIVE_SPEC_1(dos_based, f) \ argument
61 ((f)[0] && ((f)[1] == ':') && (dos_based))
65 #define STRIP_DRIVE_SPEC(f) ((f) + 2) argument
68 #define IS_DOS_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (1, f) argument
69 #define HAS_DOS_DRIVE_SPEC(f) HAS_DRIVE_SPEC_1 (1, f) argument
72 #define IS_UNIX_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (0, f) argument
[all …]
/dragonfly/contrib/binutils-2.34/include/
H A Dfilenames.h42 # define HAS_DRIVE_SPEC(f) HAS_DOS_DRIVE_SPEC (f) argument
44 # define IS_ABSOLUTE_PATH(f) IS_DOS_ABSOLUTE_PATH (f) argument
51 # define HAS_DRIVE_SPEC(f) (0)
53 # define IS_ABSOLUTE_PATH(f) IS_UNIX_ABSOLUTE_PATH (f)
60 #define HAS_DRIVE_SPEC_1(dos_based, f) \ argument
61 ((f)[0] && ((f)[1] == ':') && (dos_based))
65 #define STRIP_DRIVE_SPEC(f) ((f) + 2) argument
68 #define IS_DOS_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (1, f) argument
69 #define HAS_DOS_DRIVE_SPEC(f) HAS_DRIVE_SPEC_1 (1, f) argument
72 #define IS_UNIX_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (0, f) argument
[all …]
/dragonfly/contrib/gcc-8.0/include/
H A Dfilenames.h42 # define HAS_DRIVE_SPEC(f) HAS_DOS_DRIVE_SPEC (f) argument
44 # define IS_ABSOLUTE_PATH(f) IS_DOS_ABSOLUTE_PATH (f) argument
51 # define HAS_DRIVE_SPEC(f) (0)
53 # define IS_ABSOLUTE_PATH(f) IS_UNIX_ABSOLUTE_PATH (f)
60 #define HAS_DRIVE_SPEC_1(dos_based, f) \ argument
61 ((f)[0] && ((f)[1] == ':') && (dos_based))
65 #define STRIP_DRIVE_SPEC(f) ((f) + 2) argument
68 #define IS_DOS_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (1, f) argument
69 #define HAS_DOS_DRIVE_SPEC(f) HAS_DRIVE_SPEC_1 (1, f) argument
72 #define IS_UNIX_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (0, f) argument
[all …]
/dragonfly/contrib/binutils-2.27/include/
H A Dfilenames.h42 # define HAS_DRIVE_SPEC(f) HAS_DOS_DRIVE_SPEC (f) argument
44 # define IS_ABSOLUTE_PATH(f) IS_DOS_ABSOLUTE_PATH (f) argument
51 # define HAS_DRIVE_SPEC(f) (0)
53 # define IS_ABSOLUTE_PATH(f) IS_UNIX_ABSOLUTE_PATH (f)
60 #define HAS_DRIVE_SPEC_1(dos_based, f) \ argument
61 ((f)[0] && ((f)[1] == ':') && (dos_based))
65 #define STRIP_DRIVE_SPEC(f) ((f) + 2) argument
68 #define IS_DOS_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (1, f) argument
69 #define HAS_DOS_DRIVE_SPEC(f) HAS_DRIVE_SPEC_1 (1, f) argument
72 #define IS_UNIX_ABSOLUTE_PATH(f) IS_ABSOLUTE_PATH_1 (0, f) argument
[all …]
/dragonfly/contrib/cvs-1.12/diff/
H A Difdef.c127 f++;
156 f++;
165 f = format_group (thendoit, f, ':', groups);
166 if (*f)
168 f = format_group (elsedoit, f + 1, ')', groups);
170 f++;
196 if (!f)
199 c = *f++;
203 f = scan_char_literal (f, &value);
238 return f;
[all …]
/dragonfly/sys/tools/
H A Dpcidevs2h.awk53 i = 3; f = 4;
65 f++
70 if (f < NF)
72 f++
77 if (f < NF)
79 i++; f++;
98 i=4; f = 5;
110 f++
117 f++
122 if (f < NF)
[all …]
H A Dpccarddevs2h.awk76 f++
80 line = line $f
81 if (f < NF)
83 f++
86 line = line $f
87 if (f < NF)
89 f++
130 f = 5;
140 z = z $f " "
141 f++
[all …]
/dragonfly/stand/lib/
H A Dread.c80 if (f->f_flags & F_RAW) { in read()
82 errno = (f->f_dev->dv_strategy)(f->f_devdata, F_READ, in read()
86 f->f_offset += resid; in read()
100 ccount = imin(f->f_ralen, resid); in read()
102 bcopy(f->f_rabuf + f->f_raoffset, dest, ccount); in read()
103 f->f_raoffset += ccount; in read()
104 f->f_ralen -= ccount; in read()
114 if ((errno = (f->f_ops->fo_read)(f, dest, resid, &cresid))) in read()
120 if ((errno = (f->f_ops->fo_read)(f, f->f_rabuf, SOPEN_RASIZE, &cresid))) in read()
122 f->f_raoffset = 0; in read()
[all …]
/dragonfly/sys/vfs/nfs/
H A Dxdr_subs.h55 #define fxdr_nfsv2time(f, t) \ argument
58 if (((struct nfsv2_time *)(f))->nfsv2_usec != 0xffffffff) \
63 #define txdr_nfsv2time(f, t) \ argument
66 if ((f)->tv_nsec != -1) \
72 #define fxdr_nfsv3time(f, t) \ argument
77 #define txdr_nfsv3time(f, t) \ argument
83 #define fxdr_hyper(f) \ argument
84 ((((u_quad_t)ntohl(((u_int32_t *)(f))[0])) << 32) | \
85 (u_quad_t)(ntohl(((u_int32_t *)(f))[1])))
86 #define txdr_hyper(f, t) \ argument
[all …]
/dragonfly/sys/cpu/x86_64/include/
H A Dasm_mjgmacros.h61 jne 80f
73 jne 80f
85 jne 1f
89 jne 1f
106 jne 80f
182 jmp 1f
189 jne 1f
200 jne 2f
205 jne 2f
210 jne 2f
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/
H A Dcmath52 // Constant @f$ \pi @f$.
54 // Constant @f$ \pi / 2 @f$.
56 // Constant @f$ \pi / 3 @f$.
58 // Constant @f$ \pi / 4 @f$.
62 // Constant @f$ 1 / \pi @f$.
64 // Constant @f$ 2 / \pi @f$.
71 // Constant @f$ 1 / e @f$.
77 // Constant @f$ \ln(2) @f$.
79 // Constant @f$ \ln(3) @f$.
81 // Constant @f$ \ln(10) @f$.
[all …]
/dragonfly/usr.bin/calendar/calendars/fr_FR.UTF-8/
H A Dcalendar.fetes26 01/02 Bonne fête aux Basile !
32 01/04 Bonne fête aux Angèle !
35 01/05 Bonne fête aux Gerlac !
44 01/08 Bonne fête aux Peggy !
47 01/09 Bonne fête aux Alix !
50 01/11 Bonne fête aux Paulin !
53 01/12 Bonne fête aux Alfred !
59 01/14 Bonne fête aux Nina !
80 01/21 Bonne fête aux Avit !
95 01/31 Bonne fête aux Jean !
[all …]
/dragonfly/stand/boot/common/
H A Ddevopen.c47 f->f_flags |= F_DEVDESC; in devopen()
48 f->f_devdata = dev; in devopen()
51 f->f_dev = dev->d_dev; in devopen()
53 devclose(f); in devopen()
60 devclose(struct open_file *f) in devclose() argument
64 free(f->f_devdata); in devclose()
65 f->f_devdata = NULL; in devclose()
67 f->f_flags &= ~F_DEVDESC; in devclose()
76 free(f->f_devdata); in devreplace()
77 f->f_flags &= ~F_DEVDESC; in devreplace()
[all …]
/dragonfly/contrib/nvi2/common/
H A Dutil.h11 #define FL_INIT(l, f) (l) = (f) /* Specific flags location. */ argument
12 #define FL_SET(l, f) ((l) |= (f)) argument
13 #define FL_CLR(l, f) ((l) &= ~(f)) argument
14 #define FL_ISSET(l, f) ((l) & (f)) argument
16 #define LF_INIT(f) FL_INIT(flags, f) /* Local variable flags. */ argument
17 #define LF_SET(f) FL_SET(flags, f) argument
18 #define LF_CLR(f) FL_CLR(flags, f) argument
19 #define LF_ISSET(f) FL_ISSET(flags, f) argument
22 #define F_SET(p, f) FL_SET((p)->flags, f) argument
23 #define F_CLR(p, f) FL_CLR((p)->flags, f) argument
[all …]

12345678910>>...86