Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for BeUint16 (0.29 sec)

  1. src/encoding/gob/decode.go

    func decUint8(i *decInstr, state *decoderState, value reflect.Value) {
    	v := state.decodeUint()
    	if math.MaxUint8 < v {
    		error_(i.ovfl)
    	}
    	value.SetUint(v)
    }
    
    // decInt16 decodes an integer and stores it as an int16 in value.
    func decInt16(i *decInstr, state *decoderState, value reflect.Value) {
    	v := state.decodeInt()
    	if v < math.MinInt16 || math.MaxInt16 < v {
    		error_(i.ovfl)
    	}
    	value.SetInt(v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  2. src/crypto/internal/mlkem768/mlkem768.go

    	off := len(buf)  // index into buf, starts in a "buffer fully consumed" state
    	for {
    		if off >= len(buf) {
    			B.Read(buf[:])
    			off = 0
    		}
    		d1 := byteorder.LeUint16(buf[off:]) & 0b1111_1111_1111
    		d2 := byteorder.LeUint16(buf[off+1:]) >> 4
    		off += 3
    		if d1 < q {
    			a[j] = fieldElement(d1)
    			j++
    		}
    		if j >= len(a) {
    			break
    		}
    		if d2 < q {
    			a[j] = fieldElement(d2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    		execDec(instr, state, t, reflect.ValueOf(&data))
    		if data != 17 {
    			t.Errorf("uint8 a = %v not 17", data)
    		}
    	}
    
    	// int16
    	{
    		var data int16
    		instr := &decInstr{decInt16, 6, nil, ovfl}
    		state := newDecodeStateFromData(signedResult)
    		execDec(instr, state, t, reflect.ValueOf(&data))
    		if data != 17 {
    			t.Errorf("int16 a = %v not 17", data)
    		}
    	}
    
    	// uint16
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    	if len(b) < 2 {
    		return errors.New("unexpected slice size")
    	}
    	var addr Addr
    	err := addr.UnmarshalBinary(b[:len(b)-2])
    	if err != nil {
    		return err
    	}
    	*p = AddrPortFrom(addr, byteorder.LeUint16(b[len(b)-2:]))
    	return nil
    }
    
    // Prefix is an IP address prefix (CIDR) representing an IP network.
    //
    // The first [Prefix.Bits]() of [Addr]() are specified. The remaining bits match any address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    8);const highStr=('0000000'+high.toString(16)).substr(-8);const result=highStr+lowStr;return result;},decodeInt8(){const result=this.payload_.getInt8(this.position_,true);this.position_+=1;return result;},decodeInt16(){const result=this.payload_.getInt16(this.position_,true);this.position_+=2;return result;},decodeInt32(){const result=this.payload_.getInt32(this.position_,true);this.position_+=4;return result;},decodeInt64ToString(){return this.decodeUInt64ToString();},decodeUInteger(is64){if(is64){return...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (2)
Back to top