Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 296 for 128M (0.03 sec)

  1. src/runtime/memclr_amd64.s

    	JAE	loop_preheader_avx2_huge
    
    loop_avx2:
    	VMOVDQU	Y0, 0(DI)
    	VMOVDQU	Y0, 32(DI)
    	VMOVDQU	Y0, 64(DI)
    	VMOVDQU	Y0, 96(DI)
    	SUBQ	$128, BX
    	ADDQ	$128, DI
    	CMPQ	BX, $128
    	JAE	loop_avx2
    	VMOVDQU  Y0, -32(DI)(BX*1)
    	VMOVDQU  Y0, -64(DI)(BX*1)
    	VMOVDQU  Y0, -96(DI)(BX*1)
    	VMOVDQU  Y0, -128(DI)(BX*1)
    	VZEROUPPER
    	RET
    
    loop_preheader_erms:
    #ifndef hasAVX2
    	CMPB	internal∕cpu·X86+const_offsetX86HasAVX2(SB), $1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. test/ken/divconst.go

    		b = a / 16
    		i64test(a, b, 16)
    		b = a / 20
    		i64test(a, b, 20)
    		b = a / 32
    		i64test(a, b, 32)
    		b = a / 60
    		i64test(a, b, 60)
    		b = a / 64
    		i64test(a, b, 64)
    		b = a / 128
    		i64test(a, b, 128)
    		b = a / 256
    		i64test(a, b, 256)
    		b = a / 16384
    		i64test(a, b, 16384)
    
    		b = a / -1
    		i64test(a, b, -1)
    		b = a / -2
    		i64test(a, b, -2)
    		b = a / -3
    		i64test(a, b, -3)
    		b = a / -4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 9.2K bytes
    - Viewed (0)
  3. src/crypto/tls/ticket.go

    	//
    	//   opaque Extra<0..2^24-1>;
    	//
    	//   struct {
    	//       uint16 version;
    	//       SessionStateType type;
    	//       uint16 cipher_suite;
    	//       uint64 created_at;
    	//       opaque secret<1..2^8-1>;
    	//       Extra extra<0..2^24-1>;
    	//       uint8 ext_master_secret = { 0, 1 };
    	//       uint8 early_data = { 0, 1 };
    	//       CertificateEntry certificate_list<0..2^24-1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/SignedBytesTest.java

        assertThat(SignedBytes.join("", (byte) 1, (byte) 2, (byte) 3)).isEqualTo("123");
        assertThat(SignedBytes.join(",", (byte) -128, (byte) -1)).isEqualTo("-128,-1");
      }
    
      @J2ktIncompatible // b/285319375
      public void testLexicographicalComparator() {
        List<byte[]> ordered =
            Arrays.asList(
                new byte[] {},
                new byte[] {LEAST},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    // any other error is fatal.
    // consumes d.buf iff it returns nil.
    // precondition: must be called with len(d.buf) > 0
    func (d *Decoder) parseHeaderFieldRepr() error {
    	b := d.buf[0]
    	switch {
    	case b&128 != 0:
    		// Indexed representation.
    		// High bit set?
    		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.1
    		return d.parseFieldIndexed()
    	case b&192 == 64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes.go

    	{"BETWEEN_10_MB_AND_64_MB", humanize.MiByte * 10, humanize.MiByte*64 - 1},
    	{"BETWEEN_64_MB_AND_128_MB", humanize.MiByte * 64, humanize.MiByte*128 - 1},
    	{"BETWEEN_128_MB_AND_512_MB", humanize.MiByte * 128, humanize.MiByte*512 - 1},
    	{"GREATER_THAN_512_MB", humanize.MiByte * 512, math.MaxInt64},
    }
    
    // ObjectsHistogramIntervals is the list of all intervals
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_arm64.go

    // license that can be found in the LICENSE file.
    
    package cpu
    
    // CacheLinePadSize is used to prevent false sharing of cache lines.
    // We choose 128 because Apple Silicon, a.k.a. M1, has 128-byte cache line size.
    // It doesn't cost much and is much more future-proof.
    const CacheLinePadSize = 128
    
    func doinit() {
    	options = []option{
    		{Name: "aes", Feature: &ARM64.HasAES},
    		{Name: "pmull", Feature: &ARM64.HasPMULL},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/net/packetconn_test.go

    		defer closer(c2, tt.net, tt.addr1, tt.addr2)
    		c2.LocalAddr()
    		rb2 := make([]byte, 128)
    
    		if _, err := c1.WriteTo(wb, c2.LocalAddr()); err != nil {
    			t.Fatal(err)
    		}
    		if _, _, err := c2.ReadFrom(rb2); err != nil {
    			t.Fatal(err)
    		}
    		if _, err := c2.WriteTo(wb, c1.LocalAddr()); err != nil {
    			t.Fatal(err)
    		}
    		rb1 := make([]byte, 128)
    		if _, _, err := c1.ReadFrom(rb1); err != nil {
    			t.Fatal(err)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

      private static final byte[] VALUES = {LEAST, 127, (byte) 128, (byte) 129, GREATEST};
    
      public void testToInt() {
        assertThat(UnsignedBytes.toInt((byte) 0)).isEqualTo(0);
        assertThat(UnsignedBytes.toInt((byte) 1)).isEqualTo(1);
        assertThat(UnsignedBytes.toInt((byte) 127)).isEqualTo(127);
        assertThat(UnsignedBytes.toInt((byte) -128)).isEqualTo(128);
        assertThat(UnsignedBytes.toInt((byte) -127)).isEqualTo(129);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/runtime/libfuzzer_amd64.s

    // https://github.com/llvm/llvm-project/blob/704d92607d26e696daba596b72cb70effe79a872/compiler-rt/lib/fuzzer/FuzzerValueBitMap.h#L34
    // ValueProfileMap.AddValue() truncates its argument to 16 bits and shifts the
    // PC to the left by log_2(128)=7, which means that only the lowest 16 - 7 bits
    // of the return address matter. String compare hooks use the lowest 12 bits,
    // but take the return address as an argument and thus don't require the
    // indirection through a trampoline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top