Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CurrentOffset (0.23 sec)

  1. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

                }
    
                int bytesLeft = len;
                int currentOffset = off;
                while (bytesLeft > 0) {
                    int spaceLeft = allocateSpace();
                    int writeBytes = Math.min(spaceLeft, bytesLeft);
                    currentWriteChunk.write(b, currentOffset, writeBytes);
                    bytesLeft -= writeBytes;
                    currentOffset += writeBytes;
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    	AddAddress(s Sym, t interface{}, ofs int64)
    	AddCURelativeAddress(s Sym, t interface{}, ofs int64)
    	AddSectionOffset(s Sym, size int, t interface{}, ofs int64)
    	AddDWARFAddrSectionOffset(s Sym, t interface{}, ofs int64)
    	CurrentOffset(s Sym) int64
    	RecordDclReference(from Sym, to Sym, dclIdx int, inlIndex int)
    	RecordChildDieOffsets(s Sym, vars []*Var, offsets []int32)
    	AddString(s Sym, v string)
    	Logf(format string, args ...interface{})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/dwarf.go

    		size = 8
    	}
    
    	ls := s.(*LSym)
    	rsym := t.(*LSym)
    	ls.WriteAddr(c.Link, ls.Size, size, rsym, ofs)
    	r := &ls.R[len(ls.R)-1]
    	r.Type = objabi.R_DWARFSECREF
    }
    
    func (c dwCtxt) CurrentOffset(s dwarf.Sym) int64 {
    	ls := s.(*LSym)
    	return ls.Size
    }
    
    // Here "from" is a symbol corresponding to an inlined or concrete
    // function, "to" is the symbol for the corresponding abstract
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (c dwctxt) Logf(format string, args ...interface{}) {
    	c.linkctxt.Logf(format, args...)
    }
    
    // At the moment these interfaces are only used in the compiler.
    
    func (c dwctxt) CurrentOffset(s dwarf.Sym) int64 {
    	panic("should be used only in the compiler")
    }
    
    func (c dwctxt) RecordDclReference(s dwarf.Sym, t dwarf.Sym, dclIdx int, inlIndex int) {
    	panic("should be used only in the compiler")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top