Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,082 for ulong (0.09 sec)

  1. src/syscall/zsysnum_freebsd_386.go

    	SYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, \
    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS__UMTX_LOCK               = 434 // { int _umtx_lock(struct umtx *umtx); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

            return 8;
        }
    
    
        public static long dec_uint64be ( byte[] src, int si ) {
            long l;
            l = dec_uint32be(src, si) & 0xFFFFFFFFL;
            l <<= 32L;
            l |= dec_uint32be(src, si + 4) & 0xFFFFFFFFL;
            return l;
        }
    
    
        public static long dec_uint64le ( byte[] src, int si ) {
            long l;
            l = dec_uint32le(src, si + 4) & 0xFFFFFFFFL;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            } while( len > 0 );
        }
        public long getFilePointer() throws SmbException {
            return fp;
        }
        public void seek( long pos ) throws SmbException {
            fp = pos;
        }
        public long length() throws SmbException {
            return file.length();
        }
        public void setLength( long newLength ) throws SmbException {
            // ensure file is open
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_arm.go

    	SYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, \
    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS__UMTX_LOCK               = 434 // { int _umtx_lock(struct umtx *umtx); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/Encdec.java

            return 8;
        }
        public static long dec_uint64be( byte[] src, int si )
        {
            long l;
            l = dec_uint32be( src, si ) & 0xFFFFFFFFL;
            l <<= 32L;
            l |= dec_uint32be( src, si + 4 ) & 0xFFFFFFFFL;
            return l;
        }
        public static long dec_uint64le( byte[] src, int si )
        {
            long l;
            l = dec_uint32le( src, si + 4 ) & 0xFFFFFFFFL;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/KerberosTest.java

            long start = System.currentTimeMillis() / 1000 * 1000;
            // this is not too great as it depends on timing/clockskew
            // first we need to obtain a ticket, therefor need valid credentials
            // then we need to wait until the ticket is expired
            int wait = 10 * 1000;
            long princExp = start + ( wait / 2 );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbCopyUtil.java

                          SmbConstants.FILE_NO_SHARE) ) {
                    long mtime = src.lastModified();
                    long ctime = src.createTime();
                    long atime = src.lastAccess();
                    int i = 0;
                    long off = 0L;
                    while ( true ) {
                        int read = fis.read(b[ i ]);
                        synchronized ( w ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }
    	SYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_netbsd_arm.go

    	SYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }
    	SYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }
    	SYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    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