Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for IMMEDIATE (0.22 sec)

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

    	SRAI	$-1, X5, X6			// ERROR "immediate out of range 0 to 63"
    	RORIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SLLIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SRLIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SRAIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	RORIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SLLIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/wait/loop_test.go

    		},
    		{
    			name:    "context already canceled condition success and immediate 1 attempt expected",
    			context: cancelledContext,
    			callback: func(_ int) (bool, error) {
    				return true, nil
    			},
    			immediate:        true,
    			attemptsExpected: 1,
    		},
    		{
    			name:    "context already canceled condition fail and immediate 1 attempt expected",
    			context: cancelledContext,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:48:08 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. test/codegen/compare_and_branch.go

    		dummy()
    	}
    }
    
    // Signed 64-bit comparison with unsigned 8-bit immediate.
    func si64xu8(x chan int64) {
    	// s390x:"CLGIJ\t[$]8, R[0-9]+, [$]128, "
    	for <-x == 128 {
    		dummy()
    	}
    
    	// s390x:"CLGIJ\t[$]6, R[0-9]+, [$]255, "
    	for <-x != 255 {
    		dummy()
    	}
    }
    
    // Signed 32-bit comparison with unsigned 8-bit immediate.
    func si32xu8(x chan int32) {
    	// s390x:"CLIJ\t[$]8, R[0-9]+, [$]255, "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/loop.go

    func loopConditionUntilContext(ctx context.Context, t Timer, immediate, sliding bool, condition ConditionWithContextFunc) error {
    	defer t.Stop()
    
    	var timeCh <-chan time.Time
    	doneCh := ctx.Done()
    
    	if !sliding {
    		timeCh = t.C()
    	}
    
    	// if immediate is true the condition is
    	// guaranteed to be executed at least once,
    	// if we haven't requested immediate execution, delay once
    	if immediate {
    		if ok, err := func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:47:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		context            func() (context.Context, context.CancelFunc)
    		immediate          bool
    		waitFunc           func() waitFunc
    		condition          ConditionWithContextFunc
    		cancelContextAfter int
    		attemptsExpected   int
    		errExpected        error
    	}{
    		{
    			name:      "immediate is true, condition returns an error",
    			immediate: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	op_OI      uint32 = 0x9600 // FORMAT_SI         OR (immediate)
    	op_OIHF    uint32 = 0xC00C // FORMAT_RIL1       OR IMMEDIATE (high)
    	op_OIHH    uint32 = 0xA508 // FORMAT_RI1        OR IMMEDIATE (high high)
    	op_OIHL    uint32 = 0xA509 // FORMAT_RI1        OR IMMEDIATE (high low)
    	op_OILF    uint32 = 0xC00D // FORMAT_RIL1       OR IMMEDIATE (low)
    	op_OILH    uint32 = 0xA50A // FORMAT_RI1        OR IMMEDIATE (low high)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/cpu.go

    	// I-type instructions.
    	ITypeImmMask = 0xfff00000
    
    	// JTypeImmMask is a mask including only the immediate portion of
    	// J-type instructions.
    	JTypeImmMask = 0xfffff000
    
    	// STypeImmMask is a mask including only the immediate portion of
    	// S-type instructions.
    	STypeImmMask = 0xfe000f80
    
    	// UTypeImmMask is a mask including only the immediate portion of
    	// U-type instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	STLXP (R17, R19), (R4), R5      <=>    stlxp w5, x17, x19, [x4]
    	STXPW (R30, R25), (R22), R13    <=>    stxp w13, w30, w25, [x22]
    
    2. Expressions for special arguments.
    
    #<immediate> is written as $<immediate>.
    
    Optionally-shifted immediate.
    
    Examples:
    
    	ADD $(3151<<12), R14, R20     <=>    add x20, x14, #0xc4f, lsl #12
    	ADDW $1864, R25, R6           <=>    add w6, w25, #0x748
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         *
         * @param project The project whose downstream projects should be retrieved, must not be {@code null}.
         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
         *            downstream projects.
         * @return The downstream projects in the build order, never {@code null}.
         */
        List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/asm.go

    			} else {
    				// Compare register with immediate and jump.
    				prog.AddRestSource(a[1])
    			}
    			break
    		}
    		if p.arch.Family == sys.ARM64 {
    			// Special 3-operand jumps.
    			// a[0] must be immediate constant; a[1] is a register.
    			if a[0].Type != obj.TYPE_CONST {
    				p.errorf("%s: expected immediate constant; found %s", op, obj.Dconv(prog, &a[0]))
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top