Searched defs:gc (Results 1 - 25 of 172) sorted by relevance

1234567

/external/python/cpython2/Lib/test/crashers/
H A Dgc_inspection.py2 gc.get_referrers() can be used to see objects before they are fully built.
5 by using gc.get_referrers(), as well as many extension modules (even
17 "gc.get_referrers() is dangerous, use only for debugging".
20 import gc namespace
27 [tup] = [x for x in gc.get_referrers(marker) if type(x) is tuple]
H A Dgc_has_finalizer.py2 The gc module can still invoke arbitrary Python code and crash.
15 import gc namespace
33 gc.collect()
36 gc.collect()
/external/icu/icu4c/source/samples/datecal/
H A Dcal.cpp26 GregorianCalendar* gc = new GregorianCalendar(status); local
32 gc->set(2000, UCAL_FEBRUARY, 26);
33 gc->set(UCAL_HOUR_OF_DAY, 23);
34 gc->set(UCAL_MINUTE, 0);
35 gc->set(UCAL_SECOND, 0);
36 gc->set(UCAL_MILLISECOND, 0);
42 gc->get(UCAL_YEAR, status),
43 gc->get(UCAL_MONTH, status) + 1,
44 gc->get(UCAL_MONTH, status),
45 gc
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dastrotst.h47 Calendar *gc; member in class:AstroTest
/external/python/cpython2/Lib/test/leakers/
H A Dtest_dictself.py3 import gc namespace
12 gc.collect(); gc.collect(); gc.collect()
H A Dtest_selftype.py4 import gc namespace
13 gc.collect(); gc.collect(); gc.collect()
H A Dtest_ctypes.py5 import gc namespace
15 gc.collect()
/external/autotest/scheduler/
H A Dgc_stats.py2 # This module depends on the CPython gc module and garbage collection behavior.
4 import gc, logging, pprint namespace
34 all_objects = gc.get_objects()
53 # Never keep references to stuff returned by gc.get_objects() around
54 # or it'll just make the future cyclic gc runs more difficult.
H A Dgc_stats_unittest.py3 import gc namespace
/external/mesa3d/src/glx/apple/
H A Dapple_xgl_api_viewport.c41 struct glx_context *gc = __glXGetCurrentContext(); local
44 if (gc != &dummyContext && gc->driContext)
45 apple_glx_context_update(dpy, gc->driContext);
H A Dapple_xgl_api_stereo.c55 struct glx_context * gc = __glXGetCurrentContext(); local
57 if (gc != &dummyContext && apple_glx_context_uses_stereo(gc->driContext)) {
90 struct glx_context * gc = __glXGetCurrentContext(); local
92 if (gc != &dummyContext && apple_glx_context_uses_stereo(gc->driContext)) {
/external/python/cpython2/Lib/test/
H A Dtest_genexps.py274 import gc namespace
278 gc.collect()
H A Dtest_setcomps.py142 import gc namespace
146 gc.collect()
/external/autotest/client/bin/
H A Dparallel.py5 import sys, logging, os, pickle, traceback, gc, time namespace
46 gc.collect()
/external/clang/test/CodeGen/
H A D2008-08-07-AlignPadding1.c11 } gc; member in union:_gc_head
H A Dunion-init.c11 } gc; member in union:_gc_head
/external/clang/test/OpenMP/
H A Dtarget_data_codegen.cpp22 double gc[100]; variable
48 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[BP0]]
49 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[P0]]
57 #pragma omp target data if(1+3-5) device(arg) map(from: gc)
H A Dtarget_enter_data_codegen.cpp22 double gc[100]; variable
48 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[BP0]]
49 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[P0]]
53 #pragma omp target enter data if(1+3-5) device(arg) map(alloc: gc)
H A Dtarget_exit_data_codegen.cpp22 double gc[100]; variable
49 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[BP0]]
50 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[P0]]
53 #pragma omp target exit data if(1+3-5) device(arg) map(from: gc)
H A Dtarget_update_codegen.cpp22 double gc[100]; variable
48 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[BP0]]
49 // CK1-DAG: store i8* bitcast ([100 x double]* @gc to i8*), i8** [[P0]]
52 #pragma omp target update if(1+3-5) device(arg) from(gc)
/external/mesa3d/src/glx/
H A Dclientattrib.c42 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]) {
80 __glXSetError(gc, GL_OUT_OF_MEMORY);
86 gc->attributes.stackPointer = spp + 1;
96 __glXSetError(gc, GL_STACK_OVERFLO
104 struct glx_context *gc = __glXGetCurrentContext(); local
134 __glFreeAttributeState(struct glx_context * gc) argument
[all...]
H A Dcreate_context.c44 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_attribs(psc, cfg, share, num_attribs,
93 gc->xid = xcb_generate_id(c);
94 gc->share_xid = (share != NULL) ? share->xid : 0;
106 gc->xid,
109 gc->share_xid,
110 gc
[all...]
H A Dpixelstore.c42 * \param gc Current GLX context
50 send_PixelStore(struct glx_context * gc, unsigned sop, GLenum pname, argument
53 Display *const dpy = gc->currentDpy;
56 GLubyte const *pc = __glXSetupSingleRequest(gc, sop, cmdlen);
71 struct glx_context *gc = __glXGetCurrentContext(); local
72 __GLXattribute *state = gc->client_state_private;
73 Display *dpy = gc->currentDpy;
83 __glXSetError(gc, GL_INVALID_VALUE);
91 __glXSetError(gc, GL_INVALID_VALUE);
99 __glXSetError(gc, GL_INVALID_VALU
221 struct glx_context *gc = __glXGetCurrentContext(); local
[all...]
H A Dquery_renderer.c107 struct glx_context *gc = __glXGetCurrentContext(); local
109 if (gc == &dummyContext)
112 return __glXQueryRendererInteger(gc->psc, attribute, value);
167 struct glx_context *gc = __glXGetCurrentContext(); local
169 if (gc == &dummyContext)
172 return __glXQueryRendererString(gc->psc, attribute);
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_frombuffer.py3 import gc namespace
32 del a; gc.collect(); gc.collect(); gc.collect()
64 del a; gc.collect(); gc.collect(); gc.collect()

Completed in 823 milliseconds

1234567