Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for int1 (0.05 sec)

  1. src/cmd/cgo/out.go

    	"byte":       {Size: 1, Align: 1, C: c("GoUint8")},
    	"int":        {Size: 0, Align: 0, C: c("GoInt")},
    	"uint":       {Size: 0, Align: 0, C: c("GoUint")},
    	"rune":       {Size: 4, Align: 4, C: c("GoInt32")},
    	"int8":       {Size: 1, Align: 1, C: c("GoInt8")},
    	"uint8":      {Size: 1, Align: 1, C: c("GoUint8")},
    	"int16":      {Size: 2, Align: 2, C: c("GoInt16")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    		s := ((x >> 18) & 1)
    		return Imm_fp{uint8(s), int8(exp) - 3, uint8(pre)}
    
    	case arg_immediate_exp_3_pre_4_imm8:
    		pre := (x >> 13) & (1<<4 - 1)
    		exp := 1 - ((x >> 19) & 1)
    		exp = (exp << 2) + ((x >> 17) & (1<<2 - 1))
    		s := ((x >> 20) & 1)
    		return Imm_fp{uint8(s), int8(exp) - 3, uint8(pre)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		newattr(die, dwarf.DW_AT_encoding, dwarf.DW_CLS_CONSTANT, dwarf.DW_ATE_boolean, 0)
    		newattr(die, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, bytesize, 0)
    
    	case abi.Int,
    		abi.Int8,
    		abi.Int16,
    		abi.Int32,
    		abi.Int64:
    		die = d.newdie(&dwtypes, dwarf.DW_ABRV_BASETYPE, name)
    		newattr(die, dwarf.DW_AT_encoding, dwarf.DW_CLS_CONSTANT, dwarf.DW_ATE_signed, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      }
      return failure();
    }
    
    // Converts the element type of the input tensor to the corresponding quantized
    // version. Supports only int8 for now and returns nullptr if the input type is
    // not supported.
    ShapedType ConvertIntToQint(ShapedType input_type, MLIRContext* ctx) {
      int bit_width;
      bool is_signed;
    
      Type ele_type = input_type.getElementType();
      if (ele_type.isIntOrFloat()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    }
    
    //go:nosplit
    func (sc spanClass) sizeclass() int8 {
    	return int8(sc >> 1)
    }
    
    //go:nosplit
    func (sc spanClass) noscan() bool {
    	return sc&1 != 0
    }
    
    // arenaIndex returns the index into mheap_.arenas of the arena
    // containing metadata for p. This index combines of an index into the
    // L1 map and an index into the L2 map and should be used as
    // mheap_.arenas[ai.l1()][ai.l2()].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.informix-visionary",
    				"application/vnd.intercon.formnet",
    				"application/vnd.intertrust.digibox",
    				"application/vnd.intertrust.nncp",
    				"application/vnd.intu.qbo",
    				"application/vnd.intu.qfx",
    				"application/vnd.iptc.g2.conceptitem+xml",
    				"application/vnd.iptc.g2.knowledgeitem+xml",
    				"application/vnd.iptc.g2.newsitem+xml",
    				"application/vnd.iptc.g2.packageitem+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        return sorted(list(tfr_funcs))
    
    
    _PY_TYPE_TO_TFR = {
        bool: TFRTypes.I1,
        int: TFRTypes.I64,
        float: TFRTypes.F32,
    }
    
    _TF_DTYPE_TO_TFR = {
        'bool': TFRTypes.I1,
        'int64': TFRTypes.I64,
        'int32': TFRTypes.I32,
        'int16': TFRTypes.I16,
        'int8': TFRTypes.I8,
        'float32': TFRTypes.F32,
    }
    
    _AG_FIXED_RETURN_TYPE = {
        'for_stmt': type(None),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    func (c *ctxt5) oshrr(r int, i int, b int, sc int) uint32 {
    	return c.olhr(int32(i), b, r, sc) ^ (1<<22 | 1<<20)
    }
    
    func (c *ctxt5) olrr(i int, b int, r int, sc int) uint32 {
    	return c.olr(int32(i), b, r, sc) ^ (1 << 25)
    }
    
    func (c *ctxt5) olhrr(i int, b int, r int, sc int) uint32 {
    	return c.olhr(int32(i), b, r, sc) ^ (1 << 22)
    }
    
    func (c *ctxt5) ofsr(a obj.As, r int, v int32, b int, sc int, p *obj.Prog) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    					// c also dominates all restores.  Walk down into c.
    					b = c
    					break
    				}
    			}
    			if b == nil {
    				// Ran out of blocks which dominate all restores.
    				break
    			}
    
    			var depth int16
    			if l := s.loopnest.b2l[b.ID]; l != nil {
    				depth = l.depth
    			}
    			if depth > bestDepth {
    				// Don't push the spill into a deeper loop.
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	SHA256MSG2 (BX), X11     // 440f38cd1b
    	SHA256MSG2 (R11), X11    // 450f38cd1b
    	SHA256MSG2 X2, X11       // 440f38cdda
    	SHA256MSG2 X11, X11      // 450f38cddb
    	// Test VPERMQ with both uint8 and int8 immediate args
    	VPERMQ $-40, Y8, Y8 // c443fd00c0d8
    	VPERMQ $216, Y8, Y8 // c443fd00c0d8
    	// Test that VPERMPD that shares ytab list with VPERMQ continues to work too.
    	VPERMPD $-40, Y7, Y7 // c4e3fd01ffd8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
Back to top