Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for methodValueCallCodePtr (0.19 sec)

  1. src/reflect/export_test.go

    	oldFloats = floatArgRegs
    	oldFloatSize = floatRegSize
    	intArgRegs = ints
    	floatArgRegs = floats
    	floatRegSize = floatSize
    	clearLayoutCache()
    	return
    }
    
    var MethodValueCallCodePtr = methodValueCallCodePtr
    
    var InternalIsZero = isZero
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/reflect/makefunc.go

    	fl |= flag(v.typ().Kind())
    	rcvr := Value{v.typ(), v.ptr, fl}
    
    	// v.Type returns the actual type of the method value.
    	ftyp := (*funcType)(unsafe.Pointer(v.Type().(*rtype)))
    
    	code := methodValueCallCodePtr()
    
    	// methodValue contains a stack map for use by the runtime
    	_, _, abid := funcLayout(ftyp, nil)
    	fv := &methodValue{
    		makeFuncCtxt: makeFuncCtxt{
    			fn:      code,
    			stack:   abid.stackPtrs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top