Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 274 for DST (0.02 sec)

  1. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                dstIndex += 2;
                dst[ dstIndex++ ] = this.maxSetupCount;
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved1
                SMBUtil.writeInt2(this.tflags, dst, dstIndex);
                dstIndex += 2;
                SMBUtil.writeInt4(this.timeout, dst, dstIndex);
                dstIndex += 4;
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved2
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    	}
    	if t.tag >= 31 {
    		b |= 0x1f
    		dst = append(dst, b)
    		dst = appendBase128Int(dst, int64(t.tag))
    	} else {
    		b |= uint8(t.tag)
    		dst = append(dst, b)
    	}
    
    	if t.length >= 128 {
    		l := lengthLength(t.length)
    		dst = append(dst, 0x80|byte(l))
    		dst = appendLength(dst, t.length)
    	} else {
    		dst = append(dst, byte(t.length))
    	}
    
    	return dst
    }
    
    type bitStringEncoder BitString
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/aes.go

    	}
    
    	// Make room in dst to append plaintext+overhead.
    	n := len(dst)
    	for cap(dst) < n+len(plaintext)+gcmTagSize {
    		dst = append(dst[:cap(dst)], 0)
    	}
    	dst = dst[:n+len(plaintext)+gcmTagSize]
    
    	// Check delayed until now to make sure len(dst) is accurate.
    	if inexactOverlap(dst[n:], plaintext) {
    		panic("cipher: invalid buffer overlap")
    	}
    
    	outLen := C.size_t(len(plaintext) + gcmTagSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/subr.go

    	// 9. src is unsafe.Pointer and dst is a pointer or uintptr.
    	if src.IsUnsafePtr() && (dst.IsPtr() || dst.IsUintptr()) {
    		return ir.OCONVNOP, ""
    	}
    
    	// 10. src is a slice and dst is an array or pointer-to-array.
    	// They must have same element type.
    	if src.IsSlice() {
    		if dst.IsArray() && types.Identical(src.Elem(), dst.Elem()) {
    			return ir.OSLICE2ARR, ""
    		}
    		if dst.IsPtr() && dst.Elem().IsArray() &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/Encdec.java

         */
    
        public static int enc_uint16be ( short s, byte[] dst, int di ) {
            dst[ di++ ] = (byte) ( ( s >> 8 ) & 0xFF );
            dst[ di ] = (byte) ( s & 0xFF );
            return 2;
        }
    
    
        public static int enc_uint32be ( int i, byte[] dst, int di ) {
            dst[ di++ ] = (byte) ( ( i >> 24 ) & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 16 ) & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 8 ) & 0xFF );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  6. src/image/draw/draw_test.go

    			for i := 0; i < 3; i++ {
    				dst := hgradRed(255).(*image.RGBA).SubImage(r).(Image)
    				// For i != 0, substitute a different-typed dst that will take
    				// us off the fastest code paths. We should still get the same
    				// result, in terms of final pixel RGBA values.
    				switch i {
    				case 1:
    					dst = convertToSlowerRGBA(dst)
    				case 2:
    					dst = convertToSlowestRGBA(dst)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/strconv/ftoa.go

    	// sign
    	if neg {
    		dst = append(dst, '-')
    	}
    
    	// mantissa
    	dst, _ = formatBits(dst, mant, 10, false, true)
    
    	// p
    	dst = append(dst, 'p')
    
    	// ±exponent
    	exp -= int(flt.mantbits)
    	if exp >= 0 {
    		dst = append(dst, '+')
    	}
    	dst, _ = formatBits(dst, uint64(exp), 10, exp < 0, true)
    
    	return dst
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

                dstIndex += 2;
                dst[dstIndex++] = maxSetupCount;
                dst[dstIndex++] = (byte)0x00;           // Reserved1
                writeInt2( flags, dst, dstIndex );
                dstIndex += 2;
                writeInt4( timeout, dst, dstIndex );
                dstIndex += 4;
                dst[dstIndex++] = (byte)0x00;           // Reserved2
                dst[dstIndex++] = (byte)0x00;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

        static void writeInt2( int val, byte[] dst, int dstIndex ) {
            dst[dstIndex++] = (byte)(( val >> 8 ) & 0xFF );
            dst[dstIndex] = (byte)( val & 0xFF );
        }
        static void writeInt4( int val, byte[] dst, int dstIndex ) {
            dst[dstIndex++] = (byte)(( val >> 24 ) & 0xFF );
            dst[dstIndex++] = (byte)(( val >> 16 ) & 0xFF );
            dst[dstIndex++] = (byte)(( val >> 8 ) & 0xFF );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NameServicePacket.java

    
        static void writeInt2 ( int val, byte[] dst, int dstIndex ) {
            dst[ dstIndex++ ] = (byte) ( ( val >> 8 ) & 0xFF );
            dst[ dstIndex ] = (byte) ( val & 0xFF );
        }
    
    
        static void writeInt4 ( int val, byte[] dst, int dstIndex ) {
            dst[ dstIndex++ ] = (byte) ( ( val >> 24 ) & 0xFF );
            dst[ dstIndex++ ] = (byte) ( ( val >> 16 ) & 0xFF );
            dst[ dstIndex++ ] = (byte) ( ( val >> 8 ) & 0xFF );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
Back to top