Searched refs:terminator (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_hash.h64 * The conventional terminator for hash dumps.
74 * If @a terminator is NULL, expect the hash to be terminated by the
76 * line containing @a terminator. Pass @c SVN_HASH_TERMINATOR to use
77 * the conventional terminator "END".
84 const char *terminator,
90 * values. If @a terminator is not NULL, terminate the hash with a
91 * line containing @a terminator.
98 const char *terminator,
111 const char *terminator,
126 const char *terminator,
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dhash.c102 const char *terminator,
118 if ((!terminator && eof && buf->len == 0)
119 || (terminator && (strcmp(buf->data, terminator) == 0)))
132 _("Serialized hash missing terminator"));
221 hash_read(apr_hash_t *hash, svn_stream_t *stream, const char *terminator,
231 SVN_ERR(svn_hash__read_entry(&entry, stream, terminator,
260 const char *terminator, apr_pool_t *pool)
321 if (terminator)
322 SVN_ERR(svn_stream_printf(stream, subpool, "%s\n", terminator));
97 svn_hash__read_entry(svn_hash__entry_t *entry, svn_stream_t *stream, const char *terminator, svn_boolean_t incremental, apr_pool_t *pool) argument
218 hash_read(apr_hash_t *hash, svn_stream_t *stream, const char *terminator, svn_boolean_t incremental, apr_pool_t *pool) argument
256 hash_write(apr_hash_t *hash, apr_hash_t *oldhash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) argument
326 svn_hash_read2(apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) argument
333 svn_hash_read_incremental(apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) argument
343 svn_hash_write2(apr_hash_t *hash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) argument
351 svn_hash_write_incremental(apr_hash_t *hash, apr_hash_t *oldhash, svn_stream_t *stream, const char *terminator, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/contrib/gperf/lib/
H A Dgetline.cc37 null terminator), or -1 on error or immediate EOF.
41 getstr (char **lineptr, size_t *n, FILE *stream, char terminator, size_t offset) argument
98 if (c == terminator)
/freebsd-11-stable/lib/libc/net/
H A Dnss_compat.c50 static int terminator; variable
165 SET_TERMINATOR(group, &terminator);
266 SET_TERMINATOR(passwd, &terminator);
/freebsd-11-stable/contrib/binutils/gas/
H A Dcond.c222 get_mri_string (int terminator, int *len) argument
247 while (*input_line_pointer != terminator
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringExtractor.h96 size_t GetHexByteStringTerminatedBy(std::string &str, char terminator);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/fuzzer/
H A DFuzzedDataProvider.h46 // Similar to |ConsumeBytes|, but also appends the terminator value at the end
52 T terminator = 0) {
55 result.back() = terminator;
/freebsd-11-stable/gnu/usr.bin/rcs/co/
H A Dco.c627 char terminator; local
643 terminator = *--j;
650 *j = terminator;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStringExtractor.cpp322 char terminator) {
327 if (Peek() && *Peek() == terminator)
321 GetHexByteStringTerminatedBy(std::string &str, char terminator) argument
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dlex.c624 cppchar_t terminator; local
628 terminator = *cur++;
629 if (terminator == 'L')
630 terminator = *cur++;
631 if (terminator == '\"')
633 else if (terminator == '\'')
636 terminator = '>', type = CPP_HEADER_NAME;
645 else if (c == terminator)
668 (int) terminator);
674 /* The stored comment includes the comment start and any terminator
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_subr_private.h427 const char *terminator,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc141 // the buffer not including the NULL terminator.
209 // including the null-terminator.
313 // the null terminator, it will leave the output unterminated. Push a null
314 // terminator onto the end to ensure that this never happens.
356 // *does* indicate the size of the null terminator.
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-armv8.pl281 .quad 0 // terminator
300 .long 0 //terminator
H A Dsha256-armv4.pl195 .word 0 @ terminator
510 teq $t1,#0 @ check for K256 terminator
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_bios.h298 u16 terminator; member in struct:lvds_fp_timing
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h851 const SExpr *T = E->terminator();
H A DThreadSafetyTIL.h1354 /// Return the list of basic blocks that this terminator can branch to.
1382 /// Return the list of basic blocks that this terminator can branch to.
1430 /// Return the list of basic blocks that this terminator can branch to.
1567 const Terminator *terminator() const { return TermInstr; } function in class:clang::threadSafety::BasicBlock
1568 Terminator *terminator() { return TermInstr; } function in class:clang::threadSafety::BasicBlock
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dcached_data.c2596 const char *terminator = SVN_HASH_TERMINATOR;
2604 /* Read until the terminator (non-incremental) or the end of STREAM
2614 SVN_ERR_W(svn_hash__read_entry(&entry, stream, terminator,
2623 /* In incremental mode, we skip the terminator and read the
2625 if (incremental && terminator)
2626 terminator = NULL;
2595 const char *terminator = SVN_HASH_TERMINATOR; local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1980 // Ensure a null terminator independent of the number of bytes that is
1985 const char terminator[4] = {'\0', '\0', '\0', '\0'};
1986 assert(sizeof(terminator) >= type_width && "Attempting to validate a "
2005 // Search for a null terminator of correct size and alignment in
2010 if (::memcmp(&dst[i], terminator, type_width) == 0) {

Completed in 297 milliseconds