Home
last modified time | relevance | path

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

12345678910>>...19

/titanic_44/usr/src/cmd/audio/include/
H A Daudio_device.h49 #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)
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), (H), AUDIO__SET|AUDIO__RECORD)
76 #define audio_pause(F) \ argument
77 audio__setpause((F), AUDIO__PLAYREC|AUDIO__PAUSE)
[all …]
/titanic_44/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_44/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); F++; } in char2ulaw() argument
126 char2alaw(char *&F, alaw *&T) { *T++ = audio_c2a(*F); F++; } in char2alaw() argument
129 short2char(short *&F, char *&T) { *T++ = (char)(*F++ >> 8); } in short2char() argument
131 short2long(short *&F, long *&T) { *T++ = ((long)*F++) << 16; } in short2long() argument
133 short2float(short *&F, float *&T) { *T++ = short2dbl(*F++); } in short2float() argument
135 short2double(short *&F, double *&T) { *T++ = short2dbl(*F++); } in short2double() argument
[all …]
/titanic_44/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->f_species); 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->f_options = S->m_field_options; in field_new()
[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->f_start_field--; 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_44/usr/src/tools/scripts/
H A Dwebrev.sh1934 new_mode=`get_file_mode $CWS/$DIR/$F`
1946 rm -rf $newdir/$DIR/$F
1947 if [[ -e $CWS/$DIR/$F ]]; then
1948 cp $CWS/$DIR/$F $newdir/$DIR/$F
1950 chmod $new_mode $newdir/$DIR/$F
1953 print -u2 "ERROR: set mode of $newdir/$DIR/$F"
2028 file="$F"
2030 file="$DIR/$F"
2034 if [[ -e $CWS/$DIR/$F ]]; then
2035 cp $CWS/$DIR/$F $newdir/$DIR/$F
[all …]
/titanic_44/usr/src/common/net/wanboot/crypt/
H A Ddes.c194 #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(right, left, ks + 14); in des()
264 F(left, right, ks + 16); in des()
[all …]
/titanic_44/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).o
/titanic_44/usr/src/lib/libm/common/R/
H A Dexpf.c322 static const float F[] = { variable
334 #define zero F[0]
335 #define one F[1]
336 #define p1 F[2]
337 #define p2 F[3]
338 #define big F[4]
339 #define tiny F[5]
341 #define twom60 F[6]
/titanic_44/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
219 if [ $slavep = F ]
221 if [ $non_interactive = F ]
223 while [ $got_host_list = F ]; do
[all …]
/titanic_44/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_44/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).o
/titanic_44/usr/src/lib/libast/common/uwin/
H A Dlog.c382 double F, f, g, q, u, u2, v, zero = 0.0, one = 1.0; local
411 F = (1.0/N) * j + 1; /* F*128 is an integer in [128, 512] */
412 f = g - F;
415 g = 1/(2*F+f);
432 u2 = (2.0*(f - F*u1) - u1*f) * g;
459 double F, f, g, q, u, v, u2, one = 1.0; local
473 F = (1.0/N) * j + 1;
474 f = g - F;
476 g = 1/(2*F+f);
484 u2 = (2.0*(f - F*u1) - u1*f) * g;
/titanic_44/usr/src/cmd/fs.d/
H A Ddf.xcl83 msgid "F:o:mb:?V"
120 msgid "F:o:p:a:m:c:n:i:?IlsuV"
122 msgid "F:o:?i:asV"
123 msgid "F:o:?V"
129 msgid "F:o:?V"
137 msgid "F:o:s:a:f:?dvV"
139 msgid "F:o:z:?V"
141 msgid "F:o:?nV"
/titanic_44/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->f_vnode->v_path);
[all …]
/titanic_44/usr/src/cmd/sendmail/db/
H A Ddb_int.h325 #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 #define DEBUG_LWRITE(C, T, O, K, A, F) argument
/titanic_44/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_44/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) ((S)->flags &= ~(F)) argument
/titanic_44/usr/src/pkg/
H A DMakefile509 $(@:%.mog=%.lics) $(PDIR)/$(@F:%.mog=%).metadata.* $(@).vars
519 $(LN) -s $(@F) \
520 $(PDIR)/$(@F:%.mog=%).metadata.$$PKGSTAT.$$REPO; \
572 $(PROC_SYNTH_PKGS): $(PKGLISTS) $$(@F:%.mog=%.mf)
574 $(PKGDEBUG)$(RM) $(@) $(PDIR)/$(@F:%.mog=%).metadata.* $(@).vars
577 -P $(@).vars -O $(@) $(@F:%.mog=%.mf) \
581 $(LN) -s $(@F) \
582 $(PDIR)/$(@F:%.mog=%).metadata.$$PKGSTAT.$$REPO; \
623 $(PKGDEBUG)sdotr=$(@F:packages.%=%); \
735 $(MAKE) -e $(@F) PKGMACH=$(@D) SUPPRESSPKGDEP=$(SUPPRESSPKGDEP)
/titanic_44/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,V14,/BDX/broadwellx_uncore_v14.json,uncore
/titanic_44/usr/src/lib/libc/
H A DMakefile.targ280 $(COMOBJS:%=pics/%): $(SRC)/common/util/$$(@F:.o=.c)
281 $(COMPILE.c) -o $@ $(SRC)/common/util/$(@F:.o=.c)
284 $(XATTROBJS:%=pics/%): $(SRC)/common/xattr/$$(@F:.o=.c)
285 $(COMPILE.c) -o $@ $(SRC)/common/xattr/$(@F:.o=.c)
288 $(DTRACEOBJS:%=pics/%): $(SRC)/common/dtrace/$$(@F:.o=.c)
289 $(COMPILE.c) -o $@ $(SRC)/common/dtrace/$(@F:.o=.c)
292 $(UNICODEOBJS:%=pics/%): $(SRC)/common/unicode/$$(@F:.o=.c)
293 $(COMPILE.c) -o $@ $(SRC)/common/unicode/$(@F:.o=.c)
296 $(CHACHAOBJS:%=pics/%): $(SRC)/common/crypto/chacha/$$(@F:.o=.c)
298 -o $@ $(SRC)/common/crypto/chacha/$(@F:.o=.c)
/titanic_44/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.o:
270 $(COMPILE.F) $(OUTPUT_OPTION) $<
[all …]

12345678910>>...19