Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for gpars (0.05 sec)

  1. gradle/verification-metadata.xml

             <artifact name="dec-0.1.2.jar">
                <pgp value="3A4D86C56CA99373B6D8953DBE84D764623A3644"/>
             </artifact>
          </component>
          <component group="org.codehaus.gpars" name="gpars" version="1.2.1">
             <artifact name="gpars-1.2.1.jar">
                <sha256 value="f9e08bf964f34d129344404c01666276ec43c6704dd74e8d4ca32dcd1d2fb4a8" origin="Key couldn't be downloaded"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/subst.go

    )
    
    type substMap map[*TypeParam]Type
    
    // makeSubstMap creates a new substitution map mapping tpars[i] to targs[i].
    // If targs[i] is nil, tpars[i] is not substituted.
    func makeSubstMap(tpars []*TypeParam, targs []Type) substMap {
    	assert(len(tpars) == len(targs))
    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    			}
    		} else {
    			// variadic_func(a, b, c)
    			if nargs >= npars-1 {
    				// Create custom parameters for arguments: keep
    				// the first npars-1 parameters and add one for
    				// each argument mapping to the ... parameter.
    				vars := make([]*Var, npars-1) // npars > 0 for variadic functions
    				copy(vars, sig.params.vars)
    				last := sig.params.vars[npars-1]
    				typ := last.typ.(*Slice).elem
    				for len(vars) < nargs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/go/types/subst.go

    )
    
    type substMap map[*TypeParam]Type
    
    // makeSubstMap creates a new substitution map mapping tpars[i] to targs[i].
    // If targs[i] is nil, tpars[i] is not substituted.
    func makeSubstMap(tpars []*TypeParam, targs []Type) substMap {
    	assert(len(tpars) == len(targs))
    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/go/types/call.go

    			}
    		} else {
    			// variadic_func(a, b, c)
    			if nargs >= npars-1 {
    				// Create custom parameters for arguments: keep
    				// the first npars-1 parameters and add one for
    				// each argument mapping to the ... parameter.
    				vars := make([]*Var, npars-1) // npars > 0 for variadic functions
    				copy(vars, sig.params.vars)
    				last := sig.params.vars[npars-1]
    				typ := last.typ.(*Slice).elem
    				for len(vars) < nargs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. src/runtime/export_debug_ppc64le_test.go

    }
    
    // storeRegArgs sets up argument registers in the signal
    // context state from an abi.RegArgs.
    //
    // Both src and dst must be non-nil.
    func storeRegArgs(dst *sigcontext, src *abi.RegArgs) {
    	// Gprs R3..R10, R14..R17 are used to pass int arguments in registers on PPC64
    	for i := 0; i < 12; i++ {
    		if i > 7 {
    			dst.gp_regs[i+6] = uint64(src.Ints[i])
    		} else {
    			dst.gp_regs[i+3] = uint64(src.Ints[i])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:33:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_s390x.go

    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Psw                      PtracePsw
    	Gprs                     [16]uint64
    	Acrs                     [16]uint32
    	Orig_gpr2                uint64
    	Fp_regs                  PtraceFpregs
    	Per_info                 PtracePer
    	Ieee_instruction_pointer uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Psw                      PtracePsw
    	Gprs                     [16]uint64
    	Acrs                     [16]uint32
    	Orig_gpr2                uint64
    	Fp_regs                  PtraceFpregs
    	Per_info                 PtracePer
    	Ieee_instruction_pointer uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/a.out.go

    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 16 // number of general purpose registers
    	NFREG  = 16 // number of floating point registers
    )
    
    const (
    	// General purpose registers (GPRs).
    	REG_R0 = obj.RBaseS390X + iota
    	REG_R1
    	REG_R2
    	REG_R3
    	REG_R4
    	REG_R5
    	REG_R6
    	REG_R7
    	REG_R8
    	REG_R9
    	REG_R10
    	REG_R11
    	REG_R12
    	REG_R13
    	REG_R14
    	REG_R15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_REGHSET              = 22 // Read all GPRHs
    	PT_ATTACH               = 30 // Attach to a process
    	PT_DETACH               = 31 // Detach from a process
    	PT_REGSET               = 32 // Read all GPRs
    	PT_REATTACH             = 33 // Reattach to a process
    	PT_LDINFO               = 34 // Read loader info
    	PT_MULTI                = 35 // Multi process mode
    	PT_LD64INFO             = 36 // RMODE64 Info Area
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top