Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for sI (0.03 sec)

  1. src/main/java/jcifs/util/Encdec.java

         */
    
        public static short dec_uint16be ( byte[] src, int si ) {
            return (short) ( ( ( src[ si ] & 0xFF ) << 8 ) | ( src[ si + 1 ] & 0xFF ) );
        }
    
    
        public static int dec_uint32be ( byte[] src, int si ) {
            return ( ( src[ si ] & 0xFF ) << 24 ) | ( ( src[ si + 1 ] & 0xFF ) << 16 ) | ( ( src[ si + 2 ] & 0xFF ) << 8 ) | ( src[ si + 3 ] & 0xFF );
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  2. src/runtime/memmove_amd64.s

    	RET
    move_129through256:
    	MOVOU	(SI), X0
    	MOVOU	16(SI), X1
    	MOVOU	32(SI), X2
    	MOVOU	48(SI), X3
    	MOVOU	64(SI), X4
    	MOVOU	80(SI), X5
    	MOVOU	96(SI), X6
    	MOVOU	112(SI), X7
    	MOVOU	-128(SI)(BX*1), X8
    	MOVOU	-112(SI)(BX*1), X9
    	MOVOU	-96(SI)(BX*1), X10
    	MOVOU	-80(SI)(BX*1), X11
    	MOVOU	-64(SI)(BX*1), X12
    	MOVOU	-48(SI)(BX*1), X13
    	MOVOU	-32(SI)(BX*1), X14
    	MOVOU	-16(SI)(BX*1), X15
    	MOVOU	X0, (DI)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  3. src/crypto/sha1/sha1block_amd64.s

    
    // Registers are cyclically rotated DX -> AX -> DI -> SI -> BX -> CX
    #define CALC_0 \
    	MOVL SI, BX \ // Precalculating first round
    	RORXL $2, SI, SI \
    	ANDNL AX, BX, BP \
    	ANDL DI, BX \
    	XORL BP, BX \
    	CALC_F1_PRE(0x0,CX,BX,DI,DX) \
    	PRECALC_0(0x80) \
    	CALC_F1_POST(CX,SI,DX)
    
    #define CALC_1 \
    	CALC_F1_PRE(0x4,DX,CX,SI,AX) \
    	PRECALC_1(0x80) \
    	CALC_F1_POST(DX,BX,AX)
    
    #define CALC_2 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/Encdec.java

        public static short dec_uint16be( byte[] src, int si )
        {
            return (short)(((src[si] & 0xFF) << 8) | (src[si + 1] & 0xFF));
        }
        public static int dec_uint32be( byte[] src, int si )
        {
            return ((src[si] & 0xFF) << 24) | ((src[si + 1] & 0xFF) << 16) |
                   ((src[si + 2] & 0xFF) << 8) | (src[si + 3] & 0xFF);
        }
        public static short dec_uint16le( byte[] src, int si )
        {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat_amd64.s

    	// Add back carry flags and return
    	ADCXQ SI, BX
    	ADOXQ SI, BX
    	MOVQ  BX, c+24(FP)
    	RET
    
    // func addMulVVW1536(z *uint, x *uint, y uint) (c uint)
    // Requires: ADX, BMI2
    TEXT ·addMulVVW1536(SB), $0-32
    	CMPB ·supportADX+0(SB), $0x01
    	JEQ  adx
    	MOVQ z+0(FP), CX
    	MOVQ x+8(FP), BX
    	MOVQ y+16(FP), SI
    	XORQ DI, DI
    
    	// Iteration 0
    	MOVQ (BX), AX
    	MULQ SI
    	ADDQ (CX), AX
    	ADCQ $0x00, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. src/encoding/base64/base64.go

    				// not enough padding
    				return si, 0, CorruptInputError(len(src))
    			}
    			if rune(src[si]) != enc.padChar {
    				// incorrect padding
    				return si, 0, CorruptInputError(si - 1)
    			}
    
    			si++
    		}
    
    		// skip over newlines
    		for si < len(src) && (src[si] == '\n' || src[si] == '\r') {
    			si++
    		}
    		if si < len(src) {
    			// trailing garbage
    			err = CorruptInputError(si)
    		}
    		dlen = j
    		break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin_amd64.s

    	MOVL	timebase<>+machTimebaseInfo_numer(SB), SI
    	MOVL	timebase<>+machTimebaseInfo_denom(SB), DI // atomic read
    	TESTL	DI, DI
    	JNE	initialized
    
    	SUBQ	$(machTimebaseInfo__size+15)/16*16, SP
    	MOVQ	SP, DI
    	CALL	libc_mach_timebase_info(SB)
    	MOVL	machTimebaseInfo_numer(SP), SI
    	MOVL	machTimebaseInfo_denom(SP), DI
    	ADDQ	$(machTimebaseInfo__size+15)/16*16, SP
    
    	MOVL	SI, timebase<>+machTimebaseInfo_numer(SB)
    	MOVL	DI, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SIDCacheImpl.java

                break;
            default:
                throw new SmbException(rpc.retval, false);
            }
    
            for ( int si = 0; si < sids.length; si++ ) {
                SID out = sids[ si ].unwrap(SID.class);
                LsarTranslatedName resp = rpc.names.names[ si ];
                out.domainName = null;
                switch ( resp.sid_type ) {
                case jcifs.SID.SID_TYPE_USER:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_amd64.s

    	MOVQ	tgid+0(FP), DI
    	MOVQ	tid+8(FP), SI
    	MOVQ	sig+16(FP), DX
    	MOVL	$SYS_tgkill, AX
    	SYSCALL
    	RET
    
    TEXT runtime·setitimer(SB),NOSPLIT,$0-24
    	MOVL	mode+0(FP), DI
    	MOVQ	new+8(FP), SI
    	MOVQ	old+16(FP), DX
    	MOVL	$SYS_setittimer, AX
    	SYSCALL
    	RET
    
    TEXT runtime·timer_create(SB),NOSPLIT,$0-28
    	MOVL	clockid+0(FP), DI
    	MOVQ	sevp+8(FP), SI
    	MOVQ	timerid+16(FP), DX
    	MOVL	$SYS_timer_create, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SID.java

            ArrayList list = new ArrayList(sids.length);
            int si;
    
    synchronized (sid_cache) {
            for (si = 0; si < length; si++) {
                SID sid = (SID)sid_cache.get(sids[offset + si]);
                if (sid != null) {
                    sids[offset + si].type = sid.type;
                    sids[offset + si].domainName = sid.domainName;
                    sids[offset + si].acctName = sid.acctName;
                } else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
Back to top