Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,797 for GoString (0.22 sec)

  1. src/cmd/cgo/internal/test/callback_c.c

    }
    
    int
    returnAfterGrowFromGo(void)
    {
    	extern int goReturnVal(void);
    	return goReturnVal();
    }
    
    void
    callGoWithString(void)
    {
    	extern void goWithString(GoString);
    	const char *str = "string passed from C to Go";
    	goWithString((GoString){str, strlen(str)});
    C
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 933 bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    C.sizeof_struct_stat.
    
    A C function may be declared in the Go file with a parameter type of
    the special name _GoString_. This function may be called with an
    ordinary Go string value. The string length, and a pointer to the
    string contents, may be accessed by calling the C functions
    
    	size_t _GoStringLen(_GoString_ s);
    	const char *_GoStringPtr(_GoString_ s);
    
    These functions are only available in the preamble, not in other C
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. api/go1.10.txt

    pkg debug/macho, method (RelocTypeARM) GoString() string
    pkg debug/macho, method (RelocTypeARM) String() string
    pkg debug/macho, method (RelocTypeARM64) GoString() string
    pkg debug/macho, method (RelocTypeARM64) String() string
    pkg debug/macho, method (RelocTypeGeneric) GoString() string
    pkg debug/macho, method (RelocTypeGeneric) String() string
    pkg debug/macho, method (RelocTypeX86_64) GoString() string
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  4. api/go1.6.txt

    pkg debug/elf, const SHF_COMPRESSED = 2048
    pkg debug/elf, const SHF_COMPRESSED SectionFlag
    pkg debug/elf, method (CompressionType) GoString() string
    pkg debug/elf, method (CompressionType) String() string
    pkg debug/elf, method (R_MIPS) GoString() string
    pkg debug/elf, method (R_MIPS) String() string
    pkg debug/elf, type Chdr32 struct
    pkg debug/elf, type Chdr32 struct, Addralign uint32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  5. misc/cgo/gmp/gmp.go

    	return nil
    }
    
    // String returns the decimal representation of z.
    func (z *Int) String() string {
    	if z == nil {
    		return "nil"
    	}
    	z.doinit()
    	p := C.mpz_get_str(nil, 10, &z.i[0])
    	s := C.GoString(p)
    	C.free(unsafe.Pointer(p))
    	return s
    }
    
    func (z *Int) destroy() {
    	if z.init {
    		C.mpz_clear(&z.i[0])
    	}
    	z.init = false
    }
    
    /*
     * arithmetic
     */
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  6. api/go1.7.txt

    pkg debug/elf, const R_390_TLS_LOAD = 37
    pkg debug/elf, const R_390_TLS_LOAD R_390
    pkg debug/elf, const R_390_TLS_TPOFF = 56
    pkg debug/elf, const R_390_TLS_TPOFF R_390
    pkg debug/elf, method (R_390) GoString() string
    pkg debug/elf, method (R_390) String() string
    pkg debug/elf, type R_390 int
    pkg encoding/json, method (*Encoder) SetEscapeHTML(bool)
    pkg encoding/json, method (*Encoder) SetIndent(string, string)
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  7. api/go1.17.txt

    pkg time, const Layout = "01/02 03:04:05PM '06 -0700"
    pkg time, const Layout ideal-string
    pkg time, func UnixMicro(int64) Time
    pkg time, func UnixMilli(int64) Time
    pkg time, method (Time) GoString() string
    pkg time, method (Time) IsDST() bool
    pkg time, method (Time) UnixMicro() int64
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
  8. api/go1.19.txt

    pkg debug/elf, const R_LARCH_TLS_TPREL32 R_LARCH #46229
    pkg debug/elf, const R_LARCH_TLS_TPREL64 = 11 #46229
    pkg debug/elf, const R_LARCH_TLS_TPREL64 R_LARCH #46229
    pkg debug/elf, method (R_LARCH) GoString() string #46229
    pkg debug/elf, method (R_LARCH) String() string #46229
    pkg debug/elf, type R_LARCH int #46229
    pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY = 2 #51868
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  9. api/go1.5.txt

    pkg debug/dwarf, method (*LineReader) SeekPC(uint64, *LineEntry) error
    pkg debug/dwarf, method (*LineReader) Tell() LineReaderPos
    pkg debug/dwarf, method (*Reader) AddressSize() int
    pkg debug/dwarf, method (Class) GoString() string
    pkg debug/dwarf, method (Class) String() string
    pkg debug/dwarf, type Class int
    pkg debug/dwarf, type Field struct, Class Class
    pkg debug/dwarf, type LineEntry struct
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  10. api/go1.21.txt

    pkg debug/elf, const DF_1_WEAKFILTER DynFlag1 #56887
    pkg debug/elf, const R_PPC64_REL24_P9NOTOC = 124 #60348
    pkg debug/elf, const R_PPC64_REL24_P9NOTOC R_PPC64 #60348
    pkg debug/elf, method (DynFlag1) GoString() string #56887
    pkg debug/elf, method (DynFlag1) String() string #56887
    pkg debug/elf, method (*File) DynValue(DynTag) ([]uint64, error) #56892
    pkg debug/elf, type DynFlag1 uint32 #56887
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
Back to top