Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for chars (0.06 sec)

  1. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }
    	SYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }
    	SYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }
    	SYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_netbsd_arm.go

    	SYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }
    	SYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }
    	SYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }
    	SYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_386.go

    	SYS_REBOOT                   = 55  // { int reboot(int opt); }
    	SYS_REVOKE                   = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, \
    	SYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, \
    	SYS_UMASK                    = 60  // { int umask(int newmask); } umask umask_args \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_REVOKE                   = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }
    	SYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }
    	SYS_UMASK                    = 60  // { int umask(int newmask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_openbsd_amd64.go

    	SYS_REVOKE         = 56  // { int sys_revoke(const char *path); }
    	SYS_SYMLINK        = 57  // { int sys_symlink(const char *path, \
    	SYS_READLINK       = 58  // { int sys_readlink(const char *path, char *buf, \
    	SYS_EXECVE         = 59  // { int sys_execve(const char *path, \
    	SYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }
    	SYS_CHROOT         = 61  // { int sys_chroot(const char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go

    	SYS_REVOKE         = 56  // { int sys_revoke(const char *path); }
    	SYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }
    	SYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }
    	SYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }
    	SYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/ptr_test.go

    		c: `#include <stdlib.h>
    		    char **f14a() { return malloc(sizeof(char*)); }
    		    void f14b(char **p) {}`,
    		body:      `p := C.f14a(); *p = new(C.char); C.f14b(p)`,
    		fail:      true,
    		expensive: true,
    	},
    	{
    		// Storing a pinned Go pointer into C memory should succeed.
    		name: "barrierpinnedok",
    		c: `#include <stdlib.h>
    		    char **f14a2() { return malloc(sizeof(char*)); }
    		    void f14b2(char **p) {}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/goboringcrypto.h

    	GO_NID_sha384 = 673,
    	GO_NID_sha512 = 674,
    };
    
    // #include <openssl/sha.h>
    typedef struct GO_SHA_CTX { char data[96]; } GO_SHA_CTX;
    int _goboringcrypto_SHA1_Init(GO_SHA_CTX*);
    int _goboringcrypto_SHA1_Update(GO_SHA_CTX*, const void*, size_t);
    int _goboringcrypto_SHA1_Final(uint8_t*, GO_SHA_CTX*);
    
    typedef struct GO_SHA256_CTX { char data[48+64]; } GO_SHA256_CTX;
    int _goboringcrypto_SHA224_Init(GO_SHA256_CTX*);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/chan_test.go

    	N := int(1e5)
    	if testing.Short() {
    		N /= 10
    	}
    	// There are 4 goroutines that send N values on each of the chans,
    	// + 4 goroutines that receive N values on each of the chans,
    	// + 1 goroutine that sends N values on each of the chans in a single select,
    	// + 1 goroutine that receives N values on each of the chans in a single select.
    	// All these sends, receives and selects interact chaotically at runtime,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }
    	SYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }
    	SYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }
    	SYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top