Searched refs:sentinel (Results 1 - 17 of 17) sorted by relevance

/freebsd-current/bin/pkill/tests/
H A Dpgrep-f_test.sh23 sentinel="findme=test-$$"
24 sentinelsz=$(printf "${sentinel}" | wc -c | tr -d '[[:space:]]')
29 ${spin} --short ${flagfile} ${sentinel} &
34 pid=$(pgrep -f ${sentinel})
45 ${spin} --long ${flagfile} ${sentinel} &
50 pid=$(pgrep -f ${sentinel})
H A Dspin_helper.c42 char *sentinel = argv[3]; local
44 sentinel, NULL };
55 char *sentinel = argv[3]; local
62 (strlen(sentinel) + 1) + 1);
65 sentinel, NULL };
114 fprintf(stderr, "usage: %s [--short | --long] flagfile sentinel\n",
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dsparct4-mont.pl123 my ($rp,$ap,$bp,$np,$sentinel)=map("%g$_",(1..5));
130 mov 0,$sentinel
138 mov -1,$sentinel
141 mov -1,$sentinel
144 sllx $sentinel,32,$sentinel
161 or $sentinel,%fp,%fp
162 or %g4,$sentinel,$sentinel
177 save %sp,-128,%sp; or $sentinel,
[all...]
/freebsd-current/contrib/unbound/testdata/stat_values.tdir/
H A Dstat_values_downstream_cookies.conf15 root-key-sentinel: no
H A Dstat_values_cachedb.conf17 root-key-sentinel: no
/freebsd-current/lib/libc/net/
H A Dgetaddrinfo.c392 struct addrinfo sentinel; local
412 memset(&sentinel, 0, sizeof(sentinel));
413 cur = &sentinel;
626 if (sentinel.ai_next) {
643 sentinel.ai_next->ai_canonname;
644 sentinel.ai_next->ai_canonname = NULL;
645 (void)reorder(&sentinel);
646 if (sentinel.ai_next->ai_canonname ==
648 sentinel
674 reorder(struct addrinfo *sentinel) argument
1155 struct addrinfo sentinel, *cur; local
1857 struct addrinfo new_ai, *result, *sentinel, *lasts; local
1984 struct addrinfo sentinel, *cur; local
2198 addr4sort(struct addrinfo *sentinel, res_state res) argument
2265 struct addrinfo sentinel, *cur; local
2496 struct addrinfo sentinel, *cur; local
2532 struct addrinfo sentinel, *cur; local
2611 struct addrinfo sentinel, *cur; local
[all...]
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Diterator.inc55 // [iterator.concept.sentinel], concept sentinel_for
207 // [default.sentinel], default sentinel
214 // [unreachable.sentinel], unreachable sentinel
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_str.h116 int __kmp_str_to_int(char const *str, char sentinel);
H A Dkmp_str.cpp637 int __kmp_str_to_int(char const *str, char sentinel) { argument
669 if (*t != sentinel)
H A Dkmp_settings.cpp53 size_t len, char sentinel) {
56 if ((*src == '\0') || (*src == sentinel)) {
67 char sentinel) {
74 while (*a && *b && *b != sentinel) {
107 // **end = sentinel;
153 char sentinel) {
158 while (*a && *b && *b != sentinel) {
170 return *a ? (*b && *b != sentinel)
173 : (*b && *b != sentinel) ? -1
3732 #define GET_NEXT(sentinel) \
52 __kmp_readstr_with_sentinel(char *dest, char const *src, size_t len, char sentinel) argument
66 __kmp_match_with_sentinel(char const *a, char const *b, size_t len, char sentinel) argument
152 __kmp_strcasecmp_with_sentinel(char const *a, char const *b, char sentinel) argument
4155 char sentinel; local
[all...]
/freebsd-current/usr.sbin/pmcannotate/
H A Dpmcannotate.c575 int done, nbytes, sentinel; local
583 sentinel = 0;
589 sentinel = 1;
599 * If the sentinel is not set, it means it did not match any
605 if (sentinel == 0)
/freebsd-current/sys/kern/
H A Dvfs_bio.c388 #define QUEUE_SENTINEL 4 /* not an queue index, but mark for sentinel */
3571 struct buf *sentinel; local
3583 sentinel = malloc(sizeof(struct buf), M_TEMP, M_WAITOK | M_ZERO);
3584 sentinel->b_qindex = QUEUE_SENTINEL;
3586 TAILQ_INSERT_HEAD(&bq->bq_queue, sentinel, b_freelist);
3591 bp = TAILQ_NEXT(sentinel, b_freelist);
3593 TAILQ_REMOVE(&bq->bq_queue, sentinel, b_freelist);
3594 TAILQ_INSERT_AFTER(&bq->bq_queue, bp, sentinel,
3694 TAILQ_REMOVE(&bq->bq_queue, sentinel, b_freelist);
3696 free(sentinel, M_TEM
[all...]
/freebsd-current/sys/ufs/ffs/
H A Dffs_softdep.c637 static MALLOC_DEFINE(M_SENTINEL, "sentinel", "Worklist sentinel");
1893 struct worklist sentinel; local
1911 sentinel.wk_mp = NULL;
1912 sentinel.wk_type = D_SENTINEL;
1913 LIST_INSERT_HEAD(&ump->softdep_workitem_pending, &sentinel, wk_list);
1914 for (wk = LIST_NEXT(&sentinel, wk_list); wk != NULL;
1915 wk = LIST_NEXT(&sentinel, wk_list)) {
1917 LIST_REMOVE(&sentinel, wk_list);
1918 LIST_INSERT_AFTER(wk, &sentinel, wk_lis
12859 struct bmsafemap *sentinel; local
[all...]
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h1060 // and add terminating sentinel entries.
1078 // - A sentinel entry added with an address higher than all
1126 // sentinel. We store separately from ExecutableSections as merging of
1129 InputSection *sentinel = nullptr;
H A DSyntheticSections.cpp3505 sentinel = executableSections.back();
3549 // 3.) A trailing EXIDX_CANTUNWIND sentinel section is required at the end of
3582 uint64_t s = sentinel->getVA(sentinel->getSize());
/freebsd-current/sys/dev/iwi/
H A Dif_iwi.c2412 uint32_t sentinel, ctl, src, dst, sum, len, mlen, tmp; local
2459 /* write a fictive final command block (sentinel) */
2460 sentinel = CSR_READ_4(sc, IWI_CSR_AUTOINC_ADDR);
2470 /* wait until the adapter reaches the sentinel */
2472 if (MEM_READ_4(sc, 0x3000d0) >= sentinel)
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp3064 unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel; local
3080 sentinel = Idx->getZExtValue();
3149 D->addAttr(::new (S.Context) SentinelAttr(S.Context, AL, sentinel, nullPos));

Completed in 231 milliseconds