Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 627 for madd (0.07 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    	{AMUL, C_REG, C_REG, C_REG, 22, 4, 0, 0, 0},
    	{AMULV, C_REG, C_REG, C_NONE, 22, 4, 0, sys.MIPS64, 0},
    
    	{AADD, C_ADD0CON, C_REG, C_REG, 4, 4, 0, 0, 0},
    	{AADD, C_ADD0CON, C_NONE, C_REG, 4, 4, 0, 0, 0},
    	{AADD, C_ANDCON, C_REG, C_REG, 10, 8, 0, 0, 0},
    	{AADD, C_ANDCON, C_NONE, C_REG, 10, 8, 0, 0, 0},
    
    	{AADDV, C_ADD0CON, C_REG, C_REG, 4, 4, 0, sys.MIPS64, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/runtime/arena_test.go

    		t.Error("Clone did not make a copy")
    	}
    	if len(subAs) != len(subAsCopy) {
    		t.Errorf("Clone made an incorrect copy (bad length): %d -> %d", len(subAs), len(subAsCopy))
    	} else {
    		for i := range subAs {
    			if subAs[i] != subAsCopy[i] {
    				t.Errorf("Clone made an incorrect copy (data at index %d): %d -> %d", i, subAs[i], subAs[i])
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/riscv64/ggen.go

    		return p
    	}
    
    	// Loop, zeroing pointer width bytes at a time.
    	// ADD	$(off), SP, T0
    	// ADD	$(cnt), T0, T1
    	// loop:
    	// 	MOV	ZERO, (T0)
    	// 	ADD	$Widthptr, T0
    	//	BNE	T0, T1, loop
    	p = pp.Append(p, riscv.AADD, obj.TYPE_CONST, 0, off, obj.TYPE_REG, riscv.REG_T0, 0)
    	p.Reg = riscv.REG_SP
    	p = pp.Append(p, riscv.AADD, obj.TYPE_CONST, 0, cnt, obj.TYPE_REG, riscv.REG_T1, 0)
    	p.Reg = riscv.REG_T0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler_test.go

    	serializer := serializer.NewCodecFactory(runtime.NewScheme()).WithoutConversion()
    	target := New(serializer, isMuxAndDiscoveryCompleteTestFn)
    
    	// scenario 1: pretend the request has been made after the signal has been ready
    	req := httptest.NewRequest("GET", "http://apiserver.com/apis/flowcontrol.apiserver.k8s.io/v1beta1", nil)
    	rw := httptest.NewRecorder()
    
    	target.ServeHTTP(rw, req)
    	resp := rw.Result()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 19 11:26:59 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. src/math/sinh_s390x.s

    	FMOVD   0(R2), F2
    	MOVD    sinhrlog2<>+0(SB), R2
    	LDGR    R2, F0
    	WFMSDB  V4, V0, V2, V6
    	FMOVD   sinhrodataL21<>+8(SB), F0
    	FADD    F6, F2
    	MOVD    $sinhe9<>+0(SB), R2
    	FMSUB   F0, F2, F4
    	FMOVD   0(R2), F1
    	FMOVD   sinhrodataL21<>+0(SB), F3
    	MOVD    $sinhe7<>+0(SB), R2
    	FMADD   F3, F2, F4
    	FMOVD   0(R2), F0
    	MOVD    $sinhe8<>+0(SB), R2
    	WFMDB   V4, V4, V2
    	FMOVD   0(R2), F3
    	MOVD    $sinhe6<>+0(SB), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. test/typeparam/maps.go

    	}
    }
    
    func TestAdd() {
    	mc := _Copy(m1)
    	_Add(mc, mc)
    	if !_Equal(mc, m1) {
    		panic(fmt.Sprintf("_Add(%v, %v) = %v, want %v", m1, m1, mc, m1))
    	}
    	_Add(mc, map[int]int{16: 32})
    	want := map[int]int{1: 2, 2: 4, 4: 8, 8: 16, 16: 32}
    	if !_Equal(mc, want) {
    		panic(fmt.Sprintf("_Add result = %v, want %v", mc, want))
    	}
    }
    
    func TestSub() {
    	mc := _Copy(m1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            node("");
        }
    
        /**
         * Starts a new node with the given type name.
         */
        public TreeFormatter node(Class<?> type) {
            // Implementation is currently dumb, can be made smarter
            if (type.isInterface()) {
                node("Interface ");
            } else {
                node("Class ");
            }
            appendType(type);
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/math/atan2_s390x.s

    	WFMADB	V1, V7, V18, V7
    	VLEG	$0, 16(R9), V18
    	VLEG	$0, 8(R9), V22
    	WFMADB	V4, V18, V16, V18
    	VLEG	$0, 0(R9), V16
    	WFMADB	V5, V6, V7, V6
    	WFMADB	V4, V16, V22, V16
    	FMUL	F3, F4
    	WFMADB	V1, V18, V16, V1
    	FMADD	F6, F5, F1
    	WFMADB	V4, V1, V3, V4
    	BLT	L18
    	BGT	L7
    	LTDBR	F2, F2
    	BLTU	L21
    L8:
    	LTDBR	F0, F0
    	BLTU	L22
    L9:
    	WFCHDBS	V2, V0, V0
    	BNE	L18
    L7:
    	MOVW	R1, R6
    	CMPBGE	R6, $0, L1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 04:06:34 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/LibraryDependencies.java

         * Adds an API dependency to this library. An API dependency is made visible to consumers that are compiled against this component.
         *
         * @param notation The dependency notation, as per {@link org.gradle.api.artifacts.dsl.DependencyHandler#create(Object)}.
         */
        void api(Object notation);
    
        /**
         * Adds an API dependency to this library. An API dependency is made visible to consumers that are compiled against this component.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. releasenotes/notes/add-cluster-id-for-cluster-sync-metrics.yaml

    Kebe <******@****.***> 1682963494 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 17:51:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top