Searched refs:ef (Results 1 - 25 of 42) sorted by relevance

12

/illumos-gate/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 */ local
168 ef = (ExpandFile *) malloc(sizeof(ExpandFile));
169 if(!ef) {
241 del_ExpandFile(ExpandFile *ef) argument
348 ef_expand_file(ExpandFile *ef, const char *path, int pathlen) argument
498 ef_match_relative_pathname(ExpandFile *ef, DirReader *dr, const char *pattern, int separate) argument
599 ef_record_pathname(ExpandFile *ef, const char *pathname, int remove_escapes) argument
647 ef_cache_pathname(ExpandFile *ef, const char *pathname, int remove_escapes) argument
664 ef_clear_files(ExpandFile *ef) argument
685 ef_open_dir(ExpandFile *ef, const char *pathname) argument
771 ef_close_dir(ExpandFile *ef, DirNode *node) argument
1043 ef_expand_special(ExpandFile *ef, const char *path, int pathlen) argument
1230 ef_last_error(ExpandFile *ef) argument
[all...]
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dload_elf.c75 static int __elfN(loadimage)(struct preloaded_file *mp, elf_file_t ef, u_int64_t loadaddr);
76 static int __elfN(lookup_symbol)(struct preloaded_file *mp, elf_file_t ef, const char* name, Elf_Sym* sym);
77 static int __elfN(reloc_ptr)(struct preloaded_file *mp, elf_file_t ef,
79 static int __elfN(parse_modmetadata)(struct preloaded_file *mp, elf_file_t ef,
90 __elfN(load_elf_header)(char *filename, elf_file_t ef) argument
101 if ((ef->fd = open(filename, O_RDONLY)) == -1)
103 ef->firstpage = malloc(PAGE_SIZE);
104 if (ef->firstpage == NULL) {
105 close(ef->fd);
108 bytes_read = read(ef
160 struct elf_file ef; local
296 loadimage(struct preloaded_file *fp, elf_file_t ef, u_int64_t off) argument
780 struct elf_file ef; local
893 parse_modmetadata(struct preloaded_file *fp, elf_file_t ef, Elf_Addr p_start, Elf_Addr p_end) argument
1001 lookup_symbol(struct preloaded_file *fp __unused, elf_file_t ef, const char* name, Elf_Sym *symp) argument
1049 reloc_ptr(struct preloaded_file *mp, elf_file_t ef, Elf_Addr p, void *val, size_t len) argument
[all...]
H A Dload_elf_obj.c65 static int __elfN(obj_loadimage)(struct preloaded_file *mp, elf_file_t ef,
67 static int __elfN(obj_lookup_set)(struct preloaded_file *mp, elf_file_t ef,
69 static int __elfN(obj_reloc_ptr)(struct preloaded_file *mp, elf_file_t ef,
72 elf_file_t ef);
73 static Elf_Addr __elfN(obj_symaddr)(struct elf_file *ef, Elf_Size symidx);
88 struct elf_file ef; local
94 bzero(&ef, sizeof(struct elf_file));
101 if ((ef.fd = open(filename, O_RDONLY)) == -1)
104 hdr = &ef.hdr;
105 bytes_read = read(ef
189 obj_loadimage(struct preloaded_file *fp, elf_file_t ef, u_int64_t off) argument
351 obj_parse_modmetadata(struct preloaded_file *fp, elf_file_t ef) argument
423 obj_lookup_set(struct preloaded_file *fp __unused, elf_file_t ef, const char* name, Elf_Addr *startp, Elf_Addr *stopp, int *countp) argument
461 obj_reloc_ptr(struct preloaded_file *mp, elf_file_t ef, Elf_Addr p, void *val, size_t len) argument
520 obj_symaddr(struct elf_file *ef, Elf_Size symidx) argument
[all...]
H A Dreloc_elf.c52 __elfN(reloc)(struct elf_file *ef, symaddr_fn *symaddr, const void *reldata, argument
121 addr = symaddr(ef, symidx);
183 addr = symaddr(ef, symidx);
221 (void)ef;
/illumos-gate/usr/src/cmd/mailx/
H A Dmain.c74 register char *ef; local
136 ef = NOSTR;
188 ef = u;
250 ef = (argc == optind || *argv[optind] == '-')
252 if (*ef && *ef != '/' && *ef != '+')
332 if (newsflg && ef==NOSTR) {
336 if (ef != NOSTR && argp != -1) {
389 if (ef !
[all...]
/illumos-gate/usr/src/cmd/lastcomm/
H A Dlc_exacct.c35 skip_group(ea_file_t *ef, uint_t nobjs) argument
39 if (ea_previous_object(ef, &curr_obj) == -1) {
60 disp_group(ea_file_t *ef, uint_t nobjs, int argc, char *argv[], int index) argument
79 if (ea_get_object(ef, &curr_obj) == -1) {
121 disp_group(ef, curr_obj.eo_group.eg_nobjs,
161 ea_file_t ef; local
164 if (ea_open(&ef, filename, EXACCT_CREATOR,
183 while (ea_previous_object(&ef, &curr_obj) != -1) {
184 if (ea_get_object(&ef, &curr_obj) == -1) {
198 disp_group(&ef, curr_ob
[all...]
H A Dlastcomm.c44 ea_file_t ef; local
96 if ((res = ea_open(&ef, filename, EXACCT_CREATOR,
98 (void) ea_close(&ef);
/illumos-gate/usr/src/lib/libc/port/fp/
H A D_base_sup.c54 /* raise the floating point exceptions indicated by ef */
56 __base_conversion_set_exception(fp_exception_field_type ef) argument
61 if (ef == (1 << fp_inexact)) {
67 } else if ((ef & (1 << fp_invalid)) != 0) {
69 } else if ((ef & (1 << fp_overflow)) != 0) {
76 } else if ((ef & (1 << fp_underflow)) != 0) {
H A Ddouble_decim.c534 fp_exception_field_type ef; local
563 ef = 0;
564 if (__fast_double_to_decimal(&x, pm, pd, &ef)) {
566 __bigfloat_to_decimal(&bf, pm, pd, &ef);
568 if (ef != 0)
569 __base_conversion_set_exception(ef);
570 *ps = ef;
589 ef = 0;
591 if (__fast_double_to_decimal(&x, pm, pd, &ef)) {
593 __bigfloat_to_decimal(&bf, pm, pd, &ef);
606 fp_exception_field_type ef; local
651 fp_exception_field_type ef; local
707 fp_exception_field_type ef; local
[all...]
H A Dfconvert.c39 fp_exception_field_type ef; local
55 double_to_decimal(&arg, &dm, &dr, &ef);
93 fp_exception_field_type ef; local
109 single_to_decimal(arg, &dm, &dr, &ef);
147 fp_exception_field_type ef; local
164 quadruple_to_decimal(arg, &dm, &dr, &ef);
166 extended_to_decimal((extended *)arg, &dm, &dr, &ef);
171 if (ef & (1 << fp_overflow)) {
H A Deconvert.c60 fp_exception_field_type ef; local
76 double_to_decimal(&arg, &dm, &dr, &ef);
105 fp_exception_field_type ef; local
121 single_to_decimal(arg, &dm, &dr, &ef);
150 fp_exception_field_type ef; local
167 quadruple_to_decimal(arg, &dm, &dr, &ef);
169 extended_to_decimal((extended *)arg, &dm, &dr, &ef);
H A Ddecimal_bin.c500 fp_exception_field_type ef; local
536 ef = 0;
555 if (__fast_decimal_to_single(px, pm, pd, &ef) == 1) {
556 *ps = ef;
557 if (ef != 0)
558 __base_conversion_set_exception(ef);
563 __pack_single(&u, px, pm->rd, &ef);
564 *ps = ef;
565 if (ef != 0)
566 __base_conversion_set_exception(ef);
575 fp_exception_field_type ef; local
655 fp_exception_field_type ef; local
742 fp_exception_field_type ef; local
[all...]
/illumos-gate/usr/src/cmd/acctadm/
H A Dutils.c191 ea_file_t ef; local
199 err = ea_open(&ef, file, "SunOS", EO_TAIL, O_RDONLY, 0);
206 if (ea_previous_object(&ef, &eo) == EO_ERROR) {
219 (void) ea_close(&ef);
241 (void) ea_close(&ef);
245 (void) ea_close(&ef);
/illumos-gate/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 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);
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);
/illumos-gate/usr/src/lib/libexacct/common/
H A Dexacct_ops.c319 ea_next_object(ea_file_t *ef, ea_object_t *obj) argument
321 ea_file_impl_t *f = (ea_file_impl_t *)ef;
419 ea_previous_object(ea_file_t *ef, ea_object_t *obj) argument
421 ea_file_impl_t *f = (ea_file_impl_t *)ef;
470 return (ea_next_object(ef, obj));
669 ea_get_object(ea_file_t *ef, ea_object_t *obj) argument
672 return (xget_object((ea_file_impl_t *)ef, obj, fread_wrapper,
819 ea_write_object(ea_file_t *ef, ea_object_t *obj) argument
823 ea_file_impl_t *f = (ea_file_impl_t *)ef;
860 validate_header(ea_file_t *ef, cons argument
954 write_header(ea_file_t *ef) argument
1036 ea_get_creator(ea_file_t *ef) argument
1042 ea_get_hostname(ea_file_t *ef) argument
1048 ea_fdopen(ea_file_t *ef, int fd, const char *creator, int aflags, int oflags) argument
1157 ea_open(ea_file_t *ef, const char *name, const char *creator, int aflags, int oflags, mode_t mode) argument
1187 ea_close(ea_file_t *ef) argument
1213 ea_clear(ea_file_t *ef) argument
1342 ea_get_object_tree(ea_file_t *ef, uint32_t nobj) argument
[all...]
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dtilde.sh74 then [[ ~$u -ef $h ]] || err_exit "~$u not $h"
76 [[ $x -ef $h ]] || x="~$u not $h"
/illumos-gate/usr/src/lib/libexacct/demo/
H A Dexdump.c479 disp_group(ea_file_t *ef, uint_t nobjs, int indent) argument
487 if ((res = ea_get_object(ef, &scratch)) == -1) {
496 disp_group(ef, scratch.eo_group.eg_nobjs, indent + 1);
512 ea_file_t ef; local
534 if (ea_open(&ef, fname, NULL,
541 while (ea_get_object(&ef, &scratch) != -1) {
544 disp_group(&ef, scratch.eo_group.eg_nobjs, 0);
550 (void) ea_close(&ef);
/illumos-gate/usr/src/cmd/avs/dsw/etc/
H A Dii.sh53 elif [ `ps -ef | grep preremove | grep -c SUNWiiu` -gt 0 ]
/illumos-gate/usr/src/cmd/avs/sv/etc/
H A Dsv.sh57 elif [ `ps -ef | grep preremove | grep -c SUNWspsvu` -gt 0 ]
/illumos-gate/usr/src/cmd/avs/rdc/etc/
H A Drdc.sh65 elif [ `ps -ef | grep preremove | grep -c SUNWrdcu` -gt 0 ]
/illumos-gate/usr/src/boot/sys/i386/include/
H A Dcpufunc.h320 u_int ef; local
322 __asm __volatile("pushfl; popl %0" : "=r" (ef));
323 return (ef);
378 write_eflags(u_int ef) argument
380 __asm __volatile("pushl %0; popfl" : : "r" (ef));
732 void intr_restore(register_t ef);
784 void write_eflags(u_int ef);
/illumos-gate/usr/src/lib/libdladm/common/
H A Dusage.c768 add_desc(net_table_t *net_table, ea_file_t *ef, int nobjs) argument
780 if (ea_get_object(ef, &scratch) == -1) {
860 add_stats(net_table_t *net_table, ea_file_t *ef, int nobjs) argument
885 if (ea_get_object(ef, &scratch) == -1) {
967 ea_file_t ef; local
976 if (ea_open(&ef, file, NULL, 0, O_RDONLY, 0) == -1) {
982 while (ea_get_object(&ef, &scratch) != -1) {
993 (void) add_desc(net_table, &ef,
998 (void) add_stats(net_table, &ef,
1005 (void) add_desc(net_table, &ef,
[all...]
/illumos-gate/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);
269 * contained in an array which is allocated as part of *ef, and its
272 const char *ef_last_error(ExpandFile *ef);

Completed in 91 milliseconds

12