Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 339 for Member (3.53 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		pm.Class.Traverse(fn)
    		pm.Member.Traverse(fn)
    	}
    }
    
    func (pm *PtrMem) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(pm) {
    		return nil
    	}
    	class := pm.Class.Copy(fn, skip)
    	member := pm.Member.Copy(fn, skip)
    	if class == nil && member == nil {
    		return fn(pm)
    	}
    	if class == nil {
    		class = pm.Class
    	}
    	if member == nil {
    		member = pm.Member
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/goobj.go

    					entries = append(entries, &Entry{
    						name: e.Name,
    						raw:  raw,
    					})
    					continue L
    				}
    			}
    		}
    		return nil, fmt.Errorf("open %s: unrecognized archive member %s", f.Name(), e.Name)
    	}
    	return &File{f, entries}, nil
    }
    
    func goobjName(name string, ver int) string {
    	if ver == 0 {
    		return name
    	}
    	return fmt.Sprintf("%s<%d>", name, ver)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    }
    
    // SetNumLabel sets the specified key to the specified value for all samples in the
    // profile. "unit" is a slice that describes the units that each corresponding member
    // of "values" is measured in (e.g. bytes or seconds).  If there is no relevant
    // unit for a given value, that member of "unit" should be the empty string.
    // "unit" must either have the same length as "value", or be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. misc/cgo/gmp/gmp.go

    arithmetic types.  A C struct translates to a Go struct, field by
    field; unrepresentable fields are replaced with opaque byte arrays.  A
    C union translates into a struct containing the first union member and
    perhaps additional padding.  C arrays become Go arrays.  C pointers
    become Go pointers.  C function pointers become Go's uintptr.
    C void pointers become Go's unsafe.Pointer.
    
    For example, mpz_t is defined in <gmp.h> as:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  5. src/archive/tar/writer_test.go

    		//	---------- 0/0               0 2017-07-13 19:40 global1
    		//	---------- 0/0               0 2017-07-13 19:40 file2
    		//	gnutar: Substituting `.' for empty member name
    		//	---------- 0/0               0 1969-12-31 16:00
    		//	gnutar: Substituting `.' for empty member name
    		//	---------- 0/0               0 2014-05-13 09:53
    		//
    		// According to the PAX specification, this should have been the result:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "BitLen8", argLength: 1},      // Number of bits in arg[0] (returns 0-8)
    	{name: "BitLen16", argLength: 1},     // Number of bits in arg[0] (returns 0-16)
    	{name: "BitLen32", argLength: 1},     // Number of bits in arg[0] (returns 0-32)
    	{name: "BitLen64", argLength: 1},     // Number of bits in arg[0] (returns 0-64)
    
    	{name: "Bswap16", argLength: 1}, // Swap bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/internal/sys/arch.go

    	// the stack in the function prologue and so always have a
    	// pointer between the hardware stack pointer and the local
    	// variable area.
    	FixedFrameSize int64
    }
    
    // InFamily reports whether a is a member of any of the specified
    // architecture families.
    func (a *Arch) InFamily(xs ...ArchFamily) bool {
    	for _, x := range xs {
    		if a.Family == x {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// different, for the purposes of substitution, if the
    	// functions are members of different classes. In other words,
    	// for the purposes of substitution, the class of which the
    	// function is a member is considered part of the type of
    	// function."
    	//
    	// For a pointer to member function, this call to demangleType
    	// will end up adding a (possibly qualified) non-member
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	Otoc        uint64   // Toc Address
    	Osnentry    int16    // Section Number For Entry Point
    	Osntext     int16    // Section Number For Text
    	Osndata     int16    // Section Number For Data
    	Osntoc      int16    // Section Number For Toc
    	Osnloader   int16    // Section Number For Loader
    	Osnbss      int16    // Section Number For Bss
    	Oalgntext   int16    // Max Text Alignment
    	Oalgndata   int16    // Max Data Alignment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    An error on not-int-const:1 indicates that foo is not an integer constant.
    An error on not-num-const:1 indicates that foo is not a number constant.
    An error on not-str-lit:1 indicates that foo is not a string literal.
    An error on not-signed-int-const:1 indicates that foo is not a signed integer constant.
    
    The line number specifies the name involved. In the example, 1 is foo.
    
    Next, cgo must learn the details of each type, variable, function, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top