Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for uimm16 (0.2 sec)

  1. src/crypto/tls/key_agreement.go

    	// nil.
    	generateServerKeyExchange(*Config, *Certificate, *clientHelloMsg, *serverHelloMsg) (*serverKeyExchangeMsg, error)
    	processClientKeyExchange(*Config, *Certificate, *clientKeyExchangeMsg, uint16) ([]byte, error)
    
    	// On the client side, the next two methods are called in order.
    
    	// This method may not be called if the server doesn't send a
    	// ServerKeyExchange message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. test/codegen/mathbits.go

    func ReverseBytes32(n uint32) uint32 {
    	// amd64:"BSWAPL"
    	// 386:"BSWAPL"
    	// s390x:"MOVWBR"
    	// arm64:"REVW"
    	// ppc64x/power10: "BRW"
    	return bits.ReverseBytes32(n)
    }
    
    func ReverseBytes16(n uint16) uint16 {
    	// amd64:"ROLW"
    	// arm64:"REV16W",-"UBFX",-"ORR"
    	// arm/5:"SLL","SRL","ORR"
    	// arm/6:"REV16"
    	// arm/7:"REV16"
    	// ppc64x/power10: "BRH"
    	return bits.ReverseBytes16(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/net/lookup_windows.go

    		}
    		if !syscall.DnsNameCompare(cname, p.Name) {
    			continue
    		}
    		rec = append(rec, p)
    	}
    	return rec
    }
    
    // returns the last CNAME in chain.
    func resolveCNAME(name *uint16, r *syscall.DNSRecord) *uint16 {
    	// limit cname resolving to 10 in case of an infinite CNAME loop
    Cname:
    	for cnameloop := 0; cnameloop < 10; cnameloop++ {
    		for p := r; p != nil; p = p.Next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func libfuzzerTraceCmp1(uint8, uint8, uint)
    func libfuzzerTraceCmp2(uint16, uint16, uint)
    func libfuzzerTraceCmp4(uint32, uint32, uint)
    func libfuzzerTraceCmp8(uint64, uint64, uint)
    func libfuzzerTraceConstCmp1(uint8, uint8, uint)
    func libfuzzerTraceConstCmp2(uint16, uint16, uint)
    func libfuzzerTraceConstCmp4(uint32, uint32, uint)
    func libfuzzerTraceConstCmp8(uint64, uint64, uint)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/net/lookup_plan9.go

    		priority, _, priorityOk := dtoi(f[3])
    		weight, _, weightOk := dtoi(f[2])
    		if !(portOk && priorityOk && weightOk) {
    			continue
    		}
    		addrs = append(addrs, &SRV{absDomainName(f[5]), uint16(port), uint16(priority), uint16(weight)})
    		cname = absDomainName(f[0])
    	}
    	byPriorityWeight(addrs).sort()
    	return
    }
    
    func (r *Resolver) lookupMX(ctx context.Context, name string) (mx []*MX, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    	Bool:          "bool",
    	Int:           "int",
    	Int8:          "int8",
    	Int16:         "int16",
    	Int32:         "int32",
    	Int64:         "int64",
    	Uint:          "uint",
    	Uint8:         "uint8",
    	Uint16:        "uint16",
    	Uint32:        "uint32",
    	Uint64:        "uint64",
    	Uintptr:       "uintptr",
    	Float32:       "float32",
    	Float64:       "float64",
    	Complex64:     "complex64",
    	Complex128:    "complex128",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ADDCconst", argLength: 1, reg: gp11xer, asm: "ADDC", typ: "(UInt64, UInt64)", aux: "Int64"},    // arg0 + imm16 -> out, CA
    		{name: "SUBCconst", argLength: 1, reg: gp11xer, asm: "SUBC", typ: "(UInt64, UInt64)", aux: "Int64"},    // imm16 - arg0 -> out, CA
    		{name: "ADDE", argLength: 3, reg: gp2xer1xer, asm: "ADDE", typ: "(UInt64, UInt64)", commutative: true}, // arg0 + arg1 + CA (arg2) -> out, CA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/nfacct_linux_test.go

    	errs []error
    }
    
    // newRequest creates a request object with the given cmd, flags, predefined response and error.
    // It additionally records the created request object.
    func (fh *fakeHandler) newRequest(cmd int, flags uint16) request {
    	var response [][]byte
    	if fh.responses != nil && len(fh.responses) > 0 {
    		response = fh.responses[0]
    		// remove the response from the list of predefined responses and add it to request object for mocking.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. src/crypto/tls/ticket.go

    	//
    	//   opaque Certificate<1..2^24-1>;
    	//
    	//   Certificate CertificateChain<0..2^24-1>;
    	//
    	//   opaque Extra<0..2^24-1>;
    	//
    	//   struct {
    	//       uint16 version;
    	//       SessionStateType type;
    	//       uint16 cipher_suite;
    	//       uint64 created_at;
    	//       opaque secret<1..2^8-1>;
    	//       Extra extra<0..2^24-1>;
    	//       uint8 ext_master_secret = { 0, 1 };
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/runtime/os_windows.go

    	_ stdFunction
    )
    
    var (
    	bcryptprimitivesdll = [...]uint16{'b', 'c', 'r', 'y', 'p', 't', 'p', 'r', 'i', 'm', 'i', 't', 'i', 'v', 'e', 's', '.', 'd', 'l', 'l', 0}
    	ntdlldll            = [...]uint16{'n', 't', 'd', 'l', 'l', '.', 'd', 'l', 'l', 0}
    	powrprofdll         = [...]uint16{'p', 'o', 'w', 'r', 'p', 'r', 'o', 'f', '.', 'd', 'l', 'l', 0}
    	winmmdll            = [...]uint16{'w', 'i', 'n', 'm', 'm', '.', 'd', 'l', 'l', 0}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top