Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 9740) sorted by relevance

12345678910>>...390

/external/ply/ply/example/ansic/
Dcparse.py17 def p_translation_unit_1(t): argument
22 def p_translation_unit_2(t): argument
29 def p_external_declaration_1(t): argument
34 def p_external_declaration_2(t): argument
41 def p_function_definition_1(t): argument
46 def p_function_definition_2(t): argument
51 def p_function_definition_3(t): argument
56 def p_function_definition_4(t): argument
63 def p_declaration_1(t): argument
68 def p_declaration_2(t): argument
[all …]
/external/python/cpython2/Tools/pybench/
DTuples.py12 t = tuple(range(100))
18 m = t[50:]
19 m = t[:25]
20 m = t[50:55]
21 m = t[:-1]
22 m = t[1:]
23 m = t[-10:]
24 m = t[:10]
26 m = t[50:]
27 m = t[:25]
[all …]
DStrings.py14 t = join(map(str,range(1,101)))
17 t + s
18 t + s
19 t + s
20 t + s
21 t + s
23 t + s
24 t + s
25 t + s
26 t + s
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DInterleave.java73 int t; in expand32to64() local
74 t = (x ^ (x >>> 8)) & 0x0000FF00; x ^= (t ^ (t << 8)); in expand32to64()
75 t = (x ^ (x >>> 4)) & 0x00F000F0; x ^= (t ^ (t << 4)); in expand32to64()
76 t = (x ^ (x >>> 2)) & 0x0C0C0C0C; x ^= (t ^ (t << 2)); in expand32to64()
77 t = (x ^ (x >>> 1)) & 0x22222222; x ^= (t ^ (t << 1)); in expand32to64()
85 long t; in expand64To128() local
86 t = (x ^ (x >>> 16)) & 0x00000000FFFF0000L; x ^= (t ^ (t << 16)); in expand64To128()
87 t = (x ^ (x >>> 8)) & 0x0000FF000000FF00L; x ^= (t ^ (t << 8)); in expand64To128()
88 t = (x ^ (x >>> 4)) & 0x00F000F000F000F0L; x ^= (t ^ (t << 4)); in expand64To128()
89 t = (x ^ (x >>> 2)) & 0x0C0C0C0C0C0C0C0CL; x ^= (t ^ (t << 2)); in expand64To128()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/
DInterleave.java77 int t; in expand32to64() local
78 t = (x ^ (x >>> 8)) & 0x0000FF00; x ^= (t ^ (t << 8)); in expand32to64()
79 t = (x ^ (x >>> 4)) & 0x00F000F0; x ^= (t ^ (t << 4)); in expand32to64()
80 t = (x ^ (x >>> 2)) & 0x0C0C0C0C; x ^= (t ^ (t << 2)); in expand32to64()
81 t = (x ^ (x >>> 1)) & 0x22222222; x ^= (t ^ (t << 1)); in expand32to64()
89 long t; in expand64To128() local
90 t = (x ^ (x >>> 16)) & 0x00000000FFFF0000L; x ^= (t ^ (t << 16)); in expand64To128()
91 t = (x ^ (x >>> 8)) & 0x0000FF000000FF00L; x ^= (t ^ (t << 8)); in expand64To128()
92 t = (x ^ (x >>> 4)) & 0x00F000F000F000F0L; x ^= (t ^ (t << 4)); in expand64To128()
93 t = (x ^ (x >>> 2)) & 0x0C0C0C0C0C0C0C0CL; x ^= (t ^ (t << 2)); in expand64To128()
[all …]
/external/ImageMagick/PerlMagick/
DMANIFEST35 t/blob.t
36 t/bzlib/input.miff
37 t/bzlib/read.t
38 t/bzlib/write.t
39 t/cgm/input.cgm
40 t/cgm/read.t
41 t/composite.t
42 t/filter.t
43 t/fpx/input_256.fpx
44 t/fpx/input_bw.fpx
[all …]
/external/boringssl/src/crypto/chacha/asm/
Dchacha-armv4.pl62 my @t=map("r$_",(8..11));
70 my ($xc,$xc_) = (@t[0..1]);
71 my ($xd,$xd_) = $odd ? (@t[2],@x[$d1]) : (@x[$d0],@t[2]);
251 str @t[3],[sp,#4*(32+2)] @ save len
255 ldr @t[3], [sp,#4*(15)]
257 ldr @t[2], [sp,#4*(13)]
259 str @t[3], [sp,#4*(16+15)]
260 mov @t[3],#10
265 subs @t[3],@t[3],#1
272 ldr @t[3],[sp,#4*(32+2)] @ load len
[all …]
/external/libcxx/test/std/re/re.traits/
Disctype.pass.cpp27 std::regex_traits<char> t; in main() local
30 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main()
31 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main()
32 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main()
33 assert( t.isctype('5', t.lookup_classname(s.begin(), s.end()))); in main()
34 assert(!t.isctype(' ', t.lookup_classname(s.begin(), s.end()))); in main()
35 assert(!t.isctype('-', t.lookup_classname(s.begin(), s.end()))); in main()
36 assert(!t.isctype('@', t.lookup_classname(s.begin(), s.end()))); in main()
39 assert(!t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main()
40 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main()
[all …]
/external/libchrome/base/strings/
Dstring_tokenizer_unittest.cc17 StringTokenizer t(input, " "); in TEST() local
19 EXPECT_TRUE(t.GetNext()); in TEST()
20 EXPECT_EQ(string("this"), t.token()); in TEST()
22 EXPECT_TRUE(t.GetNext()); in TEST()
23 EXPECT_EQ(string("is"), t.token()); in TEST()
25 EXPECT_TRUE(t.GetNext()); in TEST()
26 EXPECT_EQ(string("a"), t.token()); in TEST()
28 EXPECT_TRUE(t.GetNext()); in TEST()
29 EXPECT_EQ(string("test"), t.token()); in TEST()
31 EXPECT_FALSE(t.GetNext()); in TEST()
[all …]
/external/chromium-libpac/test/js-unittest/
Dpac_library_unittest.js13 var t = new TestContext(test);
16 Tests[test](t);
18 if (t.failed()) {
35 Tests.testDnsDomainIs = function(t) { argument
36 t.expectTrue(dnsDomainIs("google.com", ".com"));
37 t.expectTrue(dnsDomainIs("google.co.uk", ".co.uk"));
38 t.expectFalse(dnsDomainIs("google.com", ".co.uk"));
39 t.expectFalse(dnsDomainIs("www.adobe.com", ".ad"));
42 Tests.testDnsDomainLevels = function(t) { argument
43 t.expectEquals(0, dnsDomainLevels("www"));
[all …]
/external/flatbuffers/go/
Dtable.go14 func (t *Table) Offset(vtableOffset VOffsetT) VOffsetT {
15 vtable := UOffsetT(SOffsetT(t.Pos) - t.GetSOffsetT(t.Pos))
16 if vtableOffset < t.GetVOffsetT(vtable) {
17 return t.GetVOffsetT(vtable + UOffsetT(vtableOffset))
23 func (t *Table) Indirect(off UOffsetT) UOffsetT {
24 return off + GetUOffsetT(t.Bytes[off:])
28 func (t *Table) String(off UOffsetT) string {
29 b := t.ByteVector(off)
34 func (t *Table) ByteVector(off UOffsetT) []byte {
35 off += GetUOffsetT(t.Bytes[off:])
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTimeTest.java37 Time t = new Time(); in shouldSetToNow() local
39 t.setToNow(); in shouldSetToNow()
40 assertThat(t.toMillis(false)).isEqualTo(1000); in shouldSetToNow()
45 Time t = new Time(); in shouldHaveNoArgsConstructor() local
46 assertNotNull(t.timezone); in shouldHaveNoArgsConstructor()
51 Time t = new Time(); in shouldHaveCopyConstructor() local
52 t.setToNow(); in shouldHaveCopyConstructor()
53 Time t2 = new Time(t); in shouldHaveCopyConstructor()
54 assertEquals(t.timezone, t2.timezone); in shouldHaveCopyConstructor()
55 assertEquals(t.year, t2.year); in shouldHaveCopyConstructor()
[all …]
/external/boringssl/src/ssl/test/runner/curve25519/
Dmont25519_amd64.go69 var t, z [5]uint64
70 unpack(&t, base)
71 mladder(&t, &z, &e)
73 mul(&t, &t, &z)
74 pack(out, &t)
133 t := *x
134 freeze(&t)
136 out[0] = byte(t[0])
137 out[1] = byte(t[0] >> 8)
138 out[2] = byte(t[0] >> 16)
[all …]
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dparsing.cc36 static grpc_error* init_frame_parser(grpc_chttp2_transport* t);
37 static grpc_error* init_header_frame_parser(grpc_chttp2_transport* t,
39 static grpc_error* init_data_frame_parser(grpc_chttp2_transport* t);
40 static grpc_error* init_rst_stream_parser(grpc_chttp2_transport* t);
41 static grpc_error* init_settings_frame_parser(grpc_chttp2_transport* t);
42 static grpc_error* init_window_update_frame_parser(grpc_chttp2_transport* t);
43 static grpc_error* init_ping_parser(grpc_chttp2_transport* t);
44 static grpc_error* init_goaway_parser(grpc_chttp2_transport* t);
45 static grpc_error* init_skip_frame_parser(grpc_chttp2_transport* t,
48 static grpc_error* parse_frame_slice(grpc_chttp2_transport* t, grpc_slice slice,
[all …]
/external/ply/ply/example/optcalc/
Dcalc.py32 def t_NUMBER(t): argument
35 t.value = int(t.value)
37 print("Integer value too large %s" % t.value)
38 t.value = 0
39 return t
44 def t_newline(t): argument
46 t.lexer.lineno += t.value.count("\n")
49 def t_error(t): argument
50 print("Illegal character '%s'" % t.value[0])
51 t.lexer.skip(1)
[all …]
/external/mesa3d/src/mesa/drivers/x11/
Dglxapi.c106 struct _glxapi_table *t = _mesa_GetGLXDispatchTable(); in get_dispatch() local
108 if (t) { in get_dispatch()
113 d->Table = t; in get_dispatch()
119 prevTable = t; in get_dispatch()
120 return t; in get_dispatch()
153 struct _glxapi_table *t; in glXChooseVisual() local
154 GET_DISPATCH(dpy, t); in glXChooseVisual()
155 if (!t) in glXChooseVisual()
157 return t->ChooseVisual(dpy, screen, list); in glXChooseVisual()
164 struct _glxapi_table *t; in glXCopyContext() local
[all …]
/external/curl/lib/
Dsplay.c41 struct Curl_tree *t) in Curl_splay() argument
45 if(t == NULL) in Curl_splay()
46 return t; in Curl_splay()
51 long comp = compare(i, t->key); in Curl_splay()
53 if(t->smaller == NULL) in Curl_splay()
55 if(compare(i, t->smaller->key) < 0) { in Curl_splay()
56 y = t->smaller; /* rotate smaller */ in Curl_splay()
57 t->smaller = y->larger; in Curl_splay()
58 y->larger = t; in Curl_splay()
59 t = y; in Curl_splay()
[all …]
/external/python/cpython3/Tools/parser/
Dunparse.py59 for t in tree:
60 self.dispatch(t)
89 def _Import(self, t): argument
91 interleave(lambda: self.write(", "), self.dispatch, t.names)
93 def _ImportFrom(self, t): argument
95 self.write("." * t.level)
96 if t.module:
97 self.write(t.module)
99 interleave(lambda: self.write(", "), self.dispatch, t.names)
101 def _Assign(self, t): argument
[all …]
/external/cldr/common/testData/transforms/
Dmy-fonipa-t-my.txt6 ကန်ကြီးဒေါင့်မြို့ kàɴ.t͡ɕí.da̰ʊ̯ɴ.mjo̰
17 ကိုကိုးကျွန်းမြို့ kò.kó.t͡ɕʊ́ɴ.mjo̰
18 ကုန်းကြမ်းမြို့ kóʊ̯ɴ.t͡ɕáɴ.mjo̰
24 ကျိန္တလီမြို့ t͡ɕèɪ̯ɴ.tə.lì.mjo̰
25 ကျိုက္ခမီမြို့ t͡ɕaɪ̯ʔ.kʰə.mì.mjo̰
26 ကျိုက်ထိုမြို့ t͡ɕaɪ̯ʔ.tʰò.mjo̰
27 ကျိုက်ဒုံမြို့ t͡ɕaɪ̯ʔ.dòʊ̯ɴ.mjo̰
28 ကျိုက်မရောမြို့ t͡ɕaɪ̯ʔ.mə.jɔ́.mjo̰
29 ကျိုက်လတ်မြို့ t͡ɕaɪ̯ʔ.laʔ.mjo̰
30 ကျိုင်းတုံမြို့ t͡ɕáɪ̯ɴ.tòʊ̯ɴ.mjo̰
[all …]
Dnv-fonipa-t-nv.txt2 tʼáá tʼɑ́ː
3 dóó tóː
8 áádóó ɑ́ːtóː
11 díí tɪ́ː
14 ajiłtsoh ɑt͡ʃɪɬt͡sʰoh
15 diné tɪné
18 da tɑ
19 ashdlaʼii ɑʃtˡɑʔɪː
20 Naadiin nɑːtɪːn
24 aheełtʼéego ɑheːɬtʼéeko
[all …]
/external/python/cpython2/Demo/parser/
Dunparse.py59 for t in tree:
60 self.dispatch(t)
82 def _Import(self, t): argument
84 interleave(lambda: self.write(", "), self.dispatch, t.names)
86 def _ImportFrom(self, t): argument
88 if t.module and t.module == '__future__':
89 self.future_imports.extend(n.name for n in t.names)
92 self.write("." * t.level)
93 if t.module:
94 self.write(t.module)
[all …]
/external/ply/ply/test/
Dyacc_error5.py23 def p_statement_assign(t): argument
25 names[t[1]] = t[3]
27 def p_statement_assign_error(t): argument
29 line_start, line_end = t.linespan(3)
30 pos_start, pos_end = t.lexspan(3)
33 def p_statement_expr(t): argument
35 print(t[1])
37 def p_expression_binop(t): argument
42 if t[2] == '+' : t[0] = t[1] + t[3]
43 elif t[2] == '-': t[0] = t[1] - t[3]
[all …]
Dyacc_rr.py23 def p_statement_assign(t): argument
25 names[t[1]] = t[3]
27 def p_statement_assign_2(t): argument
29 names[t[1]] = t[3]
31 def p_statement_expr(t): argument
33 print(t[1])
35 def p_expression_binop(t): argument
40 if t[2] == '+' : t[0] = t[1] + t[3]
41 elif t[2] == '-': t[0] = t[1] - t[3]
42 elif t[2] == '*': t[0] = t[1] * t[3]
[all …]
Dyacc_unused_rule.py23 def p_statement_assign(t): argument
25 names[t[1]] = t[3]
27 def p_statement_expr(t): argument
29 print(t[1])
31 def p_expression_binop(t): argument
36 if t[2] == '+' : t[0] = t[1] + t[3]
37 elif t[2] == '-': t[0] = t[1] - t[3]
38 elif t[2] == '*': t[0] = t[1] * t[3]
39 elif t[2] == '/': t[0] = t[1] / t[3]
41 def p_expression_uminus(t): argument
[all …]
/external/iperf3/src/
Dtimer.c61 list_add( Timer* t ) in list_add() argument
68 timers = t; in list_add()
69 t->prev = t->next = NULL; in list_add()
71 if (iperf_time_compare(&t->time, &timers->time) < 0) { in list_add()
73 t->prev = NULL; in list_add()
74 t->next = timers; in list_add()
75 timers->prev = t; in list_add()
76 timers = t; in list_add()
81 if (iperf_time_compare(&t->time, &t2->time) < 0) { in list_add()
83 t2prev->next = t; in list_add()
[all …]

12345678910>>...390