Home
last modified time | relevance | path

Searched refs:tt (Results 1 – 25 of 237) sorted by relevance

12345678910

/netbsd/src/sbin/routed/
Dradix.c331 struct radix_node *tt = nodes, *t = tt + 1; in rn_newpair() local
333 t->rn_l = tt; t->rn_off = b >> 3; in rn_newpair()
334 tt->rn_b = -1; tt->rn_key = (caddr_t)v; tt->rn_p = t; in rn_newpair()
335 tt->rn_flags = t->rn_flags = RNF_ACTIVE; in rn_newpair()
337 tt->rn_info = rn_nodenum++; t->rn_info = rn_nodenum++; in rn_newpair()
338 tt->rn_twin = t; tt->rn_ybro = rn_clist; rn_clist = tt; in rn_newpair()
355 struct radix_node *tt; in rn_insert() local
392 t = rn_newpair(v_arg, b, nodes); tt = t->rn_l; in rn_insert()
401 t->rn_r = tt; t->rn_l = x; in rn_insert()
408 return (tt); in rn_insert()
[all …]
/netbsd/src/sys/net/
Dradix.c401 struct radix_node *tt = nodes; in rn_newpair() local
402 struct radix_node *t = tt + 1; in rn_newpair()
404 t->rn_l = tt; t->rn_off = b >> 3; in rn_newpair()
405 tt->rn_b = -1; tt->rn_key = v; tt->rn_p = t; in rn_newpair()
406 tt->rn_flags = t->rn_flags = RNF_ACTIVE; in rn_newpair()
419 struct radix_node *tt; in rn_insert() local
457 t = rn_newpair(v_arg, b, nodes); tt = t->rn_l; in rn_insert()
466 t->rn_r = tt; t->rn_l = x; in rn_insert()
475 return tt; in rn_insert()
573 struct radix_node *tt, in rn_new_radix_mask() argument
[all …]
/netbsd/src/external/bsd/ntp/dist/html/scripts/
Dmanual.txt2 <li class='inline'><a href='ntpd.html'><tt>ntpd</tt> - Network Time Protocol (NTP) daemon</a></li>\
3 <li class='inline'><a href='ntpq.html'><tt>ntpq</tt> - standard NTP query program</a></li>\
4 <li class='inline'><a href='ntpdc.html'><tt>ntpdc</tt> - special NTP query program</a></li>\
5 <li class='inline'><a href='ntpdate.html'><tt>ntpdate</tt> - set the date and time via NTP</a></li>\
6 <li class='inline'><a href='sntp.html'><tt>sntp</tt> - Simple Network Time Protocol (SNTP) client</…
7 <li class='inline'><a href='ntptrace.html'><tt>ntptrace</tt> - trace a chain of NTP servers back to…
8 <li class='inline'><a href='tickadj.html'><tt>tickadj</tt> - set time-related kernel variables</a><…
9 <li class='inline'><a href='ntptime.html'><tt>ntptime</tt> - read and set kernel time variables</a>…
10 <li class='inline'><a href='keygen.html'><tt>ntp-keygen</tt> - generate public and private keys</a>…
11 <li class='inline'><a href='ntpdsim_new.html'><tt>ntpdsim</tt> - Network Time Protocol (NTP) simula…
/netbsd/src/external/gpl3/gdb/dist/sim/mips/
Dmdmx.c98 AndQH(int16_t ts, int16_t tt) in AndQH() argument
100 return (int16_t)((uint16_t)ts & (uint16_t)tt); in AndQH()
104 AndOB(uint8_t ts, uint8_t tt) in AndOB() argument
106 return ts & tt; in AndOB()
110 NorQH(int16_t ts, int16_t tt) in NorQH() argument
112 return (int16_t)(((uint16_t)ts | (uint16_t)tt) ^ 0xFFFF); in NorQH()
116 NorOB(uint8_t ts, uint8_t tt) in NorOB() argument
118 return (ts | tt) ^ 0xFF; in NorOB()
122 OrQH(int16_t ts, int16_t tt) in OrQH() argument
124 return (int16_t)((uint16_t)ts | (uint16_t)tt); in OrQH()
[all …]
/netbsd/src/sys/arch/usermode/dev/
Dld_thunkbus.c158 struct ld_thunkbus_transfer *tt = &sc->sc_tt; in ld_thunkbus_ldstart() local
163 tt->tt_sc = sc; in ld_thunkbus_ldstart()
164 tt->tt_bp = bp; in ld_thunkbus_ldstart()
166 memset(&tt->tt_aio, 0, sizeof(tt->tt_aio)); in ld_thunkbus_ldstart()
167 tt->tt_aio.aio_fildes = sc->sc_fd; in ld_thunkbus_ldstart()
168 tt->tt_aio.aio_buf = bp->b_data; in ld_thunkbus_ldstart()
169 tt->tt_aio.aio_nbytes = bp->b_bcount; in ld_thunkbus_ldstart()
170 tt->tt_aio.aio_offset = offset; in ld_thunkbus_ldstart()
172 tt->tt_aio.aio_sigevent.sigev_notify = SIGEV_SIGNAL; in ld_thunkbus_ldstart()
173 tt->tt_aio.aio_sigevent.sigev_signo = SIGIO; in ld_thunkbus_ldstart()
[all …]
/netbsd/src/external/gpl2/lvm2/dist/libdm/regex/
Dttree.c51 void *ttree_lookup(struct ttree *tt, unsigned *key) in ttree_lookup() argument
53 struct node **c = &tt->root; in ttree_lookup()
54 int count = tt->klen; in ttree_lookup()
74 int ttree_insert(struct ttree *tt, unsigned int *key, void *data) in ttree_insert() argument
76 struct node **c = &tt->root; in ttree_insert()
77 int count = tt->klen; in ttree_insert()
91 if (!(*c = _tree_node(tt->mem, k))) { in ttree_insert()
109 struct ttree *tt; in ttree_create() local
111 if (!(tt = dm_pool_zalloc(mem, sizeof(*tt)))) { in ttree_create()
116 tt->klen = klen; in ttree_create()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/des/asm/
Dcrypt586.pl149 local($a,$b,$tt,$shift,$mask,$last)=@_;
152 &mov( $tt, $a );
158 &xor( $tt, $a );
162 &xor( $tt, $a );
170 local($l,$r,$tt,$lr)=@_;
172 &R_PERM_OP($l,$r,$tt, 4,"0xf0f0f0f0",$l);
173 &R_PERM_OP($r,$tt,$l,20,"0xfff0000f",$l);
174 &R_PERM_OP($l,$tt,$r,14,"0x33333333",$r);
175 &R_PERM_OP($tt,$r,$l,22,"0x03fc03fc",$r);
176 &R_PERM_OP($l,$r,$tt, 9,"0xaaaaaaaa",$r);
[all …]
Ddes-586.pl255 local($a,$b,$tt,$shift,$mask,$last)=@_;
258 &mov( $tt, $a );
266 &xor( $tt, $a );
270 &xor( $tt, $a );
278 local($l,$r,$tt,$lr)=@_;
280 &R_PERM_OP($l,$r,$tt, 4,"0xf0f0f0f0",$l);
281 &R_PERM_OP($r,$tt,$l,20,"0xfff0000f",$l);
282 &R_PERM_OP($l,$tt,$r,14,"0x33333333",$r);
283 &R_PERM_OP($tt,$r,$l,22,"0x03fc03fc",$r);
284 &R_PERM_OP($l,$r,$tt, 9,"0xaaaaaaaa",$r);
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.stabs/
Dgdb11479.c33 const struct dummy *tt; in test() local
35 tt = t; in test()
42 struct dummy *tt; in test2() local
44 tt = t; in test2()
69 struct dummy tt; in main() local
70 tt.x = 5; in main()
71 tt.y = 25; in main()
72 tt.b = 2.5; in main()
73 test2 (&tt); in main()
74 test (&tt); in main()
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/asn1/
Dtemplate.c151 unsigned int template_flags = t->tt; in _asn1_decode()
160 switch (t->tt & A1_OP_MASK) { in _asn1_decode()
167 if ((t->tt & A1_OP_MASK) == A1_OP_TYPE) { in _asn1_decode()
174 if (t->tt & A1_FLAG_OPTIONAL) { in _asn1_decode()
180 if ((t->tt & A1_OP_MASK) == A1_OP_TYPE) { in _asn1_decode()
187 if (t->tt & A1_FLAG_OPTIONAL) { in _asn1_decode()
206 ret = der_match_tag_and_length(p, len, A1_TAG_CLASS(t->tt), in _asn1_decode()
207 &dertype, A1_TAG_TAG(t->tt), in _asn1_decode()
210 if (t->tt & A1_FLAG_OPTIONAL) in _asn1_decode()
222 if (dertype != A1_TAG_TYPE(t->tt) && (flags & A1_PF_ALLOW_BER)) { in _asn1_decode()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/asn1/
Dtasn_new.c24 static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
26 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
63 const ASN1_TEMPLATE *tt = NULL; in asn1_item_embed_new() local
149 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) { in asn1_item_embed_new()
150 pseqval = ossl_asn1_get_field_ptr(pval, tt); in asn1_item_embed_new()
151 if (!asn1_template_new(pseqval, tt, libctx, propq)) in asn1_item_embed_new()
207 static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt, in asn1_template_new() argument
210 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); in asn1_template_new()
211 int embed = tt->flags & ASN1_TFLG_EMBED; in asn1_template_new()
218 if (tt->flags & ASN1_TFLG_OPTIONAL) { in asn1_template_new()
[all …]
Dtasn_fre.c30 const ASN1_TEMPLATE *tt = NULL, *seqtt; in ossl_asn1_item_embed_free() local
68 tt = it->templates + i; in ossl_asn1_item_embed_free()
69 pchval = ossl_asn1_get_field_ptr(pval, tt); in ossl_asn1_item_embed_free()
70 ossl_asn1_template_free(pchval, tt); in ossl_asn1_item_embed_free()
105 tt = it->templates + it->tcount; in ossl_asn1_item_embed_free()
109 tt--; in ossl_asn1_item_embed_free()
110 seqtt = ossl_asn1_do_adb(*pval, tt, 0); in ossl_asn1_item_embed_free()
126 void ossl_asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) in ossl_asn1_template_free() argument
128 int embed = tt->flags & ASN1_TFLG_EMBED; in ossl_asn1_template_free()
134 if (tt->flags & ASN1_TFLG_SK_MASK) { in ossl_asn1_template_free()
[all …]
Dtasn_dec.c49 const ASN1_TEMPLATE *tt, char opt,
54 const ASN1_TEMPLATE *tt, char opt,
168 const ASN1_TEMPLATE *tt, *errtt = NULL; in asn1_item_embed_d2i() local
282 tt = it->templates + i; in asn1_item_embed_d2i()
283 pchptr = ossl_asn1_get_field_ptr(pval, tt); in asn1_item_embed_d2i()
284 ossl_asn1_template_free(pchptr, tt); in asn1_item_embed_d2i()
293 for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { in asn1_item_embed_d2i()
294 pchptr = ossl_asn1_get_field_ptr(pval, tt); in asn1_item_embed_d2i()
298 ret = asn1_template_ex_d2i(pchptr, &p, len, tt, 1, ctx, depth, in asn1_item_embed_d2i()
310 ossl_asn1_template_free(pchptr, tt); in asn1_item_embed_d2i()
[all …]
Dtasn_enc.c26 const ASN1_TEMPLATE *tt, int tag, int aclass);
86 const ASN1_TEMPLATE *tt = NULL; in ASN1_item_ex_i2d() local
174 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) { in ASN1_item_ex_i2d()
178 seqtt = ossl_asn1_do_adb(*pval, tt, 1); in ASN1_item_ex_i2d()
193 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) { in ASN1_item_ex_i2d()
196 seqtt = ossl_asn1_do_adb(*pval, tt, 1); in ASN1_item_ex_i2d()
217 const ASN1_TEMPLATE *tt, int tag, int iclass) in asn1_template_ex_i2d() argument
219 const int flags = tt->flags; in asn1_template_ex_i2d()
244 ttag = tt->tag; in asn1_template_ex_i2d()
307 len = ASN1_item_ex_i2d(&skitem, NULL, ASN1_ITEM_ptr(tt->item), in asn1_template_ex_i2d()
[all …]
Dtasn_utl.c199 ASN1_VALUE **ossl_asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) in ossl_asn1_get_field_ptr() argument
201 ASN1_VALUE **pvaltmp = offset2ptr(*pval, tt->offset); in ossl_asn1_get_field_ptr()
212 const ASN1_TEMPLATE *tt) in ossl_asn1_get_const_field_ptr() argument
214 return offset2ptr(*pval, tt->offset); in ossl_asn1_get_const_field_ptr()
223 const ASN1_TEMPLATE *tt, in ossl_asn1_do_adb() argument
232 if ((tt->flags & ASN1_TFLG_ADB_MASK) == 0) in ossl_asn1_do_adb()
233 return tt; in ossl_asn1_do_adb()
236 adb = ASN1_ADB_ptr(tt->item); in ossl_asn1_do_adb()
252 if ((tt->flags & ASN1_TFLG_ADB_OID) != 0) in ossl_asn1_do_adb()
272 return &atbl->tt; in ossl_asn1_do_adb()
Dtasn_prn.c110 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx);
139 const ASN1_TEMPLATE *tt; in asn1_item_print_ctx() local
205 tt = it->templates + i; in asn1_item_print_ctx()
206 tmpfld = ossl_asn1_get_const_field_ptr(fld, tt); in asn1_item_print_ctx()
207 if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx)) in asn1_item_print_ctx()
234 for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { in asn1_item_print_ctx()
236 seqtt = ossl_asn1_do_adb(*fld, tt, 1); in asn1_item_print_ctx()
265 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx) in asn1_template_print_ctx() argument
270 flags = tt->flags; in asn1_template_print_ctx()
272 sname = ASN1_ITEM_ptr(tt->item)->sname; in asn1_template_print_ctx()
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/doc/
Drefcard.tex217 \font\tt=cmtt8
228 \def\ctl#1{{\tt C-#1}}
230 \def\xtra#1{\noalign{\smallskip{\tt#1}}}
235 \vtop{\hsize=\itmwid\tt
251 b \opt{\it file\tt:}{\it function}&set breakpoint at {\it function} \opt{in \it file}\cr
269 quit&exit GDB; also {\tt q} or {\tt EOF} (eg \ctl{d})\cr
287 tty {\it dev}&use {\it dev} as stdin and stdout for next {\tt run}\cr
289 {\tt run}\cr
302 make $\ldots$&call ``{\tt make}''\cr
313 break \opt{\it file\tt:}{\it line}\par
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/des/
Ddes_local.h203 register DES_LONG tt; \
204 PERM_OP(r,l,tt, 4,0x0f0f0f0fL); \
205 PERM_OP(l,r,tt,16,0x0000ffffL); \
206 PERM_OP(r,l,tt, 2,0x33333333L); \
207 PERM_OP(l,r,tt, 8,0x00ff00ffL); \
208 PERM_OP(r,l,tt, 1,0x55555555L); \
213 register DES_LONG tt; \
214 PERM_OP(l,r,tt, 1,0x55555555L); \
215 PERM_OP(r,l,tt, 8,0x00ff00ffL); \
216 PERM_OP(l,r,tt, 2,0x33333333L); \
[all …]
/netbsd/src/external/bsd/libbind/dist/isc/
Dev_timers.c353 idle_timer *tt; in evSetIdleTimer() local
356 OKNEW(tt); in evSetIdleTimer()
357 tt->func = func; in evSetIdleTimer()
358 tt->uap = uap; in evSetIdleTimer()
359 tt->lastTouched = ctx->lastEventTime; in evSetIdleTimer()
360 tt->max_idle = max_idle; in evSetIdleTimer()
362 if (evSetTimer(opaqueCtx, idle_timeout, tt, in evSetIdleTimer()
365 FREE(tt); in evSetIdleTimer()
369 tt->timer = opaqueID->opaque; in evSetIdleTimer()
377 idle_timer *tt = del->uap; in evClearIdleTimer() local
[all …]
/netbsd/src/lib/libc/isc/
Dev_timers.c370 idle_timer *tt; in evSetIdleTimer() local
373 OKNEW(tt); in evSetIdleTimer()
374 tt->func = func; in evSetIdleTimer()
375 tt->uap = uap; in evSetIdleTimer()
376 tt->lastTouched = ctx->lastEventTime; in evSetIdleTimer()
377 tt->max_idle = max_idle; in evSetIdleTimer()
379 if (evSetTimer(opaqueCtx, idle_timeout, tt, in evSetIdleTimer()
382 FREE(tt); in evSetIdleTimer()
386 tt->timer = opaqueID->opaque; in evSetIdleTimer()
394 idle_timer *tt = del->uap; in evClearIdleTimer() local
[all …]
/netbsd/src/external/bsd/ntp/dist/ntpd/
Drefclock_neoclock4x.c729 char *tt; in neoclock4x_control() local
741 tt = add_var(&out->kv_list, sizeof(tmpbuf)-1, RO|DEF); in neoclock4x_control()
742 snprintf(tt, sizeof(tmpbuf)-1, "calc_utc=\"%s\"", tmpbuf); in neoclock4x_control()
744 tt = add_var(&out->kv_list, 40, RO|DEF); in neoclock4x_control()
745 snprintf(tt, 39, "radiosignal=\"%s\"", up->radiosignal); in neoclock4x_control()
746 tt = add_var(&out->kv_list, 40, RO|DEF); in neoclock4x_control()
747 snprintf(tt, 39, "antenna1=\"%d\"", up->antenna1); in neoclock4x_control()
748 tt = add_var(&out->kv_list, 40, RO|DEF); in neoclock4x_control()
749 snprintf(tt, 39, "antenna2=\"%d\"", up->antenna2); in neoclock4x_control()
750 tt = add_var(&out->kv_list, 40, RO|DEF); in neoclock4x_control()
[all …]
/netbsd/src/external/lgpl3/mpfr/dist/src/
Dlog10.c96 mpfr_t t, tt; in mpfr_log10() local
109 mpfr_init2 (tt, Nt); in mpfr_log10()
118 mpfr_log (tt, a, MPFR_RNDN); /* log(a) */ in mpfr_log10()
119 mpfr_div (t, tt, t, MPFR_RNDN); /* log(a)/log(10) */ in mpfr_log10()
131 && !mpfr_ui_pow_ui (tt, 10, mpfr_get_ui (t, MPFR_RNDN), MPFR_RNDN) in mpfr_log10()
132 && mpfr_equal_p (a, tt)) in mpfr_log10()
138 mpfr_set_prec (tt, Nt); in mpfr_log10()
145 mpfr_clear (tt); in mpfr_log10()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
Dtemplates.exp664 set tt "$t<int>"
665 gdb_breakpoint "operator< <$tt>" message
666 gdb_breakpoint "operator<< <$tt>" message
670 gdb_breakpoint "operator< <$tt> ($tt&, $tt&)" message
671 gdb_breakpoint "operator< <$tt > ($tt&, $tt&)" message
672 gdb_breakpoint "operator<< <$tt> ($tt&, $tt&)" message
673 gdb_breakpoint "operator<< <$tt > ($tt&, $tt&)" message
/netbsd/src/external/bsd/openldap/dist/libraries/liblutil/
Dutils.c159 int lutil_tm2time( struct lutil_tm *tm, struct lutil_timet *tt ) in lutil_tm2time() argument
167 tt->tt_nsec = tm->tm_nsec; in lutil_tm2time()
172 tt->tt_sec = 0; in lutil_tm2time()
173 tt->tt_gsec = 0; in lutil_tm2time()
179 tt->tt_sec = tm->tm_year - 70; in lutil_tm2time()
180 tt->tt_sec *= 365L; in lutil_tm2time()
183 tt->tt_sec += ((tm->tm_year -69) >> 2); in lutil_tm2time()
186 tt->tt_sec += moffset[tm->tm_mon]; in lutil_tm2time()
190 tt->tt_sec ++; in lutil_tm2time()
194 tt->tt_sec += (tm->tm_mday - 1); in lutil_tm2time()
[all …]
/netbsd/src/usr.bin/make/unit-tests/
Dvarmod-to-title.mk8 .if ${:UUPPER:tt} != "Upper"
12 .if ${:Ulower:tt} != "Lower"
16 .if ${:UMixeD case.:tt} != "Mixed Case."
22 .if ${:Umultiple spaces:tt} != "Multiple Spaces"
27 .if ${:Uthis&that or os/2:tt} != "This&that Or Os/2"

12345678910