Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 229 for Subtract (0.28 sec)

  1. src/internal/trace/event.go

    	}
    	spec := go122.Specs()[e.base.typ]
    	if len(spec.StackIDs) == 0 {
    		return NoStack
    	}
    	// The stack for the main execution context is always the
    	// first stack listed in StackIDs. Subtract one from this
    	// because we've peeled away the timestamp argument.
    	id := stackID(e.base.args[spec.StackIDs[0]-1])
    	if id == 0 {
    		return NoStack
    	}
    	return Stack{table: e.table, id: id}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashMap.java

      // short hash. But 0 is also a valid index in `entries`, so we add 1 to these indices before
      // putting them in `table` or in `next` bits, and subtract 1 again when we need an index value.
      //
      // The elements of `keys`, `values`, and `entries` are added sequentially, so that elements 0 to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: %[[bcast_arg3:.+]] = "mhlo.dynamic_broadcast_in_dim"(%arg3, {{.*}}) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<8xf32>, tensor<4xindex>) -> tensor<8x8x8x8xf32>
        // CHECK: %[[sub:.*]] = mhlo.subtract %[[act]], %[[bcast_arg3]] : tensor<8x8x8x8xf32>
        // CHECK: %[[mul:.*]] = mhlo.multiply %[[grad]], %[[sub]] : tensor<8x8x8x8xf32>
        // CHECK: mhlo.constant dense<[0, 1, 2]> : tensor<3xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  4. src/crypto/internal/bigmod/nat.go

    			// brought forward to the next iteration.
    			c2 := addMulVVW(T[i:n+i], mLimbs, Y)
    			T[n+i], c = bits.Add(c1, c2, c)
    		}
    
    		// Finally for Step 7 we copy the final T window into x, and subtract m
    		// if necessary (which as explained in maybeSubtractModulus can be the
    		// case both if x >= m, or if x overflowed).
    		//
    		// The paper suggests in Section 4 that we can do an "Almost Montgomery
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/image/png/reader.go

    		nrgba64  *image.NRGBA64
    		img      image.Image
    	)
    	width, height := d.width, d.height
    	if d.interlace == itAdam7 && !allocateOnly {
    		p := interlacing[pass]
    		// Add the multiplication factor and subtract one, effectively rounding up.
    		width = (width - p.xOffset + p.xFactor - 1) / p.xFactor
    		height = (height - p.yOffset + p.yFactor - 1) / p.yFactor
    		// A PNG image can't have zero width or height, but for an interlaced
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    		if m := p.Mapping[0]; strings.HasPrefix(m.File, "/anon_hugepage") {
    			if len(p.Mapping) > 1 && m.Limit == p.Mapping[1].Start {
    				p.Mapping = p.Mapping[1:]
    			}
    		}
    	}
    
    	// Subtract the offset from the start of the main mapping if it
    	// ends up at a recognizable start address.
    	if len(p.Mapping) > 0 {
    		const expectedStart = 0x400000
    		if m := p.Mapping[0]; m.Start-m.Offset == expectedStart {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashMap.java

      // short hash. But 0 is also a valid index in `entries`, so we add 1 to these indices before
      // putting them in `table` or in `next` bits, and subtract 1 again when we need an index value.
      //
      // The elements of `keys`, `values`, and `entries` are added sequentially, so that elements 0 to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  8. src/runtime/mstats.go

    	// is covered by idleTime, what we're left with is time spent in _Prunning and _Psyscall,
    	// the latter of which is fine because the P will either go idle or get used for something
    	// else via sysmon. Meanwhile if we subtract GC time from whatever's left, we get non-GC
    	// _Prunning time. Note that this still leaves time spent in sweeping and in the scheduler,
    	// but that's fine. The overwhelming majority of this time will be actual user time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    				// Push LR. The injected call is responsible
    				// for restoring LR. gentraceback is aware of
    				// this extra slot. See sigctxt.pushCall in
    				// signal_arm.go, which is similar except we
    				// subtract 1 from IP here.
    				sp := c.sp()
    				sp -= goarch.PtrSize
    				c.set_sp(sp)
    				*(*uint32)(unsafe.Pointer(sp)) = uint32(c.lr())
    				c.set_lr(newpc - 1)
    				c.set_ip(targetPC)
    
    			case "arm64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Select1 (Add64carry x y c))
      => (Select0 <typ.UInt64> (ADDE (MOVDconst [0]) (MOVDconst [0]) (Select1 <types.TypeFlags> (ADDE x y (Select1 <types.TypeFlags> (ADDCconst c [-1]))))))
    
    // subtract with borrow
    (Select0 (Sub64borrow x y c))
      => (Select0 <typ.UInt64> (SUBE x y (Select1 <types.TypeFlags> (SUBC (MOVDconst [0]) c))))
    (Select1 (Sub64borrow x y c))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top