Searched refs:ascii (Results 1 - 25 of 79) sorted by relevance

1234

/freebsd-11-stable/gnu/usr.bin/groff/font/devascii/
H A DMakefile3 DEV= ascii
/freebsd-11-stable/sys/dev/fdt/
H A Dfdt_static_dtb.S35 .ascii "Device Tree Blob STARTS here"
47 .ascii "Device Tree Blob STOPS here"
/freebsd-11-stable/lib/libc/stdlib/
H A Datof.c45 atof(const char *ascii) argument
47 return strtod(ascii, (char **)NULL);
51 atof_l(const char *ascii, locale_t locale) argument
53 return strtod_l(ascii, (char **)NULL, locale);
/freebsd-11-stable/lib/libc/inet/
H A Dnsap_addr.c45 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) { argument
49 if (ascii[0] != '0' || (ascii[1] != 'x' && ascii[1] != 'X'))
51 ascii += 2;
53 while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
62 c = *ascii++;
81 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) { argument
87 if (ascii)
88 start = ascii;
[all...]
/freebsd-11-stable/bin/ed/test/
H A DMakefile16 uudecode < ascii.d.uu ; \
17 uudecode < ascii.r.uu ; \
27 rm -f *.ed *.red *.[oz] *~ ascii.d ascii.r
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.aggzoom.d16 #pragma D option encoding=ascii
H A Dtst.aggpackzoom.d16 #pragma D option encoding=ascii
H A Dtst.aggpack.d17 #pragma D option encoding=ascii
H A Dtst.aggpackbanner.ksh68 dtrace -qs /dev/stdin -x encoding=ascii -x aggzoom <<EOF
/freebsd-11-stable/usr.sbin/ngctl/
H A Dmsg.c129 struct ng_mesg *ascii; local
155 ascii = (struct ng_mesg *)m2->data;
157 (ascii->header.flags & NGF_RESP) != 0 ? "response" : "command",
158 ascii->header.cmdstr, ascii->header.cmd, path);
159 if (*ascii->data != '\0')
160 printf("Args:\t%s\n", ascii->data);
/freebsd-11-stable/lib/libnetgraph/
H A Dmsg.c94 struct ng_mesg *reply, *binary, *ascii; local
117 if ((ascii = malloc(sizeof(struct ng_mesg)
122 memset(ascii, 0, sizeof(*ascii));
125 strncpy((char *)ascii->header.cmdstr, cmd,
126 sizeof(ascii->header.cmdstr) - 1);
127 strcpy(ascii->data, args);
128 ascii->header.arglen = strlen(ascii->data) + 1;
133 (u_char *)ascii, sizeo
322 struct ng_mesg *msg, *ascii; local
[all...]
/freebsd-11-stable/contrib/groff/src/preproc/eqn/
H A Dneqn.sh17 T=ascii ;;
/freebsd-11-stable/stand/efi/loader/arch/arm/
H A Dstart.S48 .ascii "MZ"
56 .ascii "PE"
111 .ascii ".reloc"
126 .ascii ".text"
/freebsd-11-stable/stand/efi/loader/arch/arm64/
H A Dstart.S46 .ascii "MZ"
54 .ascii "PE"
108 .ascii ".reloc"
123 .ascii ".text"
/freebsd-11-stable/share/misc/
H A DMakefile8 FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
/freebsd-11-stable/contrib/groff/font/devascii/
H A DMakefile.sub1 DEV=ascii
/freebsd-11-stable/share/man/man7/
H A DMakefile11 ascii.7 \
/freebsd-11-stable/contrib/expat/lib/
H A DMakefile.am58 ascii.h \
/freebsd-11-stable/share/mk/
H A Dbsd.doc.mk26 # (ascii, ps, html). [ascii]
48 PRINTERDEVICE?= ascii
57 ROFF.ascii?= groff -Tascii -P-c ${TRFLAGS} -mtty-char ${MACROS} ${PAGES:C/^/-o/1}
140 CLEANFILES+= ${DOC}.ascii ${DOC}.ascii${DCOMPRESS_EXT} \
/freebsd-11-stable/stand/i386/boot0/
H A Dboot0.S318 * Whatever drive we selected, make it an ascii digit and save it
384 * The SIO code uses ascii chars, the console code uses scancodes.
405 #ifdef SIO /* SIO mode, use ascii values */
406 subb $'1',%al # Subtract '1' ascii code
476 * Remember to un-ascii it. Hey 0x80 is already set, cool!
593 .ascii "\nF6 PXE\r"
595 .ascii "\nBoot:"
596 item: .ascii " "; .byte ' '|0x80
597 crlf: .ascii "\r"; .byte '\n'|0x80
646 .ascii "D
[all...]
/freebsd-11-stable/sys/sys/
H A Dvtoc.h70 char ascii[VTOC_ASCII_LEN]; member in struct:vtoc8
/freebsd-11-stable/usr.bin/jot/tests/
H A Dregress.sh38 REGRESSION_TEST(`ascii', `jot -c 128 0')
/freebsd-11-stable/share/doc/usd/13.viref/
H A DMakefile15 PRINTERDEVICE?= ascii
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A DMakefile9 SRCS= archive.c ascii.c binary.c main.c sections.c segments.c \
/freebsd-11-stable/contrib/mdocml/
H A Dchars.c36 const char *ascii; member in struct:ln
498 *rsz = strlen(ln->ascii);
499 return ln->ascii;
509 return lines[i].ascii;

Completed in 256 milliseconds

1234