Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 426 for segmented (0.2 sec)

  1. test/peano.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that heavy recursion works. Simple torture test for
    // segmented stacks: do math in unary by recursion.
    
    package main
    
    import "runtime"
    
    type Number *Number
    
    // -------------------------------------
    // Peano primitives
    
    func zero() *Number {
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 30 19:39:18 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/sym.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/internal/obj"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Sym represents an object name in a segmented (pkg, name) namespace.
    // Most commonly, this is a Go identifier naming an object declared within a package,
    // but Syms are also used to name internal synthesized objects.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/runtime/mranges.go

    	// These are address over an offset view of the address space on
    	// platforms with a segmented address space, that is, on platforms
    	// where arenaBaseOffset != 0.
    	base, limit offAddr
    }
    
    // makeAddrRange creates a new address range from two virtual addresses.
    //
    // Throws if the base and limit are not in the same memory segment.
    func makeAddrRange(base, limit uintptr) addrRange {
    	r := addrRange{offAddr{base}, offAddr{limit}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1FBF0         ; mapped                 ; 0030          # 13.0 SEGMENTED DIGIT ZERO
    1FBF1         ; mapped                 ; 0031          # 13.0 SEGMENTED DIGIT ONE
    1FBF2         ; mapped                 ; 0032          # 13.0 SEGMENTED DIGIT TWO
    1FBF3         ; mapped                 ; 0033          # 13.0 SEGMENTED DIGIT THREE
    1FBF4         ; mapped                 ; 0034          # 13.0 SEGMENTED DIGIT FOUR
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho_combine_dwarf.go

    }
    
    // machoUpdateSegment updates the load command for a moved segment.
    // Only the linkedit segment should move, and it should have 0 sections.
    func machoUpdateSegment(r loadCmdReader, linkseg *macho.Segment, linkoffset uint64) error {
    	var seg macho.Segment64
    	if err := r.ReadAt(0, &seg); err != nil {
    		return err
    	}
    
    	// Only the linkedit segment moved, anything before that is fine.
    	if seg.Offset < linkseg.Offset {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/sym/segment.go

    // THE SOFTWARE.
    
    package sym
    
    // Terrible but standard terminology.
    // A segment describes a block of file to load into memory.
    // A section further describes the pieces of that block for
    // use in debuggers and such.
    
    type Segment struct {
    	Rwx      uint8  // permission as usual unix bits (5 = r-x etc)
    	Vaddr    uint64 // virtual address
    	Length   uint64 // length in memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/wasm/asm.go

    				for {
    					// look for beginning of zeroes
    					for segmentEnd < dataLen && data[segmentEnd] != 0 {
    						segmentEnd++
    					}
    					// look for end of zeroes
    					zeroEnd = segmentEnd
    					for zeroEnd < dataLen && data[zeroEnd] == 0 {
    						zeroEnd++
    					}
    					// emit segment if omitting zeroes reduces the output size
    					if zeroEnd-segmentEnd >= segmentOverhead || zeroEnd == dataLen {
    						break
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * "/square/okhttp/issues/1486" and decompose into a list of segments like `["square", "okhttp",
     * "issues", "1486"]`.
     *
     * This class offers methods to compose and decompose paths by segment. It composes each path
     * from a list of segments by alternating between "/" and the encoded segment. For example the
     * segments `["a", "b"]` build "/a/b" and the segments `["a", "b", ""]` build "/a/b/".
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

         */
        long sum = 0L;
        Segment<K, V, E, S>[] segments = this.segments;
        for (int i = 0; i < segments.length; ++i) {
          if (segments[i].count != 0) {
            return false;
          }
          sum += segments[i].modCount;
        }
    
        if (sum != 0L) { // recheck unless no modifications
          for (int i = 0; i < segments.length; ++i) {
            if (segments[i].count != 0) {
              return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/debug/macho/macho.go

    type (
    	// A Segment32 is a 32-bit Mach-O segment load command.
    	Segment32 struct {
    		Cmd     LoadCmd
    		Len     uint32
    		Name    [16]byte
    		Addr    uint32
    		Memsz   uint32
    		Offset  uint32
    		Filesz  uint32
    		Maxprot uint32
    		Prot    uint32
    		Nsect   uint32
    		Flag    uint32
    	}
    
    	// A Segment64 is a 64-bit Mach-O segment load command.
    	Segment64 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top