Searched refs:cend (Results 1 - 22 of 22) sorted by relevance

/freebsd-10-stable/contrib/binutils/libiberty/
H A Dfnmatch.c143 register unsigned char cstart = c, cend = c; local
146 cstart = cend = *p++;
148 cstart = cend = FOLD (cstart);
163 cend = *p++;
164 if (!(flags & FNM_NOESCAPE) && cend == '\\')
165 cend = *p++;
166 if (cend == '\0')
168 cend = FOLD (cend);
174 && FOLD ((unsigned char)*n) <= cend)
[all...]
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dfnmatch.c143 register unsigned char cstart = c, cend = c; local
146 cstart = cend = *p++;
148 cstart = cend = FOLD (cstart);
163 cend = *p++;
164 if (!(flags & FNM_NOESCAPE) && cend == '\\')
165 cend = *p++;
166 if (cend == '\0')
168 cend = FOLD (cend);
174 && FOLD ((unsigned char)*n) <= cend)
[all...]
/freebsd-10-stable/sys/sparc64/isa/
H A Dofw_isa.c102 uint64_t offs, cstart, cend; local
108 cend = cstart + r->size - 1;
109 if (*start < cstart || *start > cend)
111 if (*end < cstart || *end > cend) {
114 cend);
/freebsd-10-stable/sys/kern/
H A Dtty_outq.c141 size_t cbegin, cend, clen; local
157 cend = MIN(MIN(to->to_end, to->to_begin + len),
159 clen = cend - cbegin;
166 if (cend == to->to_end) {
170 } else if (cend == TTYOUTQ_DATASIZE) {
202 size_t cbegin, cend, clen; local
218 cend = MIN(MIN(to->to_end, to->to_begin + uio->uio_resid),
220 clen = cend - cbegin;
229 if (cend == TTYOUTQ_DATASIZE || cend
[all...]
H A Dtty_inq.c167 size_t cbegin, cend, clen; local
183 cend = MIN(MIN(ti->ti_linestart, ti->ti_begin + rlen),
185 clen = cend - cbegin;
196 if (cend == TTYINQ_DATASIZE || cend == ti->ti_end) {
/freebsd-10-stable/sys/sparc64/sparc64/
H A Dofw_machdep.c128 uint64_t cend, cstart, end, phys, pphys, sz, start; local
244 cend = phys + sz - 1;
245 if (start < cstart || start > cend)
247 if (end < cstart || end > cend)
H A Dupa.c412 bus_addr_t cend, cstart; local
439 cend = cstart + sc->sc_ranges[i].size - 1;
440 if (start < cstart || start > cend)
442 if (end < cstart || end > cend)
/freebsd-10-stable/contrib/wpa/src/p2p/
H A Dp2p_parse.c483 const u8 *t, *cend; local
487 cend = g + 1 + g[0];
488 if (cend > gend)
493 if (t > cend)
499 if (t + 1 + 2 + 8 + 1 > cend)
508 if (t + 8 * cli->num_sec_dev_types > cend)
514 if (t + 2 + 2 > cend)
521 if (count > cend - t)
528 g = cend;
/freebsd-10-stable/sys/geom/journal/
H A Dg_journal.c806 off_t cstart, cend; local
816 cend = cbp->bio_offset + cbp->bio_length;
818 if (nstart >= cend) {
852 } else if (nstart <= cstart && nend >= cend) {
875 cbp->bio_length = cend - nstart;
877 gj_free(cbp->bio_data, cend - cstart);
887 data += cend - nstart;
889 joffset += cend - nstart;
890 nstart = cend;
892 } else if (nstart > cstart && nend >= cend) {
1481 off_t cstart, cend; local
1533 off_t cstart, cend; local
[all...]
/freebsd-10-stable/usr.bin/gencat/
H A Dgencat.c238 char *cptr, *cend; local
247 cend = curline + curlen;
249 for (; bptr < bend && cptr < cend; ++cptr, ++bptr) {
257 if (cptr == cend) {
259 cend = curline + curlen;
/freebsd-10-stable/sys/sparc64/central/
H A Dcentral.c225 bus_addr_t cend; local
256 cend = coffset + sc->sc_ranges[i].size - 1;
257 if (start >= coffset && end <= cend) {
/freebsd-10-stable/contrib/ncurses/include/
H A Dterm_entry.h65 long cstart, cend; member in struct:entry
/freebsd-10-stable/sys/sparc64/fhc/
H A Dfhc.c430 bus_addr_t cend; local
461 cend = coffset + sc->sc_ranges[i].size - 1;
462 if (start >= coffset && end <= cend) {
/freebsd-10-stable/sys/sparc64/ebus/
H A Debus.c438 uint64_t cend, cstart, offset; local
488 cend = cstart + enr->size - 1;
489 if (start >= cstart && end <= cend) {
/freebsd-10-stable/sys/vm/
H A Dvm_mmap.c771 vm_offset_t end, cend; local
846 cend = current->end;
847 if (cend > end)
848 cend = end;
853 while (addr < cend) {
/freebsd-10-stable/contrib/ncurses/ncurses/tinfo/
H A Dparse_entry.c221 entryp->cend = _nc_comment_end;
223 DEBUG(2, ("Comment range is %ld to %ld", entryp->cstart, entryp->cend));
/freebsd-10-stable/usr.sbin/lpr/lpc/
H A Dcmds.c262 char *cp1, *cend; local
270 cend = buf + sizeof(buf) - 1; /* save room for '\0' */
273 while ((cp1 < cend) && (*cp1++ = *cp2++))
/freebsd-10-stable/sys/fs/nfsserver/
H A Dnfs_nfsdport.c1568 char *cpos, *cend, *rbuf; local
1701 cend = rbuf + siz;
1712 while (cpos < cend && ncookies > 0 &&
1720 if (cpos >= cend || ncookies == 0) {
1743 while (cpos < cend && ncookies > 0) {
1782 if (cpos < cend)
1812 char *cpos, *cend, *rbuf; local
1969 cend = rbuf + siz;
1980 while (cpos < cend && ncookies > 0 &&
1991 if (cpos >= cend || ncookie
[all...]
/freebsd-10-stable/sys/nfsserver/
H A Dnfs_serv.c2618 char *cpos, *cend, *rbuf; local
2771 cend = rbuf + siz;
2781 while (cpos < cend && ncookies > 0 &&
2789 if (cpos >= cend || ncookies == 0) {
2807 while (cpos < cend && ncookies > 0) {
2911 char *cpos, *cend, *rbuf; local
3060 cend = rbuf + siz;
3070 while (cpos < cend && ncookies > 0 &&
3078 if (cpos >= cend || ncookies == 0) {
3095 while (cpos < cend
[all...]
/freebsd-10-stable/contrib/ncurses/progs/
H A Dtic.c746 int j = qp->cend - qp->cstart;
774 (void) fseek(tmp_fp, _nc_tail->cend, SEEK_SET);
/freebsd-10-stable/contrib/binutils/bfd/
H A Dcoff64-rs6000.c1873 bfd_byte *contents, *cend;
1940 cend = contents + sz;
1945 if (p >= cend)
1872 bfd_byte *contents, *cend; local
H A Dcoff-rs6000.c1135 bfd_byte *contents, *cend;
1261 cend = contents + sz;
1266 if (p >= cend)
1132 bfd_byte *contents, *cend; local

Completed in 311 milliseconds