Home
last modified time | relevance | path

Searched refs:F (Results 1 – 25 of 599) sorted by relevance

12345678910>>...24

/titanic_52/usr/src/cmd/audio/include/
H A Daudio_device.h45 * 'F' is an open audio file descriptor.
49 #define audio_get_play_config(F, H) \ argument
50 audio__setplayhdr((F), (H), AUDIO__PLAY)
51 #define audio_get_record_config(F, H) \ argument
52 audio__setplayhdr((F), (H), AUDIO__RECORD)
57 * 'F' is an open audio file descriptor.
65 #define audio_set_play_config(F, H) \ argument
66 audio__setplayhdr((F), (H), AUDIO__SET|AUDIO__PLAY)
67 #define audio_set_record_config(F, H) \ argument
68 audio__setplayhdr((F), (
76 audio_pause(F) global() argument
78 audio_pause_play(F) global() argument
80 audio_pause_record(F) global() argument
83 audio_resume(F) global() argument
85 audio_resume_play(F) global() argument
87 audio_resume_record(F) global() argument
97 audio_get_play_port(F,V) global() argument
99 audio_get_record_port(F,V) global() argument
101 audio_get_play_balance(F,V) global() argument
103 audio_get_record_balance(F,V) global() argument
105 audio_get_play_samples(F,V) global() argument
107 audio_get_record_samples(F,V) global() argument
109 audio_get_play_error(F,V) global() argument
111 audio_get_record_error(F,V) global() argument
113 audio_get_play_eof(F,V) global() argument
116 audio_get_play_open(F,V) global() argument
118 audio_get_record_open(F,V) global() argument
120 audio_get_play_active(F,V) global() argument
122 audio_get_record_active(F,V) global() argument
124 audio_get_play_waiting(F,V) global() argument
126 audio_get_record_waiting(F,V) global() argument
135 audio_set_play_port(F,V) global() argument
137 audio_set_record_port(F,V) global() argument
144 audio_set_play_balance(F,V) global() argument
146 audio_set_record_balance(F,V) global() argument
148 audio_set_play_samples(F,V) global() argument
150 audio_set_record_samples(F,V) global() argument
152 audio_set_play_error(F,V) global() argument
154 audio_set_record_error(F,V) global() argument
156 audio_set_play_eof(F,V) global() argument
160 audio_set_play_waiting(F,V) global() argument
162 audio_set_record_waiting(F,V) global() argument
173 audio_get_play_gain(F,V) global() argument
175 audio_get_record_gain(F,V) global() argument
177 audio_get_monitor_gain(F,V) global() argument
180 audio_set_play_gain(F,V) global() argument
182 audio_set_record_gain(F,V) global() argument
184 audio_set_monitor_gain(F,V) global() argument
191 audio_flush(F) global() argument
193 audio_flush_play(F) global() argument
195 audio_flush_record(F) global() argument
[all...]
/titanic_52/usr/src/uts/i86pc/boot/
H A Dboot_keyboard_table.c36 #define F | KBTYPE_FUNC macro
54 /* 02 */ '1', '!', NOP, 0x78 F,
55 /* 03 */ '2', '@', NOP, 0x79 F,
56 /* 04 */ '3', '#', NOP, 0x7a F,
57 /* 05 */ '4', '$', NOP, 0x7b F,
58 /* 06 */ '5', '%', NOP, 0x7c F,
59 /* 07 */ '6', '^', '^'C, 0x7d F,
60 /* 08 */ '7', '&', NOP, 0x7e F,
61 /* 09 */ '8', '*', NOP, 0x7f F,
62 /* 0a */ '9', '(', NOP, 0x80 F,
[all...]
/titanic_52/usr/src/cmd/audio/utilities/
H A DAudioTypePcm.cc116 char2short(char *&F, short *&T) { *T++ = ((short)*F++) << 8; } in char2short() argument
118 char2long(char *&F, long *&T) { *T++ = ((long)*F++) << 24; } in char2long() argument
120 char2float(char *&F, float *&T) { *T++ = char2dbl(*F++); } in char2float() argument
122 char2double(char *&F, double *&T) { *T++ = char2dbl(*F++); } in char2double() argument
124 char2ulaw(char *&F, ulaw *&T) { *T++ = audio_c2u(*F); argument
126 char2alaw(char * & F,alaw * & T) char2alaw() argument
129 short2char(short * & F,char * & T) short2char() argument
131 short2long(short * & F,long * & T) short2long() argument
133 short2float(short * & F,float * & T) short2float() argument
135 short2double(short * & F,double * & T) short2double() argument
137 short2ulaw(short * & F,ulaw * & T) short2ulaw() argument
139 short2alaw(short * & F,alaw * & T) short2alaw() argument
142 long2char(long * & F,char * & T) long2char() argument
144 long2short(long * & F,short * & T) long2short() argument
146 long2float(long * & F,float * & T) long2float() argument
148 long2double(long * & F,double * & T) long2double() argument
150 long2ulaw(long * & F,ulaw * & T) long2ulaw() argument
152 long2alaw(long * & F,alaw * & T) long2alaw() argument
155 float2char(float * & F,char * & T) float2char() argument
157 float2short(float * & F,short * & T) float2short() argument
159 float2long(float * & F,long * & T) float2long() argument
161 float2double(float * & F,double * & T) float2double() argument
163 float2ulaw(float * & F,ulaw * & T) float2ulaw() argument
165 float2alaw(float * & F,alaw * & T) float2alaw() argument
168 double2char(double * & F,char * & T) double2char() argument
170 double2short(double * & F,short * & T) double2short() argument
172 double2long(double * & F,long * & T) double2long() argument
174 double2float(double * & F,float * & T) double2float() argument
176 double2ulaw(double * & F,ulaw * & T) double2ulaw() argument
178 double2alaw(double * & F,alaw * & T) double2alaw() argument
181 ulaw2char(ulaw * & F,char * & T) ulaw2char() argument
183 ulaw2alaw(ulaw * & F,alaw * & T) ulaw2alaw() argument
185 ulaw2short(ulaw * & F,short * & T) ulaw2short() argument
187 ulaw2long(ulaw * & F,long * & T) ulaw2long() argument
189 ulaw2float(ulaw * & F,float * & T) ulaw2float() argument
191 ulaw2double(ulaw * & F,double * & T) ulaw2double() argument
194 alaw2char(alaw * & F,char * & T) alaw2char() argument
196 alaw2short(alaw * & F,short * & T) alaw2short() argument
198 alaw2long(alaw * & F,long * & T) alaw2long() argument
200 alaw2float(alaw * & F,float * & T) alaw2float() argument
202 alaw2double(alaw * & F,double * & T) alaw2double() argument
204 alaw2ulaw(alaw * & F,ulaw * & T) alaw2ulaw() argument
268 MOVE(F,T) Convert() argument
273 MOVE(F,T) Convert() argument
[all...]
/titanic_52/usr/src/cmd/sort/common/
H A Dinitialize.c115 field_t *F; in initialize_post() local
129 F = S->m_fields_head; in initialize_post()
131 while (F != NULL) { in initialize_post()
132 switch (F->f_species) { in initialize_post()
134 if (F->f_options & in initialize_post()
138 F->f_convert = field_convert_alpha; in initialize_post()
140 F->f_convert = in initialize_post()
144 F->f_convert = field_convert_numeric; in initialize_post()
147 F->f_convert = field_convert_month; in initialize_post()
150 die(EMSG_UNKN_FIELD, F in initialize_post()
[all...]
H A Dfields.c269 field_t *F = safe_realloc(NULL, sizeof (field_t)); in field_new() local
271 F->f_start_field = -1; in field_new()
272 F->f_start_offset = -1; in field_new()
273 F->f_end_field = -1; in field_new()
274 F->f_end_offset = -1; in field_new()
275 F->f_next = NULL; in field_new()
278 F->f_species = ALPHA; in field_new()
279 F->f_options = 0; in field_new()
281 F->f_species = S->m_default_species; in field_new()
282 F in field_new()
289 field_delete(field_t * F) field_delete() argument
300 field_add_to_chain(field_t ** F,field_t * A) field_add_to_chain() argument
321 field_print(field_t * F) field_print() argument
363 field_boundary(field_t * F,line_rec_t * L,int is_end,int is_blanks) field_boundary() argument
397 field_delimit(field_t * F,line_rec_t * L,ssize_t * start,ssize_t * end) field_delimit() argument
408 field_boundary_wide(field_t * F,line_rec_t * L,int is_end,int is_blanks) field_boundary_wide() argument
442 field_delimit_wide(field_t * F,line_rec_t * L,ssize_t * start,ssize_t * end) field_delimit_wide() argument
453 field_boundary_tabbed(field_t * F,line_rec_t * L,int is_end,int is_blanks,vchar_t delimiter) field_boundary_tabbed() argument
504 field_delimit_tabbed(field_t * F,line_rec_t * L,ssize_t * start,ssize_t * end,vchar_t delimiter) field_delimit_tabbed() argument
516 field_boundary_tabbed_wide(field_t * F,line_rec_t * L,int is_end,int is_blanks,vchar_t delimiter) field_boundary_tabbed_wide() argument
561 field_delimit_tabbed_wide(field_t * F,line_rec_t * L,ssize_t * start,ssize_t * end,vchar_t delimiter) field_delimit_tabbed_wide() argument
574 field_convert_month(field_t * F,line_rec_t * L,vchar_t delimiter,ssize_t data_offset,ssize_t data_length,ssize_t coll_offset) field_convert_month() argument
625 field_convert_month_wide(field_t * F,line_rec_t * L,vchar_t delimiter,ssize_t data_offset,ssize_t data_length,ssize_t coll_offset) field_convert_month_wide() argument
677 field_convert_alpha(field_t * F,line_rec_t * L,vchar_t delimiter,ssize_t data_offset,ssize_t data_length,ssize_t coll_offset) field_convert_alpha() argument
720 field_convert_alpha_simple(field_t * F,line_rec_t * L,vchar_t delimiter,ssize_t data_offset,ssize_t data_length,ssize_t coll_offset) field_convert_alpha_simple() argument
748 field_convert_alpha_wide(field_t * F,line_rec_t * L,vchar_t delimiter,ssize_t data_offset,ssize_t data_length,ssize_t coll_offset) field_convert_alpha_wide() argument
796 field_convert_numeric(field_t * F,line_rec_t * L,vchar_t delimiter,ssize_t data_offset,ssize_t data_length,ssize_t coll_offset) field_convert_numeric() argument
941 field_convert_numeric_wide(field_t * F,line_rec_t * L,vchar_t delimiter,ssize_t data_offset,ssize_t data_length,ssize_t coll_offset) field_convert_numeric_wide() argument
1057 field_convert(field_t * F,line_rec_t * L,int flags,vchar_t field_separator) field_convert() argument
1138 field_convert_wide(field_t * F,line_rec_t * L,int flags,vchar_t field_separator) field_convert_wide() argument
[all...]
H A Doptions.c120 parse_field_spec(field_t *F, char *C, int flags, int length) in parse_field_spec() argument
156 F->f_options |= FIELD_DICTIONARY_ORDER; in parse_field_spec()
159 F->f_options |= FIELD_FOLD_UPPERCASE; in parse_field_spec()
162 F->f_options |= in parse_field_spec()
166 F->f_species = MONTH; in parse_field_spec()
169 F->f_species = NUMERIC; in parse_field_spec()
172 F->f_options |= in parse_field_spec()
183 F->f_start_field = field; in parse_field_spec()
184 F->f_start_offset = offset; in parse_field_spec()
186 F in parse_field_spec()
[all...]
H A Dinvoke.c38 display_field_defns(field_t *F) in display_field_defns() argument
42 for (i = 0; F != NULL; F = F->f_next, i++) { in display_field_defns()
44 field_print(F); in display_field_defns()
/titanic_52/usr/src/tools/scripts/
H A Dwebrev.sh558 -e "s|?|%3F|g" -e "s|#|%23|g" -e "s|\[|%5B|g" \
1731 open(F, "git diff -M --name-status $branch |");
1732 while (<F>) {
1746 close(F);
1749 open(F, "git whatchanged --pretty=format:%B $branch.. |");
1750 while (<F>) {
1766 close(F);
1912 file="$F"
1914 file="$DIR/$F"
1918 if [[ -e $CWS/$DIR/$F ]]; the
[all...]
/titanic_52/usr/src/common/net/wanboot/crypt/
H A Ddes.c183 * Primitive function F.
194 #define F(l, r, key) {\ macro
256 F(left, right, ks); in des()
257 F(right, left, ks + 2); in des()
258 F(left, right, ks + 4); in des()
259 F(right, left, ks + 6); in des()
260 F(left, right, ks + 8); in des()
261 F(right, left, ks + 10); in des()
262 F(left, right, ks + 12); in des()
263 F(righ in des()
[all...]
/titanic_52/usr/src/cmd/mdb/sun4u/
H A DMakefile.kmdb87 grep '^#' <$< >$(<F).c
88 grep -v '^#' <$< >$(<F).tmp
89 $(CC) $(CTFSTABSCFLAGS) $(CPPFLAGS) -g -c -o $(<F).o $(<F).c
90 $(CTFCONVERT) $(CTFCVTFLAGS) $(<F).o
91 $(CTFSTABS) -t forth -i $(<F).tmp -o $@ $(<F).o
92 $(RM) $(<F).c $(<F).tmp $(<F)
[all...]
/titanic_52/usr/src/lib/libm/common/R/
H A Dexpf.c322 static const float F[] = { variable
325 5.0000000951292138e-01F,
326 1.6666518897347284e-01F,
327 3.4028234663852885981170E+38F,
328 1.1754943508222875079688E-38F,
330 8.67361737988403547205962240695953369140625e-19F
334 #define zero F[0]
335 #define one F[1]
336 #define p1 F[2]
337 #define p2 F[
[all...]
/titanic_52/usr/src/cmd/ypcmd/
H A Dypinit.sh44 clientp=F
45 masterp=F
46 slavep=F
50 got_host_list=F
52 non_interactive=F
53 exit_on_error=F
54 errors_in_setup=F
74 ($1 !~ /[0-9]/ && $1 !~ /[A-F]/ && \
219 if [ $slavep = F ]
221 if [ $non_interactive = F ]
[all...]
/titanic_52/usr/src/tools/codesign/
H A Dcodesign_server.pl93 if (!open(F, "<$dir/private")) {
97 close(F);
165 if (!open(F, "<$file")) {
169 read(F, $bytes, $size);
170 close(F);
191 if (!open(F, ">$file")) {
195 syswrite(F, $bytes, $size);
196 close(F);
H A Dsignit.pl209 if (!open(F, "<$file")) {
213 read(F, $bytes, $size);
214 close(F);
237 if (!open(F, ">$file")) {
241 syswrite(F, $bytes, $size);
242 close(F);
/titanic_52/usr/src/cmd/mdb/sun4v/
H A DMakefile.kmdb96 grep '^#' <$< >$(<F).c
97 grep -v '^#' <$< >$(<F).tmp
98 $(CC) $(CTFSTABSCFLAGS) $(CPPFLAGS) -g -c -o $(<F).o $(<F).c
99 $(CTFCONVERT) $(CTFCVTFLAGS) $(<F).o
100 $(CTFSTABS) -t forth -i $(<F).tmp -o $@ $(<F).o
101 $(RM) $(<F).c $(<F).tmp $(<F)
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/uwin/
H A Dlog.c54 * Calculates log(2^m*F*(1+f/F)), |f/j| <= 1/256,
55 * where F = j/128 for j an integer in [0, 128].
62 * log(F) = logF_hi[j] + logF_lo[j] is in tabular form in log_table.h
65 * log(1+f/F) = 2*f/(2*F + f) + 1/12 * (2*f/(2*F + f))**3 + ...
68 * m and F terms.
100 * Values for log(F) were generated using error < 10^-57 absolute
382 double F, local
459 double F, f, g, q, u, v, u2, one = 1.0; global() local
[all...]
/titanic_52/usr/src/cmd/fs.d/
H A Ddf.xcl33 msgid "F:o:abekVtgnlP"
60 msgid "%s -F %s %s%s\n"
82 msgid "%s -F %s"
83 msgid "F:o:mb:?V"
84 msgid "%s -F %s "
114 msgid "volcopy -F %s"
119 msgid "F:o:p:a:m:c:n:i:?IlsuV"
121 msgid "F:o:?i:asV"
122 msgid "F:o:?V"
128 msgid "F
[all...]
/titanic_52/usr/src/lib/libdtrace/common/
H A Dio.d.in183 translator fileinfo_t < struct file *F > {
184 fi_name = F == NULL ? "<none>" :
185 F->f_vnode->v_path == NULL ? "<unknown>" :
186 basename(cleanpath(F->f_vnode->v_path));
187 fi_dirname = F == NULL ? "<none>" :
188 F->f_vnode->v_path == NULL ? "<unknown>" :
189 dirname(cleanpath(F->f_vnode->v_path));
190 fi_pathname = F == NULL ? "<none>" :
191 F->f_vnode->v_path == NULL ? "<unknown>" :
192 cleanpath(F
[all...]
/titanic_52/usr/src/cmd/sendmail/db/
H A Ddb_int.h323 * F flags
325 #define LOG_OP(C, T, O, K, A, F) { \ argument
333 T, &_lsn, 0, &_op, (C)->dbp->log_fileid, K, A, F); \
337 #define DEBUG_LREAD(C, T, O, K, A, F) LOG_OP(C, T, O, K, A, F) argument
339 #define DEBUG_LREAD(C, T, O, K, A, F) argument
342 #define DEBUG_LWRITE(C, T, O, K, A, F) LOG_OP(C, T, O, K, A, F) argument
344 #define DEBUG_LWRITE(C, T, O, K, A, F) argument
347 #define DEBUG_LREAD(C, T, O, K, A, F) argument
348 DEBUG_LWRITE(C,T,O,K,A,F) global() argument
[all...]
/titanic_52/usr/src/cmd/fm/scripts/
H A Ddictck.pl109 open(F, $name) or die "$name: $!\n";
111 while (<F>) {
169 while (<F>) {
241 close(F);
267 open(F, $name) or die "$name: $!\n";
269 while (<F>) {
284 close(F);
/titanic_52/usr/src/uts/common/smbsrv/
H A Dndr.h281 #define NDR_IS_FIRST_FRAG(F) ((F) & NDR_PFC_FIRST_FRAG) argument
282 #define NDR_IS_LAST_FRAG(F) ((F) & NDR_PFC_LAST_FRAG) argument
283 #define NDR_IS_SINGLE_FRAG(F) \ argument
284 (NDR_IS_FIRST_FRAG((F)) && NDR_IS_LAST_FRAG((F)))
289 #define NDS_SETF(S, F) ((S)->flags |= (F)) argument
290 #define NDS_CLEARF(S, F) (( argument
[all...]
/titanic_52/usr/src/contrib/ast/src/cmd/ksh93/features/
H A Dmath.sh41 eval `iffe $iffeflags -F ast_standards.h -c "$cc" - tst use_ast_standards -lm 'note{' 'math.h needs ast_standards.h' '}end' 'link{' '#include <math.h>' '#ifndef isgreater' '#define isgreater(a,b) 0' '#endif' 'int main() { return isgreater(0.0,1.0); }' '}end'`
43 1) iffeflags="$iffeflags -F ast_standards.h" ;;
148 F=local_$name
200 echo "static $r $F(Sfdouble_t a1) { $r q = $f(a1); return $y; }"
201 tab="$tab$nl$ht\"\\0${R}${a}${name}\",$ht(Math_f)(uintptr_t)${F},"
209 ?*) code="static $L $F("
229 eval `iffe $iffeflags -c "$cc" - tst it_links_ note{ $F function links }end link{ "static $L $F($ta)$td${body}int main(){return $F($tc)!=0;}" }end sfio.h $iffehdrs $iffelibs 2>&$stderr`
233 tab="$tab$nl$ht\"\\0${R}${a}${name}\",$ht(Math_f)(uintptr_t)${F},"
[all...]
/titanic_52/usr/src/data/perfmon/
H A Dmapfile.csv4 GenuineIntel-6-1F,V2,/NHM-EP/NehalemEP_core_V2.json,core
6 GenuineIntel-6-2F,V2,/WSM-EX/WestmereEX_core_V2.json,core
17 GenuineIntel-6-5F,V13,/GLM/goldmont_core_v13.json,core
18 GenuineIntel-6-5F,V13,/GLM/goldmont_matrix_v13.json,offcore
45 GenuineIntel-6-3F,V20,/HSX/haswellx_core_v20.json,core
46 GenuineIntel-6-3F,V20,/HSX/haswellx_matrix_v20.json,offcore
47 GenuineIntel-6-3F,V20,/HSX/haswellx_uncore_v20.json,uncore
56 GenuineIntel-6-4F,V14,/BDX/broadwellx_core_v14.json,core
57 GenuineIntel-6-4F,V14,/BDX/broadwellx_matrix_v14.json,offcore
58 GenuineIntel-6-4F,V1
[all...]
/titanic_52/usr/src/lib/libc/
H A DMakefile.targ286 $(COMOBJS:%=pics/%): $(SRC)/common/util/$$(@F:.o=.c)
287 $(COMPILE.c) -o $@ $(SRC)/common/util/$(@F:.o=.c)
290 $(XATTROBJS:%=pics/%): $(SRC)/common/xattr/$$(@F:.o=.c)
291 $(COMPILE.c) -o $@ $(SRC)/common/xattr/$(@F:.o=.c)
294 $(DTRACEOBJS:%=pics/%): $(SRC)/common/dtrace/$$(@F:.o=.c)
295 $(COMPILE.c) -o $@ $(SRC)/common/dtrace/$(@F:.o=.c)
298 $(UNICODEOBJS:%=pics/%): $(SRC)/common/unicode/$$(@F:.o=.c)
299 $(COMPILE.c) -o $@ $(SRC)/common/unicode/$(@F:.o=.c)
302 $(CHACHAOBJS:%=pics/%): $(SRC)/common/crypto/chacha/$$(@F:.o=.c)
304 -o $@ $(SRC)/common/crypto/chacha/$(@F
[all...]
/titanic_52/usr/src/cmd/make/bin/
H A Dmake.rules.file26 .h .h~ .f .f~ .for .for~ .F .F~ .f90 .f90~ .ftn .ftn~ .mod .mod~ \
224 COMPILE.F=$(FC) $(FFLAGS) $(CPPFLAGS) -c
225 LINK.F=$(FC) $(FFLAGS) $(CPPFLAGS) $(LDFLAGS)
264 .F:
265 $(LINK.F) -o $@ $< $(LDLIBS)
266 .F~:
267 $(GET) $(GFLAGS) -p $< > $*.F
268 $(FC) $(FFLAGS) $(LDFLAGS) -o $@ $*.F
269 .F
[all...]

12345678910>>...24