Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Di (0.14 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/aes_avx512f.s

    	VAESENC 7(SI)(DI*8), Y20, Y27                      // 62625d20dc9cfe07000000 or 6262dd20dc9cfe07000000
    	VAESENC -15(R14), Y20, Y27                         // 62425d20dc9ef1ffffff or 6242dd20dc9ef1ffffff
    	VAESENC Z12, Z16, Z21                              // 62c27d40dcec or 62c2fd40dcec
    	VAESENC Z27, Z16, Z21                              // 62827d40dceb or 6282fd40dceb
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 29K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

            dst[ di++ ] = (byte) ( s & 0xFF );
            dst[ di ] = (byte) ( ( s >> 8 ) & 0xFF );
            return 2;
        }
    
    
        public static int enc_uint32le ( int i, byte[] dst, int di ) {
            dst[ di++ ] = (byte) ( i & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 8 ) & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 16 ) & 0xFF );
            dst[ di ] = (byte) ( ( i >> 24 ) & 0xFF );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/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);
            dst[di] = (byte)(i & 0xFF);
            return 4;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  4. docs/it/docs/index.md

    * Documenterà tutto con OpenAPI, che può essere usato per:
        * Sistemi di documentazione interattivi.
        * Sistemi di generazione di codice dal lato client, per molti linguaggi.
    * Fornirà 2 interfacce di documentazione dell'API interattive.
    
    ---
    
    Questa è solo la punta dell'iceberg, ma dovresti avere già un'idea di come il tutto funzioni.
    
    Prova a cambiare questa riga di codice:
    
    ```Python
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  5. cmd/erasure.go

    			di.DrivePath = info.MountPath
    			di.TotalSpace = info.Total
    			di.UsedSpace = info.Used
    			di.AvailableSpace = info.Free
    			di.UUID = info.ID
    			di.Major = info.Major
    			di.Minor = info.Minor
    			di.RootDisk = info.RootDisk
    			di.Healing = info.Healing
    			di.Scanning = info.Scanning
    			di.State = diskErrToDriveState(err)
    			di.FreeInodes = info.FreeInodes
    			di.UsedInodes = info.UsedInodes
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 16K bytes
    - Viewed (1)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi.s

    	VPERMB 7(SI)(DI*4), X20, K1, X23                   // 62e25d018dbcbe07000000
    	VPERMB -7(DI)(R8*2), X20, K1, X23                  // 62a25d018dbc47f9ffffff
    	VPERMB X26, X2, K1, X23                            // 62826d098dfa
    	VPERMB X19, X2, K1, X23                            // 62a26d098dfb
    	VPERMB X0, X2, K1, X23                             // 62e26d098df8
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 28.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SID.java

            int di = 0;
            dst[ di++ ] = sid.revision;
            dst[ di++ ] = sid.sub_authority_count;
            System.arraycopy(sid.identifier_authority, 0, dst, di, 6);
            di += 6;
            for ( int ii = 0; ii < sid.sub_authority_count; ii++ ) {
                jcifs.util.Encdec.enc_uint32le(sid.sub_authority[ ii ], dst, di);
                di += 4;
            }
            return dst;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/operand_test.go

    	{"(0*4)(BP)", "(BP)"},
    	{"(1*4)(DI)", "4(DI)"},
    	{"(4*4)(BP)", "16(BP)"},
    	{"(AX)", "(AX)"},
    	{"(BP)(CX*4)", "(BP)(CX*4)"},
    	{"(BP*8)", "0(BP*8)"},
    	{"(BX)", "(BX)"},
    	{"(SP)", "(SP)"},
    	{"*AX", "AX"}, // TODO: Should make * illegal here; a simple alias for JMP AX.
    	{"*runtime·_GetStdHandle(SB)", "*runtime._GetStdHandle(SB)"},
    	{"-(4+12)(DI)", "-16(DI)"},
    	{"-1(DI)(BX*1)", "-1(DI)(BX*1)"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_ifma.s

    	VPMADD52HUQ -7(DI)(R8*4), X11, K1, X18             // 62a2a509b59487f9ffffff
    	VPMADD52HUQ X7, X31, K1, X18                       // 62e28501b5d7
    	VPMADD52HUQ X0, X31, K1, X18                       // 62e28501b5d0
    	VPMADD52HUQ 17(SP)(BP*2), X31, K1, X18             // 62e28501b5946c11000000
    	VPMADD52HUQ -7(DI)(R8*4), X31, K1, X18             // 62a28501b59487f9ffffff
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vnni.s

    	VPDPWSSD 7(SI)(DI*4), Z6, K3, Z22                  // 62e24d4b52b4be07000000
    	VPDPWSSD -7(DI)(R8*2), Z6, K3, Z22                 // 62a24d4b52b447f9ffffff
    	VPDPWSSD Z25, Z8, K3, Z22                          // 62823d4b52f1
    	VPDPWSSD Z12, Z8, K3, Z22                          // 62c23d4b52f4
    	VPDPWSSD 7(SI)(DI*4), Z8, K3, Z22                  // 62e23d4b52b4be07000000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 27.5K bytes
    - Viewed (0)
Back to top