Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 874 for ctxt (0.04 sec)

  1. src/runtime/signal_openbsd_ppc64.go

    package runtime
    
    import (
    	"internal/goarch"
    	"unsafe"
    )
    
    type sigctxt struct {
    	info *siginfo
    	ctxt unsafe.Pointer
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) regs() *sigcontext {
    	return (*sigcontext)(c.ctxt)
    }
    
    func (c *sigctxt) r0() uint64  { return c.regs().sc_reg[0] }
    func (c *sigctxt) r1() uint64  { return c.regs().sc_reg[1] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/alias.go

    // reporting).
    func (check *Checker) newAliasInstance(pos syntax.Pos, orig *Alias, targs []Type, ctxt *Context) *Alias {
    	assert(len(targs) > 0)
    	obj := NewTypeName(pos, orig.obj.pkg, orig.obj.name, nil)
    	rhs := check.subst(pos, orig.fromRHS, makeSubstMap(orig.TypeParams().list(), targs), nil, ctxt)
    	res := check.newAlias(obj, rhs)
    	res.orig = orig
    	res.tparams = orig.tparams
    	res.targs = newTypeList(targs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/go/types/alias.go

    // reporting).
    func (check *Checker) newAliasInstance(pos token.Pos, orig *Alias, targs []Type, ctxt *Context) *Alias {
    	assert(len(targs) > 0)
    	obj := NewTypeName(pos, orig.obj.pkg, orig.obj.name, nil)
    	rhs := check.subst(pos, orig.fromRHS, makeSubstMap(orig.TypeParams().list(), targs), nil, ctxt)
    	res := check.newAlias(obj, rhs)
    	res.orig = orig
    	res.tparams = orig.tparams
    	res.targs = newTypeList(targs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/runtime/cgo/asm_arm.s

    	MOVW	R2, (R1)
    	RET
    
    TEXT crosscall2_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	crosscall2(SB)
    
    // Called by C code generated by cmd/cgo.
    // func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
    // Saves C callee-saved registers and calls cgocallback with three arguments.
    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho_update_uuid.go

    }
    
    // machoRewriteUuid copies over the contents of the Macho executable
    // exef into the output file outexe, and in the process updates the
    // LC_UUID command to a new value recomputed from the Go build id.
    func machoRewriteUuid(ctxt *Link, exef *os.File, exem *macho.File, outexe string) error {
    	outf, err := os.OpenFile(outexe, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
    	if err != nil {
    		return err
    	}
    	defer outf.Close()
    
    	// Copy over the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcshared/testdata/main5.c

    #include <sched.h>
    #include <dlfcn.h>
    
    static void die(const char* msg) {
    	perror(msg);
    	exit(EXIT_FAILURE);
    }
    
    static volatile sig_atomic_t sigioSeen;
    
    static void ioHandler(int signo, siginfo_t* info, void* ctxt) {
    	sigioSeen = 1;
    }
    
    int main(int argc, char** argv) {
    	int verbose;
    	struct sigaction sa;
    	void* handle;
    	void (*catchSIGIO)(void);
    	void (*resetSIGIO)(void);
    	void (*awaitSIGIO)();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    		// and assign globals[i].location = uintptr(unsafe.Pointer(&asanL[i]))
    		asanLi := ir.NewIndexExpr(base.Pos, asanlocation, ir.NewInt(base.Pos, int64(i)))
    		filename := ir.NewString(base.Pos, base.Ctxt.PosTable.Pos(n.Pos()).Filename()+"\000")
    		init.Append(typecheck.Stmt(ir.NewAssignStmt(base.Pos, asanFilename, filename)))
    		c = tconv(typecheck.NodAddr(asanFilename), types.Types[types.TUNSAFEPTR])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadcode.go

    	if f.RegAlloc != nil {
    		for i := range live {
    			live[i] = true
    		}
    		return
    	}
    
    	// Record all the inline indexes we need
    	var liveInlIdx map[int]bool
    	pt := f.Config.ctxt.PosTable
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			i := pt.Pos(v.Pos).Base().InliningIndex()
    			if i < 0 {
    				continue
    			}
    			if liveInlIdx == nil {
    				liveInlIdx = map[int]bool{}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassAndFunctionContextReceivers.capturing.txt

        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
        R|Test|
    ContainingClass[name: <this>; isMutated: false; displayText: this@Test]
        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
        R|Test|
    ContextReceiver[name: Ctx3; isMutated: false; displayText: this@Ctx3]
        context(R|Ctx3|, R|Ctx4|)
        fun foo(): R|kotlin/Unit|
        R|Ctx3|
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 14 15:22:43 UTC 2023
    - 574 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassAndFunctionContextReceivers.ir.txt

                  $context_receiver_0: GET_FIELD 'FIELD FIELD_FOR_CLASS_CONTEXT_RECEIVER name:contextReceiverField0 type:<root>.Ctx1 visibility:private [final] declared in <root>.Test' type=<root>.Ctx1 origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Apr 26 06:04:06 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top