Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for mmap (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	return i
    }
    
    // Mmap manager, for use by operating system-specific implementations.
    
    type mmapper struct {
    	sync.Mutex
    	active map[*byte][]byte // active mappings; key is last byte in mapping
    	mmap   func(addr, length uintptr, prot, flags, fd int, offset int64) (uintptr, error)
    	munmap func(addr uintptr, length uintptr) error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/runtime/map.go

    		top += minTopHash
    	}
    	return top
    }
    
    func evacuated(b *bmap) bool {
    	h := b.tophash[0]
    	return h > emptyOne && h < minTopHash
    }
    
    func (b *bmap) overflow(t *maptype) *bmap {
    	return *(**bmap)(add(unsafe.Pointer(b), uintptr(t.BucketSize)-goarch.PtrSize))
    }
    
    func (b *bmap) setoverflow(t *maptype, ovf *bmap) {
    	*(**bmap)(add(unsafe.Pointer(b), uintptr(t.BucketSize)-goarch.PtrSize)) = ovf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	// number by to compute an index into the first level arena map.
    	arenaL1Shift = arenaL2Bits
    
    	// arenaBits is the total bits in a combined arena map index.
    	// This is split between the index into the L1 arena map and
    	// the L2 arena map.
    	arenaBits = arenaL1Bits + arenaL2Bits
    
    	// arenaBaseOffset is the pointer value that corresponds to
    	// index 0 in the heap arena map.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		public:               []*Service{},
    		privateByNamespace:   map[string][]*Service{},
    		exportedToNamespace:  map[string][]*Service{},
    		HostnameAndNamespace: map[host.Name]map[string]*Service{},
    		instancesByPort:      map[string]map[int][]*IstioEndpoint{},
    	}
    }
    
    // exportToDefaults contains the default exportTo values.
    type exportToDefaults struct {
    	service         sets.Set[visibility.Instance]
    	virtualService  sets.Set[visibility.Instance]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	n = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    			crtdbase = getPathFile("crtdbase.o")
    		}
    		argv = append(argv, crtcxa)
    		argv = append(argv, crtdbase)
    	}
    
    	if ctxt.linkShared {
    		seenDirs := make(map[string]bool)
    		seenLibs := make(map[string]bool)
    		addshlib := func(path string) {
    			dir, base := filepath.Split(path)
    			if !seenDirs[dir] {
    				argv = append(argv, "-L"+dir)
    				if !rpath.set {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		elfType:              make(map[Sym]elf.SymType),
    		elfSym:               make(map[Sym]int32),
    		localElfSym:          make(map[Sym]int32),
    		symPkg:               make(map[Sym]string),
    		plt:                  make(map[Sym]int32),
    		got:                  make(map[Sym]int32),
    		dynid:                make(map[Sym]int32),
    		attrCgoExportDynamic: make(map[Sym]struct{}),
    		attrCgoExportStatic:  make(map[Sym]struct{}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    		// _Chan _Comm ntype
    		p.next()
    		t := new(ChanType)
    		t.pos = pos
    		if p.got(_Arrow) {
    			t.Dir = SendOnly
    		}
    		t.Elem = p.chanElem()
    		return t
    
    	case _Map:
    		// _Map '[' ntype ']' ntype
    		p.next()
    		p.want(_Lbrack)
    		t := new(MapType)
    		t.pos = pos
    		t.Key = p.type_()
    		p.want(_Rbrack)
    		t.Value = p.type_()
    		return t
    
    	case _Struct:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    			}
    			cmap := xdstest.ExtractClusters(clusters)
    			got := xdstest.MapKeys(cmap)
    
    			// Check we have all expected clusters
    			if !reflect.DeepEqual(xdstest.MapKeys(tt.clusters), got) {
    				t.Errorf("expected clusters: %v, got: %v", xdstest.MapKeys(tt.clusters), got)
    			}
    
    			for cname, c := range cmap {
    				// Check the upstream endpoints match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/reflect/type.go

    			return ti.(Type)
    		}
    	}
    
    	// Make a map type.
    	// Note: flag values must match those used in the TMAP case
    	// in ../cmd/compile/internal/reflectdata/reflect.go:writeType.
    	var imap any = (map[unsafe.Pointer]unsafe.Pointer)(nil)
    	mt := **(**mapType)(unsafe.Pointer(&imap))
    	mt.Str = resolveReflectName(newName(s, "", false, false))
    	mt.TFlag = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top