Searched refs:wptr (Results 1 - 17 of 17) sorted by relevance

/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dtokenizer.c78 Char *wptr, *wmax; /* Space and limit on the word buffer */ local
96 *tok->wptr = '\0';
97 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
100 tok->wstart = ++tok->wptr;
139 tok->wptr = tok->wspace;
156 tok->wptr = tok->wspace;
208 co = (int)(tok->wptr - tok->wstart);
226 *tok->wptr++ = *ptr;
230 *tok->wptr++ = *ptr;
235 *tok->wptr
[all...]
/macosx-10.10.1/libedit-40/src/
H A Dtokenizer.c78 Char *wptr, *wmax; /* Space and limit on the word buffer */ local
96 *tok->wptr = '\0';
97 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
100 tok->wstart = ++tok->wptr;
139 tok->wptr = tok->wspace;
156 tok->wptr = tok->wspace;
208 co = (int)(tok->wptr - tok->wstart);
226 *tok->wptr++ = *ptr;
230 *tok->wptr++ = *ptr;
235 *tok->wptr
[all...]
/macosx-10.10.1/lukemftp-14/tnftp/libedit/
H A Dtokenizer.c68 char *wptr, *wmax; /* Space and limit on the word buffer */ member in struct:tokenizer
86 *tok->wptr = '\0';
87 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
90 tok->wstart = ++tok->wptr;
129 tok->wptr = tok->wspace;
146 tok->wptr = tok->wspace;
198 co = tok->wptr - tok->wstart;
216 *tok->wptr++ = *ptr;
220 *tok->wptr++ = *ptr;
225 *tok->wptr
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dadd-random-users.c49 char *wbuf = NULL, *wptr = NULL, *wend = NULL; local
64 if (wptr + len + 1 >= wend) {
65 wptr = wbuf = emalloc (WORDBUF_SIZE);
68 memmove (wptr, buf, len + 1);
69 w[n++] = wptr;
70 wptr += len + 1;
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/TinyTP/
H A Dttppdu.cpp207 unsigned char *wptr; local
212 wptr = BufBase(data); // get the start of the buffer
213 check(wptr);
214 *wptr =byte; // zap the byte
/macosx-10.10.1/ppp-786.1.1/Helpers/pppdump/
H A Ddeflate.c251 u_char *rptr, *wptr; local
276 wptr = mo;
280 state->strm.next_out = wptr;
295 if ((wptr[0] & 1) != 0)
H A Dbsd-comp.c581 u_char *p, *rptr, *wptr; local
603 wptr = dmp + db->hdrlen;
669 p = (wptr += codelen);
700 *wptr++ = finchar;
752 *outlenp = wptr - (dmp + db->hdrlen);
/macosx-10.10.1/cups-408/cups/filter/
H A Draster.c1275 unsigned char *wptr; /* Pointer into write buffer */ local
1290 wptr = realloc(r->buffer, count);
1292 wptr = malloc(count);
1294 if (!wptr)
1297 r->buffer = wptr;
1308 wptr = r->buffer;
1309 *wptr++ = (unsigned char)(r->count - 1);
1326 *wptr++ = 0;
1328 *wptr++ = *start++;
1340 *wptr
[all...]
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dwatch.c493 WATCH_STRUCT_UTMP *utab, *uptr, *wptr; local
545 wptr = wtab;
554 if (!uct || (wct && ucmp(uptr, wptr) > 0))
555 wct--, watchlog(0, wptr++, s, fmt);
556 else if (!wct || (uct && ucmp(uptr, wptr) < 0))
559 uptr++, wptr++, wct--, uct--;
H A Dhist.c3211 char *lptr, *wptr = word; local
3245 if (strpfx(wptr, lptr)) {
3251 if (!strcmp(wptr, ";") && strpfx(";;", lptr)) {
3260 len = strlen(wptr);
3262 wptr += len;
3272 if (!strcmp(wptr, ";"))
3278 if (!*wptr) {
3290 if (*lptr == *wptr ||
3291 (*lptr == '!' && *wptr == '|')) {
3293 wptr
[all...]
H A Dbuiltin.c3861 int *wptr; local
3867 wptr = widths = (int *) zhalloc(argc * sizeof(int));
3868 for (i = 0; i < argc && args[i]; i++, wptr++) {
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dzle_misc.c1350 ZLE_STRING_T ws, lasts, wptr; local
1371 lasts = wptr = ws;
1373 if (i >= 3 && wptr[1] == ZWC('-')) {
1376 if (wptr > lasts)
1378 lasts, wptr - lasts, n);
1379 str[0] = *wptr;
1380 str[1] = wptr[2];
1384 wptr += 3;
1386 lasts = wptr;
1388 wptr
[all...]
H A Dzle_tricky.c1580 char *cspos = zlemetaline + zlemetacs, *wptr, *cptr; local
1588 wptr = cptr = zlemetaline;
1590 cptr = itype_end(wptr, IIDENT, 0);
1591 if (cptr == wptr) {
1593 wptr = (cptr += MB_METACHARLEN(cptr));
1596 wb = wptr - zlemetaline;
1599 wptr = cptr;
1608 char *sqbr = zlemetaline + wb - 1, *cptr, *wptr; local
1611 cptr = wptr = zlemetaline;
1613 cptr = itype_end(wptr, IIDEN
[all...]
H A Dcomplist.c694 * wptr is the point at which the wide character itself starts
704 char *ums, *uptr, *sptr, *wptr; local
732 wptr = sptr + width;
743 sptr = wcs_nicechar(cc, &width, &wptr);
772 if (t < wptr) {
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtw.parse.c583 const Char *wptr; local
590 for (wptr = word;;) {
599 w = *wptr;
617 if (wptr[1] == 0)
653 wptr++;
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dcurses.c755 wchar_t *wstr, *wptr; local
769 wptr = wstr = zhalloc((strlen(str)+1) * sizeof(wchar_t));
775 *wptr++ = wc;
777 *wptr++ = L'\0';
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Delf64-ppc.c6536 bfd_byte *rptr, *wptr;
6574 wptr = new_contents;
6646 fdh->elf.root.u.def.value = wptr - new_contents;
6657 = (wptr - new_contents) - (rptr - sec->contents);
6659 if (wptr != rptr)
6660 memcpy (wptr, rptr, opd_ent_size);
6661 wptr += opd_ent_size;
6664 memset (wptr, '\0', 8);
6665 wptr += 8;
6692 sec->size = wptr
6532 bfd_byte *rptr, *wptr; local
[all...]

Completed in 205 milliseconds