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

1 2 3 4 5

  /onnv/onnv-gate/usr/src/cmd/acct/lib/
tmless.c 31 * return 1 if t1 earlier than t2 (times in localtime format)
32 * assumed that t1 and t2 are in same day
37 tmless(t1, t2)
38 register struct tm *t1, *t2;
40 if (t1->tm_hour != t2->tm_hour)
41 return(t1->tm_hour < t2->tm_hour);
42 if (t1->tm_min != t2->tm_min)
43 return(t1->tm_min < t2->tm_min);
44 return(t1->tm_sec < t2->tm_sec);
tmsecs.c 28 * tmsecs returns number of seconds from t1 to t2,
30 * assumed that t1 <= t2, and are in same day.
35 tmsecs(t1, t2)
36 register struct tm *t1, *t2;
38 return((t2->tm_sec - t1->tm_sec) +
39 60*(t2->tm_min - t1->tm_min) +
40 3600L*(t2->tm_hour - t1->tm_hour));
pnpsplit.c 300 * tmsecs returns number of seconds from t1 to t2,
302 * assumed that t1 <= t2, and are in same day.
306 tmsecs(t1, t2)
307 register struct tm *t1, *t2;
309 return((t2->tm_sec - t1->tm_sec) +
310 60*(t2->tm_min - t1->tm_min) +
311 3600L*(t2->tm_hour - t1->tm_hour));
315 * return 1 if t1 earlier than t2 (times in localtime format)
316 * assumed that t1 and t2 are in same day
320 tmless(t1, t2)
    [all...]
  /onnv/onnv-gate/usr/src/lib/librstp/common/
times.c 28 STP_compare_times (IN TIMEVALUES_T *t1, IN TIMEVALUES_T *t2)
30 if (t1->MessageAge < t2->MessageAge) return -1;
31 if (t1->MessageAge > t2->MessageAge) return 1;
33 if (t1->MaxAge < t2->MaxAge) return -2;
34 if (t1->MaxAge > t2->MaxAge) return 2;
36 if (t1->ForwardDelay < t2->ForwardDelay) return -3;
37 if (t1->ForwardDelay > t2->ForwardDelay) return 3;
39 if (t1->HelloTime < t2->HelloTime) return -4;
40 if (t1->HelloTime > t2->HelloTime) return 4;
times.h 36 STP_compare_times (IN TIMEVALUES_T* t1, IN TIMEVALUES_T* t2);
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
strstr.c 54 register const char* t2;
65 t2 = s2;
68 if (!*t2)
70 } while (*t1++ == *t2++);
  /onnv/onnv-gate/usr/src/lib/libtnfctl/
dbg.h 57 #define DBG_TNF_PROBE_2(a, b, c, t1, n1, v1, t2, n2, v2) \
58 TNF_PROBE_2(a, b, c, t1, n1, v1, t2, n2, v2)
59 #define DBG_TNF_PROBE_3(a, b, c, t1, n1, v1, t2, n2, v2, t3, n3, v3) \
60 TNF_PROBE_3(a, b, c, t1, n1, v1, t2, n2, v2, t3, n3, v3)
62 #define DBG_TNF_PROBE_4(a, b, c, t1, n1, v1, t2, n2, v2, t3, n3, v3, t4, n4, v4) \
63 TNF_PROBE_4(a, b, c, t1, n1, v1, t2, n2, v2, t3, n3, v3, t4, n4, v4)
71 #define DBG_TNF_PROBE_2(a, b, c, t1, n1, v1, t2, n2, v2) \
73 #define DBG_TNF_PROBE_3(a, b, c, t1, n1, v1, t2, n2, v2, t3, n3, v3) \
76 #define DBG_TNF_PROBE_4(a, b, c, t1, n1, v1, t2, n2, v2, t3, n3, v3, t4, n4, v4) \
  /onnv/onnv-gate/usr/src/common/openssl/crypto/dh/
dh_gen.c 105 BIGNUM *t1,*t2; local
113 t2 = BN_CTX_get(ctx);
114 if (t1 == NULL || t2 == NULL) goto err;
128 if (!BN_set_word(t2,11)) goto err;
135 if (!BN_set_word(t2,5)) goto err;
142 if (!BN_set_word(t2,3)) goto err;
154 if (!BN_set_word(t2,1)) goto err;
158 if(!BN_generate_prime_ex(ret->p,prime_len,1,t1,t2,cb)) goto err;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
exists_sub.t 11 sub t2 : locked;
24 print "not " unless exists &t2 && not defined &t2;
append.t 47 my $t2 = $a; $t2 .= $uab;
49 print eval '$t2 =~ /$ub/' ? "ok 7\n" : "not ok 7\t# $t2\n";
  /onnv/onnv-gate/usr/src/lib/libidmap/common/
utils.c 73 idmap_get_res_t *t2; local
88 nsize = (len + _GET_IDS_SIZE_INCR) * sizeof (*t2);
89 t2 = realloc(gh->retlist, nsize);
90 if (t2 == NULL)
92 (void) memset((uchar_t *)t2 + (len * sizeof (*t2)), 0,
93 _GET_IDS_SIZE_INCR * sizeof (*t2));
94 gh->retlist = t2;
  /onnv/onnv-gate/usr/src/common/openssl/crypto/bn/
bn_asm.c 387 BN_ULONG t1,t2; local
395 t1=a[0]; t2=b[0];
396 r[0]=(t1-t2-c)&BN_MASK2;
397 if (t1 != t2) c=(t1 < t2);
400 t1=a[1]; t2=b[1];
401 r[1]=(t1-t2-c)&BN_MASK2;
402 if (t1 != t2) c=(t1 < t2);
405 t1=a[2]; t2=b[2]
557 BN_ULONG t1,t2; local
666 BN_ULONG t1,t2; local
711 BN_ULONG t1,t2; local
792 BN_ULONG t1,t2; local
    [all...]
bn_add.c 108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
141 t2 = (t1+1) & BN_MASK2;
142 *(rp++) = t2;
143 if (t2)
169 register BN_ULONG t1,t2,*ap,*bp,*rp; local
199 t2= *(bp++);
202 carry=(t1 <= t2);
203 t1=(t1-t2-1)&BN_MASK2;
207 carry=(t1 < t2);
208 t1=(t1-t2)&BN_MASK2
    [all...]
bn_mont.c 151 long long t2; local
154 t2 = 037777600000l;
155 t2 = n0 & t2;
157 t2 = (t3 * t2) & BN_MASK2;
158 t1 = t1 + t2;
221 BN_ULONG t1,t2,t3,t4; local
224 t2=nrp[i+1];
228 rp[i+1]=t2; ap[i+3]=0
244 BN_ULONG t1,t2,t3,t4; local
260 BIGNUM *t1,*t2; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/acct/
acctmerg.c 190 tacctadd(struct tacct *t1, struct tacct *t2)
192 t1->ta_cpu[0] = t1->ta_cpu[0] + t2->ta_cpu[0];
193 t1->ta_cpu[1] = t1->ta_cpu[1] + t2->ta_cpu[1];
194 t1->ta_kcore[0] = t1->ta_kcore[0] + t2->ta_kcore[0];
195 t1->ta_kcore[1] = t1->ta_kcore[1] + t2->ta_kcore[1];
196 t1->ta_con[0] = t1->ta_con[0] + t2->ta_con[0];
197 t1->ta_con[1] = t1->ta_con[1] + t2->ta_con[1];
198 t1->ta_du = t1->ta_du + t2->ta_du;
199 t1->ta_pc += t2->ta_pc;
200 t1->ta_sc += t2->ta_sc
    [all...]
  /onnv/onnv-gate/usr/src/lib/libcrypt/common/
des_decrypt.c 42 char t2; local
108 t2 = L[j];
110 R[j] = t2;
des_encrypt.c 43 char t2; local
108 t2 = L[j];
110 R[j] = t2;
  /onnv/onnv-gate/usr/src/lib/libnisdb/yptol/
ttl_utils.c 286 add_to_timeval(struct timeval *t1, int t2)
294 t1->tv_sec += t2;
299 "Wrap when adding %d to %d", t2, oldval.tv_sec);
317 * OUTPUTS: TRUE t1 > t2
318 * FALSE t1 <= t2
322 is_greater_timeval(struct timeval *t1, struct timeval *t2)
324 if (t1->tv_sec > t2->tv_sec)
327 if (t1->tv_sec == t2->tv_sec) {
328 if (t1->tv_usec > t2->tv_usec)
  /onnv/onnv-gate/usr/src/common/openssl/crypto/bn/asm/
x86_64-gcc.c 224 BN_ULONG t1,t2; local
231 t1=a[0]; t2=b[0];
232 r[0]=(t1-t2-c)&BN_MASK2;
233 if (t1 != t2) c=(t1 < t2);
236 t1=a[1]; t2=b[1];
237 r[1]=(t1-t2-c)&BN_MASK2;
238 if (t1 != t2) c=(t1 < t2);
241 t1=a[2]; t2=b[2]
343 BN_ULONG t1,t2; local
447 BN_ULONG t1,t2; local
487 BN_ULONG t1,t2; local
563 BN_ULONG t1,t2; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/
renew.c 86 uint32_t t2; local
100 * Sanity check: don't send packets if we're past T2, or if we're
104 t2 = dsmp->dsm_curstart_monosec + dlp->dl_t2.dt_start;
105 if (monosec() + TOO_CLOSE >= t2) {
106 dhcpmsg(MSG_DEBUG, "dhcp_renew: %spast T2 on %s",
107 monosec() > t2 ? "" : "almost ", dsmp->dsm_name);
119 if (monosec() + RETRY_DELAY < t2) {
142 * dhcp_rebind(): attempts to renew a DHCP lease from the REBINDING state (T2
148 * notes: For v4, we repeatedly reschedule the T2 timer to do the
165 dhcpmsg(MSG_VERBOSE, "dhcp_rebind: T2 timer expired on %s"
525 monosec_t t2; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libxcurses/h/
mks.h 310 #define VARARG2(t1, n1, t2, n2) (t1 n1, t2 n2, ...)
311 #define VARARG3(t1, n1, t2, n2, t3, n3) (t1 n1, t2 n2, t3 n3, ...)
312 #define VARARG4(t1, n1, t2, n2, t3, n3, t4, n4) \
313 (t1 n1, t2 n2, t3 n3, t4 n4, ...)
314 #define VARARG5(t1, n1, t2, n2, t3, n3, t4, n4, t5, n5) \
315 (t1 n1, t2 n2, t3 n3, t4 n4, t5 n5, ...)
318 #define VARARG2(t1, n1, t2, n2) (n1, n2, va_alist) t1 n1; t2 n2; int va_alis
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/aes/
aes_core.c 900 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
1091 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/
expfile.t 62 my $t2 = readfile($FILE);
65 ++$n; print ((($t1 eq $t2) ? '' : 'not '), "ok $n\n");
tie.t 60 my $t2 = c5($ARG);
63 print (($t2 == 5) ? "ok $testno\n" : "not ok $testno\n");
tie_ndbm.t 56 my $t2 = c5();
59 print (($t2 == 5) ? "ok $testno\n" : "not ok $testno\n");

Completed in 3419 milliseconds

1 2 3 4 5