Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ju32 (0.05 sec)

  1. test/prove.go

    // Look through all extensions
    func signExtNto64(x []int, j8 int8, j16 int16, j32 int32) int {
    	if len(x) < 22 {
    		return 0
    	}
    	if j8 >= 0 && j8 < 22 {
    		return x[j8] // ERROR "Proved IsInBounds$"
    	}
    	if j16 >= 0 && j16 < 22 {
    		return x[j16] // ERROR "Proved IsInBounds$"
    	}
    	if j32 >= 0 && j32 < 22 {
    		return x[j32] // ERROR "Proved IsInBounds$"
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/strconv/ftoaryu.go

    	var dl, dc, du uint64
    	var dl0, dc0, du0 bool
    	if flt == &float32info {
    		var dl32, dc32, du32 uint32
    		dl32, _, dl0 = mult64bitPow10(uint32(ml), e2, q)
    		dc32, _, dc0 = mult64bitPow10(uint32(mc), e2, q)
    		du32, e2, du0 = mult64bitPow10(uint32(mu), e2, q)
    		dl, dc, du = uint64(dl32), uint64(dc32), uint64(du32)
    	} else {
    		dl, _, dl0 = mult128bitPow10(ml, e2, q)
    		dc, _, dc0 = mult128bitPow10(mc, e2, q)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/codegen_test.cc

                  xla::ShapeUtil::MakeShape(xla::F32, {1}),
                  xla::ShapeUtil::MakeShape(xla::S32, {5}),
              },
              xla::ShapeUtil::MakeTupleShape({
                  xla::ShapeUtil::MakeShape(xla::U32, {5, 6}),
                  xla::ShapeUtil::MakeShape(xla::F32, {1}),
                  xla::ShapeUtil::MakeShape(xla::S32, {5}),
              }))
              .ToProto();
      compile_result.entry_point = "entry_point";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    		if inst.Op&^15 == fp.op {
    			// remove gnu syntax suffixes
    			op = strings.Replace(op, ".F32", "", -1)
    			op = strings.Replace(op, ".F64", "", -1)
    			op = strings.Replace(op, ".S32", "", -1)
    			op = strings.Replace(op, ".U32", "", -1)
    			op = strings.Replace(op, ".32", "", -1)
    			// compose op name
    			if fp.op == VLDR_EQ || fp.op == VSTR_EQ {
    				switch {
    				case strings.HasPrefix(args[fp.transArgs[0]], "D"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen_test_h.golden

    //   is guaranteed that no thread may call a non-const method.
    //
    // The logical function signature is:
    //   ((unknown): f32[1,2], (unknown): s64[3,4], (unknown): f32[1], (unknown): f32[1], (unknown): s32[5]) -> (u32[5,6], f32[1], s32[5])
    //
    // Memory stats:
    //   arg bytes total:    392
    //   arg bytes aligned:  576
    //   temp bytes total:   171
    //   temp bytes aligned: 512
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/runtime/debuglog.go

    //go:nosplit
    func (l *dlogger) u8(x uint8) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u16(x uint16) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u32(x uint32) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u64(x uint64) *dlogger {
    	if !dlogEnabled {
    		return l
    	}
    	l.w.byte(debugLogUint)
    	l.w.uvarint(x)
    	return l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    }
    
    var rustBasicTypes = map[byte]string{
    	'a': "i8",
    	'b': "bool",
    	'c': "char",
    	'd': "f64",
    	'e': "str",
    	'f': "f32",
    	'h': "u8",
    	'i': "isize",
    	'j': "usize",
    	'l': "i32",
    	'm': "u32",
    	'n': "i128",
    	'o': "u128",
    	'p': "_",
    	's': "i16",
    	't': "u16",
    	'u': "()",
    	'v': "...",
    	'x': "i64",
    	'y': "u64",
    	'z': "!",
    }
    
    // basicType parses:
    //
    //	<basic-type>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen.cc

        case xla::S64:
          *str = "int64_t";
          break;
        case xla::U8:
          *str = "tensorflow::uint8";
          break;
        case xla::U16:
          *str = "tensorflow::uint16";
          break;
        case xla::U32:
          *str = "tensorflow::uint32";
          break;
        case xla::U64:
          *str = "tensorflow::uint64";
          break;
        case xla::F32:
          *str = "float";
          break;
        case xla::F64:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top