Searched refs:t_ (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/tools/regression/sockets/unix_cmsg/
H A DMakefile28 AUTOSRCS+= t_${ttype}.h t_${ttype}.c
30 t_${ttype}.o: t_${ttype}.c t_${ttype}.h
32 t_${ttype}.c: t_xxxtime.c.in
35 t_${ttype}.h: t_xxxtime.h.in
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.h46 T *t_; member in class:__sanitizer::FlagHandler
49 explicit FlagHandler(T *t) : t_(t) {}
72 if (ParseBool(value, t_)) return true;
79 return FormatString(buffer, size, *t_ ? "true" : "false");
86 *t_ = b ? kHandleSignalYes : kHandleSignalNo;
91 *t_ = kHandleSignalExclusive;
100 uptr num_symbols_should_write = internal_snprintf(buffer, size, "%d", *t_);
106 *t_ = value;
112 return FormatString(buffer, size, *t_);
118 *t_
[all...]
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/
H A Du4.h9 t_##A = _mm_xor_si128(x_##D, x_##A); \
10 x_##D = _mm_shuffle_epi8(t_##A, rot16); \
12 t_##C = _mm_xor_si128(x_##B, x_##C); \
13 x_##B = VEC4_ROT(t_##C, 12); \
15 t_##A = _mm_xor_si128(x_##D, x_##A); \
16 x_##D = _mm_shuffle_epi8(t_##A, rot8); \
18 t_##C = _mm_xor_si128(x_##B, x_##C); \
19 x_##B = VEC4_ROT(t_##C, 7)
131 t_##A = _mm_unpacklo_epi32(x_##A, x_##B); \
132 t_##
[all...]
H A Du8.h8 t_##A = _mm256_xor_si256(x_##D, x_##A); \
9 x_##D = VEC8_ROT(t_##A, 16); \
11 t_##C = _mm256_xor_si256(x_##B, x_##C); \
12 x_##B = VEC8_ROT(t_##C, 12); \
14 t_##A = _mm256_xor_si256(x_##D, x_##A); \
15 x_##D = VEC8_ROT(t_##A, 8); \
17 t_##C = _mm256_xor_si256(x_##B, x_##C); \
18 x_##B = VEC8_ROT(t_##C, 7)
24 t_##A = _mm256_xor_si256(x_##D, x_##A); \
25 x_##D = _mm256_shuffle_epi8(t_##
[all...]
/freebsd-13-stable/contrib/ngatm/libngatm/
H A Dsscopcust.h76 #define TIMER_INIT(S,T) (S)->t_##T = NULL
78 if ((S)->t_##T != NULL) { \
79 (S)->funcs->stop_timer((S), (S)->aarg, (S)->t_##T); \
80 (S)->t_##T = NULL; \
84 if ((S)->t_##T != NULL) \
85 (S)->funcs->stop_timer((S), (S)->aarg, (S)->t_##T); \
86 (S)->t_##T = (S)->funcs->start_timer((S), (S)->aarg, \
89 #define TIMER_ISACT(S,T) ((S)->t_##T != NULL)
98 sscop->t_##T = NULL; \
/freebsd-13-stable/share/mk/
H A Dnetbsd-tests.test.mk23 SRCS.$t?= ${t:C/^/t_/:C/_test$//g}.c
32 ATF_TESTS_SH_SRC_$t?= ${t:C/^/t_/:C/_test$//g}.sh
/freebsd-13-stable/sys/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daestab.h88 #define t_dec(m, n) t_##m##n
89 #define t_set(m, n) t_##m##n
90 #define t_use(m, n) t_##m##n
/freebsd-13-stable/contrib/openpam/t/
H A Dt_openpam_dispatch.c52 static const char *t_ ## n ## _desc = d; \
53 static int t_ ## n ## _func(OPENPAM_UNUSED(char **desc), \
57 t_add_test(&t_ ## n ## _func, NULL, "%s", t_ ## n ## _desc)
H A Dt_openpam_readlinev.c50 static const char *t_ ## n ## _desc = d; \
51 static int t_ ## n ## _func(OPENPAM_UNUSED(char **desc), \
55 t_add_test(&t_ ## n ## _func, NULL, "%s", t_ ## n ## _desc)
H A Dt_openpam_readword.c49 static const char *t_ ## n ## _desc = d; \
50 static int t_ ## n ## _func(OPENPAM_UNUSED(char **desc), \
54 t_add_test(&t_ ## n ## _func, NULL, "%s", t_ ## n ## _desc)
/freebsd-13-stable/sys/netgraph/atm/sscop/
H A Dng_sscop_cust.h111 #define TIMER_INIT(S, T) ng_callout_init(&(S)->t_##T)
113 ng_uncallout(&(S)->t_##T, (S)->aarg); \
117 ng_callout(&(S)->t_##T, (S)->aarg, NULL, \
120 #define TIMER_ISACT(S, T) (callout_pending(&(S)->t_##T))
/freebsd-13-stable/sys/dev/netmap/
H A Dnetmap.c1990 #define within_sel(p_, t_, i_) \
1991 ((i_) < (p_)->np_qlast[(t_)])
1992 #define nonempty_sel(p_, t_) \
1993 (within_sel((p_), (t_), (p_)->np_qfirst[(t_)]))
1994 #define foreach_selected_ring(p_, t_, i_, kring_) \
1995 for ((t_) = nonempty_sel((p_), NR_RX) ? NR_RX : NR_TX, \
1996 (i_) = (p_)->np_qfirst[(t_)]; \
1997 (t_ == NR_RX || \
1998 (t == NR_TX && within_sel((p_), (t_), (i
[all...]
/freebsd-13-stable/contrib/libevent/
H A Devdns.c965 #define GET16(x) do { if (j + 2 > length) goto err; memcpy(&t_, packet + j, 2); j += 2; x = ntohs(t_); } while (0)
1019 u16 t_; /* used by the macros */ local
1219 u16 t_; /* used by the macros */ local
1605 u16 t_; local
1610 t_ = htons(x); \
1611 memcpy(buf + j, &t_, 2); \
1684 u16 t_; /* used by the macros */ local
1896 u16 t_; local
1955 t_
[all...]
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Devdns.c965 #define GET16(x) do { if (j + 2 > length) goto err; memcpy(&t_, packet + j, 2); j += 2; x = ntohs(t_); } while (0)
1019 u16 t_; /* used by the macros */ local
1221 u16 t_; /* used by the macros */ local
1607 u16 t_; local
1612 t_ = htons(x); \
1613 memcpy(buf + j, &t_, 2); \
1686 u16 t_; /* used by the macros */ local
1898 u16 t_; local
1957 t_
[all...]
/freebsd-13-stable/sys/netinet/
H A Dtcp_log_buf.c1672 #define COPY_STAT_T(f) log_buf->tlb_ ## f = tp->t_ ## f

Completed in 260 milliseconds