Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 486 for deltas (0.13 sec)

  1. src/image/jpeg/scan.go

    // section G.1.2.
    func (d *decoder) refine(b *block, h *huffman, zigStart, zigEnd, delta int32) error {
    	// Refining a DC component is trivial.
    	if zigStart == 0 {
    		if zigEnd != 0 {
    			panic("unreachable")
    		}
    		bit, err := d.decodeBit()
    		if err != nil {
    			return err
    		}
    		if bit {
    			b[0] |= delta
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/encoding/gob/decode.go

    	state.fieldnum = -1
    	for state.b.Len() > 0 {
    		delta := int(state.decodeUint())
    		if delta < 0 {
    			errorf("decode: corrupted data: negative delta")
    		}
    		if delta == 0 { // struct terminator is zero delta fieldnum
    			break
    		}
    		if state.fieldnum >= len(engine.instr)-delta { // subtract to compare without overflow
    			error_(errRange)
    		}
    		fieldnum := state.fieldnum + delta
    		instr := &engine.instr[fieldnum]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf_defs.go

    )
    
    // Table 40.
    const (
    	// operand,...
    	DW_CFA_nop              = 0x00
    	DW_CFA_set_loc          = 0x01 // address
    	DW_CFA_advance_loc1     = 0x02 // 1-byte delta
    	DW_CFA_advance_loc2     = 0x03 // 2-byte delta
    	DW_CFA_advance_loc4     = 0x04 // 4-byte delta
    	DW_CFA_offset_extended  = 0x05 // ULEB128 register, ULEB128 offset
    	DW_CFA_restore_extended = 0x06 // ULEB128 register
    	DW_CFA_undefined        = 0x07 // ULEB128 register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/StatsAccumulator.java

          }
        } else {
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16)
            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
            sumOfSquaresOfDeltas = NaN;
          }
          min = Math.min(min, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

          InternetDomainName.from("xn--jrpeland-54a.no");
    
      /** The Greek letter delta, used in unicode testing. */
      private static final String DELTA = "\u0394";
    
      /** A domain part which is valid under lenient validation, but invalid under strict validation. */
      static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
    
      private static final String ALMOST_TOO_MANY_LEVELS = Strings.repeat("a.", 127);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. pkg/adsc/delta_test.go

    	return nil
    }
    
    func (t *mockDeltaXdsServer) DeltaAggregatedResources(delta discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesServer) error {
    	return deltaHandler(delta)
    }
    
    var testCluster = &cluster.Cluster{
    	Name:                 "test-eds",
    	ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/obj6.go

    			continue
    
    		case APUSHL, APUSHFL:
    			deltasp += 4
    			p.Spadj = 4
    			continue
    
    		case APUSHQ, APUSHFQ:
    			deltasp += 8
    			p.Spadj = 8
    			continue
    
    		case APUSHW, APUSHFW:
    			deltasp += 2
    			p.Spadj = 2
    			continue
    
    		case APOPL, APOPFL:
    			deltasp -= 4
    			p.Spadj = -4
    			continue
    
    		case APOPQ, APOPFQ:
    			deltasp -= 8
    			p.Spadj = -8
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradient_checker.cc

        // element of 'x_data' (positively and negatively) by 'delta', and
        // updating the jacobian with the centered difference. When x_data is
        // complex-valued, we perturb its real and complex parts separately.
        for (int r = 0; r < x_size; ++r) {
          int unit_dimension = 0;
          for (X_T unit : BaseUnitsForType<X_T>::values()) {
            X_T x_delta = unit * X_T{delta};
            // Store current value of 'x' at 'r'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph_test.cc

      TF_EXPECT_OK(CompileWithComputation(function_to_hlo_args).status());
    
      Histogram histogram =
          compilation_time.Delta("graph_old_bridge_has_function_to_hlo");
    
      EXPECT_EQ(histogram.num(), 1);
      EXPECT_EQ(compilation_status.Delta("kOldBridgeNoMlirSuccess"), 1);
    }
    
    TEST_F(CompileTFGraphTest, SuccessfullyCompilesWithManualSharding) {
      // MLIR module from failing test.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/magic.go

    // What remains is to choose e.
    // Let m = 2^e/c + delta, 0 <= delta < 1
    //   ⎣x * (2^e/c + delta) / 2^e⎦
    //   ⎣x / c + x * delta / 2^e⎦
    // We must have x * delta / 2^e < 1/c so that this
    // additional term never rounds differently than ⎣x / c⎦ does.
    // Rearranging,
    //   2^e > x * delta * c
    // x can be at most 2^n-1 and delta can be at most 1.
    // So it is sufficient to have 2^e >= 2^n*c.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top