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

123

/freebsd-10.0-release/gnu/usr.bin/groff/font/devascii/
H A DMakefile3 DEV= ascii
/freebsd-10.0-release/sys/dev/fdt/
H A Dfdt_static_dtb.S35 .ascii "Device Tree Blob STARTS here"
47 .ascii "Device Tree Blob STOPS here"
/freebsd-10.0-release/lib/libc/stdlib/
H A Datof.c45 atof(ascii)
46 const char *ascii;
48 return strtod(ascii, (char **)NULL);
52 atof_l(ascii, locale)
53 const char *ascii;
56 return strtod_l(ascii, (char **)NULL, locale);
/freebsd-10.0-release/lib/libc/inet/
H A Dnsap_addr.c46 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) { argument
50 if (ascii[0] != '0' || (ascii[1] != 'x' && ascii[1] != 'X'))
52 ascii += 2;
54 while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
63 c = *ascii++;
82 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) { argument
88 if (ascii)
89 start = ascii;
[all...]
/freebsd-10.0-release/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-10.0-release/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-10.0-release/lib/libnetgraph/
H A Dmsg.c95 struct ng_mesg *reply, *binary, *ascii; local
118 if ((ascii = malloc(sizeof(struct ng_mesg)
123 memset(ascii, 0, sizeof(*ascii));
126 strncpy((char *)ascii->header.cmdstr, cmd,
127 sizeof(ascii->header.cmdstr) - 1);
128 strcpy(ascii->data, args);
129 ascii->header.arglen = strlen(ascii->data) + 1;
134 (u_char *)ascii, sizeo
325 struct ng_mesg *msg, *ascii; local
[all...]
/freebsd-10.0-release/contrib/groff/src/preproc/eqn/
H A Dneqn.sh17 T=ascii ;;
/freebsd-10.0-release/share/man/man7/
H A DMakefile8 ascii.7 \
/freebsd-10.0-release/share/misc/
H A DMakefile6 FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
/freebsd-10.0-release/contrib/mdocml/
H A Dchars.c36 const char *ascii; member in struct:ln
144 *rsz = strlen(ln->ascii);
145 return(ln->ascii);
/freebsd-10.0-release/bin/dd/
H A DMakefile16 .for conv in ascii ebcdic ibm oldascii oldebcdic oldibm \
/freebsd-10.0-release/sys/boot/i386/boot0/
H A Dboot0ext.S188 * Whatever drive we selected, make it an ascii digit and save it back
294 * Remember to un-ascii it. Hey 0x80 is already set, cool!
421 drive: .ascii "Drive "
441 item: .ascii " "; .byte ' '|0x80
442 prompt: .ascii "\nDefault:"; .byte ' '|0x80
443 crlf: .ascii "\r"; .byte '\n'|0x80
482 os_misc: .ascii "Unknow"; .byte 'n'|0x80
483 os_dos: .ascii "DO"; .byte 'S'|0x80
484 os_nt: .ascii "Windows NT/X"; .byte 'P'|0x80
485 os_windows: .ascii "Windo
[all...]
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-10.0-release/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}
131 CLEANFILES+= ${DOC}.ascii ${DOC}.ascii${DCOMPRESS_EXT} \
/freebsd-10.0-release/share/doc/usd/13.viref/
H A DMakefile17 PRINTERDEVICE?= ascii
/freebsd-10.0-release/sys/sys/
H A Dvtoc.h70 char ascii[VTOC_ASCII_LEN]; member in struct:vtoc8
/freebsd-10.0-release/tools/regression/usr.bin/jot/
H A Dregress.sh38 REGRESSION_TEST(`ascii', `jot -c 128 0')
/freebsd-10.0-release/sys/powerpc/include/
H A Dasm.h158 .section .gnu.warning. ## _sym ; .ascii _msg ; .text
161 .section .gnu.warning./**/_sym ; .ascii _msg ; .text
/freebsd-10.0-release/lib/libc/resolv/
H A Dres_debug.c758 /*% converts ascii size/precision X * 10**Y(cm) to 0xXY. moves pointer. */
798 /*% converts ascii lat/lon to unsigned encoded 32-bit number. moves pointer. */
896 loc_aton(ascii, binary)
897 const char *ascii;
911 cp = ascii;
912 maxcp = cp + strlen(ascii);
1007 loc_ntoa(binary, ascii)
1009 char *ascii;
1032 if (ascii == NULL)
1033 ascii
[all...]
/freebsd-10.0-release/lib/libiconv_modules/VIQR/
H A Dcitrus_viqr.c126 int ascii; member in struct:mnemonic_t
135 if (m->ascii == ch)
143 mnemonic_create(mnemonic_t *parent, int ascii, wchar_t value) argument
150 m->ascii = ascii;
/freebsd-10.0-release/sys/netgraph/
H A Dng_base.c2771 struct ng_mesg *binary, *ascii; local
2784 NG_MKRESPONSE(resp, msg, sizeof(*ascii) + bufSize, M_NOWAIT);
2789 ascii = (struct ng_mesg *)resp->data;
2792 bcopy(binary, ascii, sizeof(*binary));
2815 snprintf(ascii->header.cmdstr, sizeof(ascii->header.cmdstr),
2822 *ascii->data = '\0';
2826 ascii->data, bufSize)) != 0) {
2833 bufSize = strlen(ascii->data) + 1;
2834 ascii
2844 struct ng_mesg *ascii, *binary; local
[all...]
/freebsd-10.0-release/sys/ia64/ia64/
H A Dlocore.S196 .ascii "clock"
201 .ascii "#"
/freebsd-10.0-release/contrib/less/
H A Dscreen.c116 int ascii; member in struct:keyRecord
2387 currentKey.ascii = 0;
2407 currentKey.ascii = ip.Event.KeyEvent.uChar.AsciiChar;
2417 currentKey.ascii = 0;
2446 int ascii; local
2462 ascii = currentKey.ascii;
2465 * with '00', so if the ascii code is 00, the next byte will be
2468 pending_scancode = (ascii == 0x00);
2469 return ((char)ascii);
[all...]
/freebsd-10.0-release/contrib/groff/src/roff/troff/
H A Dnode.cpp2144 void glyph_node::ascii_print(ascii_output_file *ascii) argument
2148 ascii->outc(c);
2150 ascii->outs(ci->nm.contents());
2203 void ligature_node::ascii_print(ascii_output_file *ascii) argument
2205 n1->ascii_print(ascii);
2206 n2->ascii_print(ascii);
2828 void break_char_node::ascii_print(ascii_output_file *ascii) argument
2830 ch->ascii_print(ascii);
3440 static void ascii_print_reverse_node_list(ascii_output_file *ascii, node *n) argument
3444 ascii_print_reverse_node_list(ascii,
3448 ascii_print(ascii_output_file *ascii) argument
3453 ascii_print(ascii_output_file *ascii) argument
3463 ascii_print(ascii_output_file *ascii) argument
3469 ascii_print(ascii_output_file *ascii) argument
3476 ascii_print(ascii_output_file *ascii) argument
4254 ascii_print(ascii_output_file *ascii) argument
[all...]

Completed in 283 milliseconds

123