| /openbsd-src/lib/libcurses/tinfo/ |
| H A D | captoinfo.c | 564 save_tc_char(char *bufptr, int c1) in save_tc_char() argument 568 bufptr = save_char(bufptr, '\\'); in save_tc_char() 569 bufptr = save_char(bufptr, c1); in save_tc_char() 580 bufptr = save_string(bufptr, temp); in save_tc_char() 582 return bufptr; in save_tc_char() 586 save_tc_inequality(char *bufptr, int c1, int c2) in save_tc_inequality() argument 588 bufptr = save_string(bufptr, "%>"); in save_tc_inequality() 589 bufptr = save_tc_char(bufptr, c1); in save_tc_inequality() 590 bufptr = save_tc_char(bufptr, c2); in save_tc_inequality() 591 return bufptr; in save_tc_inequality() [all …]
|
| H A D | comp_scan.c | 102 static char *bufptr; /* otherwise, the input buffer pointer */ variable 124 bufstart = bufptr = buf; in _nc_reset_input() 141 size_t len = strlen(bufptr); in last_char() 145 if (!isspace(UChar(bufptr[len]))) { in last_char() 147 result = bufptr[(int) len - from_end]; in last_char() 205 bufptr = 0; in next_char() 213 if (bufptr == 0 || *bufptr == '\0') in next_char() 215 if (*bufptr == '\n') { in next_char() 218 } else if (*bufptr == '\t') { in next_char() 221 } else if (!bufptr || !*bufptr) { in next_char() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | unixish.h | 120 #define Stat(fname,bufptr) stat((fname),(bufptr)) 124 # define Fstat(fd,bufptr) afstat((fd),(bufptr)) argument 128 # define Fstat(fd,bufptr) fstat((fd),(bufptr)) argument 132 Fstat(fd,bufptr) global() argument
|
| H A D | dosish.h | 96 #define Fstat(fd,bufptr) fstat((fd),(bufptr)) argument 101 # define Stat(fname,bufptr) stat((fname),(bufptr)) argument
|
| H A D | toke.c | 70 #define PL_bufptr (PL_parser->bufptr) 932 parser->bufptr = in Perl_lex_start() 934 parser->bufend = parser->bufptr + SvCUR(parser->linestr); in Perl_lex_start() 1013 lexing position is pointed to by L</PL_parser-E<gt>bufptr>. Direct use 1025 =for apidoc AmnxUN|char *|PL_parser-E<gt>bufptr 1122 bufptr_pos = PL_parser->bufptr - buf; in Perl_lex_grow_linestr() 1134 PL_parser->bufptr = buf + bufptr_pos; in Perl_lex_grow_linestr() 1151 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>), 1174 char *bufptr; in Perl_lex_stuff_pvn() local 1188 bufptr in Perl_lex_stuff_pvn() [all...] |
| H A D | parser.h | 83 char *bufptr; /* carries the cursor (current parsing member
|
| /openbsd-src/gnu/usr.bin/perl/plan9/ |
| H A D | plan9ish.h | 120 #define Stat(fname,bufptr) stat((fname),(bufptr)) argument 121 #define Fstat(fd,bufptr) fstat((fd),(bufptr)) argument
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | valprint.c | 890 char *bufptr; /* Pointer to next available byte in buffer. */ in val_print_string() local 925 bufptr = buffer; in val_print_string() 928 nfetch = partial_memory_read (addr, bufptr, len * width, &errcode) in val_print_string() 931 bufptr += nfetch * width; in val_print_string() 950 bufptr = buffer + bufsize * width; in val_print_string() 954 nfetch = partial_memory_read (addr, bufptr, nfetch * width, &errcode) in val_print_string() 963 limit = bufptr + nfetch * width; in val_print_string() 964 while (bufptr < limit) in val_print_string() 968 c = extract_unsigned_integer (bufptr, width); in val_print_string() 970 bufptr += width; in val_print_string() [all …]
|
| H A D | target.c | 772 char *bufptr; in target_read_string() local 778 bufptr = buffer; in target_read_string() 800 if (bufptr - buffer + tlen > buffer_allocated) in target_read_string() 803 bytes = bufptr - buffer; in target_read_string() 806 bufptr = buffer + bytes; in target_read_string() 811 *bufptr++ = buf[i + offset]; in target_read_string()
|
| /openbsd-src/gnu/gcc/gcc/config/ |
| H A D | darwin-c.c | 344 char *bufptr; in find_subframework_file() local 350 bufptr = strchr (fname, '/'); in find_subframework_file() 353 if (bufptr == 0) in find_subframework_file() 356 fname_len = bufptr - fname; in find_subframework_file() 362 bufptr = strstr (pname, dot_framework); in find_subframework_file() 366 if (!bufptr) in find_subframework_file() 379 bufptr += strlen (dot_framework); in find_subframework_file() 381 sfrname_len = bufptr - pname; in find_subframework_file()
|
| /openbsd-src/gnu/usr.bin/perl/win32/ |
| H A D | win32iop.h | 242 #define fstat(fd,bufptr) win32_fstat(fd,bufptr) argument 246 #define stat(pth,bufptr) win32_stat(pth,bufptr) argument 247 #define lstat(pth,bufptr) win32_lstat(pth,bufptr) argument
|
| /openbsd-src/gnu/usr.bin/perl/os2/ |
| H A D | os2ish.h | 440 #define Stat(fname,bufptr) os2_stat((fname),(bufptr)) argument 441 #define Fstat(fd,bufptr) os2_fstat((fd),(bufptr)) 456 #define Stat(fname,bufptr) stat((fname),(bufptr)) argument 457 #define Fstat(fd,bufptr) fstat((fd),(bufptr)) 439 Stat(fname,bufptr) global() argument 455 Stat(fname,bufptr) global() argument
|
| /openbsd-src/gnu/usr.bin/binutils/ld/ |
| H A D | deffilep.y | 841 static int bufptr = 0; variable 846 if (bufptr == buflen) in put_buf() 854 buffer[bufptr++] = c; in put_buf() 855 buffer[bufptr] = 0; /* not optimal, but very convenient. */ in put_buf() 972 bufptr = 0; in def_lex() 989 bufptr = 0; in def_lex() 1037 bufptr = 0; in def_lex()
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/ld/ |
| H A D | deffilep.y | 851 static int bufptr = 0; variable 856 if (bufptr == buflen) in put_buf() 864 buffer[bufptr++] = c; in put_buf() 865 buffer[bufptr] = 0; /* not optimal, but very convenient. */ in put_buf() 982 bufptr = 0; in def_lex() 999 bufptr = 0; in def_lex() 1047 bufptr = 0; in def_lex()
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/ |
| H A D | ecoff.c | 1436 char *bufptr, unsigned long need); 3608 char *bufptr, in ecoff_add_bytes() argument 3614 at = bufptr - *buf; in ecoff_add_bytes() 3615 need -= *bufend - bufptr; in ecoff_add_bytes() 3662 char *bufptr; in ecoff_build_lineno() local 3676 bufptr = *buf + offset; in ecoff_build_lineno() 3810 if (bufptr >= *bufend) in ecoff_build_lineno() 3811 bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 1); in ecoff_build_lineno() 3812 *bufptr++ = setcount + (delta << 4); in ecoff_build_lineno() 3820 if (*bufend - bufptr < 3) in ecoff_build_lineno() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gas/ |
| H A D | ecoff.c | 1435 char *bufptr, unsigned long need); 3611 char *bufptr, in ecoff_add_bytes() argument 3617 at = bufptr - *buf; in ecoff_add_bytes() 3618 need -= *bufend - bufptr; in ecoff_add_bytes() 3665 char *bufptr; in ecoff_build_lineno() local 3679 bufptr = *buf + offset; in ecoff_build_lineno() 3811 if (bufptr >= *bufend) in ecoff_build_lineno() 3812 bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 1); in ecoff_build_lineno() 3813 *bufptr++ = setcount + (delta << 4); in ecoff_build_lineno() 3821 if (*bufend - bufptr < 3) in ecoff_build_lineno() [all …]
|
| /openbsd-src/sys/dev/fdt/ |
| H A D | if_mvnetareg.h | 777 uint32_t bufptr; /* Descriptor buffer pointer */ member 782 uint32_t bufptr; /* Descriptor buffer pointer */ 794 uint32_t bufptr; /* Descriptor buffer pointer */ member 799 uint32_t bufptr; /* Descriptor buffer pointer */
|
| H A D | if_mvneta.c | 933 txd->bufptr = map->dm_segs[i].ds_addr; in mvneta_encap() 1780 rxd->bufptr = rxb->tb_map->dm_segs[0].ds_addr; in mvneta_fill_rx_ring()
|
| /openbsd-src/gnu/usr.bin/perl/vms/ |
| H A D | vmsish.h | 494 #define Stat(name,bufptr) flex_stat(name,bufptr) argument 495 #define Fstat(fd,bufptr) Perl_flex_fstat(aTHX_ fd,bufptr) argument 497 #define lstat(name, bufptr) flex_lstat(name, bufptr) argument
|
| /openbsd-src/sys/arch/armv7/omap/ |
| H A D | if_cpswreg.h | 133 uint32_t bufptr; member
|
| H A D | if_cpsw.c | 576 bd.bufptr = dm->dm_segs[seg].ds_addr; in cpsw_start() 598 bd.bufptr = sc->sc_txpad_pa; in cpsw_start() 791 bd.bufptr = rdp->rx_dm[i]->dm_segs[0].ds_addr; in cpsw_new_rxbuf()
|
| /openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/ |
| H A D | variables | 104 # define PL_bufptr bufptr 191 # define PL_bufptr D_PPP_my_PL_parser_var(bufptr)
|
| /openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/ |
| H A D | TODO | 60 bufptr
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Term-ReadKey/ |
| H A D | ppport.h | 12123 # define PL_bufptr bufptr 12217 # define PL_bufptr D_PPP_my_PL_parser_var(bufptr)
|
| /openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/ |
| H A D | apidoc.fnc | 719 AmnxUNd|char *|PL_parser-E<gt>bufptr
|