Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 566 for ctxt (0.04 sec)

  1. src/runtime/stack.go

    			"\tmorebuf={pc:", hex(morebuf.pc), " sp:", hex(morebuf.sp), " lr:", hex(morebuf.lr), "}\n",
    			"\tsched={pc:", hex(gp.sched.pc), " sp:", hex(gp.sched.sp), " lr:", hex(gp.sched.lr), " ctxt:", gp.sched.ctxt, "}\n")
    
    		thisg.m.traceback = 2 // Include runtime frames
    		traceback(morebuf.pc, morebuf.sp, morebuf.lr, gp)
    		throw("runtime: stack split at bad time")
    	}
    
    	morebuf := thisg.m.morebuf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    		aoff = objw.BitVec(&argsSymTmp, aoff, args)
    		loff = objw.BitVec(&liveSymTmp, loff, locals)
    	}
    
    	// These symbols will be added to Ctxt.Data by addGCLocals
    	// after parallel compilation is done.
    	return base.Ctxt.GCLocalsSym(argsSymTmp.P), base.Ctxt.GCLocalsSym(liveSymTmp.P)
    }
    
    // Entry pointer for Compute analysis. Solves for the Compute of
    // pointer variables in the function and emits a runtime data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/zsyscall_windows.go

    	return
    }
    
    func RtlVirtualUnwind(handlerType uint32, baseAddress uintptr, pc uintptr, entry uintptr, ctxt uintptr, data *uintptr, frame *uintptr, ctxptrs *byte) (ret uintptr) {
    	r0, _, _ := syscall.Syscall9(procRtlVirtualUnwind.Addr(), 8, uintptr(handlerType), uintptr(baseAddress), uintptr(pc), uintptr(entry), uintptr(ctxt), uintptr(unsafe.Pointer(data)), uintptr(unsafe.Pointer(frame)), uintptr(unsafe.Pointer(ctxptrs)), 0)
    	ret = uintptr(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check.go

    // It must be created with NewChecker.
    type Checker struct {
    	// package information
    	// (initialized by NewChecker, valid for the life-time of checker)
    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	pkg  *Package
    	*Info
    	version goVersion              // accepted language version
    	nextID  uint64                 // unique Id for type parameters (first valid Id is 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. src/reflect/value.go

    //
    // ctxt is the "closure" generated by MakeFunc.
    // frame is a pointer to the arguments to that closure on the stack.
    // retValid points to a boolean which should be set when the results
    // section of frame is set.
    //
    // regs contains the argument values passed in registers and will contain
    // the values returned from ctxt.fn in registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	}
    
    	if strings.HasPrefix(name, "goexperiment.") {
    		return slices.Contains(build.Default.ToolTags, name)
    	}
    
    	if name == "cgo" && ctxt.cgoEnabled {
    		return true
    	}
    
    	if name == ctxt.GOOS || name == ctxt.GOARCH || name == "gc" {
    		return true
    	}
    
    	if ctxt.noOptEnv && name == "gcflags_noopt" {
    		return true
    	}
    
    	if name == "test_run" {
    		return true
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/runtime/asm_s390x.s

    	MOVD	$runtime·systemstack_switch(SB), R1
    	ADD	$16, R1	// get past prologue
    	MOVD	R1, (g_sched+gobuf_pc)(g)
    	MOVD	R15, (g_sched+gobuf_sp)(g)
    	MOVD	$0, (g_sched+gobuf_lr)(g)
    	MOVD	$0, (g_sched+gobuf_ret)(g)
    	// Assert ctxt is zero. See func save.
    	MOVD	(g_sched+gobuf_ctxt)(g), R1
    	CMPBEQ	R1, $0, 2(PC)
    	BL	runtime·abort(SB)
    	RET
    
    // func asmcgocall(fn, arg unsafe.Pointer) int32
    // Call fn(arg) on the scheduler stack,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/runtime/asm_loong64.s

    	MOVV    $runtime·systemstack_switch(SB), R19
    	ADDV	$8, R19
    	MOVV	R19, (g_sched+gobuf_pc)(g)
    	MOVV	R3, (g_sched+gobuf_sp)(g)
    	MOVV	R0, (g_sched+gobuf_lr)(g)
    	MOVV	R0, (g_sched+gobuf_ret)(g)
    	// Assert ctxt is zero. See func save.
    	MOVV	(g_sched+gobuf_ctxt)(g), R19
    	BEQ	R19, 2(PC)
    	JAL	runtime·abort(SB)
    	RET
    
    // func asmcgocall(fn, arg unsafe.Pointer) int32
    // Call fn(arg) on the scheduler stack,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/runtime/asm_mipsx.s

    	MOVW	$runtime·systemstack_switch(SB), R1
    	ADDU	$8, R1	// get past prologue
    	MOVW	R1, (g_sched+gobuf_pc)(g)
    	MOVW	R29, (g_sched+gobuf_sp)(g)
    	MOVW	R0, (g_sched+gobuf_lr)(g)
    	MOVW	R0, (g_sched+gobuf_ret)(g)
    	// Assert ctxt is zero. See func save.
    	MOVW	(g_sched+gobuf_ctxt)(g), R1
    	BEQ	R1, 2(PC)
    	JAL	runtime·abort(SB)
    	RET
    
    // func asmcgocall(fn, arg unsafe.Pointer) int32
    // Call fn(arg) on the scheduler stack,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

        server.enqueue(MockResponse(body = "abc"))
    
        val ctxt = InstrumentationRegistry.getInstrumentation().targetContext.applicationContext
    
        val cacheSize = 1L * 1024 * 1024 // 1MB
        val cache = Cache(ctxt.cacheDir.resolve("testCache"), cacheSize)
    
        try {
          client =
            client.newBuilder()
              .cache(cache)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top