HomeSort by relevance Sort by last modified time
    Searched refs:gc (Results 326 - 350 of 2147) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
eh6.d 2 #ld: --gc-sections -shared
group8a.d 2 #ld: -r --gc-sections --entry foo
7 # generic linker targets don't support --gc-sections, nor do a bunch of others
group8b.d 2 #ld: -r --gc-sections --entry bar
7 # generic linker targets don't support --gc-sections, nor do a bunch of others
group9a.d 2 #ld: -r --gc-sections --entry foo
7 # generic linker targets don't support --gc-sections, nor do a bunch of others
group9b.d 2 #ld: -r --gc-sections --entry bar
7 # generic linker targets don't support --gc-sections, nor do a bunch of others
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-gc/
pr19167.d 3 #ld: --gc-sections -e _start
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
pr19803.d 1 #ld: -shared --out-implib dx.dll.a --gc-sections
  /art/cmdline/
cmdline_types.h 34 #include "gc/collector_type.h"
35 #include "gc/space/large_object_space.h"
408 static gc::CollectorType ParseCollectorType(const std::string& option) {
410 return gc::kCollectorTypeMS;
412 return gc::kCollectorTypeCMS;
414 return gc::kCollectorTypeSS;
416 return gc::kCollectorTypeGSS;
418 return gc::kCollectorTypeCC;
420 return gc::kCollectorTypeMC;
422 return gc::kCollectorTypeNone
    [all...]
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
FieldArray.java 96 private void gc() { method in class:FieldArray
139 gc(); method
175 gc(); method
192 gc(); method
208 if (size() != other.size()) { // size() will call gc() if necessary.
218 gc(); method
279 // Trigger GC so we compact and don't copy DELETED elements.
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
TimedStatement.java 84 System.gc();
108 TestUtils.gc();
115 TestUtils.gc();
146 TestUtils.gc();
156 TestUtils.gc();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 25 import org.eclipse.swt.graphics.GC;
62 public void paint(GC gc) {
83 int oldAlpha = gc.getAlpha();
85 gc.setAlpha(ALPHA);
116 gc.drawImage(icon, x, y);
120 gc.setAlpha(oldAlpha);
SwtUtils.java 27 import org.eclipse.swt.graphics.GC;
372 GC gc = new GC(display);
373 gc.setFont(font);
374 FontMetrics fontMetrics = gc.getFontMetrics();
376 gc.dispose();
387 GC gc = new GC(control.getDisplay())
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 103 in the graphics context GC. WIDTH is the width in bytes
127 fill_bitmap(Display * dpy, Window win, GC gc,
137 XSetForeground(dpy, gc, 0);
138 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
139 XSetForeground(dpy, gc, 1);
144 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
216 GC gc; local
285 gc = XCreateGC(dpy, pixmap, valuemask, &values)
    [all...]
  /external/mesa3d/src/glx/
xfont.c 108 in the graphics context GC. WIDTH is the width in bytes
132 fill_bitmap(Display * dpy, Window win, GC gc,
142 XSetForeground(dpy, gc, 0);
143 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
144 XSetForeground(dpy, gc, 1);
149 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
220 GC gc; local
297 gc = XCreateGC(dpy, pixmap, valuemask, &values)
    [all...]
dri_common.c 389 driFetchDrawable(struct glx_context *gc, GLXDrawable glxDrawable)
391 struct glx_display *const priv = __glXInitialize(gc->psc->dpy);
401 psc = priv->screens[gc->screen];
411 glxDrawable, gc->config);
428 driReleaseDrawables(struct glx_context *gc)
430 const struct glx_display *priv = gc->psc->display;
437 gc->currentDrawable, (void *) &pdraw) == 0) {
442 __glxHashDelete(priv->drawHash, gc->currentDrawable);
448 gc->currentReadable, (void *) &pdraw) == 0) {
453 __glxHashDelete(priv->drawHash, gc->currentReadable)
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 103 in the graphics context GC. WIDTH is the width in bytes
127 fill_bitmap(Display * dpy, Window win, GC gc,
137 XSetForeground(dpy, gc, 0);
138 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
139 XSetForeground(dpy, gc, 1);
144 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
216 GC gc; local
284 gc = XCreateGC(dpy, pixmap, valuemask, &values)
    [all...]
  /external/python/cpython3/Lib/test/
test_tuple.py 4 import gc
96 gc.collect()
97 gc.collect()
98 self.assertFalse(gc.is_tracked(t), t)
101 self.assertTrue(gc.is_tracked(t), t)
102 gc.collect()
103 gc.collect()
104 self.assertTrue(gc.is_tracked(t), t)
108 # Test GC-optimization of tuple literals
149 # Test GC-optimization of dynamically constructed tuples
    [all...]
  /art/runtime/mirror/
reference.h 31 namespace gc { namespace in namespace:art
36 } // namespace gc
108 // Note: This avoids a read barrier, it should only be used by the GC.
122 friend class gc::ReferenceProcessor;
123 friend class gc::ReferenceQueue;
  /art/runtime/native/
java_lang_StringFactory.cc 48 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
65 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
82 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
AstroTest.java 41 GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0, "UTC")); local
50 gc.clear();
51 gc.set((int)tests[i][0], (int)tests[i][1]-1, (int)tests[i][2], (int)tests[i][3], (int) tests[i][4]);
53 astro.setDate(gc.getTime());
95 GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0, "UTC")); local
104 gc.clear();
105 gc.set((int)tests[i][0], (int)tests[i][1]-1, (int)tests[i][2], (int)tests[i][3], (int) tests[i][4]);
106 astro.setDate(gc.getTime());
362 GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0,"GMT")); local
381 gc.clear()
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
AstroTest.java 38 GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0, "UTC")); local
47 gc.clear();
48 gc.set((int)tests[i][0], (int)tests[i][1]-1, (int)tests[i][2], (int)tests[i][3], (int) tests[i][4]);
50 astro.setDate(gc.getTime());
92 GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0, "UTC")); local
101 gc.clear();
102 gc.set((int)tests[i][0], (int)tests[i][1]-1, (int)tests[i][2], (int)tests[i][3], (int) tests[i][4]);
103 astro.setDate(gc.getTime());
359 GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0,"GMT")); local
378 gc.clear()
    [all...]
  /external/swiftshader/src/Main/
libX11.hpp 33 GC (*XDefaultGC)(Display *display, int screen_number);
41 int (*XPutImage)(Display *display, Drawable d, GC gc, XImage *image, int src_x, int src_y, int dest_x, int dest_y, unsigned int width, unsigned int height);
42 int (*XDrawString)(Display *display, Drawable d, GC gc, int x, int y, char *string, int length);
48 int (*XShmPutImage)(Display *display, Drawable d, GC gc, XImage *image, int src_x, int src_y, int dest_x, int dest_y, unsigned int width, unsigned int height, bool send_event);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
BooleanXmlPropertyEditor.java 22 import org.eclipse.swt.graphics.GC;
50 public void paint(Property property, GC gc, int x, int y, int width, int height)
69 DrawUtils.drawImageCV(gc, image, x, y, height);
78 DrawUtils.drawStringCV(gc, text, x, y, width, height);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.h 154 #define gcvalue(o) check_exp(iscollectable(o), val_(o).gc)
156 #define rawtsvalue(o) check_exp(ttisstring(o), &val_(o).gc->ts)
158 #define rawuvalue(o) check_exp(ttisuserdata(o), &val_(o).gc->u)
160 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl)
161 #define clLvalue(o) check_exp(ttisLclosure(o), &val_(o).gc->cl.l)
162 #define clCvalue(o) check_exp(ttisCclosure(o), &val_(o).gc->cl.c)
164 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h)
166 #define thvalue(o) check_exp(ttisthread(o), &val_(o).gc->th)
167 /* a dead value may get the 'gc' field, but cannot access its contents */
168 #define deadvalue(o) check_exp(ttisdeadkey(o), cast(void *, val_(o).gc))
389 GCObject *gc; \/* collectable objects *\/ member in union:Value
    [all...]
  /external/syslinux/com32/lua/src/
lobject.h 154 #define gcvalue(o) check_exp(iscollectable(o), val_(o).gc)
156 #define rawtsvalue(o) check_exp(ttisstring(o), &val_(o).gc->ts)
158 #define rawuvalue(o) check_exp(ttisuserdata(o), &val_(o).gc->u)
160 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl)
161 #define clLvalue(o) check_exp(ttisLclosure(o), &val_(o).gc->cl.l)
162 #define clCvalue(o) check_exp(ttisCclosure(o), &val_(o).gc->cl.c)
164 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h)
166 #define thvalue(o) check_exp(ttisthread(o), &val_(o).gc->th)
167 /* a dead value may get the 'gc' field, but cannot access its contents */
168 #define deadvalue(o) check_exp(ttisdeadkey(o), cast(void *, val_(o).gc))
389 GCObject *gc; \/* collectable objects *\/ member in union:Value
    [all...]

Completed in 606 milliseconds

<<11121314151617181920>>