Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 465 for movbe (0.08 sec)

  1. src/internal/bytealg/compare_loong64.s

    	MOVV	8(R4), R16
    	MOVV	8(R6), R17
    	ADDV	$16, R4
    	ADDV	$16, R6
    	SUBVU	$1, R14
    	BEQ	R16, R17, chunk16_loop
    	SUBV	$8, R4
    	SUBV	$8, R6
    
    byte_loop:
    	BEQ	R4, R12, samebytes
    	MOVBU	(R4), R8
    	ADDVU	$1, R4
    	MOVBU	(R6), R9
    	ADDVU	$1, R6
    	BEQ	R8, R9, byte_loop
    
    byte_cmp:
    	SGTU	R8, R9, R4 // R12 = 1 if (R8 > R9)
    	BNE	R0, R4, ret
    	MOVV	$-1, R4
    	JMP	ret
    
    samebytes:
    	SGTU	R5, R7, R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStoreTest.groovy

        def "storing an artifact uses the writable store"() {
            when:
            twoStageStore.move(key, file)
    
            then:
            1 * writeStore.move(key, file)
            0 * readStore.move(_, _)
    
            when:
            twoStageStore.add(key, action)
    
            then:
            1 * writeStore.add(key, action)
            0 * readStore.add(key, action)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/internal/bytealg/count_s390x.s

    // func Count(b []byte, c byte) int
    TEXT ·Count(SB), NOSPLIT|NOFRAME, $0-40
    	LMG   b+0(FP), R_PTR, R_LEN
    	MOVBZ c+24(FP), R_CHAR
    	MOVD  $ret+32(FP), R_RET
    	BR    countbytebody<>(SB)
    
    // func CountString(s string, c byte) int
    TEXT ·CountString(SB), NOSPLIT|NOFRAME, $0-32
    	LMG   s+0(FP), R_PTR, R_LEN
    	MOVBZ c+16(FP), R_CHAR
    	MOVD  $ret+24(FP), R_RET
    	BR    countbytebody<>(SB)
    
    // input:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  4. pkg/controller/job/success_policy.go

    			// The current succeeded interval is behind, so we can move to the next.
    			succeededPointer++
    		} else if succeededIndexes[succeededPointer].Last > ruleIndexes[rulePointer].Last {
    			// The current rule interval is behind, so we can move to the next.
    			rulePointer++
    		} else {
    			// Both intervals end at the same position, we can move to the next succeeded, and next rule.
    			succeededPointer++
    			rulePointer++
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/asset.cc

    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/path.h"
    
    namespace tensorflow {
    
    Asset::Asset(ImmediateTensorHandlePtr handle)
        : TensorHandleConvertible(std::move(handle)) {}
    
    Status Asset::Create(ImmediateExecutionContext* ctx,
                         const std::string& saved_model_dir,
                         const std::string& asset_filename,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/reflect/asm_386.s

    // for more details.
    // No argsize here, gc generates argsize info at call site.
    TEXT ·makeFuncStub(SB),(NOSPLIT|WRAPPER),$20
    	NO_LOCAL_POINTERS
    	MOVL	DX, 0(SP)
    	LEAL	argframe+0(FP), CX
    	MOVL	CX, 4(SP)
    	MOVB	$0, 16(SP)
    	LEAL	16(SP), AX
    	MOVL	AX, 8(SP)
    	MOVL	$0, 12(SP)
    	CALL	·callReflect(SB)
    	RET
    
    // methodValueCall is the code half of the function returned by makeMethodValue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 16:53:18 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/container/list/list.go

    func (l *List) remove(e *Element) {
    	e.prev.next = e.next
    	e.next.prev = e.prev
    	e.next = nil // avoid memory leaks
    	e.prev = nil // avoid memory leaks
    	e.list = nil
    	l.len--
    }
    
    // move moves e to next to at.
    func (l *List) move(e, at *Element) {
    	if e == at {
    		return
    	}
    	e.prev.next = e.next
    	e.next.prev = e.prev
    
    	e.prev = at
    	e.next = at.next
    	e.prev.next = e
    	e.next.prev = e
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/resource/local/GroupedAndNamedUniqueFileStore.java

            this.baseDir = baseDir;
            this.checksumService = checksumService;
        }
    
        @Override
        public LocallyAvailableResource move(K key, File source) {
            return markAccessed(delegate.move(toPath(key, getChecksum(source)), source));
        }
    
        @Override
        public Set<? extends LocallyAvailableResource> search(K key) {
            return delegate.search(toPath(key, "*"));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  9. src/runtime/tls_arm64.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    #include "tls_arm64.h"
    
    TEXT runtime·load_g(SB),NOSPLIT,$0
    #ifndef GOOS_darwin
    #ifndef GOOS_openbsd
    #ifndef GOOS_windows
    	MOVB	runtime·iscgo(SB), R0
    	CBZ	R0, nocgo
    #endif
    #endif
    #endif
    
    	MRS_TPIDR_R0
    #ifdef TLS_darwin
    	// Darwin sometimes returns unaligned pointers
    	AND	$0xfffffffffffffff8, R0
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. src/reflect/asm_s390x.s

    // for more details.
    // No arg size here, runtime pulls arg map out of the func value.
    TEXT ·makeFuncStub(SB),(NOSPLIT|WRAPPER),$40
    	NO_LOCAL_POINTERS
    	MOVD	R12, 8(R15)
    	MOVD	$argframe+0(FP), R3
    	MOVD	R3, 16(R15)
    	MOVB	$0, 40(R15)
    	ADD	$40, R15, R3
    	MOVD	R3, 24(R15)
    	MOVD	$0, 32(R15)
    	BL	·callReflect(SB)
    	RET
    
    // methodValueCall is the code half of the function returned by makeMethodValue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 16:53:18 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top