Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for abscc (0.04 sec)

  1. src/cmd/go/testdata/script/autocgo.txt

    # disable cgo: no C compiler anymore (unless the baked-in defaultCC is an
    # absolute path and exists.
    env CC=
    env PATH=$GOROOT/bin
    go env CGO_ENABLED
    [!abscc] stdout 0
    [abscc] stdout 1
    
    # Setting CC should re-enable cgo.
    env CC=cc
    go env CGO_ENABLED
    stdout 1
    
    # So should setting CGO_ENABLED.
    env CC=
    env CGO_ENABLED=1
    go env CGO_ENABLED
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 02:01:30 UTC 2022
    - 625 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    # no longer installed anyway! Since we're requiring a C compiler in order to
    # build and use cgo libraries in the standard library, we should make sure it
    # matches what's in the cache.
    
    [abscc] stop
    
    env CGO_ENABLED=1
    env CC=''
    [!GOOS:plan9] env PATH=''  # Guaranteed not to include $(go env CC)!
    [GOOS:plan9] env path=''
    ! go build -x runtime/cgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/scriptconds_test.go

    		}
    		conds[name] = cond
    	}
    
    	lazyBool := func(summary string, f func() bool) script.Cond {
    		return script.OnceCondition(summary, func() (bool, error) { return f(), nil })
    	}
    
    	add("abscc", script.Condition("default $CC path is absolute and exists", defaultCCIsAbsolute))
    	add("asan", sysCondition("-asan", platform.ASanSupported, true))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/README

    The available conditions are:
    [GOARCH:*]
    	runtime.GOARCH == <suffix>
    [GODEBUG:*]
    	GODEBUG contains <suffix>
    [GOEXPERIMENT:*]
    	GOEXPERIMENT <suffix> is enabled
    [GOOS:*]
    	runtime.GOOS == <suffix>
    [abscc]
    	default $CC path is absolute and exists
    [asan]
    	GOOS/GOARCH supports -asan
    [buildmode:*]
    	go supports -buildmode=<suffix>
    [case-sensitive]
    	$WORK filesystem is case-sensitive
    [cc:*]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/anames.go

    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    	"DIVWUVCC",
    	"DIVWUV",
    	"MODUD",
    	"MODUW",
    	"MODSD",
    	"MODSW",
    	"EQV",
    	"EQVCC",
    	"EXTSB",
    	"EXTSBCC",
    	"EXTSH",
    	"EXTSHCC",
    	"FABS",
    	"FABSCC",
    	"FADD",
    	"FADDCC",
    	"FADDS",
    	"FADDSCC",
    	"FCMPO",
    	"FCMPU",
    	"FCTIW",
    	"FCTIWCC",
    	"FCTIWZ",
    	"FCTIWZCC",
    	"FDIV",
    	"FDIVCC",
    	"FDIVS",
    	"FDIVSCC",
    	"FMADD",
    	"FMADDCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arm.go

    	case arm.AMULA, arm.AMULS, arm.AMMULA, arm.AMMULS, arm.AMULABB, arm.AMULAWB, arm.AMULAWT:
    		return true
    	}
    	return false
    }
    
    var bcode = []obj.As{
    	arm.ABEQ,
    	arm.ABNE,
    	arm.ABCS,
    	arm.ABCC,
    	arm.ABMI,
    	arm.ABPL,
    	arm.ABVS,
    	arm.ABVC,
    	arm.ABHI,
    	arm.ABLS,
    	arm.ABGE,
    	arm.ABLT,
    	arm.ABGT,
    	arm.ABLE,
    	arm.AB,
    	obj.ANOP,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/a.out.go

    	ACMP
    	ACMN
    	AORR
    	ABIC
    
    	AMVN
    
    	/*
    	 * Do not reorder or fragment the conditional branch
    	 * opcodes, or the predication code will break
    	 */
    	ABEQ
    	ABNE
    	ABCS
    	ABHS
    	ABCC
    	ABLO
    	ABMI
    	ABPL
    	ABVS
    	ABVC
    	ABHI
    	ABLS
    	ABGE
    	ABLT
    	ABGT
    	ABLE
    
    	AMOVWD
    	AMOVWF
    	AMOVDW
    	AMOVFW
    	AMOVFD
    	AMOVDF
    	AMOVF
    	AMOVD
    
    	ACMPF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  8. src/regexp/testdata/basic.dat

    BE	ab*bc			abc		(0,3)
    BE	ab*bc			abbc		(0,4)
    BE	ab*bc			abbbbc		(0,6)
    E	ab+bc			abbc		(0,4)
    E	ab+bc			abbbbc		(0,6)
    E	ab?bc			abbc		(0,4)
    E	ab?bc			abc		(0,3)
    E	ab?c			abc		(0,3)
    BE	^abc$			abc		(0,3)
    BE	^abc			abcc		(0,3)
    BE	abc$			aabc		(1,4)
    BE	^			abc		(0,0)
    BE	$			abc		(3,3)
    BE	a.c			abc		(0,3)
    BE	a.c			axc		(0,3)
    BE	a.*c			axyzc		(0,5)
    BE	a[bc]d			abd		(0,3)
    BE	a[b-d]e			ace		(0,3)
    BE	a[b-d]			aac		(1,3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  9. src/math/cmplx/cmath_test.go

    		if f := Abs(vc[i]); !veryclose(abs[i], f) {
    			t.Errorf("Abs(%g) = %g, want %g", vc[i], f, abs[i])
    		}
    	}
    	for i := 0; i < len(vcAbsSC); i++ {
    		if f := Abs(vcAbsSC[i]); !alike(absSC[i], f) {
    			t.Errorf("Abs(%g) = %g, want %g", vcAbsSC[i], f, absSC[i])
    		}
    	}
    }
    func TestAcos(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Acos(vc[i]); !cSoclose(acos[i], f, 1e-14) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FABS F1, F2                     // fc400a10
    	FNABS F1, F2                    // fc400910
    	FABSCC F1, F2                   // fc400a11
    	FNABSCC F1, F2                  // fc400911
    	FNEG F1, F2                     // fc400850
    	FNEGCC F1, F2                   // fc400851
    	FABSCC F1, F2                   // fc400a11
    	FRSP F1, F2                     // fc400818
    	FRSPCC F1, F2                   // fc400819
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top