Home
last modified time | relevance | path

Searched refs:pend (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
H A Dpbump.pass.cpp29 void setp(CharT* pbeg, CharT* pend) in setp()
31 base::setp(pbeg, pend); in setp()
38 CharT* pend = base::epptr(); in pbump() local
42 assert(base::epptr() == pend); in pbump()
H A Dsetp.pass.cpp29 void setp(CharT* pbeg, CharT* pend) in setp()
31 base::setp(pbeg, pend); in setp()
34 assert(base::epptr() == pend); in setp()
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
H A Dxsputn.pass.cpp29 void setp(char* pbeg, char* pend) in setp()
31 base::setp(pbeg, pend); in setp()
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
H A Dsputc.pass.cpp34 void setp(char* pbeg, char* pend) in setp()
36 base::setp(pbeg, pend); in setp()
/llvm-project-15.0.7/llvm/lib/Support/
H A Dregcomp.c203 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member
338 p->pend[i] = 0; in llvm_regcomp()
461 p->pend[subno] = HERE(); in p_ere_exp()
462 assert(p->pend[subno] != 0); in p_ere_exp()
517 if (p->pend[backrefnum] == 0) { in p_ere_exp()
702 p->pend[subno] = HERE(); in p_simp_re()
703 assert(p->pend[subno] != 0); in p_simp_re()
723 if (p->pend[i] != 0) { in p_simp_re()
729 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re()
1520 if (p->pend[i] >= pos) { in doinsert()
[all …]
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp47 void setp(CharT* pbeg, CharT* pend) in setp()
49 base::setp(pbeg, pend); in setp()
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp48 void setp(CharT* pbeg, CharT* pend) in setp()
50 base::setp(pbeg, pend); in setp()
H A Dswap.pass.cpp57 void setp(CharT* pbeg, CharT* pend) in setp()
59 base::setp(pbeg, pend); in setp()
/llvm-project-15.0.7/libunwind/src/
H A DAddressSpace.hpp223 const uint8_t *pend = (uint8_t *)end; in getULEB128() local
229 if (p == pend) in getULEB128()
248 const uint8_t *pend = (uint8_t *)end; in getSLEB128() local
253 if (p == pend) in getSLEB128()
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dstr-int-2.ll45 define i64 @strtol_endptr_not_null(i8** nonnull %pend) {
50 …4 @strtol(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str, i32 0, i32 0), i8** %pend, i32 10)
H A Dstr-int.ll46 define i32 @strtol_endptr_not_null(i8** %pend) {
52 %endp1 = getelementptr inbounds i8*, i8** %pend, i32 1
/llvm-project-15.0.7/bolt/lib/Passes/
H A DSplitFunctions.cpp330 std::vector<BinaryBasicBlock *> Blocks(BF.pbegin(), BF.pend()); in createEHTrampolines()
H A DBinaryPasses.cpp1726 std::vector<BinaryBasicBlock *> Blocks(Function.pbegin(), Function.pend()); in runOnFunctions()
/llvm-project-15.0.7/libcxx/include/
H A Dstreambuf78 void setp(char_type* pbeg, char_type* pend);
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryFunction.h782 BasicBlockListType::iterator pend() { return BasicBlocks.end(); } in pend() function