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

1 2 3 4 5 6

  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.h 25 ENTROPY_CONTEXT *tl; member in struct:encode_b_args
vp9_svc_layercontext.c 27 int sl, tl, i; local
67 for (tl = 0; tl < oxcf->ts_number_layers; ++tl) {
68 int layer = LAYER_IDS_TO_IDX(sl, tl, oxcf->ts_number_layers);
118 if (oxcf->ss_number_layers > 1 && tl == 0) {
152 int sl, tl, layer = 0, spatial_layer_target; local
157 for (tl = 0; tl < oxcf->ts_number_layers; ++tl) {
253 const int tl = svc->temporal_layer_id; local
817 int sl, tl; local
833 int sl, tl; local
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalTest.java 25 static ThreadLocal<Integer> tl = new ThreadLocal<Integer>() { field in class:ThreadLocalTest
46 assertSame(tl.get(), one);
47 tl.set(two);
48 assertSame(tl.get(), two);
49 tl.remove();
50 assertSame(tl.get(), one);
  /external/blktrace/btt/
plat.c 27 double first_ts, last_ts, tl; member in struct:plat_info
39 pp->first_ts = pp->last_ts = pp->tl = -1.0;
62 pp->first_ts + (delta / 2), pp->tl / pp->nl);
78 pp->tl = lat;
83 pp->first_ts + (delta / 2), pp->tl / pp->nl);
87 pp->tl = lat;
91 pp->tl += lat;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadLocalTest.java 36 ThreadLocal<String> tl = new ThreadLocal<String>() { local
43 assertEquals("initial", tl.get());
44 tl.set("fixture");
45 assertEquals("fixture", tl.get());
46 tl.remove();
47 assertEquals("initial", tl.get());
  /external/aac/libAACenc/src/
transform.cpp 116 /* tl: transform length
122 int tl, fl, nl, fr, nr; local
134 tl = frameLength;
155 tl >>= 3;
165 nr = (tl - fr)>>1;
166 nl = (tl - fl)>>1;
178 mdctData[(tl/2)+i] = - (FIXP_DBL) timeData[tl-i-1] >> ( 1 );
180 mdctData[(tl/2)+i] = - (FIXP_DBL) timeData[tl-i-1] << (DFRACT_BITS - SAMPLE_BITS - 1)
    [all...]
  /frameworks/av/media/libaudioclient/
TrackPlayerBase.cpp 97 float tl = mPlayerVolumeL * mPanMultiplierL * mVolumeMultiplierL; local
99 mAudioTrack->setVolume(tl, tr);
  /external/freetype/src/gzip/
infblock.c 157 inflate_huft *tl, *td; local
159 inflate_trees_fixed(&bl, &bd, (const inflate_huft**)&tl,
161 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
309 inflate_huft *tl, *td; local
316 s->sub.trees.blens, &bl, &bd, &tl, &td,
329 if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
  /external/ltp/pan/
reporter.c 92 char **taglist, **tl; local
106 tl = taglist;
114 tl = taglist + tagcount;
117 *tl++ = Key.data;
125 tl = taglist + tagcount;
128 *tl++ = NULL;
131 for (tl = taglist; *tl != NULL; tl++) {
132 strcpy(key_get, *tl);
    [all...]
  /external/testng/src/test/java/test/configuration/
BeforeTestOrderingTest.java 47 TestListenerAdapter tl = new TestListenerAdapter(); local
48 tng.addListener(tl);
  /frameworks/base/core/java/android/text/
TextLine.java 77 TextLine tl; local
81 tl = sCached[i];
83 return tl;
87 tl = new TextLine();
89 Log.v("TLINE", "new: " + tl);
91 return tl;
97 * @param tl the textLine
101 static TextLine recycle(TextLine tl) {
102 tl.mText = null;
103 tl.mPaint = null
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionDecl.java 224 ElemTextLiteral tl = (ElemTextLiteral) childOfSDecl; local
225 char[] chars = tl.getChars();
308 ElemTextLiteral tl = (ElemTextLiteral) childOfSDecl;
309 char[] chars = tl.getChars();
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 19 thread_local int tl; // expected-note {{refers here}} variable
30 IP<&tl> ip7; // expected-error{{non-type template argument of type 'int *' is not a constant expression}}
32 IR<tl> ir1; // expected-error{{non-type template argument refers to thread-local object}}
  /external/clang/test/Parser/
cxx0x-decl.cpp 59 thread_local tl; member in namespace:TestIsValidAfterTypeSpecifier
  /external/eigen/unsupported/test/
cxx11_meta.cpp 161 typedef type_list<dummy_a, dummy_a, dummy_b, dummy_b, dummy_c, dummy_c> tl; typedef
164 VERIFY((is_same<typename take<0, tl>::type, type_list<>>::value));
165 VERIFY((is_same<typename take<1, tl>::type, type_list<dummy_a>>::value));
166 VERIFY((is_same<typename take<2, tl>::type, type_list<dummy_a, dummy_a>>::value));
167 VERIFY((is_same<typename take<3, tl>::type, type_list<dummy_a, dummy_a, dummy_b>>::value));
168 VERIFY((is_same<typename take<4, tl>::type, type_list<dummy_a, dummy_a, dummy_b, dummy_b>>::value));
169 VERIFY((is_same<typename take<5, tl>::type, type_list<dummy_a, dummy_a, dummy_b, dummy_b, dummy_c>>::value));
170 VERIFY((is_same<typename take<6, tl>::type, type_list<dummy_a, dummy_a, dummy_b, dummy_b, dummy_c, dummy_c>>::value));
180 VERIFY((is_same<typename skip<0, tl>::type, type_list<dummy_a, dummy_a, dummy_b, dummy_b, dummy_c, dummy_c>>::value));
181 VERIFY((is_same<typename skip<1, tl>::type, type_list<dummy_a, dummy_b, dummy_b, dummy_c, dummy_c>>::value))
204 typedef type_list<dummy_a, dummy_a, dummy_b, dummy_b, dummy_c, dummy_c> tl; typedef
259 typedef type_list<dummy_a, dummy_b, dummy_c> tl; typedef
266 typedef type_list<dummy_a, dummy_b, dummy_c> tl; typedef
    [all...]
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl11.c 243 struct flock tl; local
292 do_test(&tl, F_WRLCK, 0, 0, 0);
293 compare_lock(&tl, (short)F_RDLCK, (short)0, 1, 5, parent_pid);
298 do_test(&tl, F_WRLCK, 0, 6, 0);
299 compare_lock(&tl, (short)F_WRLCK, (short)0, 10, 5, parent_pid);
304 do_test(&tl, F_WRLCK, 0, 15, 0);
305 compare_lock(&tl, (short)F_UNLCK, (short)0, 15, 0, 0);
330 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0);
331 compare_lock(&tl, (short)F_RDLCK, (short)0, 5, 5, parent_pid);
336 do_test(&tl, (short)F_WRLCK, (short)0, 10, 0)
    [all...]
fcntl19.c 282 struct flock tl; local
341 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0);
342 compare_lock(&tl, (short)F_WRLCK, (short)0, 10, 5, parent_pid);
347 do_test(&tl, (short)F_WRLCK, (short)0, 15, 0);
348 compare_lock(&tl, (short)F_UNLCK, (short)0, 15, 0, (pid_t) 0);
384 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0);
385 compare_lock(&tl, (short)F_WRLCK, (short)0, 11, 4, parent_pid);
390 do_test(&tl, (short)F_WRLCK, (short)0, 15, 0);
391 compare_lock(&tl, (short)F_UNLCK, (short)0, 15, 0, (pid_t) 0);
428 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0)
    [all...]
fcntl20.c 281 struct flock tl; local
340 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0);
341 compare_lock(&tl, (short)F_RDLCK, (short)0, 10, 5, parent_pid);
346 do_test(&tl, (short)F_WRLCK, (short)0, 15, 0);
347 compare_lock(&tl, (short)F_UNLCK, (short)0, 15, 0, (pid_t) 0);
383 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0);
384 compare_lock(&tl, (short)F_RDLCK, (short)0, 11, 4, parent_pid);
389 do_test(&tl, (short)F_WRLCK, (short)0, 15, 0);
390 compare_lock(&tl, (short)F_UNLCK, (short)0, 15, 0, (pid_t) 0);
426 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0)
    [all...]
fcntl21.c 289 struct flock tl; local
341 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0);
342 compare_lock(&tl, (short)F_RDLCK, (short)0, 0, 0, parent_pid);
372 do_test(&tl, (short)F_WRLCK, (short)0, 0, 0);
373 compare_lock(&tl, (short)F_WRLCK, (short)0, 0, 0, parent_pid);
411 do_test(&tl, F_WRLCK, 0, 0, 0);
412 compare_lock(&tl, (short)F_WRLCK, (short)0, 1, 5, parent_pid);
417 do_test(&tl, F_WRLCK, 0, 6, 0);
418 compare_lock(&tl, (short)F_RDLCK, (short)0, 10, 5, parent_pid);
423 do_test(&tl, F_WRLCK, 0, 15, 0)
    [all...]
  /external/toybox/toys/pending/
sh.c 199 struct toy_list *tl; local
203 tl = toy_find(cmd->argv[0]);
206 if (tl && (tl->flags & TOYFLAG_NOFORK)) {
216 toy_init(tl, cmd->argv);
217 tl->toy_main();
  /packages/apps/DeskClock/src/com/android/deskclock/uidata/
TabModel.java 121 for (TabListener tl : mTabListeners) {
122 tl.selectedTabChanged(oldSelectedTab, tab);
  /toolchain/binutils/binutils-2.25/gold/
workqueue.cc 292 Task_locker tl; local
305 t->locks(&tl);
342 next = this->release_locks(t, &tl);
351 tl.clear();
352 next->locks(&tl);
447 Workqueue::release_locks(Task* t, Task_locker* tl)
450 for (Task_locker::iterator p = tl->begin(); p != tl->end(); ++p)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_telnetlib.py 304 if cmd == tl.SE and self.sb_getter:
308 tl = telnetlib variable
313 cmds = [tl.AO, tl.AYT, tl.BRK, tl.EC, tl.EL, tl.GA, tl.IP, tl.NOP]
    [all...]
  /external/boringssl/src/crypto/bn/
div.c 71 BN_ULONG dh, dl, q, ret = 0, th, tl, t; local
101 tl = dl * q;
105 ((tl) <= ((t << BN_BITS4) | ((l & BN_MASK2h) >> BN_BITS4)))) {
110 tl -= dl;
112 t = (tl >> BN_BITS4);
113 tl = (tl << BN_BITS4) & BN_MASK2h;
116 if (l < tl) {
119 l -= tl;
  /external/jemalloc/test/src/
SFMT.c 164 uint64_t th, tl, oh, ol; local
167 tl = ((uint64_t)in->u[0] << 32) | ((uint64_t)in->u[1]);
170 ol = tl >> (shift * 8);
179 uint64_t th, tl, oh, ol; local
182 tl = ((uint64_t)in->u[1] << 32) | ((uint64_t)in->u[0]);
185 ol = tl >> (shift * 8);
203 uint64_t th, tl, oh, ol; local
206 tl = ((uint64_t)in->u[0] << 32) | ((uint64_t)in->u[1]);
209 ol = tl << (shift * 8);
210 oh |= tl >> (64 - shift * 8)
218 uint64_t th, tl, oh, ol; local
    [all...]

Completed in 1595 milliseconds

1 2 3 4 5 6