Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for ju32 (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/test/testdata/fp_test.go

    	if x != expected {
    		fmt.Printf("%s: Expected 0x%016x, got 0x%016x\n", s, expected, x)
    	}
    }
    
    func expectUint32(t *testing.T, s string, x, expected uint32) {
    	if x != expected {
    		fmt.Printf("U32 %s: Expected 0x%08x, got 0x%08x\n", s, expected, x)
    	}
    }
    
    func expectInt32(t *testing.T, s string, x, expected int32) {
    	if x != expected {
    		fmt.Printf("I32 %s: Expected 0x%08x, got 0x%08x\n", s, expected, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  7. gradle/verification-keyring.keys

    RDPaLVGt3oW2iCX5arWGs75AiR9Z22+KXs5ku+AbzhLO/rlsbl09/moL4Wzf7DY+
    NSJgD3kepdJyesPTk3Raz8e6VpBG3OcPdaFYVqfE3bp+R0A8ur1KSCK6M8uhLYr7
    QE8hCv326yVXKJ9aM6kHIMtN4H53ZG3JVYJJz2GrjJxqZ/plgFUpWR4oltIf/jU3
    AjHr+2cA7Ut3hIuUmfCVHLi+ddpaxLFGreofQ4aQQ9x08uSKfXUqqssHT9jB6uyL
    ircupIx9+EeoJ0VKP2cefkNNTf4WvyZFaVKFr8Zz1Ng0URYTK1naqS69B+kgWpC6
    cLW2hZ3mjidfNxWSfOtxuafYhMFtvA0UdhqbghStpz/tj6k74lktKeLMpl/45Ktx
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (1)
  8. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.las"/>
        <glob pattern="*.laz"/>
      </mime-type>
      <mime-type type="application/x-authorware-bin">
        <glob pattern="*.aab"/>
        <glob pattern="*.x32"/>
        <glob pattern="*.u32"/>
        <glob pattern="*.vox"/>
      </mime-type>
      <mime-type type="application/x-authorware-map">
        <glob pattern="*.aam"/>
      </mime-type>
      <mime-type type="application/x-authorware-seg">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top