Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 446 for addr1 (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

          (StableHLO_DynamicBroadcastInDimOp
            $bias,
            (Shape_ShapeOfOp $conv_1), $_, $_, $_)),
        (StableHLO_DynamicBroadcastInDimOp
          (StableHLO_ConstantOp $cst),
          (Shape_ShapeOfOp $add_1), $_, $_, $_)),
      (LiftAsTFXlaCallModule<"composite_conv_with_bias_and_relu_dynamic_fn">
        (ArgumentList $lhs, $rhs, $bias),
        (ResultList $res),
        (NamedAttributeList
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_amd64.s

    	RET
    
    // int64 futex(int32 *uaddr, int32 op, int32 val,
    //	struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT,$0
    	MOVQ	addr+0(FP), DI
    	MOVL	op+8(FP), SI
    	MOVL	val+12(FP), DX
    	MOVQ	ts+16(FP), R10
    	MOVQ	addr2+24(FP), R8
    	MOVL	val3+32(FP), R9
    	MOVL	$SYS_futex, AX
    	SYSCALL
    	MOVL	AX, ret+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_amd64.s

    #define SYS_thr_new		455
    #define SYS_mmap		477
    #define SYS_cpuset_getaffinity	487
    #define SYS_pipe2 		542
    #define SYS_kevent		560
    
    TEXT runtime·sys_umtx_op(SB),NOSPLIT,$0
    	MOVQ addr+0(FP), DI
    	MOVL mode+8(FP), SI
    	MOVL val+12(FP), DX
    	MOVQ uaddr1+16(FP), R10
    	MOVQ ut+24(FP), R8
    	MOVL $SYS__umtx_op, AX
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+32(FP)
    	RET
    
    TEXT runtime·thr_new(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. cmd/server-main.go

    		haddrs, err := globalDNSCache.LookupHost(ctx, host)
    		if err == nil {
    			for _, addr := range haddrs {
    				addrs.Add(net.JoinHostPort(addr, globalMinioPort))
    			}
    		} else {
    			// Unable to lookup host in 2-secs, let it fail later anyways.
    			addrs.Add(globalMinioAddr)
    		}
    	} else {
    		addrs.Add(globalMinioAddr)
    	}
    	return addrs.ToSlice()
    }
    
    var globalLoggerOutput io.WriteCloser
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    func IPv4Unspecified() Addr { return AddrFrom4([4]byte{}) }
    
    // AddrFrom4 returns the address of the IPv4 address given by the bytes in addr.
    func AddrFrom4(addr [4]byte) Addr {
    	return Addr{
    		addr: uint128{0, 0xffff00000000 | uint64(addr[0])<<24 | uint64(addr[1])<<16 | uint64(addr[2])<<8 | uint64(addr[3])},
    		z:    z4,
    	}
    }
    
    // AddrFrom16 returns the IPv6 address given by the bytes in addr.
    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. src/debug/buildinfo/buildinfo.go

    type machoExe struct {
    	f *macho.File
    }
    
    func (x *machoExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, load := range x.f.Loads {
    		seg, ok := load.(*macho.Segment)
    		if !ok {
    			continue
    		}
    		if seg.Addr <= addr && addr <= seg.Addr+seg.Filesz-1 {
    			if seg.Name == "__PAGEZERO" {
    				continue
    			}
    			n := seg.Addr + seg.Filesz - addr
    			if n > size {
    				n = size
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/sync/atomic/doc.go

    func SwapInt64(addr *int64, new int64) (old int64)
    
    // SwapUint32 atomically stores new into *addr and returns the previous *addr value.
    // Consider using the more ergonomic and less error-prone [Uint32.Swap] instead.
    func SwapUint32(addr *uint32, new uint32) (old uint32)
    
    // SwapUint64 atomically stores new into *addr and returns the previous *addr value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    }
                }
            }
        }
    
        NbtAddress[] getAllByName( Name name, InetAddress addr )
                                                throws UnknownHostException {
            int n;
            NameQueryRequest request = new NameQueryRequest( name );
            NameQueryResponse response = new NameQueryResponse();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  9. api/go1.18.txt

    pkg net/netip, method (Addr) MarshalBinary() ([]uint8, error)
    pkg net/netip, method (Addr) MarshalText() ([]uint8, error)
    pkg net/netip, method (Addr) Next() Addr
    pkg net/netip, method (Addr) Prefix(int) (Prefix, error)
    pkg net/netip, method (Addr) Prev() Addr
    pkg net/netip, method (Addr) String() string
    pkg net/netip, method (Addr) StringExpanded() string
    pkg net/netip, method (Addr) Unmap() Addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. src/runtime/race.go

    	racereleaseg(getg(), addr)
    }
    
    //go:nosplit
    func racereleaseg(gp *g, addr unsafe.Pointer) {
    	if getg().raceignore != 0 || !isvalidaddr(addr) {
    		return
    	}
    	racecall(&__tsan_release, gp.racectx, uintptr(addr), 0, 0)
    }
    
    //go:nosplit
    func racereleaseacquire(addr unsafe.Pointer) {
    	racereleaseacquireg(getg(), addr)
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top