Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for intRegs (0.21 sec)

  1. src/cmd/compile/internal/types/size.go

    	// compiler-specific stuff
    	case TINT8, TUINT8, TBOOL:
    		// bool is int8
    		w = 1
    		t.intRegs = 1
    
    	case TINT16, TUINT16:
    		w = 2
    		t.intRegs = 1
    
    	case TINT32, TUINT32:
    		w = 4
    		t.intRegs = 1
    
    	case TINT64, TUINT64:
    		w = 8
    		t.align = uint8(RegSize)
    		t.intRegs = uint8(8 / RegSize)
    
    	case TFLOAT32:
    		w = 4
    		t.floatRegs = 1
    		t.setAlg(AFLOAT32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/runtime/debug_test.go

    	fn := func(x int, y float64) (y0Ret int, y1Ret float64) {
    		return x + 1, y + 1.0
    	}
    	var args *stackArgs
    	var regs abi.RegArgs
    	intRegs := regs.Ints[:]
    	floatRegs := regs.Floats[:]
    	fval := float64(42.0)
    	if len(intRegs) > 0 {
    		intRegs[0] = 42
    		floatRegs[0] = math.Float64bits(fval)
    	} else {
    		args = &stackArgs{
    			x0: 42,
    			x1: 42.0,
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    	t.kind = underlying.kind
    	t.extra = underlying.extra
    	t.width = underlying.width
    	t.align = underlying.align
    	t.alg = underlying.alg
    	t.ptrBytes = underlying.ptrBytes
    	t.intRegs = underlying.intRegs
    	t.floatRegs = underlying.floatRegs
    	t.underlying = underlying.underlying
    
    	if underlying.NotInHeap() {
    		t.SetNotInHeap(true)
    	}
    	if underlying.HasShape() {
    		t.SetHasShape(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. prow/integ-suite-kind.sh

    # 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.
    
    
    # Usage: ./integ-suite-kind.sh TARGET
    # Example: ./integ-suite-kind.sh test.integration.pilot.kube.presubmit
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    			}
    			if !bytes.Equal(gc, lt.gc) {
    				t.Errorf("funcLayout(%v, %v).gc=%v, want %v", lt.typ, lt.rcvr, gc, lt.gc)
    			}
    			if !bytes.Equal(inRegs, lt.inRegs) {
    				t.Errorf("funcLayout(%v, %v).inRegs=%v, want %v", lt.typ, lt.rcvr, inRegs, lt.inRegs)
    			}
    			if !bytes.Equal(outRegs, lt.outRegs) {
    				t.Errorf("funcLayout(%v, %v).outRegs=%v, want %v", lt.typ, lt.rcvr, outRegs, lt.outRegs)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassDependentsAccumulatorTest.groovy

            accumulator.addClass("d", hash, "reason",  [], ['x'], IntSets.EMPTY_SET)
            accumulator.addClass("a", hash, null, ["b"], ["c"], IntSets.EMPTY_SET)
            accumulator.addClass("b", hash, null, ["c"], ["a"], IntSets.EMPTY_SET)
            accumulator.addClass("c", hash, null, [], [] as Set, IntSets.EMPTY_SET)
    
            expect:
            accumulator.dependentsMap.a.privateDependentClasses == [] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeaturePublishingIntegrationTest.groovy

                    capability('com.acme', 'mylib-integ-test-fixtures', '1.4')
                    file("mylib-1.4-integ-test-fixtures.jar")
                    noMoreDependencies()
                }
                md.variant('integTestFixturesApiElements') {
                    capability('com.acme', 'mylib-integ-test-fixtures', '1.4')
                    file("mylib-1.4-integ-test-fixtures.jar")
                    noMoreDependencies()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisDataSerializerTest.groovy

     */
    
    package org.gradle.api.internal.tasks.compile.incremental.deps
    
    import it.unimi.dsi.fastutil.ints.IntOpenHashSet
    import it.unimi.dsi.fastutil.ints.IntSet
    import it.unimi.dsi.fastutil.ints.IntSets
    import org.gradle.api.internal.cache.StringInterner
    import org.gradle.internal.serialize.HierarchicalNameSerializer
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.TestHashCodes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/IntSetSerializer.java

    import it.unimi.dsi.fastutil.ints.IntIterator;
    import it.unimi.dsi.fastutil.ints.IntOpenHashSet;
    import it.unimi.dsi.fastutil.ints.IntSet;
    import it.unimi.dsi.fastutil.ints.IntSets;
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    import org.gradle.internal.serialize.Serializer;
    
    import java.io.EOFException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                        "-x", ":docs:platformTest",
                        "-x", ":docs:configCacheTest",
                        "-x", ":distributions-integ-tests:quickTest",
                        "-x", ":distributions-integ-tests:platformTest",
                        "-x", ":distributions-integ-tests:configCacheTest"
                    ) +
                    listOf(extraParameters) +
                    functionalTestParameters(os, arch) +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top