HomeSort by relevance Sort by last modified time
    Searched refs:gc (Results 251 - 275 of 1753) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cgraph.h 176 DEF_VEC_ALLOC_P(ipa_replace_map_p,gc);
180 VEC(ipa_replace_map_p,gc)* tree_map;
304 DEF_VEC_ALLOC_P(cgraph_node_ptr,gc);
311 VEC(cgraph_node_ptr, gc) *nodes;
318 DEF_VEC_ALLOC_P(varpool_node_ptr,gc);
325 VEC(varpool_node_ptr, gc) *nodes;
331 DEF_VEC_ALLOC_P(cgraph_node_set,gc);
337 DEF_VEC_ALLOC_P(varpool_node_set,gc);
604 VEC(ipa_replace_map_p,gc)* tree_map,
640 VEC(ipa_replace_map_p,gc)*,
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cgraph.h 176 DEF_VEC_ALLOC_P(ipa_replace_map_p,gc);
180 VEC(ipa_replace_map_p,gc)* tree_map;
304 DEF_VEC_ALLOC_P(cgraph_node_ptr,gc);
311 VEC(cgraph_node_ptr, gc) *nodes;
318 DEF_VEC_ALLOC_P(varpool_node_ptr,gc);
325 VEC(varpool_node_ptr, gc) *nodes;
331 DEF_VEC_ALLOC_P(cgraph_node_set,gc);
337 DEF_VEC_ALLOC_P(varpool_node_set,gc);
604 VEC(ipa_replace_map_p,gc)* tree_map,
640 VEC(ipa_replace_map_p,gc)*,
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
rounded_window.cc 224 GdkGC* gc = gdk_gc_new(drawable); local
225 gdk_gc_set_clip_rectangle(gc, &event->area);
226 gdk_gc_set_rgb_fg_color(gc, &data->border_color);
234 gdk_draw_polygon(drawable, gc, FALSE, &points[0], points.size());
236 gdk_draw_lines(drawable, gc, &points[0], points.size());
239 g_object_unref(gc);
  /external/chromium_org/chrome/browser/ui/gtk/
rounded_window.cc 229 GdkGC* gc = gdk_gc_new(drawable); local
230 gdk_gc_set_clip_rectangle(gc, &event->area);
231 gdk_gc_set_rgb_fg_color(gc, &data->border_color);
239 gdk_draw_polygon(drawable, gc, FALSE, &points[0], points.size());
241 gdk_draw_lines(drawable, gc, &points[0], points.size());
244 g_object_unref(gc);
  /external/chromium_org/tools/page_cycler/common/
head.js 45 // Call GC twice to cleanup JS heap before starting a new test.
46 if (window.gc) {
47 window.gc();
48 window.gc();
  /external/chromium_org/tools/page_cycler/database/
head.js 51 // Call GC twice to cleanup JS heap before starting a new test.
52 if (window.gc) {
53 window.gc();
54 window.gc();
  /external/chromium_org/tools/page_cycler/indexed_db/
head.js 51 // Call GC twice to cleanup JS heap before starting a new test.
52 if (window.gc) {
53 window.gc();
54 window.gc();
  /external/chromium_org/tools/perf/measurements/
page_cycler.js 27 // Call GC twice to cleanup JS heap before starting a new test.
28 if (window.gc) {
29 window.gc();
30 window.gc();
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-2337.js 28 // Flags: --expose-debug-as debug --expose-gc
30 // If one callback causes a GC then the other callbacks don't take place.
43 gc();
52 gc();
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2336.js 28 // Flags: --expose-debug-as debug --expose-gc
31 // GC epilogue and causes enough allocation to trigger a new GC during
44 gc();
52 gc();
regress-embedded-cons-string.js 29 // Flags: --expose-gc --allow-natives-syntax
45 gc();
53 gc();
regress-put-prototype-transition.js 5 // Flags: --allow-natives-syntax --expose-gc --stress-compaction --gc-interval=255
41 gc();
regress-2163.js 28 // Flags: --expose-gc
46 gc();
55 gc();
68 gc();
  /external/chromium_org/v8/test/mjsunit/
string-natives.js 28 // Flags: --expose-gc --allow-natives-syntax
61 gc();
68 gc();
string-replace-with-empty.js 28 // Flags: --expose-externalize-string --expose-gc
63 // Clear the regexp cache to allow the GC to work.
66 // GC in order to free up things on the C side so we don't get
68 gc();
69 gc();
fast-prototype.js 28 // Flags: --allow-natives-syntax --expose-gc
31 // between prototype transitions, we disable GC stress for now.
32 %SetFlags("--gc-interval=-1")
89 // TODO(mstarzinger): This test fails easily if gc happens at the wrong time.
90 gc();
  /external/chromium_org/v8/test/webkit/
duplicate-param-gc-crash.js 28 function gc() function
33 for (var i = 0; i < 10000; ++i) // Allocate a sufficient number of objects to force a GC.
54 gc();
68 gc();
  /external/v8/test/mjsunit/
fast-element-smi-check.js 28 // Flags: --allow-natives-syntax --expose-gc
49 gc(); // Makes V8 forget about type information for test_load_set_smi.
70 gc(); // Makes V8 forget about type information for test_load_set_smi.
string-replace-with-empty.js 28 // Flags: --expose-externalize-string --expose-gc
63 // Clear the regexp cache to allow the GC to work.
66 // GC in order to free up things on the C side so we don't get
68 gc();
69 gc();
  /art/runtime/gc/accounting/
heap_bitmap.h 26 namespace gc { namespace in namespace:art
94 // Find and replace a bitmap pointer, this is used by for the bitmap swapping in the GC.
98 // Find and replace a object set pointer, this is used by for the bitmap swapping in the GC.
116 friend class art::gc::Heap;
120 } // namespace gc
  /dalvik/tests/083-jit-regressions/src/
Main.java 57 System.gc();
73 System.gc();
  /external/chromium_org/third_party/WebKit/Source/web/
PageOverlayList.cpp 115 void PageOverlayList::paintWebFrame(WebCore::GraphicsContext& gc)
118 m_pageOverlays[i]->paintWebFrame(gc);
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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,
  /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()}:

Completed in 894 milliseconds

<<11121314151617181920>>