Home
last modified time | relevance | path

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

123

/freebsd/sys/kern/
H A Dtty_outq.c146 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 Dtty_inq.c173 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 Dg_journal.c811 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 DGraph.h234 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 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/contrib/wpa/src/p2p/
H A Dp2p_parse.c672 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 DHexagonShuffler.h213 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 Dlsd1.p15 .cend
H A Dres.p26 .cend
H A Dchem.awk42 /^(\.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 DSubtargetFeature.cpp47 Features.insert(Features.cend(), OtherFeatures.begin(), OtherFeatures.end()); in addFeaturesVector()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h165 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 DMemoryTagManagerAArch64MTE.cpp104 memory_regions.cbegin(), memory_regions.cend(), in MakeTaggedRange()
109 if (region == memory_regions.cend() || in MakeTaggedRange()
H A DRegisterFlagsDetector_arm64.cpp203 search_registers.cbegin(), search_registers.cend(), in UpdateRegisterInfo()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dtzdb_list.h63 [[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 DDeclarationFragments.h116 ConstFragmentIterator cend() const { return Fragments.cend(); } in cend() function
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Daccess.h63 _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 DRegisterFlags.cpp249 for (auto it = enumerators.cbegin(); it != enumerators.cend(); ++it) { in DumpEnumerators()
258 if (std::next(it) != enumerators.cend()) in DumpEnumerators()
H A DAssertFrameRecognizer.cpp103 for (auto it = location.symbols.cbegin(); it != location.symbols.cend(); in RegisterAssertFrameRecognizer()
/freebsd/sys/vm/
H A Dvm_mmap.c786 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 Dcmds.c250 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 Dxray_buffer_queue.h270 const_iterator cend() const { in cend() function
/freebsd/contrib/ncurses/include/
H A Dterm_entry.h129 long cend; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.h168 const_iterator end() const { return Regions.cend(); } in end()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dset102 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();

123