| /src/external/gpl3/gdb.old/dist/gdb/target/ |
| target.c | 71 gdb_byte *bufptr; /* Pointer to next available byte in local 86 bufptr = buffer->get (); 88 nfetch = partial_memory_read (addr, bufptr, fetchlen * width, &errcode) 91 bufptr += nfetch * width; 119 bufptr = buffer->get () + bufsize * width; 123 nfetch = partial_memory_read (addr, bufptr, nfetch * width, &errcode) 128 that bufptr is explicitly left pointing at the next character 132 limit = bufptr + nfetch * width; 133 while (bufptr < limit) 138 if (bufptr[i] != 0 [all...] |
| /src/external/gpl3/gdb/dist/gdb/target/ |
| target.c | 71 gdb_byte *bufptr; /* Pointer to next available byte in local 86 bufptr = buffer->get (); 88 nfetch = partial_memory_read (addr, bufptr, fetchlen * width, &errcode) 91 bufptr += nfetch * width; 119 bufptr = buffer->get () + bufsize * width; 123 nfetch = partial_memory_read (addr, bufptr, nfetch * width, &errcode) 128 that bufptr is explicitly left pointing at the next character 132 limit = bufptr + nfetch * width; 133 while (bufptr < limit) 138 if (bufptr[i] != 0 [all...] |
| /src/external/gpl3/gdb.old/dist/sim/m32c/ |
| mem.h | 30 void mem_put_blk (int address, const void *bufptr, int nbytes); 39 void mem_get_blk (int address, void *bufptr, int nbytes);
|
| mem.c | 369 mem_put_blk (int address, const void *bufptr, int nbytes) 371 const unsigned char *buf = bufptr; 540 mem_get_blk (int address, void *bufptr, int nbytes) 542 char *buf = bufptr;
|
| /src/external/gpl3/gdb/dist/sim/m32c/ |
| mem.h | 30 void mem_put_blk (int address, const void *bufptr, int nbytes); 39 void mem_get_blk (int address, void *bufptr, int nbytes);
|
| mem.c | 369 mem_put_blk (int address, const void *bufptr, int nbytes) 371 const unsigned char *buf = bufptr; 540 mem_get_blk (int address, void *bufptr, int nbytes) 542 char *buf = bufptr;
|
| /src/external/gpl3/gdb.old/dist/sim/rl78/ |
| mem.h | 43 void mem_put_blk (int address, const void *bufptr, int nbytes); 52 void mem_get_blk (int address, void *bufptr, int nbytes);
|
| mem.c | 353 mem_put_blk (int address, const void *bufptr, int nbytes) 355 const unsigned char *bp = (unsigned char *)bufptr; 428 mem_get_blk (int address, void *bufptr, int nbytes) 430 unsigned char *bp = (unsigned char *)bufptr;
|
| /src/external/gpl3/gdb/dist/sim/rl78/ |
| mem.h | 43 void mem_put_blk (int address, const void *bufptr, int nbytes); 52 void mem_get_blk (int address, void *bufptr, int nbytes);
|
| mem.c | 353 mem_put_blk (int address, const void *bufptr, int nbytes) 355 const unsigned char *bp = (unsigned char *)bufptr; 428 mem_get_blk (int address, void *bufptr, int nbytes) 430 unsigned char *bp = (unsigned char *)bufptr;
|
| /src/external/bsd/top/dist/ |
| screen.c | 217 char *bufptr; local 293 bufptr = string_buffer; 298 tc_clear_line = tgetstr("ce", &bufptr); 302 if ((tc_clear_screen = tgetstr("cl", &bufptr)) == NULL || 303 (tc_cursor_motion = tgetstr("cm", &bufptr)) == NULL) 310 tc_clear_to_end = tgetstr("cd", &bufptr); 311 terminal_init = tgetstr("ti", &bufptr); 312 terminal_end = tgetstr("te", &bufptr); 313 tc_start_standout = tgetstr("so", &bufptr); 314 tc_end_standout = tgetstr("se", &bufptr); [all...] |
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| cgen-trace.c | 69 static char *bufptr; variable 86 bufptr = trace_buf; 87 *bufptr = 0; 276 /* Print trace output to BUFPTR if active, otherwise print normally. 286 if (bufptr == NULL) 296 vsprintf (bufptr, fmt, args); 297 bufptr += strlen (bufptr); 299 if (bufptr - trace_buf > SIZE_TRACE_BUF)
|
| /src/external/gpl3/gdb/dist/sim/common/ |
| cgen-trace.c | 69 static char *bufptr; variable 86 bufptr = trace_buf; 87 *bufptr = 0; 276 /* Print trace output to BUFPTR if active, otherwise print normally. 286 if (bufptr == NULL) 296 vsprintf (bufptr, fmt, args); 297 bufptr += strlen (bufptr); 299 if (bufptr - trace_buf > SIZE_TRACE_BUF)
|
| /src/usr.sbin/bootp/common/ |
| hwaddr.c | 153 char *bufptr; local 158 bufptr = haddrbuf; 160 snprintf(bufptr, sizeof(haddrbuf) - (bufptr - haddrbuf), 162 bufptr += 3; 165 bufptr[-1] = 0;
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| base64.d | 239 auto bufptr = buffer.ptr; 245 *bufptr++ = EncodeMap[val >> 18 ]; 246 *bufptr++ = EncodeMap[val >> 12 & 0x3f]; 247 *bufptr++ = EncodeMap[val >> 6 & 0x3f]; 248 *bufptr++ = EncodeMap[val & 0x3f]; 255 *bufptr++ = EncodeMap[val >> 18 ]; 256 *bufptr++ = EncodeMap[val >> 12 & 0x3f]; 261 *bufptr++ = EncodeMap[val >> 6 & 0x3f]; 263 *bufptr++ = Padding; 268 *bufptr++ = Padding [all...] |
| /src/external/bsd/ntp/dist/ntpd/ |
| refclock_acts.c | 210 char *bufptr; /* next incoming char stored here */ member in struct:actsunit 211 char buf[BMAX]; /* bufptr roams within buf[] */ 272 up->bufptr = up->buf; 330 octets = sizeof(up->buf) - (up->bufptr - up->buf); 334 if (up->bufptr == up->buf) { 338 *up->bufptr = '\0'; 339 up->bufptr = up->buf; 343 *up->bufptr++ = *tptr; 524 up->bufptr = up->buf;
|
| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| slh-dsa.c | 214 uint8_t *bufptr; local 239 bufptr = ((*buf)[0] & 0x4) ? NULL : pubbuf; 241 broken = (bufptr == NULL) ? 1 : 0; 244 (char *)bufptr, buflen); 254 bufptr = ((*buf)[0] & 0x10) ? NULL : prvbuf; 256 broken = (bufptr == NULL) ? 1 : 0; 258 (char *)bufptr, buflen);
|
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| sasl.c | 669 ber_slen_t ret, bufptr; local 678 bufptr = ret; 682 return bufptr; 696 return bufptr ? bufptr : ret; 726 return bufptr ? bufptr : ret; 744 bufptr += ber_pvt_sb_copy_out( &p->buf_in, (char*) buf + bufptr, len ); 746 return bufptr; [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/ |
| darwin-c.cc | 341 const char *bufptr; local 347 bufptr = strchr (fname, '/'); 350 if (bufptr == 0) 353 fname_len = bufptr - fname; 359 bufptr = strstr (pname, dot_framework); 363 if (!bufptr) 366 /* Now translate. For example, +- bufptr 376 bufptr += strlen (dot_framework); 378 sfrname_len = bufptr - pname;
|
| /src/external/gpl3/gcc.old/dist/gcc/config/ |
| darwin-c.cc | 341 const char *bufptr; local 347 bufptr = strchr (fname, '/'); 350 if (bufptr == 0) 353 fname_len = bufptr - fname; 359 bufptr = strstr (pname, dot_framework); 363 if (!bufptr) 366 /* Now translate. For example, +- bufptr 376 bufptr += strlen (dot_framework); 378 sfrname_len = bufptr - pname;
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/nssov/nss-pam-ldapd/ |
| nslcd-prot.h | 212 size_t bufptr; - the current position in the buffer 217 (buffer + bufptr) 221 if ((bufptr + (size_t)(sz)) > buflen) \ 224 tmpint32 = bufptr + (sz) - (buflen); \ 231 bufptr += (size_t)(sz); 263 /* read string in the buffer (using buffer, buflen and bufptr)
|
| /src/external/gpl3/gcc/dist/gcc/config/i386/ |
| winnt.cc | 715 char *bufptr; 719 for (bufptr = wrapper_list_buffer; *bufptr; ++bufptr) 722 if (ISSPACE (*bufptr)) 724 if (*bufptr == '_') 725 found = bufptr; 726 while (*bufptr && !ISSPACE (*bufptr)) 727 ++bufptr; 713 char *bufptr; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| winnt.cc | 715 char *bufptr; 719 for (bufptr = wrapper_list_buffer; *bufptr; ++bufptr) 722 if (ISSPACE (*bufptr)) 724 if (*bufptr == '_') 725 found = bufptr; 726 while (*bufptr && !ISSPACE (*bufptr)) 727 ++bufptr; 713 char *bufptr; local [all...] |
| /src/sys/dev/pcmcia/ |
| if_cnw.c | 687 int buffer, bufsize, bufoffset, bufptr, bufspace, len, mbytes, n; local 702 bufptr = sc->sc_memoff + buffer + bufoffset; 712 bufptr = sc->sc_memoff + buffer + bufoffset; 722 bufptr, mptr, n); 723 bufptr += n; 743 int totbytes, buffer, bufbytes, bufptr, mbytes, n; local 754 bufptr = 0; /* XXX make gcc happy */ 796 bufptr = sc->sc_memoff + buffer + 802 buffer, (u_long)(bufptr - buffer - 808 bufptr, mptr, n) [all...] |
| /src/external/gpl3/gdb.old/dist/sim/rx/ |
| mem.c | 442 unsigned char *bufptr = (unsigned char *) bufptr_void; local 448 mem_put_byte (address++, *bufptr++); 577 char *bufptr = (char *) bufptr_void; local 583 *bufptr++ = mem_get_byte (address++);
|