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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/samples/datecal/
cal.cpp 20 GregorianCalendar* gc = new GregorianCalendar(status); local
26 gc->set(2000, UCAL_FEBRUARY, 26);
27 gc->set(UCAL_HOUR_OF_DAY, 23);
28 gc->set(UCAL_MINUTE, 0);
29 gc->set(UCAL_SECOND, 0);
30 gc->set(UCAL_MILLISECOND, 0);
36 gc->get(UCAL_YEAR, status),
37 gc->get(UCAL_MONTH, status) + 1,
38 gc->get(UCAL_MONTH, status),
39 gc->get(UCAL_DATE, status))
    [all...]
  /external/mesa3d/src/glx/
applegl_glx.c 46 applegl_destroy_context(struct glx_context *gc)
48 apple_glx_destroy_context(&gc->driContext, gc->psc->dpy);
52 applegl_bind_context(struct glx_context *gc, struct glx_context *old,
55 Display *dpy = gc->psc->dpy;
58 gc ? gc->driContext : NULL, draw);
70 applegl_unbind_context(struct glx_context *gc, struct glx_context *new)
76 if (!gc)
83 dpy = gc->psc->dpy
128 struct glx_context *gc; local
    [all...]
indirect_glx.c 44 indirect_destroy_context(struct glx_context *gc)
46 __glXFreeVertexArrayState(gc);
48 if (gc->vendor)
49 XFree((char *) gc->vendor);
50 if (gc->renderer)
51 XFree((char *) gc->renderer);
52 if (gc->version)
53 XFree((char *) gc->version);
54 if (gc->extensions)
55 XFree((char *) gc->extensions)
249 struct glx_context *gc = __glXGetCurrentContext(); local
300 struct glx_context *gc = __glXGetCurrentContext(); local
348 struct glx_context *gc; local
    [all...]
create_context.c 44 struct glx_context *gc = NULL; local
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
83 if (gc == NULL) {
85 gc = applegl_create_context(psc, cfg, share, 0);
87 gc = indirect_create_context(psc, cfg, share, 0);
91 gc->xid = xcb_generate_id(c);
92 gc->share_xid = (share != NULL) ? share->xid : 0;
104 gc->xid,
107 gc->share_xid,
108 gc->isDirect
    [all...]
clientattrib.c 42 struct glx_context *gc = __glXGetCurrentContext(); local
43 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private);
51 __glXSetError(gc, GL_INVALID_ENUM);
72 struct glx_context *gc = __glXGetCurrentContext(); local
73 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private);
74 __GLXattribute **spp = gc->attributes.stackPointer, *sp;
76 if (spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]) {
82 gc->attributes.stackPointer = spp + 1;
92 __glXSetError(gc, GL_STACK_OVERFLOW);
100 struct glx_context *gc = __glXGetCurrentContext() local
    [all...]
pixelstore.c 41 * \param gc Current GLX context
49 send_PixelStore(struct glx_context * gc, unsigned sop, GLenum pname,
52 Display *const dpy = gc->currentDpy;
55 GLubyte const *pc = __glXSetupSingleRequest(gc, sop, cmdlen);
70 struct glx_context *gc = __glXGetCurrentContext(); local
71 __GLXattribute *state = gc->client_state_private;
72 Display *dpy = gc->currentDpy;
82 __glXSetError(gc, GL_INVALID_VALUE);
90 __glXSetError(gc, GL_INVALID_VALUE);
98 __glXSetError(gc, GL_INVALID_VALUE)
220 struct glx_context *gc = __glXGetCurrentContext(); local
    [all...]
  /art/runtime/gc/space/
memory_tool_settings.h 21 namespace gc { namespace in namespace:art
29 } // namespace gc
  /external/mesa3d/src/glx/apple/
apple_xgl_api_viewport.c 40 struct glx_context *gc = __glXGetCurrentContext(); local
43 if (gc && gc->driContext)
44 apple_glx_context_update(dpy, gc->driContext);
apple_xgl_api_read.c 52 struct glx_context *gc = __glXGetCurrentContext(); local
65 if (None != gc->currentReadable
66 && gc->currentReadable != gc->currentDrawable) {
71 if (apple_glx_make_current_context(dpy, gc->driContext, gc->driContext,
72 gc->currentReadable)) {
74 (void) apple_glx_make_current_context(dpy, gc->driContext, gc->driContext,
75 gc->currentDrawable)
85 struct glx_context *gc = __glXGetCurrentContext(); local
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-gc/
noent.d 1 # name: --gc-sections -r without -e
2 # ld: --gc-sections -r
3 # error: gc-sections requires either an entry or an undefined symbol
abi-note.d 1 #name: --gc-sections with note section
2 #ld: --gc-sections -e _start
personality.d 1 #name: --gc-sections with __gxx_personality
2 #ld: --gc-sections -e main -L tmpdir -lpersonality
pr11218.d 1 # name: --gc-sections with shared library
3 # ld: --gc-sections -e main tmpdir/pr11218-2.o tmpdir/pr11218-1.so
start.d 1 #name: --gc-sections with __start_
2 #ld: --gc-sections -e _start
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gc.py 5 import gc namespace
17 # cyclic gc.
27 # Create an instance I. Then gc hasn't happened again so long as
37 # gc collects it.
48 gc.collect()
50 self.assertEqual(gc.collect(), 1)
55 gc.collect()
57 self.assertEqual(gc.collect(), 1)
64 gc.collect()
67 self.assertEqual(gc.collect(), 2
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gc.py 5 import gc namespace
17 # cyclic gc.
27 # Create an instance I. Then gc hasn't happened again so long as
37 # gc collects it.
48 gc.collect()
50 self.assertEqual(gc.collect(), 1)
55 gc.collect()
57 self.assertEqual(gc.collect(), 1)
64 gc.collect()
67 self.assertEqual(gc.collect(), 2
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gc.py 5 import gc namespace
17 # cyclic gc.
27 # Create an instance I. Then gc hasn't happened again so long as
37 # gc collects it.
48 gc.collect()
50 self.assertEqual(gc.collect(), 1)
55 gc.collect()
57 self.assertEqual(gc.collect(), 1)
64 gc.collect()
67 self.assertEqual(gc.collect(), 2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gc.py 5 import gc namespace
17 # cyclic gc.
27 # Create an instance I. Then gc hasn't happened again so long as
37 # gc collects it.
48 gc.collect()
50 self.assertEqual(gc.collect(), 1)
55 gc.collect()
57 self.assertEqual(gc.collect(), 1)
64 gc.collect()
67 self.assertEqual(gc.collect(), 2
    [all...]
  /art/runtime/gc/
reference_processor-inl.h 23 namespace gc { namespace in namespace:art
29 } // namespace gc
  /external/fio/
goptions.h 4 void gopt_get_options_window(GtkWidget *window, struct gfio_client *gc);
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
SwtUtils.java 19 import org.eclipse.swt.graphics.GC;
24 GC gc = new GC(c); local
25 int avgCharWidth = gc.getFontMetrics().getAverageCharWidth();
26 gc.dispose();
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
gc-relocs-257.d 1 #source: gc-start.s
2 #source: gc-relocs-257.s
3 #ld: --defsym tempy=0x11012 --defsym tempy2=0x45034 --defsym tempy3=0x1234 -T aarch64.ld --gc-sections
6 # This tests if linker is able to remove gc section containing
7 # R_AARCH64_ABS64 relocs. So after gc, we should be left with
  /art/test/597-deopt-new-string/
deopt.cc 22 #include "gc/gc_cause.h"
23 #include "gc/scoped_gc_critical_section.h"
32 gc::ScopedGCCriticalSection gcs(Thread::Current(),
33 gc::kGcCauseInstrumentation,
34 gc::kCollectorTypeInstrumentation);
51 gc::ScopedGCCriticalSection gcs(Thread::Current(),
52 gc::kGcCauseInstrumentation,
53 gc::kCollectorTypeInstrumentation);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
SwtUtils.java 19 import org.eclipse.swt.graphics.GC;
28 GC gc = new GC(c); local
29 int avgCharWidth = gc.getFontMetrics().getAverageCharWidth();
30 gc.dispose();
  /art/runtime/gc/collector/
immune_region.cc 19 #include "gc/space/space-inl.h"
23 namespace gc { namespace in namespace:art
37 } // namespace gc

Completed in 550 milliseconds

1 2 3 4 5 6 7 8 91011>>