Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for B8 (0.23 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VUADDW	V9.B8, V12.H8, V14.B8                            // ERROR "invalid arrangement"
    	VUADDW2	V9.B8, V12.S4, V14.S4                            // ERROR "operand mismatch"
    	VUMAX	V1.D2, V2.D2, V3.D2                              // ERROR "invalid arrangement"
    	VUMIN	V1.D2, V2.D2, V3.D2                              // ERROR "invalid arrangement"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	VBIT	V21.B16, V25.B16, V4.B16        // 241fb56e
    	VBSL	V23.B16, V3.B16, V7.B16         // 671c776e
    	VCMTST	V2.B8, V29.B8, V2.B8            // a28f220e
    	VCMTST	V2.D2, V23.D2, V3.D2            // e38ee24e
    	VSUB	V2.B8, V30.B8, V30.B8           // de87222e
    	VUZP1	V0.B8, V30.B8, V1.B8            // c11b000e
    	VUZP1	V1.B16, V29.B16, V2.B16         // a21b014e
    	VUZP1	V2.H4, V28.H4, V3.H4            // 831b420e
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

        byte b3 = readAndCheckByte();
        byte b4 = readAndCheckByte();
        byte b5 = readAndCheckByte();
        byte b6 = readAndCheckByte();
        byte b7 = readAndCheckByte();
        byte b8 = readAndCheckByte();
    
        return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1);
      }
    
      /**
       * Reads a {@code float} as specified by {@link DataInputStream#readFloat()}, except using
       * little-endian byte order.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 17 14:35:11 GMT 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	VCNT V13.B8, V11.B8                                         // ab59200e
    	VMOV V31.B[15], V18                                         // f2071f5e
    	VDUP V31.B[15], V18                                         // f2071f5e
    	VDUP V31.B[13], V20.B16                                     // f4071b4e
    	VEOR V4.B8, V18.B8, V7.B8                                   // 471e242e
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  5. docs/sts/tls.md

            Subject: CN = consoleAdmin
            Subject Public Key Info:
                Public Key Algorithm: ED25519
                    ED25519 Public-Key:
                    pub:
                        5a:91:87:b8:77:fe:d4:af:d9:c7:c7:ce:55:ae:74:
                        aa:f3:f1:fe:04:63:9b:cb:20:97:61:97:90:94:fa:
                        12:8b
            X509v3 extensions:
                X509v3 Key Usage: critical
                    Digital Signature
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6K bytes
    - Viewed (0)
  6. src/archive/zip/reader_test.go

    0000000 50 4b 03 04 14 00 00 00 08 00 08 03 64 3c f9 f4
    0000010 89 64 48 01 00 00 b8 01 00 00 07 00 00 00 72 2f
    0000020 72 2e 7a 69 70 00 25 00 da ff 50 4b 03 04 14 00
    0000030 00 00 08 00 08 03 64 3c f9 f4 89 64 48 01 00 00
    0000040 b8 01 00 00 07 00 00 00 72 2f 72 2e 7a 69 70 00
    0000050 2f 00 d0 ff 00 25 00 da ff 50 4b 03 04 14 00 00
    0000060 00 08 00 08 03 64 3c f9 f4 89 64 48 01 00 00 b8
    0000070 01 00 00 07 00 00 00 72 2f 72 2e 7a 69 70 00 2f
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arm64.go

    			a.Index = arm64.REG_LSL + Rnum
    		default:
    			return errors.New("unsupported general register extension type: " + ext)
    
    		}
    	} else if reg <= arm64.REG_V31 && reg >= arm64.REG_V0 {
    		switch ext {
    		case "B8":
    			if isIndex {
    				return errors.New("invalid register extension")
    			}
    			a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_8B & 15) << 5)
    		case "B16":
    			if isIndex {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Longs.java

       * order; equivalent to {@code Longs.fromByteArray(new byte[] {b1, b2, b3, b4, b5, b6, b7, b8})}.
       *
       * @since 7.0
       */
      public static long fromBytes(
          byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, byte b8) {
        return (b1 & 0xFFL) << 56
            | (b2 & 0xFFL) << 48
            | (b3 & 0xFFL) << 40
            | (b4 & 0xFFL) << 32
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 28.7K bytes
    - Viewed (0)
  9. docs/ru/docs/async.md

    Пользователей очень много, но ваш сервер всё равно вынужден ждать 🕙 запросы по их слабому интернет-соединению.
    
    Потом снова ждать 🕙, пока вернётся ответ.
    
    <!--https://forum.wordreference.com/threads/%D0%9D%D0%BE-%D0%B5%D1%81%D0%BB%D0%B8.3258695/-->
    Это ожидание 🕙 измеряется микросекундами, но если всё сложить, то набегает довольно много времени.
    
    Вот почему есть смысл использовать асинхронное ⏸🔀⏯ программирование при построении веб-API.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 39.9K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    ../test.txt  s:http h:www.example.com p:/test.txt
    ../aaa/test.txt  s:http h:www.example.com p:/aaa/test.txt
    ../../test.txt  s:http h:www.example.com p:/test.txt
    \u4E2D/test.txt  s:http h:www.example.com p:/%E4%B8%AD/test.txt
    http://www.example2.com  s:http h:www.example2.com p:/
    //www.example2.com  s:http h:www.example2.com p:/
    
    # Based on http://trac.webkit.org/browser/trunk/LayoutTests/fast/url/host.html
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 14.3K bytes
    - Viewed (0)
Back to top