Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,519 for undefs (0.22 sec)

  1. src/cmd/link/internal/ld/ar.go

    	loaded := make(map[uint64]bool)
    	any := true
    	for any {
    		var load []uint64
    		returnAllUndefs := -1
    		undefs, froms := ctxt.loader.UndefinedRelocTargets(returnAllUndefs)
    		if buildcfg.GOOS == "windows" {
    			undefs, froms = pruneUndefsForWindows(ctxt.loader, undefs, froms)
    		}
    		for k, symIdx := range undefs {
    			sname := ctxt.loader.SymName(symIdx)
    			if off := armap[sname]; off != 0 && !loaded[off] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		// objects, try to read them from the libgcc file.
    		any := false
    		undefs, froms := ctxt.loader.UndefinedRelocTargets(1)
    		if len(undefs) > 0 {
    			any = true
    			if ctxt.Debugvlog > 1 {
    				ctxt.Logf("loadlib: first unresolved is %s [%d] from %s [%d]\n",
    					ctxt.loader.SymName(undefs[0]), undefs[0],
    					ctxt.loader.SymName(froms[0]), froms[0])
    			}
    		}
    		if any {
    			if *flagLibGCC == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    // the system stack terminates the stack walk (see topofstack()).
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	// We have several undefs here so that 16 bytes past
    	// $runtime·systemstack_switch lies within them whether or not the
    	// instructions that derive r2 from r12 are there.
    	UNDEF
    	UNDEF
    	UNDEF
    	BL	(LR)	// make sure this function is not leaf
    	RET
    
    // func systemstack(fn func())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/go/types/under.go

    // Source: ../../cmd/compile/internal/types2/under.go
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. test/undef.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 758 bytes
    - Viewed (0)
  6. src/cmd/cgo/godefs.go

    	// able to treat them as byte arrays, so the godefs
    	// inputs in package syscall say
    	//
    	//	// +godefs map struct_in_addr [4]byte
    	//	// +godefs map struct_in_addr6 [16]byte
    	//
    	for _, g := range f.Comments {
    		for _, c := range g.List {
    			i := strings.Index(c.Text, "+godefs map")
    			if i < 0 {
    				continue
    			}
    			s := strings.TrimSpace(c.Text[i+len("+godefs map"):])
    			i = strings.Index(s, " ")
    			if i < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/syscall/types_freebsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo -godefs.  See also mkerrors.sh and mkall.sh
    */
    
    // +godefs map struct_in_addr [4]byte /* in_addr */
    // +godefs map struct_in6_addr [16]byte /* in6_addr */
    
    package syscall
    
    /*
    #define	_WANT_FREEBSD11_KEVENT	1
    
    #include <dirent.h>
    #include <fcntl.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/under.go

    // license that can be found in the LICENSE file.
    
    package types2
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    func under(t Type) Type {
    	if t := asNamed(t); t != nil {
    		return t.under()
    	}
    	return t.Underlying()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	case pkgDef:
    		start = 0
    		end = uint32(r.ndef)
    	case hashed64Def:
    		start = uint32(r.ndef)
    		end = uint32(r.ndef + r.nhashed64def)
    	case hashedDef:
    		start = uint32(r.ndef + r.nhashed64def)
    		end = uint32(r.ndef + r.nhashed64def + r.nhasheddef)
    	case nonPkgDef:
    		start = uint32(r.ndef + r.nhashed64def + r.nhasheddef)
    		end = uint32(r.ndef + r.nhashed64def + r.nhasheddef + r.NNonpkgdef())
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	RET
    
    #undef P3ptr
    #undef P1ptr
    #undef CPOOL
    #undef X3L
    #undef X3H
    #undef Y3L
    #undef Y3H
    #undef T1L
    #undef T1H
    #undef T2L
    #undef T2H
    #undef T3L
    #undef T3H
    #undef X1L
    #undef X1H
    #undef Y1L
    #undef Y1H
    #undef Z1L
    #undef Z1H
    #undef TT0
    #undef TT1
    #undef T2
    #undef X0
    #undef X1
    #undef Y0
    #undef Y1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top