Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for __DATA (0.09 sec)

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

    	}
    
    	/* data */
    	if ctxt.LinkMode != LinkExternal {
    		ms = newMachoSeg("__DATA", 20)
    		ms.vaddr = Segdata.Vaddr
    		ms.vsize = Segdata.Length
    		ms.fileoffset = Segdata.Fileoff
    		ms.filesize = Segdata.Filelen
    		ms.prot1 = 3
    		ms.prot2 = 3
    	}
    
    	for _, sect := range Segdata.Sections {
    		machoshbits(ctxt, ms, sect, "__DATA")
    	}
    
    	/* dwarf */
    	if !*FlagW {
    		if ctxt.LinkMode != LinkExternal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    #line 1 "cgo-c-prolog-gccgo"
    #include <stdint.h>
    #include <stdlib.h>
    #include <string.h>
    
    typedef unsigned char byte;
    typedef intptr_t intgo;
    
    struct __go_string {
    	const unsigned char *__data;
    	intgo __length;
    };
    
    typedef struct __go_open_array {
    	void* __values;
    	intgo __count;
    	intgo __capacity;
    } Slice;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		} else {
    			fmt.Fprintf(&b, "\t0,\n")
    		}
    	}
    	// for the last entry, we cannot use 0, otherwise
    	// in case all __cgodebug_data is zero initialized,
    	// LLVM-based gcc will place the it in the __DATA.__common
    	// zero-filled section (our debug/macho doesn't support
    	// this)
    	fmt.Fprintf(&b, "\t1\n")
    	fmt.Fprintf(&b, "};\n")
    
    	// do the same work for floats.
    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