Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for divd (0.08 sec)

  1. test/codegen/arithmetic.go

    		d += e
    	}
    	return d, e
    }
    
    func NoFix32A(divr int32) (int32, int32) {
    	var d int32 = 42
    	var e int32 = 84
    	if divr > 5 {
    		// amd64:-"JMP"
    		// 386:-"JMP"
    		d /= divr
    		// amd64:-"JMP"
    		// 386:-"JMP"
    		e %= divr
    		d += e
    	}
    	return d, e
    }
    
    func NoFix32B(divd int32) (int32, int32) {
    	var d int32
    	var e int32
    	var divr int32 = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FDIVS", argLength: 2, reg: fp21, asm: "FDIVS"}, // arg0/arg1
    
    		{name: "DIVD", argLength: 2, reg: gp21, asm: "DIVD", typ: "Int64"},   // arg0/arg1 (signed 64-bit)
    		{name: "DIVW", argLength: 2, reg: gp21, asm: "DIVW", typ: "Int32"},   // arg0/arg1 (signed 32-bit)
    		{name: "DIVDU", argLength: 2, reg: gp21, asm: "DIVDU", typ: "Int64"}, // arg0/arg1 (unsigned 64-bit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                  (MHLO_AddOp
                    (MHLO_DivOp:$div
                      (MHLO_SubtractOp $arg0, $rem2),
                      $arg1b),
                    (MHLO_ConstantOp $cst_neg1)),
                  $div1)),
              (TF_FloorDivOp $arg0, $arg1),
              [(ValueEquals<"0.0"> $cst),
               (ValueEquals<"-1.0"> $cst_neg1),
               (SameValue $div, $div1),
               (SameValue $rem, $rem1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/internal/trace/testtrace/validation.go

    			if v.seenSync && old == trace.GoUndetermined {
    				e.Errorf("undetermined goroutine %d after first global sync", id)
    			}
    			if new == trace.GoNotExist && v.hasAnyRange(trace.MakeResourceID(id)) {
    				e.Errorf("goroutine %d died with active ranges", id)
    			}
    			state, ok := v.gs[id]
    			if ok {
    				if old != state.state {
    					e.Errorf("bad old state for goroutine %d: got %s, want %s", id, old, state.state)
    				}
    				state.state = new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/net/http/cgi/host.go

    		// And kill the child CGI process so we don't hang on
    		// the deferred cmd.Wait above if the error was just
    		// the client (rw) going away. If it was a read error
    		// (because the child died itself), then the extra
    		// kill of an already-dead process is harmless (the PID
    		// won't be reused until the Wait above).
    		cmd.Process.Kill()
    	}
    }
    
    func (h *Handler) printf(format string, v ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                connector.markDaemonAsUnavailable(connection.getDaemon());
                throw new DaemonInitialConnectException("The first result from the daemon was empty. The daemon process may have died or a non-daemon process is reusing the same port.");
            }
    
            LOGGER.debug("Received result {} from daemon {} (build should be starting).", result, connection.getDaemon());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [[build_github_actions]]
    = Executing Gradle builds on GitHub Actions
    
    TIP: Top engineering teams using GitHub Actions have been able to reduce CI build time by up to 90% by using the Gradle Build Cache. https://gradle.org/training/#build-cache-deep-dive[Register here] for our Build Cache training session to learn how your team can achieve similar results.
    
    Building Gradle projects doesn't stop with the developer's machine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/a.out.go

    	AFRSQRTECC
    	AFSEL
    	AFSELCC
    	AFSQRT
    	AFSQRTCC
    	AFSQRTS
    	AFSQRTSCC
    
    	/* 64-bit */
    
    	ACNTLZD
    	ACNTLZDCC
    	ACMPW /* CMP with L=0 */
    	ACMPWU
    	ACMPB
    	AFTDIV
    	AFTSQRT
    	ADIVD
    	ADIVDCC
    	ADIVDE
    	ADIVDECC
    	ADIVDEU
    	ADIVDEUCC
    	ADIVDVCC
    	ADIVDV
    	ADIVDU
    	ADIVDUCC
    	ADIVDUVCC
    	ADIVDUV
    	AEXTSW
    	AEXTSWCC
    	/* AFCFIW; AFCFIWCC */
    	AFCFID
    	AFCFIDCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{161, "ENOKEY", "required key not available"},
    	{162, "EKEYEXPIRED", "key has expired"},
    	{163, "EKEYREVOKED", "key has been revoked"},
    	{164, "EKEYREJECTED", "key was rejected by service"},
    	{165, "EOWNERDEAD", "owner died"},
    	{166, "ENOTRECOVERABLE", "state not recoverable"},
    	{167, "ERFKILL", "operation not possible due to RF-kill"},
    	{168, "EHWPOISON", "memory page has hardware error"},
    	{1133, "EDQUOT", "disk quota exceeded"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top