Home
last modified time | relevance | path

Searched refs:T (Results 1 – 25 of 887) sorted by relevance

12345678910>>...36

/dragonfly/contrib/gdb-7/gdb/common/
H A Dvec.h211 #define VEC_copy(T,V) (VEC_OP(T,copy)(V)) argument
403 #define VEC(T) VEC_##T argument
404 #define VEC_OP(T,OP) VEC_##T##_##OP argument
454 static inline VEC(T) *VEC_OP (T,copy) (VEC(T) *vec_) \
471 static inline VEC(T) *VEC_OP (T,merge) (VEC(T) *vec1_, VEC(T) *vec2_) \
618 static inline T VEC_OP (T,pop) (VEC(T) *vec_ VEC_ASSERT_DECL) \
757 static inline VEC(T) *VEC_OP (T,copy) (VEC(T) *vec_) \
773 static inline VEC(T) *VEC_OP (T,merge) (VEC(T) *vec1_, VEC(T) *vec2_) \
838 static inline T *VEC_OP (T,last) (VEC(T) *vec_ VEC_ASSERT_DECL) \
1011 static inline VEC(T) *VEC_OP (T,copy) (VEC(T) *vec_) \
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dvec.h158 #define VEC_empty(T,V) (VEC_length (T,V) == 0) argument
223 #define VEC_free(T,A,V) (VEC_OP(T,A,free)(&V)) argument
453 #define VEC_qsort(T,V,CMP) qsort(VEC_address (T,V), VEC_length(T,V), \ argument
520 #define VEC(T,A) VEC_##T##_##A argument
521 #define VEC_OP(T,A,OP) VEC_##T##_##A##_##OP argument
599 static inline T VEC_OP (T,base,last) \
675 static inline T VEC_OP (T,base,pop) (VEC(T,base) *vec_ VEC_CHECK_DECL) \
808 static inline VEC(T,A) *VEC_OP (T,A,copy) (VEC(T,base) *vec_ MEM_STAT_DECL) \
918 static inline T *VEC_OP (T,base,last) (VEC(T,base) *vec_ VEC_CHECK_DECL) \
1107 static inline VEC(T,A) *VEC_OP (T,A,copy) (VEC(T,base) *vec_ MEM_STAT_DECL) \
[all …]
H A Dmkconfig.sh34 rm -f ${output}T
41 echo "#ifndef ${header_guard}" >> ${output}T
49 echo "#endif" >> ${output}T
62 echo "#endif" >> ${output}T
74 echo "#include \"$1\"" >> ${output}T
79 echo '#ifdef IN_GCC' >> ${output}T
84 echo "# include \"$file\"" >> ${output}T
87 echo '#endif' >> ${output}T
97 cat >> ${output}T <<EOF
116 rm -f ${output}T
[all …]
/dragonfly/contrib/nvi2/common/
H A Dencoding.c16 #define T 1 /* character appears in plain ASCII text */ macro
22 F, F, F, F, F, F, F, T, T, T, T, F, T, T, F, F, /* 0x0X */
25 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x2X */
26 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x3X */
27 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x4X */
28 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x5X */
29 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x6X */
30 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, F, /* 0x7X */
70 if (text_chars[buf[i]] != T) in looks_utf8()
145 if (c < 128 && text_chars[c] != T) in looks_utf16()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dvec.h584 T *quick_push (const T &);
593 unsigned lower_bound (T, bool (*)(const T &, const T &)) const;
649 inline T *
762 inline T *
970 vec<T, A, vl_embed>::quick_push (const T &obj)
1125 vec<T, A, vl_embed>::lower_bound (T obj, bool (*lessthan)(const T &, const T &))
1341 T *quick_push (const T &);
1342 T *safe_push (const T &CXX_MEM_STAT_INFO);
1356 unsigned lower_bound (T, bool (*)(const T &, const T &)) const;
1408 class auto_vec<T, 0> : public vec<T, va_heap>
[all …]
H A Dint-vector-builder.h28 template<typename T>
41 bool equal_p (T, T) const;
44 T step (T, T) const;
45 T apply_step (T, unsigned int, T) const;
47 void note_representative (T *, T) {} in note_representative() argument
54 template<typename T>
67 int_vector_builder<T>::equal_p (T elt1, T elt2) const in equal_p()
75 inline T
76 int_vector_builder<T>::step (T elt1, T elt2) const in step()
84 inline T
[all …]
H A Dggc.h156 ((T *) ggc_realloc ((P), (N) * sizeof (T) MEM_STAT_INFO))
158 template<typename T>
162 static_cast<T *> (p)->~T (); in finalize()
165 template<typename T>
177 inline T *
181 return static_cast<T *> (ggc_internal_alloc (sizeof (T), finalize<T>, 0, 1 in ggc_alloc()
189 inline T *
193 return static_cast<T *> (ggc_internal_cleared_alloc (sizeof (T), in ggc_cleared_alloc()
202 inline T *
206 return static_cast<T *> (ggc_internal_alloc (c * sizeof (T), finalize<T>, in ggc_vec_alloc()
[all …]
H A Dsymbol-summary.h27 template <class T>
34 template <class T>
94 virtual void duplicate (cgraph_node *, cgraph_node *, T *, T *) {} in class()
101 return m_ggc ? new (ggc_internal_alloc (sizeof (T))) T () : new T () ; in class()
109 item->~T (); in class()
186 T *data = *v; in class()
201 T* get (int uid) in class()
260 template <class T>
327 return m_ggc ? new (ggc_internal_alloc (sizeof (T))) T () : new T () ; in class()
335 item->~T (); in class()
[all …]
H A Dhash-map-traits.h38 template <typename T> static inline void remove (T &);
39 template <typename T> static inline bool is_empty (const T &);
40 template <typename T> static inline bool is_deleted (const T &);
41 template <typename T> static inline void mark_empty (T &);
42 template <typename T> static inline void mark_deleted (T &);
61 template <typename T>
115 template <typename T> static inline void remove (T &);
116 template <typename T> static inline bool is_empty (const T &);
117 template <typename T> static inline bool is_deleted (const T &);
118 template <typename T> static inline void mark_empty (T &);
[all …]
H A Dmachmode.h34 template<typename T>
244 template<typename T>
289 inline T
314 *mode = T (typename mode_traits<T>::from_int (m_mode));
353 inline T
361 inline T
370 inline opt_mode<T>
374 return T (typename mode_traits<T>::from_int (m));
379 inline opt_mode<T>
394 *result = T (typename mode_traits<T>::from_int (m));
[all …]
H A Dis-a.h150 template <typename T>
156 static inline T cast (U *p);
168 template <typename T>
170 inline T
171 is_a_helper <T>::cast (U *p) in cast()
194 inline T
205 inline T
221 inline T
224 if (is_a <T> (p)) in dyn_cast()
227 return static_cast <T> (0); in dyn_cast()
[all …]
H A Dmem-stats.h320 T *
325 T *
332 T *
339 T *
359 T
407 inline T*
417 inline T*
448 inline T*
464 inline T*
609 inline T
[all …]
H A Dvector-builder.h87 template<typename T, typename Derived>
98 T elt (unsigned int) const;
123 template<typename T, typename Derived>
130 template<typename T, typename Derived>
142 template<typename T, typename Derived>
151 template<typename T, typename Derived>
198 T
214 T final = (*this)[final_i]; in elt()
278 T elt1 = (*this)[i - step * 2]; in stepped_sequence_p()
279 T elt2 = (*this)[i - step]; in stepped_sequence_p()
[all …]
/dragonfly/sys/net/wg/selftest/
H A Dcounter.c48 T( 1, 0, 0); in noise_counter_selftest()
49 T( 2, 1, 0); in noise_counter_selftest()
51 T( 4, 9, 0); in noise_counter_selftest()
52 T( 5, 8, 0); in noise_counter_selftest()
53 T( 6, 7, 0); in noise_counter_selftest()
59 T(12, 2, 0); in noise_counter_selftest()
85 T(35, i, 0); in noise_counter_selftest()
86 T(36, 0, 0); in noise_counter_selftest()
92 T(39, 1, 0); in noise_counter_selftest()
113 T(48, 0, 0); in noise_counter_selftest()
[all …]
/dragonfly/contrib/file/src/
H A Dencoding.c242 F, F, F, F, F, F, F, T, T, T, T, T, T, T, F, F, /* 0x0X */
245 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x2X */
246 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x3X */
247 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x4X */
248 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x5X */
249 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x6X */
250 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, F, /* 0x7X */
282 LOOKS(ascii, t != T)
283 LOOKS(latin1, t != T && t != I)
368 if (text_chars[buf[i]] != T) in file_looks_utf8()
[all …]
/dragonfly/contrib/gcc-8.0/include/
H A Dunique-ptr.h88 template<typename T> using unique_ptr = std::unique_ptr<T>;
98 template<typename T>
106 template<typename T>
267 template <typename T, typename D = default_delete<T> >
283 class unique_ptr<T[], D> : public detail::unique_ptr_base<T, D>
344 unique_ptr<T, D>
375 = std::unique_ptr<T, xmalloc_deleter<T>>;
384 class unique_xmalloc_ptr : public unique_ptr<T, xmalloc_deleter<T> >
386 typedef unique_ptr<T, xmalloc_deleter<T> > base_type;
394 class unique_xmalloc_ptr<T[]> : public unique_ptr<T[], xmalloc_deleter<T[]> >
[all …]
H A Dlibiberty.h348 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
349 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
350 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
351 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
356 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
357 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
358 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
359 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
360 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
373 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument
[all …]
/dragonfly/contrib/gcc-4.7/include/
H A Dlibiberty.h350 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
351 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
352 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
353 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
358 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
359 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
360 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
361 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
362 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
375 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument
[all …]
/dragonfly/contrib/gdb-7/include/
H A Dlibiberty.h341 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
342 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
343 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
344 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
349 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
350 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
351 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
352 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
353 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
366 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument
[all …]
/dragonfly/contrib/binutils-2.34/include/
H A Dlibiberty.h357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
382 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument
[all …]
/dragonfly/contrib/binutils-2.27/include/
H A Dlibiberty.h348 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
349 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
350 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
351 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
356 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
357 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
358 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
359 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
360 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
373 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument
[all …]
/dragonfly/crypto/libressl/crypto/sha/
H A Dsha_locl.h326 c->h1=(c->h1+T)&0xffffffffL; in HASH_BLOCK_DATA_ORDER()
346 T=E+K_00_19+F_00_19(B,C,D); \
351 Xupdate(T,xa,xa,xb,xc,xd); \
352 T+=E+K_00_19+F_00_19(B,C,D); \
354 A=ROTATE(A,5)+T; } while(0)
357 Xupdate(T,xa,xa,xb,xc,xd); \
358 T+=E+K_20_39+F_20_39(B,C,D); \
363 Xupdate(T,xa,xa,xb,xc,xd); \
364 T+=E+K_40_59+F_40_59(B,C,D); \
369 Xupdate(T,xa,xa,xb,xc,xd); \
[all …]
/dragonfly/lib/libc/nameser/
H A Dns_print.c67 #define T(x) \ macro
147 T(addstr(tmp, len, &buf, &buflen)); in ns_sprintrrf()
178 T(addstr(" ", 1, &buf, &buflen)); in ns_sprintrrf()
196 T(addstr(" ", 1, &buf, &buflen)); in ns_sprintrrf()
288 T(addstr(" ", 1, &buf, &buflen)); in ns_sprintrrf()
349 T(addstr(t, len, &buf, &buflen)); in ns_sprintrrf()
356 T(addstr(" ", 1, &buf, &buflen)); in ns_sprintrrf()
363 T(addstr(" ", 1, &buf, &buflen)); in ns_sprintrrf()
372 T(addstr(" ", 1, &buf, &buflen)); in ns_sprintrrf()
391 T(addstr(t, len, &buf, &buflen)); in ns_sprintrrf()
[all …]
/dragonfly/usr.sbin/pw/
H A Dpsdate.c171 struct tm *T; in parse_date() local
209 i = T->tm_mday; in parse_date()
215 i = T->tm_mday; in parse_date()
217 dt = mktime(T); in parse_date()
264 T->tm_hour = T->tm_min = T->tm_sec = 0; in parse_date()
265 parse_datesub(tmp, &T->tm_mday, &T->tm_mon, &T->tm_year); in parse_date()
277 parse_time(timestr, &T->tm_hour, &T->tm_min, &T->tm_sec); in parse_date()
278 parse_datesub(datestr, &T->tm_mday, &T->tm_mon, &T->tm_year); in parse_date()
286 parse_time(timestr, &T->tm_hour, &T->tm_min, &T->tm_sec); in parse_date()
287 parse_datesub(datestr, &T->tm_mday, &T->tm_mon, &T->tm_year); in parse_date()
[all …]
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_rb.h48 #define ARCHIVE_RB_TREE_MIN(T) \ argument
50 #define ARCHIVE_RB_TREE_MAX(T) \ argument
52 #define ARCHIVE_RB_TREE_NEXT(T, N) \ argument
54 #define ARCHIVE_RB_TREE_PREV(T, N) \ argument
56 #define ARCHIVE_RB_TREE_FOREACH(N, T) \ argument
57 for ((N) = ARCHIVE_RB_TREE_MIN(T); (N); \
58 (N) = ARCHIVE_RB_TREE_NEXT((T), (N)))
60 for ((N) = ARCHIVE_RB_TREE_MAX(T); (N); \
61 (N) = ARCHIVE_RB_TREE_PREV((T), (N)))
63 for ((N) = ARCHIVE_RB_TREE_MIN(T); \
[all …]

12345678910>>...36