| /src/lib/libc/gen/ |
| time.c | 50 struct timeval tt; local 52 if (gettimeofday(&tt, NULL) == -1) 55 *t = (time_t)tt.tv_sec; 56 return (time_t)tt.tv_sec;
|
| /src/external/lgpl3/gmp/dist/mpz/ |
| cmp_si.c | 40 mp_limb_t tt[2]; variable 41 PTR(tmp) = tt;
|
| /src/sys/arch/hppa/stand/common/ |
| time.c | 42 satime_t tt; local 45 tt = 0; 51 tt = ((struct pdc_tod *)pdcbuf)->sec; 53 if (debug && tt < 800000000) 54 printf("getsecs: got %u seconds\n", tt); 58 return tt;
|
| /src/tests/lib/libc/time/ |
| t_mktime.c | 46 struct tm tt; local 50 localtime_r(&x, &tt); 53 if (t->tm_sec != tt.tm_sec || t->tm_min != tt.tm_min || 54 t->tm_hour != tt.tm_hour || t->tm_mday != tt.tm_mday)
|
| /src/external/lgpl3/mpfr/dist/src/ |
| log10.c | 96 mpfr_t t, tt; local 109 mpfr_init2 (tt, Nt); 118 mpfr_log (tt, a, MPFR_RNDN); /* log(a) */ 119 mpfr_div (t, tt, t, MPFR_RNDN); /* log(a)/log(10) */ 131 && !mpfr_ui_pow_ui (tt, 10, mpfr_get_ui (t, MPFR_RNDN), MPFR_RNDN) 132 && mpfr_equal_p (a, tt)) 138 mpfr_set_prec (tt, Nt); 145 mpfr_clear (tt);
|
| log2.c | 98 mpfr_t t, tt; local 111 mpfr_init2 (tt, Nt); 119 mpfr_log(tt,a,MPFR_RNDN); /* log(a) */ 120 mpfr_div(t,tt,t,MPFR_RNDN); /* log(a)/log(2) */ 130 mpfr_set_prec (tt, Nt); 137 mpfr_clear (tt);
|
| logging.c | 52 time_t tt; local 96 time (&tt); 97 fprintf (mpfr_log_file, "MPFR LOG FILE %s\n", ctime (&tt));
|
| /src/crypto/external/apache2/openssl/dist/crypto/asn1/ |
| asn1_local.h | 26 const ASN1_TEMPLATE *tt; member in struct:asn1_sctx_st 58 ASN1_VALUE **ossl_asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt); 60 const ASN1_TEMPLATE *tt); 63 const ASN1_TEMPLATE *tt, 77 void ossl_asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
|
| tasn_fre.c | 30 const ASN1_TEMPLATE *tt = NULL, *seqtt; local 68 tt = it->templates + i; 69 pchval = ossl_asn1_get_field_ptr(pval, tt); 70 ossl_asn1_template_free(pchval, tt); 105 tt = it->templates + it->tcount; 109 tt--; 110 seqtt = ossl_asn1_do_adb(*pval, tt, 0); 126 void ossl_asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) 128 int embed = tt->flags & ASN1_TFLG_EMBED; 134 if (tt->flags & ASN1_TFLG_SK_MASK) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| asn1_local.h | 24 const ASN1_TEMPLATE *tt; member in struct:asn1_sctx_st 56 ASN1_VALUE **ossl_asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt); 58 const ASN1_TEMPLATE *tt); 61 const ASN1_TEMPLATE *tt, 75 void ossl_asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
|
| tasn_fre.c | 30 const ASN1_TEMPLATE *tt = NULL, *seqtt; local 68 tt = it->templates + i; 69 pchval = ossl_asn1_get_field_ptr(pval, tt); 70 ossl_asn1_template_free(pchval, tt); 105 tt = it->templates + it->tcount; 109 tt--; 110 seqtt = ossl_asn1_do_adb(*pval, tt, 0); 126 void ossl_asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) 128 int embed = tt->flags & ASN1_TFLG_EMBED; 134 if (tt->flags & ASN1_TFLG_SK_MASK) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| asn1_local.h | 22 const ASN1_TEMPLATE *tt; member in struct:asn1_sctx_st 52 ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt); 54 const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt, 68 void asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
|
| tasn_fre.c | 30 const ASN1_TEMPLATE *tt = NULL, *seqtt; local 68 tt = it->templates + i; 69 pchval = asn1_get_field_ptr(pval, tt); 70 asn1_template_free(pchval, tt); 101 tt = it->templates + it->tcount; 105 tt--; 106 seqtt = asn1_do_adb(pval, tt, 0); 122 void asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt) 124 int embed = tt->flags & ASN1_TFLG_EMBED; 130 if (tt->flags & ASN1_TFLG_SK_MASK) [all...] |
| /src/external/gpl3/gcc/dist/libgfortran/intrinsics/ |
| dtime.c | 44 GFC_REAL_4 tu, ts, tt; local 54 tt = tu + ts; 64 tt = -1; 72 *result = tt;
|
| etime.c | 35 GFC_REAL_4 tu, ts, tt, *tp; local 45 tt = tu + ts; 51 tt = (GFC_REAL_4)-1.0; 59 *result = tt;
|
| /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/ |
| dtime.c | 44 GFC_REAL_4 tu, ts, tt; local 54 tt = tu + ts; 64 tt = -1; 72 *result = tt;
|
| etime.c | 35 GFC_REAL_4 tu, ts, tt, *tp; local 45 tt = tu + ts; 51 tt = (GFC_REAL_4)-1.0; 59 *result = tt;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.stabs/ |
| gdb11479.c | 33 const struct dummy *tt; local 35 tt = t; 42 struct dummy *tt; local 44 tt = t; 69 struct dummy tt; local 70 tt.x = 5; 71 tt.y = 25; 72 tt.b = 2.5; 73 test2 (&tt); 74 test (&tt); [all...] |
| /src/external/gpl3/gdb/dist/readline/readline/examples/ |
| histexamp.c | 93 time_t tt; local 100 tt = history_get_time (the_list[i]); 101 if (tt) 102 strftime (timestr, sizeof (timestr), "%a %R", localtime(&tt));
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.stabs/ |
| gdb11479.c | 33 const struct dummy *tt; local 35 tt = t; 42 struct dummy *tt; local 44 tt = t; 69 struct dummy tt; local 70 tt.x = 5; 71 tt.y = 25; 72 tt.b = 2.5; 73 test2 (&tt); 74 test (&tt); [all...] |
| /src/external/gpl3/gdb.old/dist/readline/readline/examples/ |
| histexamp.c | 93 time_t tt; local 100 tt = history_get_time (the_list[i]); 101 if (tt) 102 strftime (timestr, sizeof (timestr), "%a %R", localtime(&tt));
|
| /src/usr.bin/xlint/lint2/ |
| emit2.c | 48 static const char tt[NTSPEC] = "???BCCCSSIILLQQJJDDD?XXXV?TTTPAF"; local 55 if (!ch_isupper(tt[ts])) 66 outchar(tt[ts]);
|
| /src/external/gpl2/lvm2/dist/libdm/regex/ |
| ttree.c | 51 void *ttree_lookup(struct ttree *tt, unsigned *key) 53 struct node **c = &tt->root; 54 int count = tt->klen; 74 int ttree_insert(struct ttree *tt, unsigned int *key, void *data) 76 struct node **c = &tt->root; 77 int count = tt->klen; 91 if (!(*c = _tree_node(tt->mem, k))) { 109 struct ttree *tt; local 111 if (!(tt = dm_pool_zalloc(mem, sizeof(*tt)))) { [all...] |
| /src/sys/arch/m68k/fpe/ |
| fpu_sqrt.c | 192 uint32_t bit, q, tt; local 265 * The variable `tt' holds the actual `t?' variable. 269 #define t0 tt 293 #define t1 tt 324 #define t2 tt
|
| /src/sys/arch/powerpc/fpu/ |
| fpu_sqrt.c | 196 u_int bit, q, tt; local 285 * The variable `tt' holds the actual `t?' variable. 289 #define t0 tt 313 #define t1 tt 344 #define t2 tt 377 #define t3 tt
|