Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _GoBytes_ (0.18 sec)

  1. src/cmd/cgo/gcc.go

    			// which rounds up to 2 pointers after alignment.
    			t.Go = c.string
    			t.Size = c.ptrSize * 2
    			t.Align = c.ptrSize
    			break
    		}
    		if dt.Name == "_GoBytes_" {
    			// Special C name for Go []byte type.
    			// Knows slice layout used by compilers: pointer, length, cap.
    			t.Go = c.Ident("[]byte")
    			t.Size = c.ptrSize + 4 + 4
    			t.Align = c.ptrSize
    			break
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top