Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,203 for aranges (0.16 sec)

  1. src/debug/dwarf/open.go

    // the ".debug_abbrev" section.
    func New(abbrev, aranges, frame, info, line, pubnames, ranges, str []byte) (*Data, error) {
    	d := &Data{
    		abbrev:      abbrev,
    		aranges:     aranges,
    		frame:       frame,
    		info:        info,
    		line:        line,
    		pubnames:    pubnames,
    		ranges:      ranges,
    		str:         str,
    		abbrevCache: make(map[uint64]abbrevTable),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/debug/dwarf/entry_test.go

    			}
    			ranges, err := d.Ranges(entry)
    			if err != nil {
    				t.Errorf("%s: subprogram %d: %v", test.filename, i, err)
    				continue
    			}
    			if !reflect.DeepEqual(ranges, subprograms[i].ranges) {
    				t.Errorf("%s: subprogram %d ranges are %x, expected %x", test.filename, i, ranges, subprograms[i].ranges)
    			}
    			i++
    		}
    
    		if i < len(subprograms) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/debug/dwarf/line_test.go

    	// unit is malformed (negative).
    	var aranges, frame, pubnames, ranges, str []byte
    	abbrev := []byte{0x10, 0x20, 0x20, 0x20, 0x21, 0x20, 0x10, 0x21, 0x61,
    		0x0, 0x0, 0xff, 0x20, 0xff, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
    		0x20, 0x20, 0x20, 0x20, 0x20, 0x20}
    	info := []byte{0x0, 0x0, 0x0, 0x9, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0,
    		0x20, 0x10, 0x10}
    	line := []byte{0x20}
    	Data0, err := New(abbrev, aranges, frame, info, line, pubnames, ranges, str)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. src/internal/xcoff/xcoff.go

    	SSUBTYP_DWPBNMS = 0x30000 // DWARF public names section
    	SSUBTYP_DWPBTYP = 0x40000 // DWARF public types section
    	SSUBTYP_DWARNGE = 0x50000 // DWARF aranges section
    	SSUBTYP_DWABREV = 0x60000 // DWARF abbreviation section
    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    	SSUBTYP_DWRNGES = 0x80000 // DWARF ranges section
    	SSUBTYP_DWLOC   = 0x90000 // DWARF location lists section
    	SSUBTYP_DWFRAME = 0xA0000 // DWARF frames section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	SSUBTYP_DWPBTYP = 0x40000 // DWARF public types section
    	SSUBTYP_DWARNGE = 0x50000 // DWARF aranges section
    	SSUBTYP_DWABREV = 0x60000 // DWARF abbreviation section
    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    	SSUBTYP_DWRNGES = 0x80000 // DWARF ranges section
    	SSUBTYP_DWLOC   = 0x90000 // DWARF location lists section
    	SSUBTYP_DWFRAME = 0xA0000 // DWARF frames section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/runtime/mranges.go

    	coalescesDown := i > 0 && a.ranges[i-1].limit.equal(r.base)
    	coalescesUp := i < len(a.ranges) && r.limit.equal(a.ranges[i].base)
    	if coalescesUp && coalescesDown {
    		// We have neighbors and they both border us.
    		// Merge a.ranges[i-1], r, and a.ranges[i] together into a.ranges[i-1].
    		a.ranges[i-1].limit = a.ranges[i].limit
    
    		// Delete a.ranges[i].
    		copy(a.ranges[i:], a.ranges[i+1:])
    		a.ranges = a.ranges[:len(a.ranges)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Range.java

       * also be called their <i>union</i>. If they are not, note that the span might contain values
       * that are not contained in either input range.
       *
       * <p>Like {@link #intersection(Range) intersection}, this operation is commutative, associative
       * and idempotent. Unlike it, it is always well-defined for any two input ranges.
       */
      public Range<C> span(Range<C> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Range.java

       * also be called their <i>union</i>. If they are not, note that the span might contain values
       * that are not contained in either input range.
       *
       * <p>Like {@link #intersection(Range) intersection}, this operation is commutative, associative
       * and idempotent. Unlike it, it is always well-defined for any two input ranges.
       */
      public Range<C> span(Range<C> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/debug/dwarf/testdata/ranges.c

    Ian Lance Taylor <******@****.***> 1458162954 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 14:06:09 UTC 2016
    - 415 bytes
    - Viewed (0)
  10. .github/workflows/latest-changes.yml

            with:
              limit-access-to-actor: true
          - uses: docker://tiangolo/latest-changes:0.3.0
          # - uses: tiangolo/latest-changes@main
            with:
              token: ${{ secrets.GITHUB_TOKEN }}
              latest_changes_file: docs/en/docs/release-notes.md
              latest_changes_header: '## Latest Changes'
              end_regex: '^## '
              debug_logs: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 14:57:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top