HomeSort by relevance Sort by last modified time
    Searched refs:gc (Results 201 - 225 of 633) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/guava/guava-testlib/src/com/google/common/testing/
GcFinalization.java 42 * <p>This class uses (possibly repeated) invocations of {@link java.lang.System#gc()} to cause
43 * finalization to happen. However, a call to {@code System.gc()} is specified to be no more
91 * 10 seconds ought to be long enough for any object to be GC'ed and finalized. Unless we have a
126 System.gc();
161 System.gc();
185 * response to {@link System#gc()}:
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_dri2.c 302 GCPtr gc; local
352 gc = GetScratchGC(pDraw->depth, pScreen);
355 (*gc->funcs->ChangeClip) (gc, CT_REGION, copy_clip, 0);
356 ValidateGC(dst_draw, gc);
388 (*gc->ops->CopyArea)(src_draw, dst_draw, gc,
392 FreeScratchGC(gc);
  /external/mesa3d/src/glx/
glxclient.h 423 glx_context_init(struct glx_context *gc,
426 #define __glXSetError(gc,code) \
427 if (!(gc)->error) { \
428 (gc)->error = code; \
609 extern void __glXSendLargeChunk(struct glx_context * gc, GLint requestNumber,
647 #define __glXSetCurrentContext(gc) __glXcurrentContext = gc
681 extern void __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim,
glxext.c 225 struct glx_context *gc; local
227 gc = __glXGetCurrentContext();
228 if (priv->dpy == gc->currentDpy) {
229 gc->vtable->destroy(gc);
929 struct glx_context *gc; local
933 gc = __glXGetCurrentContext();
934 if (gc->currentDpy) {
936 (void) __glXFlushRenderBuffer(gc, gc->pc)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.cpp 360 void PopupListBox::paint(GraphicsContext* gc, const IntRect& rect)
370 gc->save();
371 gc->translate(static_cast<float>(tx), static_cast<float>(ty));
372 gc->clip(r);
377 paintRow(gc, r, i);
381 gc->fillRect(r, Color::white);
383 gc->restore();
386 GraphicsContextStateSaver stateSaver(*gc);
390 gc->translate(x(), y());
392 gc->clip(IntRect(IntPoint(), visibleAreaWithScrollbars.size()))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
glxext.c 225 struct glx_context *gc; local
227 gc = __glXGetCurrentContext();
228 if (priv->dpy == gc->currentDpy) {
229 gc->vtable->destroy(gc);
929 struct glx_context *gc; local
933 gc = __glXGetCurrentContext();
934 if (gc->currentDpy) {
936 (void) __glXFlushRenderBuffer(gc, gc->pc)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /art/compiler/
image_test.cc 26 #include "gc/space/image_space.h"
119 gc::Heap* heap = Runtime::Current()->GetHeap();
121 gc::space::ContinuousSpace* space = heap->GetNonMovingSpace();
165 gc::Heap* heap = Runtime::Current()->GetHeap();
169 gc::space::ImageSpace* image_space = heap->GetImageSpace();
  /art/runtime/gc/collector/
immune_region.cc 19 #include "gc/space/space-inl.h"
23 namespace gc { namespace in namespace:art
70 } // namespace gc
semi_space-inl.h 22 #include "gc/accounting/heap_bitmap.h"
26 namespace gc { namespace in namespace:art
91 } // namespace gc
  /art/runtime/gc/
reference_queue.h 38 namespace gc { namespace in namespace:art
42 // Used to temporarily store java.lang.ref.Reference(s) during GC and prior to queueing on the
86 // Visits list_, currently only used for the mark compact GC.
91 // Lock, used for parallel GC reference enqueuing. It allows for multiple threads simultaneously
94 // The actual reference list. Only a root for the mark compact GC since it will be null for other
95 // GC types.
99 } // namespace gc
  /art/runtime/gc/space/
dlmalloc_space-inl.h 21 #include "gc/allocator/dlmalloc.h"
25 namespace gc { namespace in namespace:art
69 } // namespace gc
rosalloc_space-inl.h 20 #include "gc/allocator/rosalloc-inl.h"
25 namespace gc { namespace in namespace:art
74 } // namespace gc
valgrind_malloc_space.h 25 namespace gc { namespace in namespace:art
59 } // namespace gc
zygote_space.h 20 #include "gc/accounting/space_bitmap.h"
25 namespace gc { namespace in namespace:art
96 } // namespace gc
  /art/runtime/
runtime_android.cc 49 gc::Heap* heap = runtime->GetHeap();
  /art/test/109-suspend-check/src/
Main.java 31 Runtime.getRuntime().gc();
  /external/chromium_org/v8/test/mjsunit/
apply-arguments-gc-safepoint.js 28 // Flags: --expose-gc
34 if (x == 149999) gc();
deopt-minus-zero.js 28 // Flags: --allow-natives-syntax --expose-gc
43 gc();
  /external/chromium_org/v8/test/mjsunit/harmony/regress/
regress-2219.js 28 // Flags: --harmony-proxies --expose-gc
30 var p = Proxy.create({getPropertyDescriptor: function() { gc() }});
  /external/chromium_org/v8/test/mjsunit/regress/
regress-128018.js 28 // Flags: --expose-gc
35 gc();
regress-133211b.js 28 // Flags: --expose-gc
37 gc();
regress-2339.js 28 // Flags: --allow-natives-syntax --expose-gc
45 gc();
regress-arguments-gc.js 28 // Flags: --expose-gc --nocleanup_code_caches_at_gc
31 gc();
regress-cnlt-enum-indices.js 28 // Flags: --allow-natives-syntax --expose-gc
45 gc();

Completed in 1693 milliseconds

1 2 3 4 5 6 7 891011>>