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

1 2 3 4 5 6 7

  /bionic/libc/upstream-openbsd/lib/libc/gen/
time.c 37 struct timeval tt; local
39 if (gettimeofday(&tt, NULL) < 0)
42 *t = (time_t)tt.tv_sec;
43 return (tt.tv_sec);
  /external/toybox/toys/other/
w.c 27 time_t tt = x->ut_tv.tv_sec; local
30 ctime(&tt), x->ut_host);
  /external/iproute2/doc/
ip-cref.tex 41 \section{{\tt ip} --- command syntax}
179 for the {\tt ip link} command, so {\tt ip link ls eth0} is equivalent
180 to {\tt ip link ls dev eth0}.
192 \section{{\tt ip} --- error messages}
260 \section{{\tt ip link} --- network device configuration}
268 \subsection{{\tt ip link set} --- change device attributes}
342 the {\tt ip} utility will allow that.
349 several parameters with one {\tt ip link set} call.
364 \subsection{{\tt ip link show} --- display device attributes
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug291.go 17 var tt, ok = i.(*T) var
20 if tt == nil || tt.x != 42 {
issue8028.go 15 tt = [...]T{t1, t2}
13 tt = [...]T{t1, t2} var
  /prebuilts/go/linux-x86/test/fixedbugs/
bug291.go 17 var tt, ok = i.(*T) var
20 if tt == nil || tt.x != 42 {
issue8028.go 15 tt = [...]T{t1, t2}
13 tt = [...]T{t1, t2} var
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shlex.py 288 tt = lexer.get_token() variable
289 if tt:
290 print "Token: " + repr(tt)
  /external/skia/src/sfnt/
SkOTTable_maxp.h 28 struct TT : SkOTTableMaximumProfile_TT { } tt; member in union:SkOTTableMaximumProfile::Version
  /external/syslinux/diag/geodsp/
mk-lba-img.c 40 uint8_t tt = 0; local
  /frameworks/av/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),
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shlex.py 288 tt = lexer.get_token() variable
289 if tt:
290 print "Token: " + repr(tt)
  /prebuilts/gdb/linux-x86/lib/python2.7/
shlex.py 288 tt = lexer.get_token() variable
289 if tt:
290 print "Token: " + repr(tt)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 288 tt = lexer.get_token() variable
289 if tt:
290 print "Token: " + repr(tt)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 288 tt = lexer.get_token() variable
289 if tt:
290 print "Token: " + repr(tt)
  /external/boringssl/src/crypto/asn1/
tasn_fre.c 80 const ASN1_TEMPLATE *tt = NULL, *seqtt; local
117 tt = it->templates + i;
118 pchval = asn1_get_field_ptr(pval, tt);
119 ASN1_template_free(pchval, tt);
156 tt = it->templates + it->tcount - 1;
157 for (i = 0; i < it->tcount; tt--, i++) {
159 seqtt = asn1_do_adb(pval, tt, 0);
175 void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
178 if (tt->flags & ASN1_TFLG_SK_MASK) {
183 asn1_item_combine_free(&vtmp, ASN1_ITEM_ptr(tt->item), 0)
    [all...]
tasn_new.c 72 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
93 const ASN1_TEMPLATE *tt = NULL; local
188 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
189 pseqval = asn1_get_field_ptr(pval, tt);
190 if (!ASN1_template_new(pseqval, tt))
259 int ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
261 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item);
263 if (tt->flags & ASN1_TFLG_OPTIONAL) {
264 asn1_template_clear(pval, tt);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat384.java 18 int[] tt = Nat192.createExt(); local
19 Nat192.mul(dx, dy, tt);
21 c18 += neg ? Nat.addTo(12, tt, 0, zz, 6) : Nat.subFrom(12, tt, 0, zz, 6);
37 int[] tt = Nat192.createExt(); local
38 Nat192.square(dx, tt);
40 c18 += Nat.subFrom(12, tt, 0, zz, 6);
Nat512.java 18 int[] tt = Nat256.createExt(); local
19 Nat256.mul(dx, dy, tt);
21 c24 += neg ? Nat.addTo(16, tt, 0, zz, 8) : Nat.subFrom(16, tt, 0, zz, 8);
37 int[] tt = Nat256.createExt(); local
38 Nat256.square(dx, tt);
40 c24 += Nat.subFrom(16, tt, 0, zz, 8);
  /external/clang/test/CodeGenCXX/
2009-10-27-crash.cpp 30 } tt; typedef in typeref:struct:__anon14975
35 tt t;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DLexerBase.cpp 236 ANTLRTokenType tt = nextTokenType(); local
237 _ANTLRTokenPtr tk = token_to_fill->makeToken(tt, _lextext,_line);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ArabicShaping.java 39 int tt = UCharacter.getIntPropertyValue(ch, UProperty.JOINING_TYPE); local
41 switch(tt) {
  /external/ltp/testcases/realtime/func/gtod_latency/
gtod_infinite.c 110 time_t tt; local
182 tt = (time_t) ts.tv_sec;
184 max_time, ctime(&tt));
  /external/regex-re2/re2/testing/
parse_test.cc 406 string tt = nre->ToString(); local
407 if (s != ss || t != tt)
410 EXPECT_EQ(t, tt);
  /external/toybox/toys/posix/
date.c 82 if (!(TT.tz = getenv("TZ"))) TT.tz = (char *)1;
89 if (TT.tz) {
90 if (TT.tz != (char *)1) setenv("TZ", TT.tz, 1);
105 time_t tt; local
110 // tt and ll are separate because we can't guarantee time_t is 64 bit (yet).
115 TT.nano *= 10;
116 if (isdigit(str[len])) TT.nano += str[len]-'0';
120 tt = ll
    [all...]

Completed in 813 milliseconds

1 2 3 4 5 6 7