Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 120 for 128 (0.04 seconds)

  1. api/go1.3.txt

    pkg syscall (netbsd-386), const MAP_FIXED ideal-int
    pkg syscall (netbsd-386), const MAP_HASSEMAPHORE = 512
    pkg syscall (netbsd-386), const MAP_HASSEMAPHORE ideal-int
    pkg syscall (netbsd-386), const MAP_INHERIT = 128
    pkg syscall (netbsd-386), const MAP_INHERIT ideal-int
    pkg syscall (netbsd-386), const MAP_INHERIT_COPY = 1
    pkg syscall (netbsd-386), const MAP_INHERIT_COPY ideal-int
    pkg syscall (netbsd-386), const MAP_INHERIT_DEFAULT = 1
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Click Count (0)
  2. lib/fips140/v1.0.0-c2097c7c.zip

    96(DX) PSHUFB X15, X6 MOVOU X7, 112(DX) PSHUFB X15, X7 MOVOU X0, (SP) MOVOU X1, 16(SP) MOVOU X2, 32(SP) MOVOU X3, 48(SP) MOVOU X4, 64(SP) MOVOU X5, 80(SP) MOVOU X6, 96(SP) MOVOU X7, 112(SP) LEAQ 128(SI), SI LEAQ 128(DX), DX gcmAesEncOctetsLoop: CMPQ R9, $0x80 JB gcmAesEncOctetsEnd SUBQ $0x80, R9 MOVOU 128(SP), X0 MOVOU 144(SP), X1 MOVOU 160(SP), X2 MOVOU 176(SP), X3 MOVOU 192(SP), X4 MOVOU 208(SP), X5 MOVOU 224(SP), X6 MOVOU 240(SP), X7 MOVOU (SP), X11 PSHUFD $0x4e, X11, X12 PXOR X11, X12 MOVOU (DI),...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/base/Utf8Test.java

        } catch (IllegalArgumentException expected) {
          assertThat(expected)
              .hasMessageThat()
              .isEqualTo("Unpaired surrogate at index " + invalidCodePointIndex);
        }
      }
    
      // 128 - [chars 0x0000 to 0x007f]
      private static final long ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS = 0x007f - 0x0000 + 1;
    
      // 128
      private static final long EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT =
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  4. internal/ioutil/ioutil.go

    	"github.com/minio/minio/internal/bpool"
    	"github.com/minio/minio/internal/disk"
    )
    
    // Block sizes constant.
    const (
    	SmallBlock  = 32 * humanize.KiByte  // Default r/w block size for smaller objects.
    	MediumBlock = 128 * humanize.KiByte // Default r/w block size for medium sized objects.
    	LargeBlock  = 1 * humanize.MiByte   // Default r/w block size for normal objects.
    )
    
    // AlignedBytePool is a pool of fixed size aligned blocks
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Feb 18 16:25:55 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  5. lib/fips140/v1.1.0-rc1.zip

    V11 VXORV V4, V12, V12 VXORV V5, V13, V13 VXORV V6, V14, V14 VXORV V7, V15, V15 VMOVQ V8, (R4) VMOVQ V9, 16(R4) VMOVQ V10, 32(R4) VMOVQ V11, 48(R4) VMOVQ V12, 64(R4) VMOVQ V13, 80(R4) VMOVQ V14, 96(R4) VMOVQ V15, 112(R4) SGTU $128, R7, R8 ADDV $128, R5 ADDV $128, R6 ADDV $128, R4 BEQ R8, xor_128_lsx_loop BEQ R7, end xor_64_lsx_check: SGTU $64, R7, R8 BNE R8, xor_32_lsx_check xor_64_lsx: SUBV $64, R7 VMOVQ (R5), V0 VMOVQ 16(R5), V1 VMOVQ 32(R5), V2 VMOVQ 48(R5), V3 VMOVQ (R6), V4 VMOVQ 16(R6), V5 VMOVQ...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java

            logger.info("");
    
            MavenExecutionResult result = session.getResult();
    
            List<MavenProject> projects = session.getProjects();
    
            StringBuilder buffer = new StringBuilder(128);
    
            for (MavenProject project : projects) {
                buffer.append(project.getName());
                buffer.append(' ');
    
                if (!isSingleVersion) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Dec 13 15:40:45 GMT 2024
    - 17.5K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/primitives/Longs.java

       * class.
       */
      static final class AsciiDigits {
        private AsciiDigits() {}
    
        private static final byte[] asciiDigits;
    
        static {
          byte[] result = new byte[128];
          Arrays.fill(result, (byte) -1);
          for (int i = 0; i < 10; i++) {
            result['0' + i] = (byte) i;
          }
          for (int i = 0; i < 26; i++) {
            result['A' + i] = (byte) (10 + i);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Oct 22 18:14:49 GMT 2025
    - 29K bytes
    - Click Count (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt

            // This is a multibyte value. Read 7 bits at a time.
            var result = prefixMask
            var shift = 0
            while (true) {
              val b = readByte()
              if (b and 0x80 != 0) { // Equivalent to (b >= 128) since b is in [0..255].
                result += b and 0x7f shl shift
                shift += 7
              } else {
                result += b shl shift // Last byte.
                break
              }
            }
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Mon May 05 16:01:00 GMT 2025
    - 22.4K bytes
    - Click Count (0)
  9. src/bytes/bytes.go

    }
    
    // asciiSet is a 32-byte value, where each bit represents the presence of a
    // given ASCII character in the set. The 128-bits of the lower 16 bytes,
    // starting with the least-significant bit of the lowest word to the
    // most-significant bit of the highest word, map to the full range of all
    // 128 ASCII characters. The 128-bits of the upper 16 bytes will be zeroed,
    // ensuring that any non-ASCII character will be reported as not in the set.
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Sep 16 16:42:15 GMT 2025
    - 35.5K bytes
    - Click Count (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

            }
            this.maxIntermediateCas = maxIntermediateCas
          }
    
        /**
         * Configure the certificate to generate a 256-bit ECDSA key, which provides about 128 bits of
         * security. ECDSA keys are noticeably faster than RSA keys.
         *
         * This is the default configuration and has been since this API was introduced in OkHttp
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 21.6K bytes
    - Click Count (0)
Back to Top