Home
last modified time | relevance | path

Searched refs:cend (Results 1 – 25 of 91) sorted by relevance

1234

/dragonfly/contrib/binutils-2.27/libiberty/
HDfnmatch.c143 register unsigned char cstart = c, cend = c; in fnmatch() local
146 cstart = cend = *p++; in fnmatch()
148 cstart = cend = FOLD (cstart); in fnmatch()
163 cend = *p++; in fnmatch()
164 if (!(flags & FNM_NOESCAPE) && cend == '\\') in fnmatch()
165 cend = *p++; in fnmatch()
166 if (cend == '\0') in fnmatch()
168 cend = FOLD (cend); in fnmatch()
174 && FOLD ((unsigned char)*n) <= cend) in fnmatch()
/dragonfly/contrib/gcc-8.0/libiberty/
HDfnmatch.c143 register unsigned char cstart = c, cend = c; in fnmatch() local
146 cstart = cend = *p++; in fnmatch()
148 cstart = cend = FOLD (cstart); in fnmatch()
163 cend = *p++; in fnmatch()
164 if (!(flags & FNM_NOESCAPE) && cend == '\\') in fnmatch()
165 cend = *p++; in fnmatch()
166 if (cend == '\0') in fnmatch()
168 cend = FOLD (cend); in fnmatch()
174 && FOLD ((unsigned char)*n) <= cend) in fnmatch()
/dragonfly/contrib/binutils-2.34/libiberty/
HDfnmatch.c143 register unsigned char cstart = c, cend = c; in fnmatch() local
146 cstart = cend = *p++; in fnmatch()
148 cstart = cend = FOLD (cstart); in fnmatch()
163 cend = *p++; in fnmatch()
164 if (!(flags & FNM_NOESCAPE) && cend == '\\') in fnmatch()
165 cend = *p++; in fnmatch()
166 if (cend == '\0') in fnmatch()
168 cend = FOLD (cend); in fnmatch()
174 && FOLD ((unsigned char)*n) <= cend) in fnmatch()
/dragonfly/contrib/gcc-4.7/libiberty/
HDfnmatch.c143 register unsigned char cstart = c, cend = c; in fnmatch() local
146 cstart = cend = *p++; in fnmatch()
148 cstart = cend = FOLD (cstart); in fnmatch()
163 cend = *p++; in fnmatch()
164 if (!(flags & FNM_NOESCAPE) && cend == '\\') in fnmatch()
165 cend = *p++; in fnmatch()
166 if (cend == '\0') in fnmatch()
168 cend = FOLD (cend); in fnmatch()
174 && FOLD ((unsigned char)*n) <= cend) in fnmatch()
/dragonfly/usr.bin/window/
HDcmd7.c200 yank_highlight_line(int r, int c, int cend) in yank_highlight_line() argument
209 if (cend >= w->ww_i.r) in yank_highlight_line()
210 cend = w->ww_i.r; in yank_highlight_line()
211 for (win = w->ww_win[r] + c; c < cend; c++, win++) { in yank_highlight_line()
238 yank_line(int r, int c, int cend) in yank_line() argument
246 if (c == cend) in yank_line()
251 nl = cend == selwin->ww_b.r; in yank_line()
253 for (cend--; cend >= c; cend--) in yank_line()
254 if (bp[cend].c_c != ' ') in yank_line()
256 yp->length = n = cend - c + 1; in yank_line()
/dragonfly/contrib/gdb-7/gdb/gnulib/import/
HDfnmatch_loop.c635 UCHAR cend = *p++; in FCT() local
656 if (cend == L_('[') && *p == L_('.')) in FCT()
686 cend = startp[1]; in FCT()
771 cend = wextra[1 + wextra[idx]]; in FCT()
776 cend = *((int32_t *) &extra[idx]); in FCT()
781 cend = str[0]; in FCT()
791 if (!(flags & FNM_NOESCAPE) && cend == L_('\\')) in FCT()
792 cend = *p++; in FCT()
793 if (cend == L_('\0')) in FCT()
795 cend = FOLD (cend); in FCT()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/
Dsafe_unordered_container.h71 [__local_end](__decltype(_M_cont()._M_base().cend(0)) __it) in _M_invalidate_locals()
80 [__end](__decltype(_M_cont()._M_base().cend()) __it) in _M_invalidate_all()
Dforward_list70 using _Base_const_iterator = __decltype(_M_this()._M_base().cend());
74 && __it != _M_this()._M_base().cend(); });
342 cend() const noexcept
343 { return const_iterator(_Base::cend(), this); }
731 && __it != __list._M_base().cend();
754 && __it != __list._M_base().cend();
Dunordered_set221 cend() const noexcept
261 cend(size_type __b) const
264 return const_local_iterator(_Base::cend(__b), this);
784 cend() const noexcept
824 cend(size_type __b) const
827 return const_local_iterator(_Base::cend(__b), this);
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
Dforward_list.tcc153 const_iterator __last2 = __list.cend(); in operator =()
387 while (__ix != __lx.cend() && __iy != __ly.cend()) in operator ==()
394 if (__ix == __lx.cend() && __iy == __ly.cend()) in operator ==()
Dforward_list.h726 cend() const noexcept in _GLIBCXX_VISIBILITY()
1279 { return std::lexicographical_compare(__lx.cbegin(), __lx.cend(), in _GLIBCXX_VISIBILITY()
1280 __ly.cbegin(), __ly.cend()); } in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
Dforward_list.tcc156 assign(__list.cbegin(), __list.cend()); in operator =()
376 while (__ix != __lx.cend() && __iy != __ly.cend()) in operator ==()
383 if (__ix == __lx.cend() && __iy == __ly.cend()) in operator ==()
Dunordered_set.h354 cend() const noexcept in _GLIBCXX_VISIBILITY()
754 cend(size_type __n) const in _GLIBCXX_VISIBILITY()
755 { return _M_h.cend(__n); } in _GLIBCXX_VISIBILITY()
1151 cend() const noexcept in _GLIBCXX_VISIBILITY()
1274 { return _M_h._M_reinsert_node_multi(cend(), std::move(__nh)); } in _GLIBCXX_VISIBILITY()
1530 cend(size_type __n) const in _GLIBCXX_VISIBILITY()
1531 { return _M_h.cend(__n); } in _GLIBCXX_VISIBILITY()
Dunordered_map.h359 cend() const noexcept in _GLIBCXX_VISIBILITY()
1076 cend(size_type __n) const in _GLIBCXX_VISIBILITY()
1077 { return _M_h.cend(__n); } in _GLIBCXX_VISIBILITY()
1489 cend() const noexcept in _GLIBCXX_VISIBILITY()
1645 { return _M_h._M_reinsert_node_multi(cend(), std::move(__nh)); } in _GLIBCXX_VISIBILITY()
1909 cend(size_type __n) const in _GLIBCXX_VISIBILITY()
1910 { return _M_h.cend(__n); } in _GLIBCXX_VISIBILITY()
/dragonfly/usr.bin/gencat/
HDgencat.c236 char *cptr, *cend; local
245 cend = curline + curlen;
247 for (; bptr < bend && cptr < cend; ++cptr, ++bptr) {
255 if (cptr == cend) {
257 cend = curline + curlen;
/dragonfly/contrib/wpa_supplicant/src/p2p/
HDp2p_parse.c651 const u8 *cend; in p2p_group_info_parse() local
659 cend = g + len; in p2p_group_info_parse()
674 if (8 * len > cend - g) in p2p_group_info_parse()
681 if (cend - g < 2 + 2) in p2p_group_info_parse()
688 if (count > cend - g) in p2p_group_info_parse()
695 g = cend; in p2p_group_info_parse()
/dragonfly/sys/vm/
HDvm_mmap.c767 vm_offset_t end, cend; in sys_mincore() local
828 cend = current->ba.end; in sys_mincore()
829 if (cend > end) in sys_mincore()
830 cend = end; in sys_mincore()
835 while (addr < cend) { in sys_mincore()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/debug/
Dforward_list207 cend() const noexcept
208 { return const_iterator(_Base::cend(), this); }
572 && __it != __list._M_base().cend();
595 && __it != __list._M_base().cend();
622 && __it != this->_M_base().cend();
Dunordered_map177 cend() const noexcept
202 cend(size_type __b) const
203 { return const_local_iterator(_Base::cend(__b), __b, this); }
589 cend() const noexcept
614 cend(size_type __b) const
615 { return const_local_iterator(_Base::cend(__b), __b, this); }
Dunordered_set177 cend() const noexcept
202 cend(size_type __b) const
203 { return const_local_iterator(_Base::cend(__b), __b, this); }
584 cend() const noexcept
609 cend(size_type __b) const
610 { return const_local_iterator(_Base::cend(__b), __b, this); }
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/profile/
Dmultiset.h179 cend() const noexcept in _GLIBCXX_VISIBILITY()
180 { return const_iterator(_Base::cend(), this); } in _GLIBCXX_VISIBILITY()
216 return const_reverse_iterator(cend()); in _GLIBCXX_VISIBILITY()
Dset.h176 cend() const noexcept in _GLIBCXX_VISIBILITY()
177 { return const_iterator(_Base::cend(), this); } in _GLIBCXX_VISIBILITY()
213 return const_reverse_iterator(cend()); in _GLIBCXX_VISIBILITY()
Dmap.h178 cend() const noexcept in _GLIBCXX_VISIBILITY()
179 { return const_iterator(_Base::cend(), this); } in _GLIBCXX_VISIBILITY()
215 return const_reverse_iterator(cend()); in _GLIBCXX_VISIBILITY()
Dmultimap.h178 cend() const noexcept in _GLIBCXX_VISIBILITY()
179 { return const_iterator(_Base::cend(), this); } in _GLIBCXX_VISIBILITY()
215 return const_reverse_iterator(cend()); in _GLIBCXX_VISIBILITY()
/dragonfly/usr.sbin/lpr/lpc/
HDcmds.c242 char *cp1, *cend; in args2line() local
250 cend = buf + sizeof(buf) - 1; /* save room for '\0' */ in args2line()
253 while ((cp1 < cend) && (*cp1++ = *cp2++)) in args2line()

1234