Home
last modified time | relevance | path

Searched refs:fcode (Results 1 – 25 of 58) sorted by relevance

123

/titanic_44/usr/src/cmd/vi/port/
H A Dprintf.c74 unsigned char fcode; in viprintf() local
178 switch (fcode = *fmt++) { in viprintf()
198 fcode = 'o'; in viprintf()
207 if (fcode=='o') { in viprintf()
227 if (fcode=='o') { in viprintf()
234 putchar(fcode); in viprintf()
238 *--bptr = fcode; in viprintf()
247 fcode = fcode + 'a' - 'A'; in viprintf()
256 if (fcode=='u') in viprintf()
261 if (n = (fcode != 'u' && num < 0)) in viprintf()
[all …]
/titanic_44/usr/src/cmd/csh/
H A Dprintf.c118 char fcode; in _print() local
313 switch (fcode = *cp++) { in _print()
354 } else if (fcode == 'd') { in _print()
361 if (fcode == 'd' || fcode == 'D') { in _print()
387 if (fcode == 'X') { in _print()
407 switch (fcode) { in _print()
497 *--suffix = isupper(fcode) ? 'E' : 'e'; in _print()
632 fcode = 't'; /* Fake the rest of code. */ in _print()
651 fcode = 't'; /* Fake the rest of code. */ in _print()
678 fcode = 's'; /* Act as if it were %s. */ in _print()
[all …]
/titanic_44/usr/src/lib/efcode/fcode_test/
H A DMakefile38 PROGS = test.fcode test64.fcode
42 .SUFFIXES: .fcode .fth $(SUFFIXES)
46 .fth.fcode:
49 test.fcode: $(TESTSRCS)
/titanic_44/usr/src/psm/stand/bootblks/
H A DMakefile.127537 RD_FCODE = rd.fcode
41 MKBB.fcode = ./$(MKBB) $(MKBBFLAGS)
43 %.fcode: $(BASEDIR)/common/%.fth
57 $(MKBB.fcode) $(FS_FCODE) $(RD_FCODE) $(FS_BB)
/titanic_44/usr/src/lib/libbc/libc/stdio/common/
H A Dscanf.c168 int i, fcode, nl_fmt, num, length, j; in format_arg() local
182 while ((fcode = *format++) != '\0' && fcode != '%') ; in format_arg()
183 if (!fcode || i > ARGMAX) in format_arg()
186 switch (fcode = *format++) { in format_arg()
194 num = fcode - '0'; in format_arg()
196 while (isdigit(fcode = *format)) { in format_arg()
197 num = num * 10 + fcode - '0'; in format_arg()
H A Ddoprnt.c122 char fcode; in _doprnt() local
555 switch (fcode = *cp++) { in _doprnt()
602 if (fcode == 'd' || fcode == 'D' || fcode == 'i') { in _doprnt()
614 if (fcode == 'X') in _doprnt()
648 switch (fcode) { in _doprnt()
667 if (fsharp && bp != p && fcode == 'o' && in _doprnt()
760 *--suffix = fcode; in _doprnt()
880 if (isupper(fcode)) in _doprnt()
931 p = bp = &fcode; in _doprnt()
/titanic_44/usr/src/ucblib/libucb/port/stdio/
H A Ddoprnt.c180 int fcode; in _doprnt() local
281 if ((fcode = *format) != '\0' && fcode != '%') { in _doprnt()
285 } while ((fcode = *format) != '\0' && fcode != '%'); in _doprnt()
292 if (fcode == '\0') { /* end of format; return */ in _doprnt()
325 switch (fcode = *format++) { in _doprnt()
420 int num = fcode - '0'; in _doprnt()
421 while (isdigit(fcode = *format)) { in _doprnt()
422 num = num * 10 + fcode - '0'; in _doprnt()
625 tab = (fcode == 'X') ? uc_digs : lc_digs; in _doprnt()
657 switch (fcode) { in _doprnt()
[all …]
/titanic_44/usr/src/uts/common/io/ppp/spppcomp/
H A Dbsd-comp.c124 uint32_t fcode; member
563 uint32_t fcode; in bsd_compress() local
733 fcode = BSD_KEY(ent, c); in bsd_compress()
745 if (dictp->f.fcode == fcode) { in bsd_compress()
780 } while (dictp->f.fcode != fcode); in bsd_compress()
820 dictp->f.fcode = fcode; in bsd_compress()
907 uint32_t fcode; in bsd_incomp() local
968 fcode = BSD_KEY(ent, c); in bsd_incomp()
980 if (dictp->f.fcode == fcode) { in bsd_incomp()
1008 } while (dictp->f.fcode != fcode); in bsd_incomp()
[all …]
/titanic_44/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dbsd-comp.c108 u_int32_t fcode; member
439 u_int32_t fcode; local
464 fcode = BSD_KEY(ent, c);
471 if (dictp->f.fcode == fcode) {
485 } while (dictp->f.fcode != fcode);
507 dictp->f.fcode = fcode;
693 u_int32_t fcode; local
696 fcode = BSD_KEY(oldcode,finchar);
721 dictp->f.fcode = fcode;
/titanic_44/usr/src/psm/stand/bootblks/zfs/
H A DMakefile.zfs38 FS_FCODE = boot-zfs.fcode
39 EX_FCODE = fs-zfs.fcode
55 %.fcode: $(BASEDIR)/zfs/common/%.fth
/titanic_44/usr/src/uts/common/fs/smbsrv/
H A Dsmb_nt_transact_ioctl.c46 uint32_t fcode; member
91 uint32_t fcode; in smb_nt_transact_ioctl() local
97 &fcode, &sr->smb_fid, &is_fsctl, &is_flags) != 0) { in smb_nt_transact_ioctl()
108 if (ioctl_ret_tbl[i].fcode == fcode) { in smb_nt_transact_ioctl()
/titanic_44/usr/src/ucbcmd/sed/
H A Dsed0.c35 FILE *fcode[NWFILES]; variable
99 fcode[0] = stdout; in main()
499 rep->r1.fcode = fcode[i]; in fcomp()
511 if((rep->r1.fcode = fopen(fname[nfiles], "w")) == NULL) { in fcomp()
516 fcode[nfiles++] = rep->r1.fcode; in fcomp()
528 rep->r1.fcode = fcode[i]; in fcomp()
540 if((rep->r1.fcode = fopen(fname[nfiles], "w")) == NULL) { in fcomp()
545 fcode[nfiles++] = rep->r1.fcode; in fcomp()
H A Dsed.h113 FILE *fcode; member
125 FILE *fcode; member
/titanic_44/usr/src/lib/libc/port/print/
H A Ddoprnt.c476 wchar_t fcode; in _wndoprnt() local
479 char fcode; in _wndoprnt() local
663 if ((fcode = *format) != '\0' && fcode != '%') { in _wndoprnt()
671 } while ((fcode = *format) != '\0' && fcode != '%'); in _wndoprnt()
676 if (fcode == '\0') { /* end of format; return */ in _wndoprnt()
722 switch (fcode = *format++) { in _wndoprnt()
838 { num = fcode - '0'; in _wndoprnt()
839 while (_M_ISDIGIT(fcode = *format)) { in _wndoprnt()
840 num = num * 10 + fcode - '0'; in _wndoprnt()
1193 tab = (wchar_t *)((fcode == 'X') ? uc_digs : lc_digs); in _wndoprnt()
[all …]
/titanic_44/usr/src/cmd/ldap/common/
H A Dconvutf8.c52 static char *ldaptool_convert( const char *src, const char *fcode,
65 ldaptool_convert( const char *src, const char *fcode, in ldaptool_convert() argument
75 if (fcode == NULL || tcode == NULL) in ldaptool_convert()
78 if (strcasecmp(fcode, tcode) == 0) in ldaptool_convert()
81 if ((cd = iconv_open(tcode, fcode)) == (iconv_t)-1) { in ldaptool_convert()
/titanic_44/usr/src/lib/libnisdb/
H A Ddb_headers.h48 #define FATAL(msg, fcode) \ argument
51 __nisdb_get_tsd()->fatalcode = (int)(fcode); \
55 #define FATAL3(msg, fcode, retval) \ argument
58 __nisdb_get_tsd()->fatalcode = (int)(fcode); \
/titanic_44/usr/src/lib/efcode/engine/
H A DMakefile.com28 OBJECTS = init.o interface.o signal.o forth.o fcode.o interp.o debug.o \
33 LIBRARY = fcode.a
/titanic_44/usr/src/psm/stand/bootblks/hsfs/
H A DMakefile.hsfs35 FS_FCODE = boot-hsfs.fcode
65 %.fcode: $(HSFS_DIR)/%.fth
/titanic_44/usr/src/psm/stand/bootblks/ufs/
H A DMakefile.ufs36 FS_FCODE = boot-ufs.fcode
63 %.fcode: $(UFS_DIR)/%.fth
/titanic_44/usr/src/psm/stand/bootblks/common/
H A Dboot.fth88 : check-fcode ( base -- is-fcode? )
103 /fs-fcode mem-alloc ( adr r: ih )
104 dup /fs-fcode fs-offset r@ read-disk
106 dup check-fcode invert if
107 " No fs fcode found" die
111 /fs-fcode mem-free ( r: ih )
223 dup check-fcode ( adr is-fcode? )
224 over check-elf ( adr is-fcode? is-elf? )
553 \ load ramdisk fcode and tell the driver where
556 /rd-fcode mem-alloc ( base size adr )
[all …]
/titanic_44/usr/src/uts/sun4/sys/
H A Dfcode.h455 void *fcode; /* fcode kernel address */ member
494 void *fcode, size_t fcode_size, char *unit_address, void *bus_args);
498 void *fcode, size_t fcode_size, char *unit_address,
503 void *fcode, size_t fcode_size, char *unit_address,
/titanic_44/usr/src/pkg/manifests/
H A Dsystem-embedded-fcode-interpreter.mf32 set name=pkg.fmri value=pkg:/system/embedded-fcode-interpreter@$(PKGVERS)
62 driver name=fcode
64 file path=kernel/drv/$(ARCH64)/fcode group=sys
65 file path=kernel/drv/fcode.conf group=sys
75 file path=usr/lib/efcode/$(ARCH64)/fcode.so
/titanic_44/usr/src/uts/sun4u/starcat/io/
H A Dfcgp2.c140 void *fcode, size_t fcode_size, char *unit_address, in gp2_fc_ops_alloc_handle() argument
147 rp->next_handle = fc_ops_alloc_handle(ap, child, fcode, fcode_size, in gp2_fc_ops_alloc_handle()
151 rp->fcode = fcode; in gp2_fc_ops_alloc_handle()
848 char *name, *fcode; in gfc_get_fcode() local
872 fcode = kmem_zalloc(fcode_len, KM_SLEEP); in gfc_get_fcode()
874 if ((status = prom_get_fcode(name, fcode)) != 0) { in gfc_get_fcode()
876 if (copyout((void *)fcode, (void *)fcode_virt, in gfc_get_fcode()
884 kmem_free(fcode, fcode_len); in gfc_get_fcode()
/titanic_44/usr/src/tools/tokenize/
H A Dtokenize.sh46 outfile=`basename $1 .fth`.fcode
/titanic_44/usr/src/cmd/compress/
H A Dcompress.c970 long fcode; in compress() local
1013 for (fcode = (long)hsize; fcode < 65536L; fcode *= 2L) in compress()
1026 fcode = (long)(((long)c << maxbits_reg) + ent); in compress()
1032 if (htabof(i) == fcode) { in compress()
1057 if (htabof(i) == fcode) { in compress()
1074 htabof(i) = fcode; in compress()

123