/freebsd/sys/kern/ |
H A D | tty_outq.c | 146 size_t cbegin, cend, clen; in ttyoutq_read() local 162 cend = MIN(MIN(to->to_end, to->to_begin + len), in ttyoutq_read() 164 clen = cend - cbegin; in ttyoutq_read() 171 if (cend == to->to_end) { in ttyoutq_read() 175 } else if (cend == TTYOUTQ_DATASIZE) { in ttyoutq_read() 207 size_t cbegin, cend, clen; in ttyoutq_read_uio() local 223 cend = MIN(MIN(to->to_end, to->to_begin + uio->uio_resid), in ttyoutq_read_uio() 225 clen = cend - cbegin; in ttyoutq_read_uio() 234 if (cend == TTYOUTQ_DATASIZE || cend == to->to_end) { in ttyoutq_read_uio()
|
H A D | tty_inq.c | 173 size_t cbegin, cend, clen; in ttyinq_read_uio() local 189 cend = MIN(MIN(ti->ti_linestart, ti->ti_begin + rlen), in ttyinq_read_uio() 191 clen = cend - cbegin; in ttyinq_read_uio() 210 if (cend == TTYINQ_DATASIZE || cend == ti->ti_end) { in ttyinq_read_uio()
|
/freebsd/sys/geom/journal/ |
H A D | g_journal.c | 811 off_t cstart, cend; in g_journal_insert() local 821 cend = cbp->bio_offset + cbp->bio_length; in g_journal_insert() 823 if (nstart >= cend) { in g_journal_insert() 857 } else if (nstart <= cstart && nend >= cend) { in g_journal_insert() 880 cbp->bio_length = cend - nstart; in g_journal_insert() 882 gj_free(cbp->bio_data, cend - cstart); in g_journal_insert() 892 data += cend - nstart; in g_journal_insert() 894 joffset += cend - nstart; in g_journal_insert() 895 nstart = cend; in g_journal_insert() 897 } else if (nstart > cstart && nend >= cend) { in g_journal_insert() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/ |
H A D | Graph.h | 234 const_iterator cend() const { in cend() function 241 const_iterator end() const { return cend(); } in end() 287 const_iterator cend() const { return G.Vertices.cend(); } in cend() function 324 const_iterator cend() const { return G.Edges.cend(); } in cend() function
|
/freebsd/usr.bin/gencat/ |
H A D | gencat.c | 238 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/contrib/wpa/src/p2p/ |
H A D | p2p_parse.c | 672 const u8 *cend; in p2p_group_info_parse() local 680 cend = g + len; in p2p_group_info_parse() 695 if (8 * len > cend - g) in p2p_group_info_parse() 702 if (cend - g < 2 + 2) in p2p_group_info_parse() 709 if (count > cend - g) in p2p_group_info_parse() 716 g = cend; in p2p_group_info_parse()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonShuffler.h | 213 const_iterator cend() const { return (Packet.end()); } in cbegin() 221 const_packet_range insts() const { return make_range(cbegin(), cend()); } in insts() 214 const_iterator cend() const { return (Packet.end()); } cend() function
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | lsd1.p | 15 .cend
|
H A D | res.p | 26 .cend
|
H A D | chem.awk | 42 /^(\.cend)|(end)/ { inchem = 0; print ".PE"; next } 87 END { if (firsttime == 0) error("did you forget .cstart and .cend?")
|
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
H A D | SubtargetFeature.cpp | 47 Features.insert(Features.cend(), OtherFeatures.begin(), OtherFeatures.end()); in addFeaturesVector()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyUtil.h | 165 const_iterator cend() const { return Data + Size; } in cend() function 310 const_iterator end() const { return elements().cend(); } in end()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | MemoryTagManagerAArch64MTE.cpp | 104 memory_regions.cbegin(), memory_regions.cend(), in MakeTaggedRange() 109 if (region == memory_regions.cend() || in MakeTaggedRange()
|
H A D | RegisterFlagsDetector_arm64.cpp | 203 search_registers.cbegin(), search_registers.cend(), in UpdateRegisterInfo()
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | tzdb_list.h | 63 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI const_iterator cend() const noexcept { return __cend(); } in cend() function
|
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
H A D | DeclarationFragments.h | 116 ConstFragmentIterator cend() const { return Fragments.cend(); } in cend() function
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | access.h | 63 _LIBCPP_HIDE_FROM_ABI constexpr auto cend(const _Cp& __c) noexcept(noexcept(std::end(__c))) -> decl…
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RegisterFlags.cpp | 249 for (auto it = enumerators.cbegin(); it != enumerators.cend(); ++it) { in DumpEnumerators() 258 if (std::next(it) != enumerators.cend()) in DumpEnumerators()
|
H A D | AssertFrameRecognizer.cpp | 103 for (auto it = location.symbols.cbegin(); it != location.symbols.cend(); in RegisterAssertFrameRecognizer()
|
/freebsd/sys/vm/ |
H A D | vm_mmap.c | 786 vm_offset_t addr, cend, end, first_addr; in kern_mincore() local 845 cend = current->end; in kern_mincore() 846 if (cend > end) in kern_mincore() 847 cend = end; in kern_mincore() 849 for (; addr < cend; addr += PAGE_SIZE) { in kern_mincore()
|
/freebsd/usr.sbin/lpr/lpc/ |
H A D | cmds.c | 250 char *cp1, *cend; in args2line() local 258 cend = buf + sizeof(buf) - 1; /* save room for '\0' */ in args2line() 261 while ((cp1 < cend) && (*cp1++ = *cp2++)) in args2line()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_buffer_queue.h | 270 const_iterator cend() const { in cend() function
|
/freebsd/contrib/ncurses/include/ |
H A D | term_entry.h | 129 long cend; member
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/ |
H A D | CodeRegion.h | 168 const_iterator end() const { return Regions.cend(); } in end()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | set | 102 const_iterator cend() const noexcept; 347 const_iterator cend() const noexcept; 712 _LIBCPP_HIDE_FROM_ABI const_iterator cend() const _NOEXCEPT { return end(); } 739 for (const_iterator __e = cend(); __f != __l; ++__f) 746 const_iterator __end = cend(); 945 const_iterator __e = cend(); 1169 _LIBCPP_HIDE_FROM_ABI const_iterator cend() const _NOEXCEPT { return end(); } 1196 for (const_iterator __e = cend(); __f != __l; ++__f) 1203 const_iterator __end = cend(); 1404 const_iterator __e = cend();
|