Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,182 for gbyte (0.06 sec)

  1. src/strconv/ftoa.go

    	// dd or ddd
    	switch {
    	case exp < 10:
    		dst = append(dst, '0', byte(exp)+'0')
    	case exp < 100:
    		dst = append(dst, byte(exp/10)+'0', byte(exp%10)+'0')
    	default:
    		dst = append(dst, byte(exp/100)+'0', byte(exp/10)%10+'0', byte(exp%10)+'0')
    	}
    
    	return dst
    }
    
    // %f: -ddddddd.ddddd
    func fmtF(dst []byte, neg bool, d decimalSlice, prec int) []byte {
    	// sign
    	if neg {
    		dst = append(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)
  2. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

                }
            }
        }
    
        public byte[] readAsByteArray() {
            byte[] buf = new byte[totalBytesUnread()];
            input.readImpl(buf, 0, buf.length);
            return buf;
        }
    
        public List<byte[]> readAsListOfByteArrays() {
            List<byte[]> listOfByteArrays = new ArrayList<byte[]>(chunks.size() + 1);
            byte[] buf;
            while ((buf = input.readNextBuffer()) != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/rsa.go

    	return cryptRSA(pub.withKey, C.GO_RSA_PKCS1_PADDING, nil, nil, nil, 0, 0, encryptInit, encrypt, msg)
    }
    
    func DecryptRSANoPadding(priv *PrivateKeyRSA, ciphertext []byte) ([]byte, error) {
    	return cryptRSA(priv.withKey, C.GO_RSA_NO_PADDING, nil, nil, nil, 0, 0, decryptInit, decrypt, ciphertext)
    }
    
    func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializer.java

            private static final byte SIMPLE = (byte) 1;
            private static final byte COMPLEX_ONE_ARG = (byte) 2;
            private static final byte COMPLEX_MULTIPLE_ARGS = (byte) 3;
            private static final byte EMPTY_TOKENS = (byte) 4;
            private static final byte EMPTY_ARGS = (byte) 5;
            private static final byte COMMA = (byte) 6;
            private static final byte LEFT_PAREN = (byte) 7;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    //
    // The shared key must be kept secret.
    func Encapsulate(encapsulationKey []byte) (ciphertext, sharedKey []byte, err error) {
    	// The actual logic is in a separate function to outline this allocation.
    	var cc [CiphertextSize]byte
    	return encapsulate(&cc, encapsulationKey)
    }
    
    func encapsulate(cc *[CiphertextSize]byte, encapsulationKey []byte) (ciphertext, sharedKey []byte, err error) {
    	if len(encapsulationKey) != EncapsulationKeySize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. src/syscall/ztypes_linux_arm64.go

    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. src/database/sql/convert_test.go

    		{s: int64(123), d: &scanbytes, wantbytes: []byte("123")},
    		{s: uint8(123), d: &scanbytes, wantbytes: []byte("123")},
    		{s: uint16(123), d: &scanbytes, wantbytes: []byte("123")},
    		{s: uint32(123), d: &scanbytes, wantbytes: []byte("123")},
    		{s: uint64(123), d: &scanbytes, wantbytes: []byte("123")},
    		{s: 1.5, d: &scanbytes, wantbytes: []byte("1.5")},
    
    		// To RawBytes
    		{s: nil, d: &scanraw, wantraw: nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. src/encoding/asn1/marshal.go

    func makeUTF8String(s string) encoder {
    	return stringEncoder(s)
    }
    
    func appendTwoDigits(dst []byte, v int) []byte {
    	return append(dst, byte('0'+(v/10)%10), byte('0'+v%10))
    }
    
    func appendFourDigits(dst []byte, v int) []byte {
    	return append(dst,
    		byte('0'+(v/1000)%10),
    		byte('0'+(v/100)%10),
    		byte('0'+(v/10)%10),
    		byte('0'+v%10))
    }
    
    func outsideUTCRange(t time.Time) bool {
    	year := t.Year()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/Utf8Test.java

      private static final long EXPECTED_THREE_BYTE_ROUNDTRIPPABLE_COUNT =
          // All one byte characters
          (long) Math.pow(EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT, 3)
              +
              // One two byte character and a one byte character
              2 * TWO_BYTE_ROUNDTRIPPABLE_CHARACTERS * ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS
              +
              // Three byte characters
              THREE_BYTE_ROUNDTRIPPABLE_CHARACTERS;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    		}
    		sort.Strings(termHashes)
    		if !first {
    			w.byte(';')
    		}
    		w.string(strings.Join(termHashes, "|"))
    	}
    }
    
    func (w *typeWriter) typeList(list []Type) {
    	w.byte('[')
    	for i, typ := range list {
    		if i > 0 {
    			w.byte(',')
    		}
    		w.typ(typ)
    	}
    	w.byte(']')
    }
    
    func (w *typeWriter) tParamList(list []*TypeParam) {
    	w.byte('[')
    	var prev Type
    	for i, tpar := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top