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

1 2

  /external/clang/test/Sema/
fp16-sema.c 11 typedef void(*tg) (__fp16*); typedef
  /external/ltp/utils/ffsb-6.0-rc2/
ffsb_thread.h 46 struct ffsb_tg *tg; /* owning thread group */ member in struct:ffsb_thread
70 * pthread_create() is called by tg with this function as a parameter
ffsb_tg.h 105 /* Init should be the very first thing called on the tg. After that,
108 void init_ffsb_tg(ffsb_tg_t *tg, unsigned num_threads, unsigned tg_num);
109 void destroy_ffsb_tg(ffsb_tg_t *tg);
118 ffsb_tg_t *tg; member in struct:tg_run_params
135 void tg_print_config(ffsb_tg_t *tg);
136 void tg_print_config_aging(ffsb_tg_t *tg, char *fsname);
138 /* Adds all of this tg's results to res */
139 void tg_collect_results(ffsb_tg_t *tg, ffsb_op_results_t *res);
141 /* Adds up all this tg's stats to totals */
142 void tg_collect_stats(ffsb_tg_t *tg, ffsb_statsd_t *totals)
    [all...]
main.c 148 params[i].tg = &fc.groups[i];
162 ffsb_barrier_wait(&tg_barrier); /* sync with tg's to start */
189 ffsb_tg_t *tg = fc.groups + i; local
193 /* Grab the individual tg results */
194 tg_collect_results(tg, &tg_results);
204 if (tg_needs_stats(tg)) {
206 tg_collect_stats(tg, &fsd);
211 /* Add the tg results to the total */
ffsb_tg.c 26 void init_ffsb_tg(ffsb_tg_t * tg, unsigned num_threads, unsigned tg_num)
29 memset(tg, 0, sizeof(ffsb_tg_t));
31 tg->threads = ffsb_malloc(sizeof(ffsb_thread_t) * num_threads);
32 tg->tg_num = tg_num;
33 tg->num_threads = num_threads;
35 tg->bindfs = -1; /* default is not bound */
37 tg->thread_bufsize = 0;
39 init_ffsb_thread(tg->threads + i, tg, 0, tg_num, i);
42 void destroy_ffsb_tg(ffsb_tg_t * tg)
55 ffsb_tg_t *tg = params->tg; local
    [all...]
ffsb_fs.c 385 ffsb_tg_t *tg = fs_get_aging_tg(fs); local
391 ffsb_barrier_init(&barrier, tg_get_numthreads(tg));
393 init_ffsb_config_1fs(&fc, fs, tg);
398 params.tg = tg;
519 void fs_set_aging_tg(ffsb_fs_t * fs, struct ffsb_tg *tg, double util)
521 fs->aging_tg = tg;
parser.c 617 void set_weight(ffsb_tg_t * tg, config_options_t * config)
629 tg_set_op_weight(tg, op,
638 int get_weight_total(ffsb_tg_t * tg)
651 total += tg_get_op_weight(tg, op);
662 /* require tg->read_blocksize: read, readall */
663 /* require tg->write_blocksize: write, create, append, rewritefsync */
666 static int verify_tg(ffsb_tg_t * tg)
668 uint32_t read_weight = tg_get_op_weight(tg, "read");
669 uint32_t readall_weight = tg_get_op_weight(tg, "readall");
670 uint32_t write_weight = tg_get_op_weight(tg, "write")
744 container_t *tg = profile_conf->tg_container; local
    [all...]
  /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());
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.cpp 61 const uchar *tg = &tr[256]; local
62 const uchar *tb = &tg[256];
67 out[1] = tg[in[1]];
  /art/test/925-threadgroups/src/art/
Test925.java 54 private static void printThreadGroupInfo(ThreadGroup tg) {
55 Object[] threadGroupInfo = getThreadGroupInfo(tg);
61 System.out.println(tg);
68 private static void checkChildren(ThreadGroup tg) {
69 Object[] data = getThreadGroupChildren(tg);
88 System.out.println(tg.getName() + ":");
92 if (tg.getParent() != null) {
93 checkChildren(tg.getParent());
97 private static void waitGroupChildren(ThreadGroup tg, int expectedChildCount, int timeoutS)
100 Object[] data = getThreadGroupChildren(tg);
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java 252 long tg = u.objectFieldOffset local
257 u.getObject(Thread.currentThread(), tg);
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 75 ThreadGroup tg = new ThreadGroup("group count"); local
77 0, tg.activeGroupCount());
78 Thread t1 = new Thread(tg, new Runnable() {
84 0, tg.activeGroupCount());
87 0, tg.activeGroupCount());
88 new ThreadGroup(tg, "test group 1");
90 1, tg.activeGroupCount());
91 new ThreadGroup(tg, "test group 2");
93 2, tg.activeGroupCount());
98 ThreadGroup tg = new ThreadGroup("thread suspension") local
244 ThreadGroup tg = new ThreadGroup("interrupt"); local
    [all...]
OldThreadTest.java 51 ThreadGroup tg = new ThreadGroup("Test Group2"); local
52 st = new Thread(tg, new SimpleThread(1), "SimpleThread3", 1);
53 assertTrue("Constructed incorrect thread", (st.getThreadGroup() == tg)
60 tg.destroy();
63 new Thread(tg, new SimpleThread(1), "SimpleThread3",
  /device/google/cuttlefish_common/host/libs/vm_manager/
libvirt_manager.cpp 186 auto tg = xmlNewChild(ch, nullptr, xc("target"), nullptr); local
187 xmlNewProp(tg, xc("dev"), xc(name.c_str()));
188 xmlNewProp(tg, xc("bus"), xc("virtio"));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
ImageGradientColorizer.java 60 float tg = tgi / 255f; local
64 float cLum = (tr * lr + tg * lg + tb * lb) * 255;
  /tools/tradefederation/core/tests/src/com/android/tradefed/log/
LogRegistryTest.java 151 ThreadGroup tg = new ThreadGroup("TestThreadGroup"); local
152 Thread firstThread = new Thread(tg, new FirstThread());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
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();
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();
179 ThreadGroup tg = new ThreadGroup("Test Group2"); local
180 st = new Thread(tg, new SimpleThread(1), "SimpleThread3");
181 assertTrue("Constructed incorrect thread", (st.getThreadGroup() == tg)
188 tg.destroy();
242 ThreadGroup tg = new ThreadGroup("Test Group3"); local
244 st = new Thread(tg, new SimpleThread(1), "SimpleThread5")
358 ThreadGroup tg = new ThreadGroup("tg"); local
414 ThreadGroup tg = new ThreadGroup("Test Group4"); local
882 ThreadGroup tg = new ThreadGroup("Test Group5"); local
    [all...]
  /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/mesa3d/src/gallium/auxiliary/translate/
translate_generic.c 584 static ALWAYS_INLINE void PIPE_CDECL generic_run_one( struct translate_generic *tg,
590 unsigned nr_attrs = tg->nr_attrib;
595 uint8_t *dst = (uint8_t *)vert + tg->attrib[attr].output_offset;
597 if (tg->attrib[attr].type == TRANSLATE_ELEMENT_NORMAL) {
602 if (tg->attrib[attr].instance_divisor) {
604 index += (instance_id / tg->attrib[attr].instance_divisor);
613 index = MIN2(index, tg->attrib[attr].max_index);
616 src = tg->attrib[attr].input_ptr +
617 (ptrdiff_t)tg->attrib[attr].input_stride * index;
619 copy_size = tg->attrib[attr].copy_size
659 struct translate_generic *tg = translate_generic(translate); local
676 struct translate_generic *tg = translate_generic(translate); local
693 struct translate_generic *tg = translate_generic(translate); local
710 struct translate_generic *tg = translate_generic(translate); local
728 struct translate_generic *tg = translate_generic(translate); local
772 struct translate_generic *tg = CALLOC_STRUCT(translate_generic); local
    [all...]
  /external/mesa3d/src/gallium/drivers/virgl/
virgl_encode.c 843 struct virgl_so_target *tg = virgl_so_target(targets[i]); local
    [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/valgrind/VEX/priv/
guest_x86_toIR.c 3333 IRTemp tg = newTemp(ty); local
    [all...]
guest_amd64_toIR.c 4794 IRTemp tg = newTemp(ty); local
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
cldrdata.jar 

Completed in 957 milliseconds

1 2