Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for ret2 (0.12 sec)

  1. src/runtime/mbitmap.go

    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			srcx := (*uintptr)(unsafe.Pointer(src + (addr - dst)))
    			p := buf.get2()
    			p[0] = *dstx
    			p[1] = *srcx
    		}
    	}
    }
    
    // bulkBarrierPreWriteSrcOnly is like bulkBarrierPreWrite but
    // does not execute write barriers for [dst, dst+size).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		var proxy *clientServerTest
    		proxy = newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    			req2, _ := NewRequest("POST", backend.ts.URL, req.Body)
    			req2.ContentLength = bodySize
    			cancel := make(chan struct{})
    			req2.Cancel = cancel
    
    			bresp, err := proxy.c.Do(req2)
    			if err != nil {
    				t.Errorf("Proxy outbound request: %v", err)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    	// all three should be considered identical to `long`
    	if ret := C.takes_long(longVar); ret != 9 {
    		t.Errorf("got %v but expected %v", ret, 9)
    	}
    	if ret := C.takes_long(typedefVar); ret != 16 {
    		t.Errorf("got %v but expected %v", ret, 16)
    	}
    	if ret := C.takes_long(typedefTypedefVar); ret != 25 {
    		t.Errorf("got %v but expected %v", ret, 25)
    	}
    
    	// They should also be identical to the typedef'd type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT: %[[init2:.*]] = mhlo.constant dense<-0.000000e+00> : tensor<f32>
      // CHECK-NEXT: %[[red2:.*]] = mhlo.reduce(%[[cgrad]] init: %[[init2]]) applies mhlo.add across dimensions = [0, 1, 2] : (tensor<8x8x8x8xf32>, tensor<f32>) -> tensor<8xf32>
      // CHECK-NEXT: %[[offset_backprop:.*]] = mhlo.convert %[[red2]] : tensor<8xf32>
    
      // CHECK-NEXT: %[[x_backprop:.*]] = mhlo.convert %[[mul3]] : tensor<8x8x8x8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/x86/ssa.go

    		// Should we use the 3-byte TESTB $0, (reg) instead? It is larger
    		// but it doesn't have false dependency on AX.
    		// Or maybe allocate an output register and use MOVL (reg),reg2 ?
    		// That trades clobbering flags for clobbering a register.
    		p := s.Prog(x86.ATESTB)
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = x86.REG_AX
    		p.To.Type = obj.TYPE_MEM
    		p.To.Reg = v.Args[0].Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    		},
    		{
    			name: "more-complex",
    			json: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    					"req1": {Kind: &structpb.Value_StringValue{StringValue: "%REQ_WITHOUT_QUERY(key1:val1)%"}},
    					"req2": {Kind: &structpb.Value_StringValue{StringValue: "%REQ_WITHOUT_QUERY(key2:val1)%"}},
    					"key1": {Kind: &structpb.Value_StringValue{StringValue: "%METADATA(CLUSTER:istio)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    			}
    			a.Type = obj.TYPE_REG
    			a.Reg = r1
    			if r2 != 0 {
    				// Form is R1:R2. It is on RHS and the second register
    				// needs to go into the LHS.
    				panic("cannot happen (Addr.Reg2)")
    			}
    		}
    		// fmt.Printf("REG %s\n", obj.Dconv(&emptyProg, 0, a))
    		p.expectOperandEnd()
    		return
    	}
    
    	// Constant.
    	haveConstant := false
    	switch tok.ScanToken {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    		p0.To.Reg = ppc64.REGTMP
    		// If it is a Compare-and-Swap-Release operation, set the EH field with
    		// the release hint.
    		if v.AuxInt == 0 {
    			p0.AddRestSourceConst(0)
    		}
    		// CMP reg1,reg2
    		p1 := s.Prog(cmp)
    		p1.From.Type = obj.TYPE_REG
    		p1.From.Reg = r1
    		p1.To.Reg = ppc64.REGTMP
    		p1.To.Type = obj.TYPE_REG
    		// BNE done with return value = false
    		p2 := s.Prog(ppc64.ABNE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    package main
    
    import "lib"
    import . "lib"
    
    const Pi = 3.1415
    type T struct{}
    var Y, _ = lib.X, X
    
    func F[T *U, U any](param1, param2 int) /*param1=undef*/ (res1 /*res1=undef*/, res2 int) /*param1=var:12*/ /*res1=var:12*/ /*U=typename:12*/ {
    	const pi, e = 3.1415, /*pi=undef*/ 2.71828 /*pi=const:13*/ /*e=const:13*/
    	type /*t=undef*/ t /*t=typename:14*/ *t
    	print(Y) /*Y=var:10*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    package main
    
    import "lib"
    import . "lib"
    
    const Pi = 3.1415
    type T struct{}
    var Y, _ = lib.X, X
    
    func F[T *U, U any](param1, param2 int) /*param1=undef*/ (res1 /*res1=undef*/, res2 int) /*param1=var:12*/ /*res1=var:12*/ /*U=typename:12*/ {
    	const pi, e = 3.1415, /*pi=undef*/ 2.71828 /*pi=const:13*/ /*e=const:13*/
    	type /*t=undef*/ t /*t=typename:14*/ *t
    	print(Y) /*Y=var:10*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top