HomeSort by relevance Sort by last modified time
    Searched refs:ti (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /onnv/onnv-gate/usr/src/cmd/terminfo/
Makefile 32 TISRC= adds.ti annarbor.ti ansi.ti att.ti beehive.ti \
33 cdc.ti colorscan.ti datamedia.ti dec.ti diablo.ti \
    [all...]
ti.ti 30 # ti: TEXAS INSTRUMENTS
34 ti700|ti733|735|ti735|ti silent 700,
36 ti|ti745|745|743|ti silent 745,
38 ti800|ti omni 800,
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/terminfo/
ti 27 # @(#)ti 1.4 5/20/82
29 # ti: TEXAS INSTRUMENTS
31 ti700|ti733|735|ti735|ti silent 700,
33 ti|ti745|745|743|ti silent 745,
35 ti800|ti omni 800,
  /onnv/onnv-gate/usr/src/cmd/lp/terminfo/
Makefile 33 SRCS = PS.ti 40.ti 477.ti 53x0.ti 593.ti daisy.ti hplaser.ti \
34 44x.ti 47x.ti 57x.ti dec.ti ibm.ti 45x.ti 495.ti
    [all...]
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
TypeId.h 15 // Is this object of type ti?
16 int isA(TypeId ti) const;
20 int operator==(TypeId ti) const { return bases_ == ti.bases_; }
21 int operator!=(TypeId ti) const { return bases_ != ti.bases_; }
  /onnv/onnv-gate/usr/src/common/openssl/crypto/bf/
bf_cfb64.c 73 BF_LONG ti[2]; local
83 n2l(iv,v0); ti[0]=v0;
84 n2l(iv,v1); ti[1]=v1;
85 BF_encrypt((BF_LONG *)ti,schedule);
87 t=ti[0]; l2n(t,iv);
88 t=ti[1]; l2n(t,iv);
103 n2l(iv,v0); ti[0]=v0;
104 n2l(iv,v1); ti[1]=v1;
105 BF_encrypt((BF_LONG *)ti,schedule);
107 t=ti[0]; l2n(t,iv)
    [all...]
bf_ofb64.c 74 BF_LONG ti[2]; local
81 ti[0]=v0;
82 ti[1]=v1;
90 BF_encrypt((BF_LONG *)ti,schedule);
92 t=ti[0]; l2n(t,dp);
93 t=ti[1]; l2n(t,dp);
101 v0=ti[0];
102 v1=ti[1];
107 t=v0=v1=ti[0]=ti[1]=0
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/cast/
c_cfb64.c 74 CAST_LONG ti[2]; local
84 n2l(iv,v0); ti[0]=v0;
85 n2l(iv,v1); ti[1]=v1;
86 CAST_encrypt((CAST_LONG *)ti,schedule);
88 t=ti[0]; l2n(t,iv);
89 t=ti[1]; l2n(t,iv);
104 n2l(iv,v0); ti[0]=v0;
105 n2l(iv,v1); ti[1]=v1;
106 CAST_encrypt((CAST_LONG *)ti,schedule);
108 t=ti[0]; l2n(t,iv)
    [all...]
c_ofb64.c 75 CAST_LONG ti[2]; local
82 ti[0]=v0;
83 ti[1]=v1;
91 CAST_encrypt((CAST_LONG *)ti,schedule);
93 t=ti[0]; l2n(t,dp);
94 t=ti[1]; l2n(t,dp);
102 v0=ti[0];
103 v1=ti[1];
108 t=v0=v1=ti[0]=ti[1]=0
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/des/
cfb64enc.c 73 DES_LONG ti[2]; local
83 c2l(iv,v0); ti[0]=v0;
84 c2l(iv,v1); ti[1]=v1;
85 DES_encrypt1(ti,schedule,DES_ENCRYPT);
87 v0=ti[0]; l2c(v0,iv);
88 v0=ti[1]; l2c(v0,iv);
103 c2l(iv,v0); ti[0]=v0;
104 c2l(iv,v1); ti[1]=v1;
105 DES_encrypt1(ti,schedule,DES_ENCRYPT);
107 v0=ti[0]; l2c(v0,iv)
    [all...]
ofb64enc.c 74 DES_LONG ti[2]; local
81 ti[0]=v0;
82 ti[1]=v1;
90 DES_encrypt1(ti,schedule,DES_ENCRYPT);
92 t=ti[0]; l2c(t,dp);
93 t=ti[1]; l2c(t,dp);
101 v0=ti[0];
102 v1=ti[1];
107 t=v0=v1=ti[0]=ti[1]=0
    [all...]
ofb64ede.c 76 DES_LONG ti[2]; local
83 ti[0]=v0;
84 ti[1]=v1;
92 /* ti[0]=v0; */
93 /* ti[1]=v1; */
94 DES_encrypt3(ti,k1,k2,k3);
95 v0=ti[0];
96 v1=ti[1];
108 /* v0=ti[0];
109 v1=ti[1];*
    [all...]
ofb_enc.c 75 DES_LONG ti[2]; local
99 ti[0]=v0;
100 ti[1]=v1;
103 ti[0]=v0;
104 ti[1]=v1;
105 DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT);
106 vv0=ti[0];
107 vv1=ti[1];
133 v0=v1=d0=d1=ti[0]=ti[1]=vv0=vv1=0
    [all...]
cfb64ede.c 75 DES_LONG ti[2]; local
88 ti[0]=v0;
89 ti[1]=v1;
90 DES_encrypt3(ti,ks1,ks2,ks3);
91 v0=ti[0];
92 v1=ti[1];
114 ti[0]=v0;
115 ti[1]=v1;
116 DES_encrypt3(ti,ks1,ks2,ks3);
117 v0=ti[0]
157 DES_LONG ti[2]; local
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/idea/
i_cfb64.c 74 unsigned long ti[2]; local
84 n2l(iv,v0); ti[0]=v0;
85 n2l(iv,v1); ti[1]=v1;
86 idea_encrypt((unsigned long *)ti,schedule);
88 t=ti[0]; l2n(t,iv);
89 t=ti[1]; l2n(t,iv);
104 n2l(iv,v0); ti[0]=v0;
105 n2l(iv,v1); ti[1]=v1;
106 idea_encrypt((unsigned long *)ti,schedule);
108 t=ti[0]; l2n(t,iv)
    [all...]
i_ofb64.c 75 unsigned long ti[2]; local
82 ti[0]=v0;
83 ti[1]=v1;
91 idea_encrypt((unsigned long *)ti,schedule);
93 t=ti[0]; l2n(t,dp);
94 t=ti[1]; l2n(t,dp);
102 v0=ti[0];
103 v1=ti[1];
108 t=v0=v1=ti[0]=ti[1]=0
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/rc2/
rc2cfb64.c 74 unsigned long ti[2]; local
84 c2l(iv,v0); ti[0]=v0;
85 c2l(iv,v1); ti[1]=v1;
86 RC2_encrypt((unsigned long *)ti,schedule);
88 t=ti[0]; l2c(t,iv);
89 t=ti[1]; l2c(t,iv);
104 c2l(iv,v0); ti[0]=v0;
105 c2l(iv,v1); ti[1]=v1;
106 RC2_encrypt((unsigned long *)ti,schedule);
108 t=ti[0]; l2c(t,iv)
    [all...]
rc2ofb64.c 75 unsigned long ti[2]; local
82 ti[0]=v0;
83 ti[1]=v1;
91 RC2_encrypt((unsigned long *)ti,schedule);
93 t=ti[0]; l2c(t,dp);
94 t=ti[1]; l2c(t,dp);
102 v0=ti[0];
103 v1=ti[1];
108 t=v0=v1=ti[0]=ti[1]=0
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/rc5/
rc5cfb64.c 74 unsigned long ti[2]; local
84 c2l(iv,v0); ti[0]=v0;
85 c2l(iv,v1); ti[1]=v1;
86 RC5_32_encrypt((unsigned long *)ti,schedule);
88 t=ti[0]; l2c(t,iv);
89 t=ti[1]; l2c(t,iv);
104 c2l(iv,v0); ti[0]=v0;
105 c2l(iv,v1); ti[1]=v1;
106 RC5_32_encrypt((unsigned long *)ti,schedule);
108 t=ti[0]; l2c(t,iv)
    [all...]
rc5ofb64.c 75 unsigned long ti[2]; local
82 ti[0]=v0;
83 ti[1]=v1;
91 RC5_32_encrypt((unsigned long *)ti,schedule);
93 t=ti[0]; l2c(t,dp);
94 t=ti[1]; l2c(t,dp);
102 v0=ti[0];
103 v1=ti[1];
108 t=v0=v1=ti[0]=ti[1]=0
    [all...]
  /onnv/onnv-gate/usr/src/tools/ndrgen/
ndr_gen.c 53 ndr_typeinfo_t *ti; local
58 for (ti = typeinfo_list; ti; ti = ti->next) {
59 if (ti->is_extern || ti->advice.a_extern) {
60 type_extern_suffix(ti, fname_type, NDLBUFSZ);
67 switch (ti->type_op) {
69 if (ti->advice.a_operation
    [all...]
ndr_anal.c 44 ndr_typeinfo_t *ti; member in struct:tup
76 ndr_typeinfo_t *ti; local
83 for (ti = typeinfo_list; ti; ti = ti->next) {
84 switch (ti->type_op) {
101 type_extern_suffix(ti, fname_type, NDLBUFSZ);
102 if (ti->is_extern) {
105 } else if (!ti->is_referenced)
147 ndr_typeinfo_t *ti; local
191 ndr_typeinfo_t *ti; local
263 ndr_typeinfo_t *ti; local
318 ndr_typeinfo_t *ti; local
758 ndr_typeinfo_t *ti; local
795 ndr_typeinfo_t *ti; local
849 ndr_typeinfo_t *ti; local
953 ndr_typeinfo_t *ti; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
TypeId.cxx 12 int TypeId::isA(TypeId ti) const
14 if (*this == ti)
17 if (TypeId((const void *const *)*p).isA(ti))
  /onnv/onnv-gate/usr/src/cmd/svc/configd/
configd.c 153 thread_info_free(thread_info_t *ti)
155 uu_list_node_fini(ti, &ti->ti_node, thread_pool);
156 if (ti->ti_ucred != NULL)
157 uu_free(ti->ti_ucred);
158 uu_free(ti);
164 thread_info_t *ti = arg; local
166 if (ti != NULL)
167 log_enter(&ti->ti_log);
170 if (ti != NULL)
211 thread_info_t *ti = thread_self(); local
251 thread_info_t *ti = thread_self(); local
259 thread_info_t *ti = arg; local
282 thread_info_t *ti; local
532 thread_info_t *ti = &main_thread_info; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cdrw/
write_audio.c 78 struct track_info *ti; local
106 ti = (struct track_info *)my_zalloc(sizeof (*ti));
109 if ((build_track_info(target, -1, ti) == 0) ||
110 ((ti->ti_flags & TI_NWA_VALID) == 0)) {
128 blks_avail -= ti->ti_nwa;
143 free(ti);

Completed in 780 milliseconds

1 2 3 4