HomeSort by relevance Sort by last modified time
    Searched refs:GC (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_api.h 345 GC gc; /* scratch GC for span, line, tri drawing */ member in struct:xmesa_buffer
glx_usefont.c 103 in the graphics context GC. WIDTH is the width in bytes
127 fill_bitmap(Display * dpy, Window win, GC gc,
137 XSetForeground(dpy, gc, 0);
138 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
139 XSetForeground(dpy, gc, 1);
144 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
216 GC gc; local
285 gc = XCreateGC(dpy, pixmap, valuemask, &values)
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/http2/
databuffer.go 13 // Buffer chunks are allocated from a pool to reduce pressure on GC.
20 // TODO: Benchmark to determine if the pools are necessary. The GC may have
  /external/v8/src/
execution.h 93 V(GC_REQUEST, GC, 1) \
  /external/compiler-rt/lib/asan/
asan_fake_stack.cc 92 GC(real_stack);
142 NOINLINE void FakeStack::GC(uptr real_stack) {
  /external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
ClientRunners.cs 175 GrpcEnvironment.Logger.Info("[ClientRunnerImpl.GetStats] GC collection counts: gen0 {0}, gen1 {1}, gen2 {2}, (histogram reset count:{3}, seconds since reset: {4})",
176 GC.CollectionCount(0), GC.CollectionCount(1), GC.CollectionCount(2), statsResetCount.Count, timeSnapshot.WallClockTime.TotalSeconds);
  /external/mesa3d/src/glx/
xfont.c 108 in the graphics context GC. WIDTH is the width in bytes
132 fill_bitmap(Display * dpy, Window win, GC gc,
142 XSetForeground(dpy, gc, 0);
143 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
144 XSetForeground(dpy, gc, 1);
149 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
220 GC gc; local
297 gc = XCreateGC(dpy, pixmap, valuemask, &values)
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 103 in the graphics context GC. WIDTH is the width in bytes
127 fill_bitmap(Display * dpy, Window win, GC gc,
137 XSetForeground(dpy, gc, 0);
138 XFillRectangle(dpy, pixmap, gc, 0, 0, 8 * width, height);
139 XSetForeground(dpy, gc, 1);
144 XDrawString16(dpy, pixmap, gc, x0, y0, &char2b, 1);
216 GC gc; local
284 gc = XCreateGC(dpy, pixmap, valuemask, &values)
    [all...]
xm_buffer.c 72 GC gc; local
137 gc = XCreateGC(b->xm_visual->display, b->frontxrb->drawable, 0, NULL);
138 XShmPutImage(b->xm_visual->display, b->frontxrb->drawable, gc,
141 XFreeGC(b->xm_visual->display, gc);
386 if (b->gc)
387 XMesaFreeGC(b->display, b->gc);
531 GC gc = XCreateGC(xrb->Parent->display, xrb->pixmap, 0, NULL); local
535 gc,
    [all...]
  /art/runtime/arch/arm/
quick_entrypoints_arm.S 379 SETUP_SAVE_REFS_ONLY_FRAME r1 @ save callee saves in case of GC
391 SETUP_SAVE_REFS_ONLY_FRAME r2 @ save callee saves in case of GC
403 SETUP_SAVE_REFS_ONLY_FRAME r3 @ save callee saves in case of GC
428 // The fault handler pushes the gc map address, i.e. "return address", to stack
496 SETUP_SAVE_REFS_AND_ARGS_FRAME r2 @ save callee saves in case allocation triggers GC
687 * Entry from managed code that calls artLockObjectFromCode, may block for GC. r0 holds the
700 ands ip, r2, #LOCK_WORD_GC_STATE_MASK_SHIFTED_TOGGLED @ Test the non-gc bits.
709 #error "Expecting thin lock count and gc state in consecutive bits."
760 ands ip, r3, #LOCK_WORD_GC_STATE_MASK_SHIFTED_TOGGLED @ Test the non-gc bits.
773 #error "Expecting thin lock count and gc state in consecutive bits.
    [all...]
  /external/tensorflow/tensorflow/go/
operation_test.go 267 runtime.GC()
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 86 ErrorDeallocGC, // Calling -dealloc with GC enabled.
307 Out << "-dealloc (GC)";
323 Out << "Leaked (GC-ed at return)";
602 /// GCEnabled - Records whether or not the analyzed code runs in GC mode.
    [all...]
  /art/runtime/arch/mips/
quick_entrypoints_mips.S 95 * Runtime::CreateCalleeSaveMethod(kSaveRefsOnly). Restoration assumes non-moving GC.
235 * Runtime::CreateCalleeSaveMethod(kSaveRefsAndArgs). Restoration assumes non-moving GC.
261 * Runtime::CreateCalleeSaveMethod(kSaveRefsAndArgs). Restoration assumes non-moving GC.
878 # allocation triggers GC
    [all...]
  /art/runtime/arch/mips64/
quick_entrypoints_mips64.S 100 * non-moving GC.
256 * non-moving GC.
943 # allocation triggers GC
    [all...]
  /art/compiler/optimizing/
side_effects_test.cc 192 TEST(SideEffectsTest, GC) {
218 "|GC|DFJISCBZL|DFJISCBZL|GC|DFJISCBZL|DFJISCBZL|",
  /external/mesa3d/src/gallium/winsys/sw/xlib/
xlib_sw_winsys.c 71 GC gc; member in struct:xlib_displaytarget
74 * against. May need to recreate gc, tempImage when this changes??
284 if (xlib_dt->gc)
285 XFreeGC(xlib_dt->display, xlib_dt->gc);
314 if (xlib_dt->gc) {
315 XFreeGC(display, xlib_dt->gc);
316 xlib_dt->gc = NULL;
337 if (xlib_dt->gc == NULL) {
338 xlib_dt->gc = XCreateGC(display, xlib_drawable->drawable, 0, NULL)
    [all...]
  /external/v8/src/profiler/
sampling-heap-profiler.cc 184 case GC:
185 name = "(GC)";
237 // a GC kicks in during the tree retrieval.
tick-sample.cc 192 if (sample_info->vm_state == GC) return true;
  /external/webrtc/webrtc/modules/desktop_capture/
screen_capturer_x11.cc 85 GC gc_;
  /external/v8/tools/
tickprocessor.js 164 { total: 0, unaccounted: 0, excluded: 0, gc: 0 };
218 GC: 1,
368 if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
475 this.printLine('GC', this.ticks_.gc, totalTicks, nonLibraryTicks);
849 '-g': ['stateFilter', TickProcessor.VmStates.GC,
850 'Show only ticks from GC VM state'],
901 dispatch['--gc'] = dispatch['-g'];
  /external/ImageMagick/MagickCore/
xwindow.c 374 if (windows->icon_pixel->annotate_context != (GC) NULL)
384 if (windows->pixel_info->annotate_context != (GC) NULL)
386 if (windows->pixel_info->widget_context != (GC) NULL)
388 if (windows->pixel_info->highlight_context != (GC) NULL)
478 GC
533 if (annotate_context == (GC) NULL)
    [all...]
animate.c 950 if (pixel.annotate_context == (GC) NULL)
993 (void) LogMagickEvent(X11Event,GetMagickModule(),"%.20gc ",(double)
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 14 |* macros, since most of the parameters are not GC heap objects. *|
    [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm_ocaml.c 14 |* macros, since most of the parameters are not GC heap objects. *|
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 14 |* macros, since most of the parameters are not GC heap objects. *|
    [all...]

Completed in 759 milliseconds

1 23 4 5 6