Home
last modified time | relevance | path

Searched refs:ef (Results 1 – 25 of 41) sorted by relevance

12

/titanic_41/usr/src/lib/libtecla/common/
H A Dexpand.c115 static int ef_record_pathname(ExpandFile *ef, const char *pathname,
117 static char *ef_cache_pathname(ExpandFile *ef, const char *pathname,
119 static void ef_clear_files(ExpandFile *ef);
121 static DirNode *ef_open_dir(ExpandFile *ef, const char *pathname);
122 static DirNode *ef_close_dir(ExpandFile *ef, DirNode *node);
123 static char *ef_expand_special(ExpandFile *ef, const char *path, int pathlen);
124 static int ef_match_relative_pathname(ExpandFile *ef, DirReader *dr,
164 ExpandFile *ef; /* The object to be returned */ in new_ExpandFile() local
168 ef = (ExpandFile *) malloc(sizeof(ExpandFile)); in new_ExpandFile()
169 if(!ef) { in new_ExpandFile()
[all …]
/titanic_41/usr/src/cmd/mailx/
H A Dmain.c74 register char *ef; in main() local
136 ef = NOSTR; in main()
188 ef = u; in main()
250 ef = (argc == optind || *argv[optind] == '-') in main()
252 if (*ef && *ef != '/' && *ef != '+') in main()
332 if (newsflg && ef==NOSTR) { in main()
336 if (ef != NOSTR && argp != -1) { in main()
389 if (ef != NOSTR) { in main()
390 if (ef == NOSTR || *ef == '\0' || *ef == '+') { in main()
394 ef = *ef ? safeexpand(ef) : Getf("MBOX"); in main()
[all …]
/titanic_41/usr/src/cmd/lastcomm/
H A Dlc_exacct.c35 skip_group(ea_file_t *ef, uint_t nobjs) in skip_group() argument
39 if (ea_previous_object(ef, &curr_obj) == -1) { in skip_group()
60 disp_group(ea_file_t *ef, uint_t nobjs, int argc, char *argv[], int index) in disp_group() argument
79 if (ea_get_object(ef, &curr_obj) == -1) { in disp_group()
121 disp_group(ef, curr_obj.eo_group.eg_nobjs, in disp_group()
161 ea_file_t ef; in lc_exacct() local
164 if (ea_open(&ef, filename, EXACCT_CREATOR, in lc_exacct()
183 while (ea_previous_object(&ef, &curr_obj) != -1) { in lc_exacct()
184 if (ea_get_object(&ef, &curr_obj) == -1) { in lc_exacct()
198 disp_group(&ef, curr_obj.eo_group.eg_nobjs, in lc_exacct()
[all …]
H A Dlastcomm.c44 ea_file_t ef; in main() local
96 if ((res = ea_open(&ef, filename, EXACCT_CREATOR, in main()
98 (void) ea_close(&ef); in main()
/titanic_41/usr/src/lib/libc/port/fp/
H A Ddouble_decim.c534 fp_exception_field_type ef; in single_to_decimal() local
563 ef = 0; in single_to_decimal()
564 if (__fast_double_to_decimal(&x, pm, pd, &ef)) { in single_to_decimal()
566 __bigfloat_to_decimal(&bf, pm, pd, &ef); in single_to_decimal()
568 if (ef != 0) in single_to_decimal()
569 __base_conversion_set_exception(ef); in single_to_decimal()
570 *ps = ef; in single_to_decimal()
589 ef = 0; in single_to_decimal()
591 if (__fast_double_to_decimal(&x, pm, pd, &ef)) { in single_to_decimal()
593 __bigfloat_to_decimal(&bf, pm, pd, &ef); in single_to_decimal()
[all …]
H A Ddecimal_bin.c500 fp_exception_field_type ef; in decimal_to_single() local
536 ef = 0; in decimal_to_single()
555 if (__fast_decimal_to_single(px, pm, pd, &ef) == 1) { in decimal_to_single()
556 *ps = ef; in decimal_to_single()
557 if (ef != 0) in decimal_to_single()
558 __base_conversion_set_exception(ef); in decimal_to_single()
563 __pack_single(&u, px, pm->rd, &ef); in decimal_to_single()
564 *ps = ef; in decimal_to_single()
565 if (ef != 0) in decimal_to_single()
566 __base_conversion_set_exception(ef); in decimal_to_single()
[all …]
H A D_base_sup.c56 __base_conversion_set_exception(fp_exception_field_type ef) in __base_conversion_set_exception() argument
61 if (ef == (1 << fp_inexact)) { in __base_conversion_set_exception()
67 } else if ((ef & (1 << fp_invalid)) != 0) { in __base_conversion_set_exception()
69 } else if ((ef & (1 << fp_overflow)) != 0) { in __base_conversion_set_exception()
76 } else if ((ef & (1 << fp_underflow)) != 0) { in __base_conversion_set_exception()
H A Dfconvert.c39 fp_exception_field_type ef; in fconvert() local
55 double_to_decimal(&arg, &dm, &dr, &ef); in fconvert()
93 fp_exception_field_type ef; in sfconvert() local
109 single_to_decimal(arg, &dm, &dr, &ef); in sfconvert()
147 fp_exception_field_type ef; in qfconvert() local
164 quadruple_to_decimal(arg, &dm, &dr, &ef); in qfconvert()
166 extended_to_decimal((extended *)arg, &dm, &dr, &ef); in qfconvert()
171 if (ef & (1 << fp_overflow)) { in qfconvert()
H A Deconvert.c60 fp_exception_field_type ef; in econvert() local
76 double_to_decimal(&arg, &dm, &dr, &ef); in econvert()
105 fp_exception_field_type ef; in seconvert() local
121 single_to_decimal(arg, &dm, &dr, &ef); in seconvert()
150 fp_exception_field_type ef; in qeconvert() local
167 quadruple_to_decimal(arg, &dm, &dr, &ef); in qeconvert()
169 extended_to_decimal((extended *)arg, &dm, &dr, &ef); in qeconvert()
/titanic_41/usr/src/lib/libexacct/common/
H A Dexacct_ops.c319 ea_next_object(ea_file_t *ef, ea_object_t *obj) in ea_next_object() argument
321 ea_file_impl_t *f = (ea_file_impl_t *)ef; in ea_next_object()
419 ea_previous_object(ea_file_t *ef, ea_object_t *obj) in ea_previous_object() argument
421 ea_file_impl_t *f = (ea_file_impl_t *)ef; in ea_previous_object()
470 return (ea_next_object(ef, obj)); in ea_previous_object()
669 ea_get_object(ea_file_t *ef, ea_object_t *obj) in ea_get_object() argument
672 return (xget_object((ea_file_impl_t *)ef, obj, fread_wrapper, in ea_get_object()
819 ea_write_object(ea_file_t *ef, ea_object_t *obj) in ea_write_object() argument
823 ea_file_impl_t *f = (ea_file_impl_t *)ef; in ea_write_object()
860 validate_header(ea_file_t *ef, const char *creator) in validate_header() argument
[all …]
/titanic_41/usr/src/cmd/acctadm/
H A Dutils.c191 ea_file_t ef; in verify_exacct_file() local
199 err = ea_open(&ef, file, "SunOS", EO_TAIL, O_RDONLY, 0); in verify_exacct_file()
206 if (ea_previous_object(&ef, &eo) == EO_ERROR) { in verify_exacct_file()
219 (void) ea_close(&ef); in verify_exacct_file()
241 (void) ea_close(&ef); in verify_exacct_file()
245 (void) ea_close(&ef); in verify_exacct_file()
/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Deconvert.c41 fp_exception_field_type ef; local
49 double_to_decimal(&arg, &dm, &dr, &ef);
95 fp_exception_field_type ef; local
103 double_to_decimal(&arg, &dm, &dr, &ef);
H A Dseconvert.c38 fp_exception_field_type ef; local
48 single_to_decimal(arg, &dm, &dr, &ef);
94 fp_exception_field_type ef; local
100 single_to_decimal(arg, &dm, &dr, &ef);
H A Dqeconvert.c38 fp_exception_field_type ef; local
48 quadruple_to_decimal(arg, &dm, &dr, &ef);
94 fp_exception_field_type ef; local
100 quadruple_to_decimal(arg, &dm, &dr, &ef);
/titanic_41/usr/src/lib/libexacct/demo/
H A Dexdump.c479 disp_group(ea_file_t *ef, uint_t nobjs, int indent) in disp_group() argument
487 if ((res = ea_get_object(ef, &scratch)) == -1) { in disp_group()
496 disp_group(ef, scratch.eo_group.eg_nobjs, indent + 1); in disp_group()
512 ea_file_t ef; in main() local
534 if (ea_open(&ef, fname, NULL, in main()
541 while (ea_get_object(&ef, &scratch) != -1) { in main()
544 disp_group(&ef, scratch.eo_group.eg_nobjs, 0); in main()
550 (void) ea_close(&ef); in main()
/titanic_41/usr/src/cmd/dtrace/test/tst/common/printf/
H A Dtst.ints.d.out22 ef
27 ef
/titanic_41/usr/src/lib/libdladm/common/
H A Dusage.c768 add_desc(net_table_t *net_table, ea_file_t *ef, int nobjs) in add_desc() argument
780 if (ea_get_object(ef, &scratch) == -1) { in add_desc()
860 add_stats(net_table_t *net_table, ea_file_t *ef, int nobjs) in add_stats() argument
885 if (ea_get_object(ef, &scratch) == -1) { in add_stats()
967 ea_file_t ef; in parse_logfile() local
976 if (ea_open(&ef, file, NULL, 0, O_RDONLY, 0) == -1) { in parse_logfile()
982 while (ea_get_object(&ef, &scratch) != -1) { in parse_logfile()
993 (void) add_desc(net_table, &ef, in parse_logfile()
998 (void) add_stats(net_table, &ef, in parse_logfile()
1005 (void) add_desc(net_table, &ef, in parse_logfile()
[all …]
/titanic_41/usr/src/lib/libtecla/
H A Dlibtecla.h175 ExpandFile *del_ExpandFile(ExpandFile *ef);
250 FileExpansion *ef_expand_file(ExpandFile *ef, const char *path, int pathlen);
272 const char *ef_last_error(ExpandFile *ef);
/titanic_41/usr/src/lib/libnisdb/
H A Ddb_mindex3.cc68 uint_t ef = 0; in entryFlagsFromTable() local
71 ef |= EN_BINARY; in entryFlagsFromTable()
73 ef |= EN_CRYPT; in entryFlagsFromTable()
75 ef |= EN_XDR; in entryFlagsFromTable()
77 ef |= EN_ASN1; in entryFlagsFromTable()
79 return (ef); in entryFlagsFromTable()
/titanic_41/usr/src/cmd/sendmail/src/
H A Denvelope.c1277 register struct eflags *ef; local
1281 for (ef = EnvelopeFlags; ef->ef_name != NULL; ef++)
1283 if (!bitset(ef->ef_bit, e->e_flags))
1286 sm_dprintf("<%s", ef->ef_name);
1288 sm_dprintf(",%s", ef->ef_name);
/titanic_41/usr/src/cmd/fs.d/ufs/ncheck/
H A Dncheck.c128 struct htab *lookup(ino_t i, int ef);
558 lookup(ino_t i, int ef) in lookup() argument
569 if (ef == 0) in lookup()
/titanic_41/usr/src/cmd/eqn/eqnchar.d/
H A Diso27 | e8 � | e9 � | ea � | eb � | ec � | ed � | ee � | ef � |
/titanic_41/usr/src/cmd/fs.d/ufs/ff/
H A Dff.c140 struct htab *lookup(ino_t i, int ef);
620 lookup(ino_t i, int ef) in lookup() argument
630 if (ef == 0) in lookup()
/titanic_41/usr/src/pkg/manifests/
H A Ddriver-network-e1000g.mf130 alias=pci8086,10ef \
189 alias=pciex8086,10ef \
H A Ddriver-network-nge.mf49 alias=pci10de,3ef \

12