HomeSort by relevance Sort by last modified time
    Searched defs:tt (Results 1 - 25 of 49) sorted by null

1 2

  /bionic/libc/unistd/
time.c 36 struct timeval tt; local
38 if (gettimeofday(&tt, (struct timezone *)0) < 0)
41 *t = (time_t)tt.tv_sec;
42 return (tt.tv_sec);
  /external/iproute2/doc/
ip-cref.tex 41 \section{{\tt ip} --- command syntax}
144 for the {\tt ip link} command, so {\tt ip link ls eth0} is equivalent
145 to {\tt ip link ls dev eth0}.
157 \section{{\tt ip} --- error messages}
225 \section{{\tt ip link} --- network device configuration}
233 \subsection{{\tt ip link set} --- change device attributes}
307 the {\tt ip} utility will allow that.
314 several parameters with one {\tt ip link set} call.
329 \subsection{{\tt ip link show} --- display device attributes
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/instance_of/
Test_instance_of.java 69 T_instance_of_3 tt = new T_instance_of_3(); local
70 tt.run();
81 T_instance_of_7 tt = new T_instance_of_7(); local
82 tt.run();
  /external/dropbear/libtommath/etc/
mersenne.c 109 clock_t tt; local
115 tt = clock ();
125 tt = clock () - tt;
128 printf ("2^%-5ld - 1 is prime, test took %ld ticks\n", k, tt);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
sad_halfpel_inline.h 86 register int32 tt = tmp; local
95 "r"(tt),
106 register int32 tt = tmp; local
115 "r"(tt),
fastquant_inline.h 490 register int32 tt = tmp; local
505 "r"(tt));
574 register int32 tt = tmp; local
592 "r"(tt));
603 register int32 tt = tmp; local
615 "r"(tt));
sad_inline.h 351 register int32 tt = tmp; local
360 "r"(tt),
  /external/openssl/crypto/asn1/
tasn_fre.c 81 const ASN1_TEMPLATE *tt = NULL, *seqtt; local
121 tt = it->templates + i;
122 pchval = asn1_get_field_ptr(pval, tt);
123 ASN1_template_free(pchval, tt);
162 tt = it->templates + it->tcount - 1;
163 for (i = 0; i < it->tcount; tt--, i++)
166 seqtt = asn1_do_adb(pval, tt, 0);
183 void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
186 if (tt->flags & ASN1_TFLG_SK_MASK)
193 asn1_item_combine_free(&vtmp, ASN1_ITEM_ptr(tt->item)
    [all...]
tasn_new.c 70 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
91 const ASN1_TEMPLATE *tt = NULL; local
198 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++)
200 pseqval = asn1_get_field_ptr(pval, tt);
201 if (!ASN1_template_new(pseqval, tt))
266 int ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
268 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item);
270 if (tt->flags & ASN1_TFLG_OPTIONAL)
272 asn1_template_clear(pval, tt);
    [all...]
tasn_enc.c 74 const ASN1_TEMPLATE *tt,
133 const ASN1_TEMPLATE *tt = NULL; local
222 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++)
226 seqtt = asn1_do_adb(pval, tt, 1);
240 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++)
244 seqtt = asn1_do_adb(pval, tt, 1);
265 const ASN1_TEMPLATE *tt)
267 return asn1_template_ex_i2d(pval, out, tt, -1, 0)
    [all...]
tasn_prn.c 165 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx);
195 const ASN1_TEMPLATE *tt; local
274 tt = it->templates + i;
275 tmpfld = asn1_get_field_ptr(fld, tt);
276 if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx))
308 for(i = 0, tt = it->templates; i < it->tcount; i++, tt++)
311 seqtt = asn1_do_adb(fld, tt, 1);
340 const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx)
344 flags = tt->flags
    [all...]
tasn_dec.c 84 const ASN1_TEMPLATE *tt, char opt,
88 const ASN1_TEMPLATE *tt, char opt,
142 const unsigned char **in, long len, const ASN1_TEMPLATE *tt)
146 return asn1_template_ex_d2i(pval, in, len, tt, 0, &c);
158 const ASN1_TEMPLATE *tt, *errtt = NULL; local
324 for (i = 0, tt=it->templates; i < it->tcount; i++, tt++)
326 pchptr = asn1_get_field_ptr(pval, tt);
330 ret = asn1_template_ex_d2i(pchptr, &p, len, tt, 1, ctx);
338 errtt = tt;
    [all...]
  /cts/tools/host/src/com/android/cts/
DeviceManager.java 378 TimeoutThread tt = new TimeoutThread(proc, SHORT_DELAY); local
379 tt.start();
381 tt.interrupt(); // wake timeout thread
  /external/dropbear/libtommath/demo/
timing.c 83 ulong64 tt, gg, CLK_PER_SEC; local
114 tt = -1;
119 if (tt > gg)
120 tt = gg;
123 mp_count_bits(&a), CLK_PER_SEC / tt, tt);
124 fprintf(log, "%d %9llu\n", cnt * DIGIT_BIT, tt);
135 tt = -1;
140 if (tt > gg)
141 tt = gg
    [all...]
  /external/wpa_supplicant/
os_win32.c 35 ULONGLONG tt; local
47 tt = (li.QuadPart - EPOCHFILETIME) / 10;
48 t->sec = (os_time_t) (tt / 1000000);
49 t->usec = (os_time_t) (tt % 1000000);
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_win32.c 35 ULONGLONG tt; local
47 tt = (li.QuadPart - EPOCHFILETIME) / 10;
48 t->sec = (os_time_t) (tt / 1000000);
49 t->usec = (os_time_t) (tt % 1000000);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 132 String tt = new Timestamp(now, cpath).toString(); local
  /bionic/libc/netbsd/isc/
ev_timers.c 358 idle_timer *tt; local
361 OKNEW(tt);
362 tt->func = func;
363 tt->uap = uap;
364 tt->lastTouched = ctx->lastEventTime;
365 tt->max_idle = max_idle;
367 if (evSetTimer(opaqueCtx, idle_timeout, tt,
370 FREE(tt);
374 tt->timer = opaqueID->opaque;
382 idle_timer *tt = del->uap local
397 idle_timer *tt = timer->uap; local
413 idle_timer *tt = t->uap; local
    [all...]
  /external/freetype/src/base/
ftbitmap.c 445 FT_Byte* tt = t; local
455 tt[0] = (FT_Byte)( ( val & 0x80 ) >> 7 );
456 tt[1] = (FT_Byte)( ( val & 0x40 ) >> 6 );
457 tt[2] = (FT_Byte)( ( val & 0x20 ) >> 5 );
458 tt[3] = (FT_Byte)( ( val & 0x10 ) >> 4 );
459 tt[4] = (FT_Byte)( ( val & 0x08 ) >> 3 );
460 tt[5] = (FT_Byte)( ( val & 0x04 ) >> 2 );
461 tt[6] = (FT_Byte)( ( val & 0x02 ) >> 1 );
462 tt[7] = (FT_Byte)( val & 0x01 );
464 tt += 8
527 FT_Byte* tt = t; local
579 FT_Byte* tt = t; local
    [all...]
  /external/openssl/crypto/bn/
bn_asm.c 451 tt=(t+t)&BN_MASK; \
452 if (tt < t) c2++; \
453 t1=(BN_ULONG)Lw(tt); \
454 t2=(BN_ULONG)Hw(tt); \
714 BN_ULLONG t,tt; local
795 BN_ULLONG t,tt; local
  /external/tcpdump/
print-ip.c 102 int tt; local
105 tt = *cp;
106 if (tt == IPOPT_EOL)
108 else if (tt == IPOPT_NOP)
117 switch (tt) {
  /external/clearsilver/python/
neo_util.c 644 int tt; local
648 if (!PyArg_ParseTuple(args, "is:time_expand(time_t, timezone string)", &tt, &tz))
651 neo_time_expand(tt, tz, &ttm);
661 int tt; local
675 tt = neo_time_compact (&ttm, tz);
677 rv = Py_BuildValue("i", tt);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ThrowableTest.java 320 TestThrowable tt = new TestThrowable(testMessage); local
321 assertEquals("localized message", tt.getLocalizedMessage());
  /bionic/libm/src/
e_lgamma_r.c 108 /* tt = -(tail of tf) */
109 tt = -3.63867699703950536541e-18, /* 0xBC50C7CA, 0xA48A971F */ variable
261 p = z*p1-(tt-w*(p2+y*p3));
e_lgammaf_r.c 42 /* tt = -(tail of tf) */
43 tt = 6.6971006518e-09, /* 0x31e61c52 */ variable
195 p = z*p1-(tt-w*(p2+y*p3));

Completed in 1000 milliseconds

1 2