Searched refs:beg (Results 1 - 25 of 49) sorted by relevance

12

/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A Dlib_redrawln.c45 wredrawln(WINDOW *win, int beg, int num) argument
51 T((T_CALLED("wredrawln(%p,%d,%d)"), win, beg, num));
56 if (beg < 0)
57 beg = 0;
59 if (touchline(win, beg, num) == ERR)
62 if (touchline(curscr, beg + win->_begy, num) == ERR)
65 end = beg + num;
76 for (i = beg; i < end; i++) {
/freebsd-9.3-release/contrib/nvi/vi/
H A Dv_increment.c60 size_t beg, blen, end, len, nlen, wlen; local
94 for (beg = vp->m_start.cno; beg < len && isspace(p[beg]); ++beg);
95 if (beg >= len)
97 if (beg != vp->m_start.cno) {
98 sp->cno = beg;
113 wlen = len - beg;
114 if (p[beg]
[all...]
H A Dvi.c1045 size_t beg, end, len; local
1068 beg = sp->cno; beg < len && isspace(p[beg]); moved = 1, ++beg);
1069 if (beg >= len) {
1074 sp->cno = beg;
1079 for (state = inword(p[beg]),
1080 end = beg; ++end < len && state == inword(p[end]););
1083 len = (end - beg);
[all...]
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Dsearch.c327 register char const *buflim, *beg, *end; local
364 for (beg = end = buf; end < buflim; beg = end)
382 offset = kwsexec (kwset, beg, buflim - beg, &kwsm);
391 size_t mlen = mbrlen (beg, bytes_left, &mbs);
393 last_char = beg;
398 beg++;
408 beg += mlen;
414 beg
680 char const *beg, *lim, *err; local
891 register char const *beg, *try, *end; local
[all...]
H A Dgrep.c560 char const *beg; local
561 for (beg = lastnl; beg != lim; beg = memchr (beg, eolbyte, lim - beg), beg++)
586 prline (char const *beg, char const *lim, int sep) argument
592 nlscan (beg);
599 uintmax_t pos = add_count (totalcc, beg
684 prtext(char const *beg, char const *lim, int *nlinesp) argument
749 grepbuf(char const *beg, char const *lim) argument
807 char *beg; local
[all...]
H A Dkwset.c587 char const *beg, *lim, *mch, *lmch; local
638 beg = end - 1;
642 mch = beg;
646 while (beg > text)
648 c = trans ? trans[(unsigned char) *--beg] : *--beg;
660 mch = beg;
685 beg = end - 1;
691 if (trie->accepting && beg <= mch)
693 lmch = beg;
[all...]
/freebsd-9.3-release/contrib/gcc/config/
H A Dsvr3.h144 func_ptr *p, *beg = alloca (0); \
145 for (p = beg; *p; p++) \
147 while (p != beg) \
156 func_ptr *p, *beg = alloca (0); \
157 for (p = beg; *p; ) \
/freebsd-9.3-release/lib/libc/gen/
H A Dtimezone.c58 char *beg, local
61 if ( (beg = getenv("TZNAME")) ) { /* set in environment */
62 if ( (end = index(beg, ',')) ) {/* "PST,PDT" */
66 (void)strncpy(czone,beg,sizeof(czone) - 1);
71 return(beg);
/freebsd-9.3-release/crypto/heimdal/appl/push/
H A Dpush.c316 char *beg, *p; local
337 beg = in_buf;
340 && (p = strstr(beg, "\r\n")) != NULL) {
342 char *copy = beg;
352 if (beg[0] == '.' && beg[1] == '\r' && beg[2] == '\n') {
363 rem -= p - beg + 2;
364 beg = p + 2;
366 char *copy = beg;
[all...]
/freebsd-9.3-release/usr.bin/mail/
H A Dlist.c118 int tok, beg, mc, star, other, valdot, colmod, colresult; local
131 beg = 0;
142 if (beg != 0) {
145 for (i = beg; i <= lexnumber; i++)
148 beg = 0;
151 beg = lexnumber;
152 if (check(beg, f))
157 mark(beg);
158 beg = 0;
163 if (beg !
[all...]
/freebsd-9.3-release/usr.bin/split/
H A Dsplit.c357 char beg, end; local
371 beg = '0';
375 beg = 'a';
378 pattlen = end - beg + 1;
394 fpnt[i] = tfnum % pattlen + beg;
/freebsd-9.3-release/lib/libfetch/
H A Dftp.c272 const char *beg, *end; local
308 for (beg = file + i; beg < end && *beg == '/'; ++beg, ++i)
312 if (beg >= end)
316 e = ftp_cmd(conn, "CWD %.*s", (int)(end - beg), beg);
322 for (beg = file + i; beg < en
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Dcsh-mode.el509 (let ((beg (point)))
511 (delete-region beg (point)))
777 (beg (unwind-protect
783 (pattern (buffer-substring beg end))
789 (goto-char beg)
832 (delete-region beg end)
/freebsd-9.3-release/lib/libz/
H A Ddeflate.c767 uInt beg = s->pending; /* start of bytes to update crc */ local
771 if (s->gzhead->hcrc && s->pending > beg)
772 strm->adler = crc32(strm->adler, s->pending_buf + beg,
773 s->pending - beg);
775 beg = s->pending;
782 if (s->gzhead->hcrc && s->pending > beg)
783 strm->adler = crc32(strm->adler, s->pending_buf + beg,
784 s->pending - beg);
795 uInt beg = s->pending; /* start of bytes to update crc */ local
800 if (s->gzhead->hcrc && s->pending > beg)
826 uInt beg = s->pending; /* start of bytes to update crc */ local
[all...]
H A Dinffast.c75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
102 beg = out - (start - strm->avail_out);
186 op = (unsigned)(out - beg); /* max distance in output */
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c660 uInt beg = s->pending; /* start of bytes to update crc */ local
664 if (s->gzhead->hcrc && s->pending > beg)
665 strm->adler = crc32(strm->adler, s->pending_buf + beg,
666 s->pending - beg);
668 beg = s->pending;
675 if (s->gzhead->hcrc && s->pending > beg)
676 strm->adler = crc32(strm->adler, s->pending_buf + beg,
677 s->pending - beg);
688 uInt beg = s->pending; /* start of bytes to update crc */ local
693 if (s->gzhead->hcrc && s->pending > beg)
719 uInt beg = s->pending; /* start of bytes to update crc */ local
[all...]
H A Dinffast.c77 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
104 beg = out - (start - strm->avail_out);
188 op = (unsigned)(out - beg); /* max distance in output */
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dobj-elf.c882 char *name, *group_name, *beg; local
926 beg = demand_copy_C_string (&dummy);
927 if (beg == NULL)
932 attr |= obj_elf_parse_section_letters (beg, strlen (beg));
945 beg = demand_copy_C_string (&dummy);
946 if (beg == NULL)
951 type = obj_elf_section_type (beg, strlen (beg));
955 beg
[all...]
/freebsd-9.3-release/contrib/libstdc++/src/
H A Dstrstream.cc237 (dir == ios_base::beg || dir == ios_base::end))
255 case ios_base::beg:
299 { return seekoff(pos - pos_type(off_type(0)), ios_base::beg, mode); }
H A Dios.cc72 const ios_base::seekdir ios_base::beg; member in class:ios_base
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DFormatString.h435 static PrintfSpecifier Parse(const char *beg, const char *end);
584 static ScanfSpecifier Parse(const char *beg, const char *end);
647 const char *beg, const char *end, const LangOptions &LO,
651 const char *beg, const char *end, const LangOptions &LO,
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Dstdio_sync_filebuf.h164 if (__dir == std::ios_base::beg)
184 { return seekoff(std::streamoff(__pos), std::ios_base::beg, __mode); }
/freebsd-9.3-release/contrib/binutils/gas/
H A Ddwarf2dbg.c1378 symbolS *beg, *end;
1381 beg = symbol_temp_new (s->seg, 0, frag);
1382 s->text_start = beg;
1389 expr.X_add_symbol = beg;
1454 symbolS *beg, *end;
1457 beg = symbol_temp_new (s->seg, 0, frag);
1458 s->text_start = beg;
1465 expr.X_add_symbol = beg;
1471 expr.X_op_symbol = beg;
1374 symbolS *beg, *end; local
1450 symbolS *beg, *end; local
/freebsd-9.3-release/sys/kern/
H A Dkern_fail.c571 parse_type(struct fail_point_entry *ent, char *beg) argument
578 if (strncmp(fail_type_strings[type].name, beg, len) == 0) {
580 return (beg + len);
/freebsd-9.3-release/contrib/libc++/src/
H A Ddebug.cpp435 __i_node** beg = local
437 if (beg == nullptr)
444 memcpy(beg, beg_, nc/2*sizeof(__i_node*));
446 beg_ = beg;

Completed in 179 milliseconds

12