Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 265 for UInt32 (0.14 sec)

  1. src/os/os_windows_test.go

    		syscall.FILE_FLAG_OPEN_REPARSE_POINT|syscall.FILE_FLAG_BACKUP_SEMANTICS, 0)
    	if err != nil {
    		return err
    	}
    	defer syscall.CloseHandle(fd)
    
    	buflen := uint32(rdb.header.ReparseDataLength) + uint32(unsafe.Sizeof(rdb.header))
    	var bytesReturned uint32
    	return syscall.DeviceIoControl(fd, windows.FSCTL_SET_REPARSE_POINT,
    		(*byte)(unsafe.Pointer(&rdb.header)), buflen, nil, 0, &bytesReturned, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_aix_ppc64.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getkerninfo(op int32, where uintptr, size uintptr, arg int64) (i int32, err error) {
    	r0, _, e1 := syscall6(uintptr(unsafe.Pointer(&libc_Getkerninfo)), 4, uintptr(op), uintptr(where), uintptr(size), uintptr(arg), 0, 0)
    	i = int32(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_ppc64x.s

    #else
    #define P8_LXVB16X(RA,RB,VT)  LXVD2X	(RA+RB), VT
    #define P8_STXVB16X(VS,RA,RB) STXVD2X	VS, (RA+RB)
    #define XXBRD_ON_LE(VA, VT)
    #endif // defined(GOARCH_ppc64le)
    
    // func setEncryptKeyAsm(nr int, key *byte, enc *uint32, dec *uint32)
    TEXT ·expandKeyAsm(SB), NOSPLIT|NOFRAME, $0
    	// Load the arguments inside the registers
    	MOVD	nr+0(FP), ROUNDS
    	MOVD	key+8(FP), INP
    	MOVD	enc+16(FP), OUTENC
    	MOVD	dec+24(FP), OUTDEC
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/tracing.go

    		configureCustomTags(h.Tracing, map[string]*telemetrypb.Tracing_CustomTag{}, proxyCfg, proxy)
    		if proxyCfg.GetTracing().GetMaxPathTagLength() != 0 {
    			h.Tracing.MaxPathTagLength = wrapperspb.UInt32(proxyCfg.GetTracing().MaxPathTagLength)
    		}
    		return nil
    	}
    	spec := tracing.ServerSpec
    	if class == networking.ListenerClassSidecarOutbound || class == networking.ListenerClassGateway {
    		spec = tracing.ClientSpec
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    		// parsing yields a significant performance increase.
    		off := 0
    		acc := uint32(0)
    		for ; off < len(s); off++ {
    			c := s[off]
    			if c >= '0' && c <= '9' {
    				acc = (acc << 4) + uint32(c-'0')
    			} else if c >= 'a' && c <= 'f' {
    				acc = (acc << 4) + uint32(c-'a'+10)
    			} else if c >= 'A' && c <= 'F' {
    				acc = (acc << 4) + uint32(c-'A'+10)
    			} else {
    				break
    			}
    			if off > 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    	}
    	return &core.CidrRange{
    		AddressPrefix: prefix.Addr().String(),
    		PrefixLen: &wrapperspb.UInt32Value{
    			Value: uint32(prefix.Bits()),
    		},
    	}, nil
    }
    
    // BuildAddress returns a SocketAddress with the given ip and port or uds.
    func BuildAddress(bind string, port uint32) *core.Address {
    	address := BuildNetworkAddress(bind, port, istionetworking.TransportProtocolTCP)
    	if address != nil {
    		return address
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/image/gif/writer_test.go

    			return
    		}
    
    		rednessAt := func(x int, y int) uint32 {
    			r, _, _, _ := m.At(x, y).RGBA()
    			// Shift by 8 to convert from 16 bit color to 8 bit color.
    			return r >> 8
    		}
    
    		// Round-tripping a still (non-animated) image.Image through
    		// Encode+Decode should shift the origin to (0, 0).
    		if got, want := rednessAt(0, 0), uint32(0x22); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    	}
    	print("\n")
    }
    
    // readvarintUnsafe reads the uint32 in varint format starting at fd, and returns the
    // uint32 and a pointer to the byte following the varint.
    //
    // The implementation is the same with runtime.readvarint, except that this function
    // uses unsafe.Pointer for speed.
    func readvarintUnsafe(fd unsafe.Pointer) (uint32, unsafe.Pointer) {
    	var r uint32
    	var shift int
    	for {
    		b := *(*uint8)(fd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    	for _, dst := range in.Route {
    		weight := &wrappers.UInt32Value{Value: uint32(dst.Weight)}
    		if dst.Weight == 0 {
    			// Ignore 0 weighted clusters if there are other clusters in the route.
    			// But if this is the only cluster in the route, then add it as a cluster with weight 100
    			if len(in.Route) == 1 {
    				weight.Value = uint32(100)
    			} else {
    				continue
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/parser.go

    	//    dedicated, fake Ps.
    	//
    	// 4. Finally, we validate the trace.
    
    	p.strings = make(map[uint64]string)
    	p.batchOffsets = make(map[int32][]batchOffset)
    	p.lastGs = make(map[int32]uint64)
    	p.stacks = make(map[uint32][]uint64)
    	p.pcs = make(map[uint64]Frame)
    	p.inlineStringsMapping = make(map[string]int)
    
    	if err := p.collectBatchesAndCPUSamples(); err != nil {
    		return Trace{}, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top