HomeSort by relevance Sort by last modified time
    Searched refs:tg (Results 1 - 25 of 48) sorted by null

1 2

  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadTest.java 39 ThreadGroup tg = current.getThreadGroup(); local
41 assertSame(tg, current.getUncaughtExceptionHandler());
48 assertSame(tg, current.getUncaughtExceptionHandler());
CompletableFutureTest.java 553 static final ThreadGroup tg = new ThreadGroup("ThreadExecutor");
555 return Thread.currentThread().getThreadGroup() == tg;
560 new Thread(tg, r).start();
    [all...]
  /external/clang/test/Sema/
fp16-sema.c 11 typedef void(*tg) (__fp16*); typedef
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_generic.c 608 static ALWAYS_INLINE void PIPE_CDECL generic_run_one( struct translate_generic *tg,
613 unsigned nr_attrs = tg->nr_attrib;
618 uint8_t *dst = (uint8_t *)vert + tg->attrib[attr].output_offset;
620 if (tg->attrib[attr].type == TRANSLATE_ELEMENT_NORMAL) {
625 if (tg->attrib[attr].instance_divisor) {
626 index = instance_id / tg->attrib[attr].instance_divisor;
635 index = MIN2(index, tg->attrib[attr].max_index);
638 src = tg->attrib[attr].input_ptr +
639 tg->attrib[attr].input_stride * index;
641 copy_size = tg->attrib[attr].copy_size
680 struct translate_generic *tg = translate_generic(translate); local
696 struct translate_generic *tg = translate_generic(translate); local
712 struct translate_generic *tg = translate_generic(translate); local
728 struct translate_generic *tg = translate_generic(translate); local
746 struct translate_generic *tg = translate_generic(translate); local
790 struct translate_generic *tg = CALLOC_STRUCT(translate_generic); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 72 ThreadGroup tg = new ThreadGroup("group count"); local
74 0, tg.activeGroupCount());
75 Thread t1 = new Thread(tg, new Runnable() {
81 0, tg.activeGroupCount());
84 0, tg.activeGroupCount());
85 new ThreadGroup(tg, "test group 1");
87 1, tg.activeGroupCount());
88 new ThreadGroup(tg, "test group 2");
90 2, tg.activeGroupCount());
95 ThreadGroup tg = new ThreadGroup("thread suspension") local
249 ThreadGroup tg = new ThreadGroup("interrupt"); local
    [all...]
OldThreadTest.java 50 ThreadGroup tg = new ThreadGroup("Test Group2"); local
51 st = new Thread(tg, new SimpleThread(1), "SimpleThread3", 1);
52 assertTrue("Constructed incorrect thread", (st.getThreadGroup() == tg)
59 tg.destroy();
62 new Thread(tg, new SimpleThread(1), "SimpleThread3",
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.cpp 67 const uchar *tg = &tr[256]; local
68 const uchar *tb = &tg[256];
73 out[1] = tg[in[1]];
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 160 ThreadGroup tg = new ThreadGroup("Test Group1"); local
161 st = new Thread(tg, new SimpleThread(1), "SimpleThread2");
162 assertTrue("Returned incorrect thread group", st.getThreadGroup() == tg);
168 tg.destroy();
178 ThreadGroup tg = new ThreadGroup("Test Group2"); local
179 st = new Thread(tg, new SimpleThread(1), "SimpleThread3");
180 assertTrue("Constructed incorrect thread", (st.getThreadGroup() == tg)
187 tg.destroy();
241 ThreadGroup tg = new ThreadGroup("Test Group3"); local
243 st = new Thread(tg, new SimpleThread(1), "SimpleThread5")
357 ThreadGroup tg = new ThreadGroup("tg"); local
413 ThreadGroup tg = new ThreadGroup("Test Group4"); local
881 ThreadGroup tg = new ThreadGroup("Test Group5"); local
    [all...]
ThreadGroupTest.java 102 ThreadGroup tg = new ThreadGroup("activeCount"); local
103 Thread t1 = new Thread(tg, new Runnable() {
111 int count = tg.activeCount();
114 count = tg.activeCount();
122 tg.destroy();
  /external/clang/utils/
FuzzTest 72 def __init__(self, tg, test):
73 self.tg = tg
81 name,data = self.tg.inputs[i]
95 name,data = self.tg.inputs[i]
114 file_data = test_application.tg.inputs[test[3][0]][1]
319 tg = TestGenerator(input_files, opts.enable_delete, opts.enable_insert,
322 print '%s: note: %d input bytes.' % (sys.argv[0], tg.num_positions)
323 print '%s: note: %d total tests.' % (sys.argv[0], tg.num_tests)
328 itertools.repeat(tg.num_tests, opts.max_tests)
    [all...]
  /external/opencv3/modules/imgproc/test/
test_canny.cpp 206 double tg = dxval ? (double)dyval/dxval : DBL_MAX*CV_SIGN(dyval); local
208 if( fabs(tg) < tan_pi_8 )
212 else if( tan_pi_8 <= tg && tg <= tan_3pi_8 )
216 else if( -tan_3pi_8 <= tg && tg <= -tan_pi_8 )
222 assert( fabs(tg) > tan_3pi_8 );
  /external/llvm/include/llvm/Support/
Timer.h 82 TimerGroup *TG; // The TimerGroup this Timer is in.
86 explicit Timer(StringRef N) : TG(nullptr) { init(N); }
87 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); }
88 Timer(const Timer &RHS) : TG(nullptr) {
89 assert(!RHS.TG && "Can only copy uninitialized timers");
92 assert(!TG && !T.TG && "Can only assign uninit timers");
98 explicit Timer() : TG(nullptr) {
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java 223 long tg = u.objectFieldOffset local
228 u.getObject(Thread.currentThread(), tg);
  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsDalvikActivity.java 189 float tg = r * m[1] + g * m[4] + b * m[7]; local
192 g = tg;
  /external/llvm/lib/Support/
Timer.cpp 102 void Timer::init(StringRef N, TimerGroup &tg) {
103 assert(!TG && "Timer already initialized");
106 TG = &tg;
107 TG->addTimer(*this);
111 if (!TG) return; // Never initialized, or already cleared.
112 TG->removeTimer(*this);
277 T.TG = nullptr;
377 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next
    [all...]
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 332 tg = c.get_parent_target_group()
333 if tg and not tg.enabled:
524 tg = ci.get_parent_target_group()
525 if tg and not tg.enabled:
    [all...]
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
warpers_inl.hpp 472 float tg = a * tanf(u_ / a); local
473 u = scale * tg;
479 v = scale * b * tg * tanf(v_) / sinu;
521 float tg = a * tanf(u_ / a); local
522 u = - scale * tg;
528 v = scale * b * tg * tanf(v_) / sinu;
  /external/opencv3/modules/cudastereo/src/cuda/
stereobp.cu 98 const float tg = 0.587f;
102 val += tg * ::abs((int)l.y - rs[1]);
118 const float tg = 0.587f;
124 val += tg * ::abs((int)l.y - r.y);
stereocsbp.cu 69 float tg = 0.587f * ::abs((int)left[1] - right[1]);
72 return fminf(tr + tg + tb, max_data_term);
80 float tg = 0.587f * ::abs((int)l.y - r.y);
83 return fminf(tr + tg + tb, max_data_term);
    [all...]
  /system/media/camera/docs/
metadata_model.py 259 tag_ids = [tg.name for tg in self.tags if tg.name == tag]
    [all...]
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 138 float tg = (float)fabs(a.green - b.green); local
141 return _CV_MAX3( tr, tg, tb );
147 float tg = (float)fabs(a.green - b.green); local
150 return (tr + tg + tb);
    [all...]
  /external/icu/icu4c/source/common/
locmap.c 632 ILCID_POSIX_SUBTABLE(tg) {
633 {0x28, "tg"},
854 ILCID_POSIX_MAP(tg), /* tg Tajik 0x28 */
    [all...]
  /external/opencv3/modules/video/src/
optflowgf.cpp 182 double tg = row[(x+k)*3] + row[(x-k)*3]; local
184 b1 += tg*g0;
185 b4 += tg*xxg[k];
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
IBMCalendarTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
IBMCalendarTest.java     [all...]

Completed in 2266 milliseconds

1 2