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

12

/haiku-fatelf/src/kits/network/libbind/inet/
H A Dnsap_addr.c44 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) { argument
48 if (ascii[0] != '0' || (ascii[1] != 'x' && ascii[1] != 'X'))
50 ascii += 2;
52 while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
61 c = *ascii++;
80 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) { argument
86 if (ascii)
87 start = ascii;
[all...]
/haiku-fatelf/src/system/boot/platform/raspberrypi_arm/
H A Dkeyboard.h15 uint8 ascii; member in struct:key::__anon5319
H A Dconsole.cpp214 return key.code.ascii;
/haiku-fatelf/src/system/boot/platform/routerboard_mipsel/
H A Dkeyboard.h15 uint8 ascii; member in struct:key::__anon5320
H A Dconsole.cpp106 return key.code.ascii;
/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Dkeyboard.cpp46 switch (key.code.ascii) {
H A Dstage1.S87 .ascii "DOS"
88 // .ascii "BFS"
197 .ascii "dos.library"
201 .ascii "intuition.library"
207 .ascii "Welcome to Haiku\0"
209 .ascii "\0\0"
213 .ascii "CON:0/0/640/255/plop\0"
H A Dkeyboard.h14 uint8 ascii; member in struct:key::__anon5281
H A Dconsole.cpp299 char ascii; local
301 if (Read(&ascii, 1) < 1)
303 //dprintf("ascii %d %c\n", ascii, ascii);
305 if (ascii == (char)0x9b) {
306 if (Read(&ascii, 1) < 1)
308 //dprintf(">ascii %d %c\n", ascii, ascii);
485 char ascii; local
583 char ascii; local
[all...]
H A Dshell.S60 .ascii "DOS"
283 .ascii "dos.library"
287 .ascii "intuition.library"
293 .ascii "Error loading Haiku: "
295 .ascii "XXXXXXXX\0"
/haiku-fatelf/src/system/boot/platform/atari_m68k/
H A Dkeyboard.h14 uint8 ascii; member in struct:key::__anon5297
H A Dkeyboard.cpp51 switch (key.code.ascii) {
H A Dstage1.S117 .ascii "Haiku!"
H A Dconsole.cpp340 if (key.code.ascii == 0) {
358 return key.code.ascii;
/haiku-fatelf/src/system/boot/platform/bios_ia32/
H A Dkeyboard.h11 uint8 ascii; member in struct:key::__anon5310
H A Dconsole.cpp164 if (key.code.ascii == 0) {
186 return key.code.ascii;
/haiku-fatelf/src/system/boot/platform/u-boot/
H A Dkeyboard.h11 uint8 ascii; member in struct:key::__anon5321
/haiku-fatelf/src/add-ons/translators/ppm/
H A DPPMTranslator.cpp186 int ascii = g_settings.write_ascii; local
187 if (sscanf(ptr, "%d", &ascii) != 1) {
192 g_settings.write_ascii = ascii;
233 int * max, bool * ascii, color_space * space, bool * is_ppm, char ** comment);
235 int * height, int * max, bool * ascii, color_space * space);
268 bool ascii, is_ppm; local
270 status_t err = read_ppm_header(inSource, &width, &rowbytes, &height, &max, &ascii, &space, &is_ppm, NULL);
320 bool ascii, is_ppm; local
325 status_t err = read_ppm_header(inSource, &width, &rowbytes, &height, &max, &ascii, &space, &is_ppm, &comment);
345 ioExtension->FindBool("ppm /ascii",
589 bool ascii; local
685 read_ppm_header( BDataIO * inSource, int * width, int * rowbytes, int * height, int * max, bool * ascii, color_space * space, bool * is_ppm, char ** comment) argument
800 read_bits_header( BDataIO * io, int skipped, int * width, int * rowbytes, int * height, int * max, bool * ascii, color_space * space) argument
[all...]
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_debug.c779 /*% converts ascii size/precision X * 10**Y(cm) to 0xXY. moves pointer. */
819 /*% converts ascii lat/lon to unsigned encoded 32-bit number. moves pointer. */
917 loc_aton(ascii, binary)
918 const char *ascii;
932 cp = ascii;
933 maxcp = cp + strlen(ascii);
1028 loc_ntoa(binary, ascii)
1030 char *ascii;
1053 if (ascii == NULL)
1054 ascii
[all...]
/haiku-fatelf/src/bin/gzip/
H A Dgzip.c201 int ascii = 0; /* convert end-of-lines to local OS conventions */ variable
246 {"ascii", 0, 0, 'a'}, /* ascii text mode */
330 " -a --ascii ascii text; convert end-of-lines using local conventions",
485 ascii = 1; break;
563 if (ascii && !quiet) {
564 fprintf(stderr, "%s: option --ascii ignored on this system\n",
589 if (to_stdout && !test && !list && (!decompress || !ascii)) {
632 if (decompress || !ascii) {
[all...]
/haiku-fatelf/src/bin/less/
H A Dscreen.c117 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...]
/haiku-fatelf/src/bin/network/tcpdump/win32/prj/
H A DGNUmakefile50 ../../print-ascii.o \
/haiku-fatelf/src/bin/zip/
H A Dzipup.c304 int set_type = 0; /* set if file type (ascii/binary) unknown */
308 isdir = z->iname[z->nam-1] == (char)0x2f; /* ascii[(unsigned)('/')] */
755 *b = (char)ascii[(uch)*b];
775 *buf++ = (char)ascii[(uch)c];
803 *buf++ = (char)(c == '\n' ? LF : ascii[(uch)c]);
818 *buf = (char)(*buf == '\n' ? LF : ascii[(uch)(*buf)]);
H A Dutil.c436 while (*str1++ = (char)ascii[(uch)(*str2++)]);
453 *mem1++ = (char)ascii[(uch)(*mem2++)];
/haiku-fatelf/src/libs/iconv/
H A Dencodings.def52 ascii,

Completed in 137 milliseconds

12