Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for pad_cgo_0 (0.44 sec)

  1. src/syscall/mkpost.go

    		re := regexp.MustCompile("ptrace(Psw|Fpregs|Per)")
    		s = re.ReplaceAllString(s, "Ptrace$1")
    
    		// Replace padding fields inserted by cgo with blank identifiers.
    		re = regexp.MustCompile("Pad_cgo[A-Za-z0-9_]*")
    		s = re.ReplaceAllString(s, "_")
    
    		// We want to keep the X_ fields that are already consistently exported
    		// for the other linux GOARCH settings.
    		// Hide them and restore later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (darwin-amd64), type Termios struct, Oflag uint64
    pkg syscall (darwin-amd64), type Termios struct, Ospeed uint64
    pkg syscall (darwin-amd64), type Termios struct, Pad_cgo_0 [4]uint8
    pkg syscall (darwin-amd64-cgo), const AF_APPLETALK = 16
    pkg syscall (darwin-amd64-cgo), const AF_CCITT = 10
    pkg syscall (darwin-amd64-cgo), const AF_CHAOS = 5
    pkg syscall (darwin-amd64-cgo), const AF_CNT = 21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	for _, f := range fld {
    		for _, n := range f.Names {
    			if n.Name != prefix {
    				n.Name = strings.TrimPrefix(n.Name, prefix)
    			}
    			if n.Name == "_" {
    				// Use exported name instead.
    				n.Name = "Pad_cgo_" + strconv.Itoa(npad)
    				npad++
    			}
    			n.Name = upper(n.Name)
    		}
    	}
    }
    
    // fieldPrefix returns the prefix that should be removed from all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top