Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,784 for nmPath (0.12 sec)

  1. src/cmd/nm/nm_test.go

    	if os.Getenv("GO_NMTEST_IS_NM") != "" {
    		main()
    		os.Exit(0)
    	}
    
    	os.Setenv("GO_NMTEST_IS_NM", "1") // Set for subprocesses to inherit.
    	os.Exit(m.Run())
    }
    
    // nmPath returns the path to the "nm" binary to run.
    func nmPath(t testing.TB) string {
    	t.Helper()
    	testenv.MustHaveExec(t)
    
    	nmPathOnce.Do(func() {
    		nmExePath, nmPathErr = os.Executable()
    	})
    	if nmPathErr != nil {
    		t.Fatal(nmPathErr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. test/codegen/math.go

    	// ppc64x:"FMADD"
    	// riscv64:"FMADDD"
    	return math.FMA(x, y, z)
    }
    
    func fms(x, y, z float64) float64 {
    	// riscv64:"FMSUBD"
    	return math.FMA(x, y, -z)
    }
    
    func fnms(x, y, z float64) float64 {
    	// riscv64:"FNMSUBD",-"FNMADDD"
    	return math.FMA(-x, y, z)
    }
    
    func fnma(x, y, z float64) float64 {
    	// riscv64:"FNMADDD",-"FNMSUBD"
    	return math.FMA(x, -y, -z)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/strconv/ftoaryu_test.go

    package strconv_test
    
    import (
    	"math"
    	. "strconv"
    	"testing"
    )
    
    func TestMulByLog2Log10(t *testing.T) {
    	for x := -1600; x <= +1600; x++ {
    		iMath := MulByLog2Log10(x)
    		fMath := int(math.Floor(float64(x) * math.Ln2 / math.Ln10))
    		if iMath != fMath {
    			t.Errorf("mulByLog2Log10(%d) failed: %d vs %d\n", x, iMath, fMath)
    		}
    	}
    }
    
    func TestMulByLog10Log2(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 08:44:21 UTC 2021
    - 759 bytes
    - Viewed (0)
  4. src/runtime/internal/math/math.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    import "internal/goarch"
    
    const MaxUintptr = ^uintptr(0)
    
    // MulUintptr returns a * b and whether the multiplication overflowed.
    // On supported platforms this is an intrinsic lowered by the compiler.
    func MulUintptr(a, b uintptr) (uintptr, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resource
    
    import (
    	"math/big"
    
    	inf "gopkg.in/inf.v0"
    )
    
    const (
    	// maxInt64Factors is the highest value that will be checked when removing factors of 10 from an int64.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/math.mlir

    Meghna Natraj <******@****.***> 1657816346 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/math.mlir

    Christian Sigg <******@****.***> 1714640622 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. guava-gwt/src/com/google/common/math/Math.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/flag_test.go

    		pkgs: []ppfTestPackage{
    			{path: "net", flags: []string{"-S"}},
    			{path: "net/http", flags: []string{"-S"}},
    			{path: "math", flags: []string{}},
    		},
    	},
    
    	// -gcflags=net/...=-S -gcflags=-m net math
    	// applies -m to net and math and -S to other packages matching net/...
    	// (net matches too, but it was grabbed by the later -gcflags).
    	{
    		args: []string{"net/...=-S", "-m"},
    		pkgs: []ppfTestPackage{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:04:04 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  10. src/math/tanh.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // The original C code, the long comment, and the constants
    // below were from http://netlib.sandia.gov/cephes/cmath/sin.c,
    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //      tanh.c
    //
    //      Hyperbolic tangent
    //
    // SYNOPSIS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top