Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for uimm16 (0.24 sec)

  1. cmd/bucket-replication.go

    	// Read resync meta header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case resyncMetaFormat:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case resyncMetaVersion:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    	// OK, parse data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. tests/scan_test.go

    		IntField           int
    		Int8Field          int8
    		Int16Field         int16
    		Int32Field         int32
    		Int64Field         int64
    		UIntField          uint
    		UInt8Field         uint8
    		UInt16Field        uint16
    		UInt32Field        uint32
    		UInt64Field        uint64
    		Float32Field       float32
    		Float64Field       float64
    		StringField        string
    		TimeField          time.Time
    		TimePtrField       *time.Time
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    		if len(state.varSlots[varID]) > 1 {
    			list = append(list, dwarf.DW_OP_piece)
    			list = dwarf.AppendUleb128(list, uint64(slot.Type.Size()))
    		}
    	}
    	state.ctxt.Arch.ByteOrder.PutUint16(list[sizeIdx:], uint16(len(list)-sizeIdx-2))
    	state.lists[varID] = list
    }
    
    // PutLocationList adds list (a location list in its intermediate representation) to listSym.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. internal/grid/connection.go

    }
    
    // writeFrame writes frame binary representation into w.
    func (ww *wsWriter) writeFrame(w io.Writer, f ws.Frame) error {
    	const (
    		bit0  = 0x80
    		len7  = int64(125)
    		len16 = int64(^(uint16(0)))
    		len64 = int64(^(uint64(0)) >> 1)
    	)
    
    	bts := ww.tmp[:]
    	if f.Header.Fin {
    		bts[0] |= bit0
    	}
    	bts[0] |= f.Header.Rsv << 4
    	bts[0] |= byte(f.Header.OpCode)
    
    	var n int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. internal/grid/handlers.go

    	bootstrapPrefix = "bootstrap"
    	peerPrefix      = "peer"
    	peerPrefixS3    = "peerS3"
    	healPrefix      = "heal"
    )
    
    func init() {
    	// Static check if we exceed 255 handler ids.
    	// Extend the type to uint16 when hit.
    	if handlerLast > 255 {
    		panic(fmt.Sprintf("out of handler IDs. %d > %d", handlerLast, 255))
    	}
    }
    
    func (h HandlerID) valid() bool {
    	return h != handlerInvalid && h < handlerLast
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVBZreg (MOVDconst [c]))  => (MOVDconst [int64(uint8(c))])
    (MOVBreg (MOVDconst [c]))  => (MOVDconst [int64(int8(c))])
    (MOVHZreg (MOVDconst [c]))  => (MOVDconst [int64(uint16(c))])
    (MOVHreg (MOVDconst [c]))  => (MOVDconst [int64(int16(c))])
    (MOVWreg (MOVDconst [c])) => (MOVDconst [int64(int32(c))])
    (MOVWZreg (MOVDconst [c])) => (MOVDconst [int64(uint32(c))])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    				st.err.Errorf(s, "pc-relative relocation address for %s is too big: %#x", ldr.SymName(rs), o)
    			} else if o != int64(int16(o)) && o != int64(uint16(o)) {
    				st.err.Errorf(s, "non-pc-relative relocation address for %s is too big: %#x", ldr.SymName(rs), uint64(o))
    			}
    			target.Arch.ByteOrder.PutUint16(P[off:], uint16(o))
    		case 4:
    			if (rt == objabi.R_PCREL || rt == objabi.R_CALL) && o != int64(int32(o)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritePPC64.go

    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVHZreg (MOVDconst [c]))
    	// result: (MOVDconst [int64(uint16(c))])
    	for {
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(uint16(c)))
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64MOVHload(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    For example:
    
    ```python
    import tensorflow as tf
    from tensorflow.python.ops import bitwise_ops
    dtype_list = [tf.int8, tf.int16, tf.int32, tf.int64,
                  tf.uint8, tf.uint16, tf.uint32, tf.uint64]
    
    for dtype in dtype_list:
      lhs = tf.constant([0, 5, 3, 14], dtype=dtype)
      rhs = tf.constant([5, 0, 7, 11], dtype=dtype)
      exp = tf.constant([0, 0, 3, 10], dtype=tf.float32)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top