Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for cmpeqb (0.16 sec)

  1. src/runtime/memmove_s390x.s

    forwards_fast:
    	CMP	R5, $256
    	BLE	forwards_small
    	MVC	$256, 0(R4), 0(R6)
    	ADD	$256, R4
    	ADD	$256, R6
    	ADD	$-256, R5
    	BR	forwards_fast
    
    forwards_small:
    	CMPBEQ	R5, $0, done
    	ADD	$-1, R5
    	EXRL	$memmove_exrl_mvc<>(SB), R5
    	RET
    
    move0to3:
    	CMPBEQ	R5, $0, done
    move1:
    	CMPBNE	R5, $1, move2
    	MOVB	0(R4), R3
    	MOVB	R3, 0(R6)
    	RET
    move2:
    	CMPBNE	R5, $2, move3
    	MOVH	0(R4), R3
    	MOVH	R3, 0(R6)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 22 18:54:48 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  2. src/math/big/arith_s390x.s

    	MOVD y+48(FP), R7    // c = y
    	MOVD z+0(FP), R8
    
    	CMPBEQ R5, $0, returnC // if len(z) == 0, we can have an early return
    
    	// Add the first two words, and determine which path (copy path or loop path) to take based on the carry flag.
    	ADDC   0(R6), R7
    	MOVD   R7, 0(R8)
    	CMPBEQ R5, $1, returnResult // len(z) == 1
    	MOVD   $0, R9
    	ADDE   8(R6), R9
    	MOVD   R9, 8(R8)
    	CMPBEQ R5, $2, returnResult // len(z) == 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/cse.go

    		if tc := v.Type.Compare(w.Type); tc != types.CMPeq {
    			return tc
    		}
    	}
    
    	if v.Aux != w.Aux {
    		if v.Aux == nil {
    			return types.CMPlt
    		}
    		if w.Aux == nil {
    			return types.CMPgt
    		}
    		return lt2Cmp(auxIDs[v.Aux] < auxIDs[w.Aux])
    	}
    
    	return types.CMPeq
    }
    
    // Sort values to make the initial partition.
    type sortvalues struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. src/internal/bytealg/indexbyte_s390x.s

    // R2: &ret -- address to put index into
    TEXT indexbytebody<>(SB),NOSPLIT|NOFRAME,$0
    	CMPBEQ	R4, $0, notfound
    	MOVD	R3, R6          // store base for later
    	ADD	R3, R4, R8      // the address after the end of the string
    	//if the length is small, use loop; otherwise, use vector or srst search
    	CMPBGE	R4, $16, large
    
    residual:
    	CMPBEQ	R3, R8, notfound
    	MOVBZ	0(R3), R7
    	LA	1(R3), R3
    	CMPBNE	R7, R5, residual
    
    found:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. operator/pkg/util/progress/progress.go

    		cmp := p.components[component]
    		// The component has completed
    		cmp.mu.Lock()
    		finished := cmp.finished
    		cmpErr := cmp.err
    		cmp.mu.Unlock()
    		successIcon := "✅"
    		if icon, found := name.IstioComponentSuccessIcons[cmpName]; found {
    			successIcon = icon
    		}
    		if finished || cmpErr != "" {
    			if finished {
    				p.SetMessage(fmt.Sprintf(`%s %s installed`, successIcon, cliName), true)
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_s390x.s

    // input:
    //   R3 = a
    //   R4 = alen
    //   R5 = b
    //   R6 = blen
    //   R7 = address of output word (stores -1/0/1 here)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMPBEQ	R3, R5, cmplengths
    	MOVD	R4, R8
    	CMPBLE	R4, R6, amin
    	MOVD	R6, R8
    amin:
    	CMPBEQ	R8, $0, cmplengths
    	CMP	R8, $256
    	BLE	tail
    loop:
    	CLC	$256, 0(R3), 0(R5)
    	BGT	gt
    	BLT	lt
    	SUB	$256, R8
    	MOVD	$256(R3), R3
    	MOVD	$256(R5), R5
    	CMP	R8, $256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1block_s390x.s

    // func block(dig *digest, p []byte)
    TEXT ·block(SB), NOSPLIT|NOFRAME, $0-32
    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $1, R0                       // SHA-1 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 608 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_go_version_missing.txt

    go list -mod=mod all
    ! stdout '^example.com/testdep$'
    cmp stdout list-1.txt
    cmpenv go.mod go.mod.untidy
    
    go mod tidy
    cmpenv go.mod go.mod.tidy
    
    # On the other hand, if we jump straight to 'go mod tidy',
    # the requirements remain tidy from the start.
    
    cp go.mod.orig go.mod
    go mod tidy
    cmpenv go.mod go.mod.tidy
    
    
    # The updated version should have been written back to go.mod, so now the 'go'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_init_path.txt

    # and it should have 'use .' rather than 'use ./.' inside.
    
    cd dir
    
    go work init . .. foo/bar
    mv go.work go.work.init
    
    go work init
    go work use -r ..
    cmp go.work go.work.init
    
    cmpenv go.work $WORK/go.work.want
    
    -- go.mod --
    module example
    go 1.18
    -- dir/go.mod --
    module example
    go 1.18
    -- dir/foo/bar/go.mod --
    module example
    go 1.18
    -- $WORK/go.work.want --
    go $goversion
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 571 bytes
    - Viewed (0)
  10. src/crypto/sha256/sha256block_s390x.s

    // func block(dig *digest, p []byte)
    TEXT ·block(SB), NOSPLIT|NOFRAME, $0-32
    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $2, R0                       // SHA-256 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
Back to top