Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 337 for sI (0.04 sec)

  1. src/internal/bytealg/indexbyte_amd64.s

    // The start of the data is SI.
    ssesuccess:
    	SUBQ SI, DI	// Compute offset of chunk within data.
    	ADDQ DX, DI	// Add offset of byte within chunk.
    	MOVQ DI, (R8)
    	RET
    
    // handle for lengths < 16
    small:
    	TESTQ	BX, BX
    	JEQ	failure
    
    	// Check if we'll load across a page boundary.
    	LEAQ	16(SI), AX
    	TESTW	$0xff0, AX
    	JEQ	endofpage
    
    	MOVOU	(SI), X1 // Load data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

            ArrayList list = new ArrayList(sids.length);
            int si;
    
    synchronized (sid_cache) {
            for (si = 0; si < length; si++) {
                SID sid = (SID)sid_cache.get(sids[offset + si]);
                if (sid != null) {
                    sids[offset + si].type = sid.type;
                    sids[offset + si].domainName = sid.domainName;
                    sids[offset + si].acctName = sid.acctName;
                } else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
  3. test/convert1.go

    	_ = string(si) // ERROR "cannot convert.* string|invalid type conversion"
    	_ = []byte(si) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
    	_ = []rune(si) // ERROR "cannot convert.*\[\]rune|invalid type conversion"
    	_ = []int64(si)
    	_ = Tstring(si) // ERROR "cannot convert.*Tstring|invalid type conversion"
    	_ = Tbyte(si)   // ERROR "cannot convert.*Tbyte|invalid type conversion"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/aes_avx512f.s

    	VAESDECLAST -17(BP)(SI*8), Y11, Y24                // 62622528df84f5efffffff or 6262a528df84f5efffffff
    	VAESDECLAST (R15), Y11, Y24                        // 62422528df07 or 6242a528df07
    	VAESDECLAST Z8, Z23, Z23                           // 62c24540dff8 or 62c2c540dff8
    	VAESDECLAST Z28, Z23, Z23                          // 62824540dffc or 6282c540dffc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 29K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

            int state, mark, si;
            char[] arr = str.toCharArray();
            String proto = null, key = null;
            DcerpcBinding binding = null;
    
            state = mark = si = 0;
            do {
                char ch = arr[si];
    
                switch (state) {
                    case 0:
                        if (ch == ':') {
                            proto = str.substring(mark, si);
                            mark = si + 1;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  6. src/runtime/sys_netbsd_amd64.s

    	MOVL	$SYS_kill, AX
    	SYSCALL
    	RET
    
    TEXT runtime·setitimer(SB),NOSPLIT,$-8
    	MOVL	mode+0(FP), DI		// arg 1 - which
    	MOVQ	new+8(FP), SI		// arg 2 - itv
    	MOVQ	old+16(FP), DX		// arg 3 - oitv
    	MOVL	$SYS___setitimer50, AX
    	SYSCALL
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB), NOSPLIT, $32
    	MOVQ	$CLOCK_REALTIME, DI	// arg 1 - clock_id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vnni.s

    	VPDPBUSD (SI), Z6, K3, Z23                         // 62e24d4b503e
    	VPDPBUSD 7(SI)(DI*2), Z6, K3, Z23                  // 62e24d4b50bc7e07000000
    	VPDPBUSD Z8, Z23, K3, Z5                           // 62d2454350e8
    	VPDPBUSD Z28, Z23, K3, Z5                          // 6292454350ec
    	VPDPBUSD (SI), Z23, K3, Z5                         // 62f24543502e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 27.5K bytes
    - Viewed (0)
  8. src/runtime/sys_dragonfly_amd64.s

    TEXT runtime·sys_umtx_sleep(SB),NOSPLIT,$0
    	MOVQ addr+0(FP), DI		// arg 1 - ptr
    	MOVL val+8(FP), SI		// arg 2 - value
    	MOVL timeout+12(FP), DX		// arg 3 - timeout
    	MOVL $469, AX		// umtx_sleep
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+16(FP)
    	RET
    
    TEXT runtime·sys_umtx_wakeup(SB),NOSPLIT,$0
    	MOVQ addr+0(FP), DI		// arg 1 - ptr
    	MOVL val+8(FP), SI		// arg 2 - count
    	MOVL $470, AX		// umtx_wakeup
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VMOVNTPD Y26, (AX)                                 // 6261fd282b10
    	VMOVNTPD Y26, 7(SI)                                // 6261fd282b9607000000
    	VMOVNTPD Z7, (SI)                                  // 62f1fd482b3e
    	VMOVNTPD Z13, (SI)                                 // 6271fd482b2e
    	VMOVNTPD Z7, 7(SI)(DI*2)                           // 62f1fd482bbc7e07000000
    	VMOVNTPD Z13, 7(SI)(DI*2)                          // 6271fd482bac7e07000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 410.5K bytes
    - Viewed (0)
  10. test/copy1.go

    // compiler.
    
    package main
    
    func main() {
    
    	si := make([]int, 8)
    	sf := make([]float64, 8)
    
    	_ = copy()        // ERROR "not enough arguments"
    	_ = copy(1, 2, 3) // ERROR "too many arguments"
    
    	_ = copy(si, "hi") // ERROR "have different element types(.*int.*string| int and byte)"
    	_ = copy(si, sf)   // ERROR "have different element types.*int.*float64"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 851 bytes
    - Viewed (0)
Back to top