| /dragonfly/contrib/binutils-2.27/libiberty/ |
| HD | fnmatch.c | 143 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/ |
| HD | fnmatch.c | 143 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/ |
| HD | fnmatch.c | 143 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/ |
| HD | fnmatch.c | 143 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/ |
| HD | cmd7.c | 200 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/ |
| HD | fnmatch_loop.c | 635 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/ |
| D | safe_unordered_container.h | 71 [__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()
|
| D | forward_list | 70 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();
|
| D | unordered_set | 221 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/ |
| D | forward_list.tcc | 153 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 ==()
|
| D | forward_list.h | 726 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/ |
| D | forward_list.tcc | 156 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 ==()
|
| D | unordered_set.h | 354 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()
|
| D | unordered_map.h | 359 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/ |
| HD | gencat.c | 236 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/ |
| HD | p2p_parse.c | 651 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/ |
| HD | vm_mmap.c | 767 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/ |
| D | forward_list | 207 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();
|
| D | unordered_map | 177 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); }
|
| D | unordered_set | 177 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/ |
| D | multiset.h | 179 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()
|
| D | set.h | 176 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()
|
| D | map.h | 178 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()
|
| D | multimap.h | 178 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/ |
| HD | cmds.c | 242 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()
|