HomeSort by relevance Sort by last modified time
    Searched refs:g0 (Results 176 - 200 of 250) sorted by null

1 2 3 4 5 6 78 910

  /prebuilts/go/darwin-x86/src/runtime/
proc.go 80 g0 g
109 // Racectx of m0->g0 is used only as the parent of the main goroutine.
111 g.m.g0.racectx = 0
383 throw("runtime: mcall called on m->g0 stack")
394 var badmorestackg0Msg = "fatal: morestack on g0\n"
526 // g0 stack won't make sense for user (and is not necessary unwindable).
527 if _g_ != _g_.m.g0 {
79 g0 g var
    [all...]
mgcsweep.go 142 if _g_.m.locks == 0 && _g_.m.mallocing == 0 && _g_ != _g_.m.g0 {
171 if _g_.m.locks == 0 && _g_.m.mallocing == 0 && _g_ != _g_.m.g0 {
os_linux.go 148 print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " clone=", funcPC(clone), " id=", mp.id, " ostk=", &mp, "\n")
155 ret := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(funcPC(mstart)))
cgocheck.go 32 if g == g.m.g0 || g == g.m.gsignal {
os_dragonfly.go 135 print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " lwp_start=", funcPC(lwp_start), " id=", mp.id, " ostk=", &mp, "\n")
os_nacl.go 157 mp.tls[0] = uintptr(unsafe.Pointer(mp.g0))
stack.go 328 if thisg != thisg.m.g0 {
968 print("runtime: newstack called from g=", hex(thisg.m.morebuf.g), "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
1044 if gp == thisg.m.g0 {
1045 throw("runtime: preempt g0")
    [all...]
asm_ppc64x.s 26 MOVD $runtime·g0(SB), g
62 // save m->g0 = g0
64 // save m0 to g0->m
167 // Switch to m->g0's stack, call fn(g).
178 // Switch to m->g0 & its stack, call fn.
189 MOVD (g_sched+gobuf_sp)(g), R1 // sp = m->g0->sched.sp
224 MOVD m_g0(R4), R5 // R5 = g0
232 // Bad: g is not gsignal, not g0, not curg. What is it?
248 // switch to g0
547 g0: label
    [all...]
asm_s390x.s 23 MOVD $runtime·g0(SB), g
59 // save m->g0 = g0
61 // save m0 to g0->m
147 // Switch to m->g0's stack, call fn(g).
157 // Switch to m->g0 & its stack, call fn.
167 MOVD (g_sched+gobuf_sp)(g), R15 // sp = m->g0->sched.sp
193 MOVD m_g0(R4), R5 // R5 = g0
199 // Bad: g is not gsignal, not g0, not curg. What is it?
214 // switch to g0
501 g0: label
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
asm_arm.s 25 MOVW $runtime·g0(SB), g
28 // save m->g0 = g0
172 // Switch to m->g0's stack, call fn(g).
183 // Switch to m->g0 & its stack, call fn.
223 MOVW m_g0(R1), R2 // R2 = g0
231 // Bad: g is not gsignal, not g0, not curg. What is it?
249 // switch to g0
255 // make it look like mstart called systemstack on g0, to stop traceback
292 // The traceback routines see morestack on a g0 as bein
536 g0: label
    [all...]
asm_arm64.s 20 MOVD $runtime·g0(SB), g
57 // save m->g0 = g0
59 // save m0 to g0->m
155 // Switch to m->g0's stack, call fn(g).
166 // Switch to m->g0 & its stack, call fn.
177 MOVD R0, RSP // sp = m->g0->sched.sp
204 MOVD m_g0(R4), R5 // R5 = g0
212 // Bad: g is not gsignal, not g0, not curg. What is it?
228 // switch to g0
536 g0: label
    [all...]
asm_mipsx.s 23 MOVW $runtime·g0(SB), g
52 // save m->g0 = g0
54 // save m0 to g0->m
139 // Switch to m->g0's stack, call fn(g).
149 // Switch to m->g0 & its stack, call fn.
158 MOVW (g_sched+gobuf_sp)(g), R29 // sp = m->g0->sched.sp
184 MOVW m_g0(R2), R3 // R3 = g0
190 // Bad: g is not gsignal, not g0, not curg. What is it?
205 // switch to g0
481 g0: label
    [all...]
proc.go 80 g0 g
109 // Racectx of m0->g0 is used only as the parent of the main goroutine.
111 g.m.g0.racectx = 0
383 throw("runtime: mcall called on m->g0 stack")
394 var badmorestackg0Msg = "fatal: morestack on g0\n"
526 // g0 stack won't make sense for user (and is not necessary unwindable).
527 if _g_ != _g_.m.g0 {
79 g0 g var
    [all...]
mgcsweep.go 142 if _g_.m.locks == 0 && _g_.m.mallocing == 0 && _g_ != _g_.m.g0 {
171 if _g_.m.locks == 0 && _g_.m.mallocing == 0 && _g_ != _g_.m.g0 {
os_linux.go 148 print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " clone=", funcPC(clone), " id=", mp.id, " ostk=", &mp, "\n")
155 ret := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(funcPC(mstart)))
cgocheck.go 32 if g == g.m.g0 || g == g.m.gsignal {
os_dragonfly.go 135 print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " lwp_start=", funcPC(lwp_start), " id=", mp.id, " ostk=", &mp, "\n")
os_nacl.go 157 mp.tls[0] = uintptr(unsafe.Pointer(mp.g0))
stack.go 328 if thisg != thisg.m.g0 {
968 print("runtime: newstack called from g=", hex(thisg.m.morebuf.g), "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
1044 if gp == thisg.m.g0 {
1045 throw("runtime: preempt g0")
    [all...]
  /prebuilts/go/darwin-x86/src/image/draw/
draw_test.go 16 r0, g0, b0, a0 := c0.RGBA()
18 return r0 == r1 && g0 == g1 && b0 == b1 && a0 == a1
  /prebuilts/go/linux-x86/src/image/draw/
draw_test.go 16 r0, g0, b0, a0 := c0.RGBA()
18 return r0 == r1 && g0 == g1 && b0 == b1 && a0 == a1
  /system/core/libpixelflinger/include/private/pixelflinger/
ggl_context.h 461 GGLcolor g0; member in struct:android::shade_t
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 807 /* We can't directly send from g0, since sends with EOT have to use
811 struct brw_reg g0 = retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD); local
813 bld.group(8, 0).exec_all().MOV(payload, g0);
    [all...]
  /system/core/libpixelflinger/
pixelflinger.cpp 222 c->shade.g0 = gglFixedToIteratedColor(color[1]);
238 c->shade.g0 = grad[ 3] + round;
  /external/skia/src/shaders/gradients/
SkGradientShader.cpp 598 uint32_t g0 = SkColorGetG(c0); local
607 g0 = SkMulDiv255Round(g0, a0);
617 SkFixed dg = SkIntToFixed(g1 - g0) / (count - 1);
633 SkUFixed g = SkIntToFixed(g0) + bias0;
    [all...]

Completed in 603 milliseconds

1 2 3 4 5 6 78 910