Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for fComplex128 (0.21 sec)

  1. src/fmt/print.go

    	switch f := arg.(type) {
    	case bool:
    		p.fmtBool(f, verb)
    	case float32:
    		p.fmtFloat(float64(f), 32, verb)
    	case float64:
    		p.fmtFloat(f, 64, verb)
    	case complex64:
    		p.fmtComplex(complex128(f), 64, verb)
    	case complex128:
    		p.fmtComplex(f, 128, verb)
    	case int:
    		p.fmtInteger(uint64(f), signed, verb)
    	case int8:
    		p.fmtInteger(uint64(f), signed, verb)
    	case int16:
    		p.fmtInteger(uint64(f), signed, verb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. src/fmt/scan.go

    	}
    	return f
    }
    
    // scanComplex converts the next token to a complex128 value.
    // The atof argument is a type-specific reader for the underlying type.
    // If we're reading complex64, atof will parse float32s and convert them
    // to float64's to avoid reproducing this code for each complex type.
    func (s *ss) scanComplex(verb rune, n int) complex128 {
    	if !s.okVerb(verb, floatVerbs, "complex") {
    		return 0
    	}
    	s.SkipSpace()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. src/internal/abi/type.go

    	Uint16:        "uint16",
    	Uint32:        "uint32",
    	Uint64:        "uint64",
    	Uintptr:       "uintptr",
    	Float32:       "float32",
    	Float64:       "float64",
    	Complex64:     "complex64",
    	Complex128:    "complex128",
    	Array:         "array",
    	Chan:          "chan",
    	Func:          "func",
    	Interface:     "interface",
    	Map:           "map",
    	Pointer:       "ptr",
    	Slice:         "slice",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/encoding/binary/binary.go

    	case reflect.Bool,
    		reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
    		reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
    		reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
    		return int(t.Size())
    	}
    
    	return -1
    }
    
    type coder struct {
    	order  ByteOrder
    	buf    []byte
    	offset int
    }
    
    type decoder coder
    type encoder coder
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/text/template/exec.go

    		return false, true
    	}
    	switch val.Kind() {
    	case reflect.Array, reflect.Map, reflect.Slice, reflect.String:
    		truth = val.Len() > 0
    	case reflect.Bool:
    		truth = val.Bool()
    	case reflect.Complex64, reflect.Complex128:
    		truth = val.Complex() != 0
    	case reflect.Chan, reflect.Func, reflect.Pointer, reflect.Interface:
    		truth = !val.IsNil()
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. tensorflow/c/eager/immediate_execution_context.h

      virtual AbstractTensorInterface* CreateHalfScalar(Eigen::half value) = 0;
      virtual AbstractTensorInterface* CreateStringScalar(tstring value) = 0;
      virtual AbstractTensorInterface* CreateComplex128Scalar(complex128 value) = 0;
      virtual AbstractTensorInterface* CreateBoolScalar(bool value) = 0;
    
      // Tensor creation functions
      virtual AbstractTensorInterface* CreateTensor(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 08:34:00 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/expr.go

    	et := n.X.Type().Kind()
    
    	if types.IsComplex[et] && n.Op() == ir.ODIV {
    		t := n.Type()
    		call := mkcall("complex128div", types.Types[types.TCOMPLEX128], init, typecheck.Conv(n.X, types.Types[types.TCOMPLEX128]), typecheck.Conv(n.Y, types.Types[types.TCOMPLEX128]))
    		return typecheck.Conv(call, t)
    	}
    
    	// Nothing to do for float divisions.
    	if types.IsFloat[et] {
    		return n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/encoding/gob/encode.go

    	f := v.Float()
    	if f != 0 || state.sendZero {
    		bits := floatBits(f)
    		state.update(i)
    		state.encodeUint(bits)
    	}
    }
    
    // encComplex encodes the complex value (complex64 complex128) referenced by v.
    // Complex numbers are just a pair of floating-point numbers, real part first.
    func encComplex(i *encInstr, state *encoderState, v reflect.Value) {
    	c := v.Complex()
    	if c != 0+0i || state.sendZero {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/testx.go

    //export exportfloat64
    func exportfloat64() float64 {
    	return 0
    }
    
    //export exportcomplex64
    func exportcomplex64() complex64 {
    	return 0
    }
    
    //export exportcomplex128
    func exportcomplex128() complex128 {
    	return 0
    }
    
    // issue 3741
    
    //export exportSliceIn
    func exportSliceIn(s []byte) bool {
    	return len(s) == cap(s)
    }
    
    //export exportSliceOut
    func exportSliceOut() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/testing/quick/quick.go

    		v.SetFloat(float64(randFloat32(rand)))
    	case reflect.Float64:
    		v.SetFloat(randFloat64(rand))
    	case reflect.Complex64:
    		v.SetComplex(complex(float64(randFloat32(rand)), float64(randFloat32(rand))))
    	case reflect.Complex128:
    		v.SetComplex(complex(randFloat64(rand), randFloat64(rand)))
    	case reflect.Int16:
    		v.SetInt(randInt64(rand))
    	case reflect.Int32:
    		v.SetInt(randInt64(rand))
    	case reflect.Int64:
    		v.SetInt(randInt64(rand))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top