HomeSort by relevance Sort by last modified time
    Searched defs:gc (Results 401 - 425 of 884) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/egl/drivers/dri2/
platform_x11.c 51 /* create GC's */
52 dri2_surf->gc = xcb_generate_id(dri2_dpy->conn);
54 xcb_create_gc(dri2_dpy->conn, dri2_surf->gc, dri2_surf->drawable, mask, &function);
85 xcb_free_gc(dri2_dpy->conn, dri2_surf->gc);
125 xcb_gcontext_t gc; local
129 gc = dri2_surf->gc;
132 gc = dri2_surf->swapgc;
139 gc, w, h, x, y, 0, dri2_surf->depth,
839 xcb_gcontext_t gc; local
    [all...]
  /external/mesa3d/src/glx/
indirect_vertex_array.c 87 static GLboolean validate_mode(struct glx_context * gc, GLenum mode);
88 static GLboolean validate_count(struct glx_context * gc, GLsizei count);
89 static GLboolean validate_type(struct glx_context * gc, GLenum type);
112 __glXFreeVertexArrayState(struct glx_context * gc)
114 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private);
135 * \param gc GLX context whose vertex array state is to be initialized.
147 __glXInitVertexArrayState(struct glx_context * gc)
149 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private);
182 if (__glExtensionBitIsEnabled(gc, GL_EXT_fog_coord_bit)
183 || (gc->server_major > 1) || (gc->server_minor >= 4))
490 struct glx_context *gc = __glXGetCurrentContext(); local
661 struct glx_context *gc = __glXGetCurrentContext(); local
723 struct glx_context *gc = __glXGetCurrentContext(); local
790 struct glx_context *gc = __glXGetCurrentContext(); local
947 struct glx_context *gc = __glXGetCurrentContext(); local
966 struct glx_context *gc = __glXGetCurrentContext(); local
992 struct glx_context *gc = __glXGetCurrentContext(); local
1014 struct glx_context *gc = __glXGetCurrentContext(); local
1040 struct glx_context *gc = __glXGetCurrentContext(); local
1066 struct glx_context *gc = __glXGetCurrentContext(); local
1122 struct glx_context *gc = __glXGetCurrentContext(); local
1167 struct glx_context *gc = __glXGetCurrentContext(); local
1238 struct glx_context *gc = __glXGetCurrentContext(); local
1293 struct glx_context *gc = __glXGetCurrentContext(); local
1338 struct glx_context *gc = __glXGetCurrentContext(); local
1400 struct glx_context *gc = __glXGetCurrentContext(); local
1473 struct glx_context *gc = __glXGetCurrentContext(); local
1533 struct glx_context *gc = __glXGetCurrentContext(); local
1580 struct glx_context *gc = __glXGetCurrentContext(); local
1693 struct glx_context *gc = __glXGetCurrentContext(); local
1721 struct glx_context *const gc = __glXGetCurrentContext(); local
    [all...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
TestDocumentsProvider.java 267 System.gc();
270 Log.d(TAG, "AHA! THE CLOUD TASK WAS GC'ED!");
287 // Tie the network fetch to the cursor GC lifetime
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
WeakHashMapTest.java 214 assertEquals("Incorrect number of keys returned after gc,", 99, entrySet.size());
239 System.gc();
240 System.gc();
322 assertEquals("Incorrect number of keys returned after gc,", 99, keySet.size());
341 System.gc();
342 System.gc();
402 assertEquals("Incorrect number of keys returned after gc,", 99, valuesCollection.size());
  /libcore/ojluni/src/main/java/java/lang/
System.java 109 * Dedicated lock for GC / Finalization logic.
114 * Whether or not we need to do a GC before running the finalizers.
119 * If we just ran finalization, we might want to do a GC to free the finalized objects.
120 * This lets us do gc/runFinlization/gc sequences but prevents back to back System.gc().
1405 public static void gc() { method in class:System
    [all...]
  /libcore/ojluni/src/main/java/java/nio/
Bits.java 719 System.gc();
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 264 int16x8_t gc = vcombine_s16(vrshrn_n_s32(gcl, 16), vrshrn_n_s32(gch, 16)); local
270 int32x4_t gl = vsubl_s16(vget_low_s16(yy), vget_low_s16(gc));
271 int32x4_t gh = vsubl_s16(vget_high_s16(yy), vget_high_s16(gc));
312 int16x8_t gc = vcombine_s16(vrshrn_n_s32(gcl, 16), vrshrn_n_s32(gch, 16)); local
318 int32x4_t gl = vsubl_s16(vget_low_s16(yy), vget_low_s16(gc));
319 int32x4_t gh = vsubl_s16(vget_high_s16(yy), vget_high_s16(gc));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 458 System.gc();
504 System.gc();
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_basics.py 1122 import gc namespace
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
regrtest.py 47 -l/--findleaks -- if GC is available detect tests that leak memory
58 -- call gc.set_threshold(THRESHOLD)
303 import gc namespace
304 gc.set_threshold(int(a))
380 import gc namespace
382 print 'No GC available, disabling findleaks.'
387 # garbage that is not collectable by the GC is reported.
388 #gc.set_debug(gc.DEBUG_SAVEALL)
578 gc.collect(
948 import gc namespace
1050 import gc, copy_reg namespace
    [all...]
test_array.py 754 import gc namespace
760 gc.collect()
1102 import gc namespace
    [all...]
test_dict.py 5 import gc, weakref namespace
577 gc.collect()
582 gc.collect()
583 gc.collect()
584 self.assertFalse(gc.is_tracked(t), t)
587 self.assertTrue(gc.is_tracked(t), t)
588 gc.collect()
589 gc.collect()
590 self.assertTrue(gc.is_tracked(t), t)
594 # Test GC-optimization of dict literal
    [all...]
test_itertools.py 1653 import gc namespace
    [all...]
test_operator.py 523 import gc namespace
527 gc.collect()
test_ssl.py 10 import gc namespace
325 gc.collect()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_basics.py 1122 import gc namespace
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
regrtest.py 47 -l/--findleaks -- if GC is available detect tests that leak memory
58 -- call gc.set_threshold(THRESHOLD)
303 import gc namespace
304 gc.set_threshold(int(a))
380 import gc namespace
382 print 'No GC available, disabling findleaks.'
387 # garbage that is not collectable by the GC is reported.
388 #gc.set_debug(gc.DEBUG_SAVEALL)
578 gc.collect(
948 import gc namespace
1050 import gc, copy_reg namespace
    [all...]
test_array.py 754 import gc namespace
760 gc.collect()
1102 import gc namespace
    [all...]
test_dict.py 5 import gc, weakref namespace
577 gc.collect()
582 gc.collect()
583 gc.collect()
584 self.assertFalse(gc.is_tracked(t), t)
587 self.assertTrue(gc.is_tracked(t), t)
588 gc.collect()
589 gc.collect()
590 self.assertTrue(gc.is_tracked(t), t)
594 # Test GC-optimization of dict literal
    [all...]
test_itertools.py 1653 import gc namespace
    [all...]
test_operator.py 523 import gc namespace
527 gc.collect()
test_ssl.py 10 import gc namespace
325 gc.collect()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_basics.py 1122 import gc namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
regrtest.py 47 -l/--findleaks -- if GC is available detect tests that leak memory
58 -- call gc.set_threshold(THRESHOLD)
303 import gc namespace
304 gc.set_threshold(int(a))
380 import gc namespace
382 print 'No GC available, disabling findleaks.'
387 # garbage that is not collectable by the GC is reported.
388 #gc.set_debug(gc.DEBUG_SAVEALL)
578 gc.collect(
948 import gc namespace
1050 import gc, copy_reg namespace
    [all...]
test_array.py 754 import gc namespace
760 gc.collect()
1102 import gc namespace
    [all...]

Completed in 5650 milliseconds

<<11121314151617181920>>