Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 250 for xoffset (0.14 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractIsReferenceToTest.kt

            val carets = testServices.expressionMarkerProvider.getAllCarets(mainFile)
            carets.flatMap { findReferencesAtCaret(mainFile, it.offset) }.forEach { reference ->
                val resolved = reference.resolve() ?: testServices.assertions.fail { "Could not resolve reference at caret" }
                testServices.assertions.assertTrue(reference.isReferenceTo(resolved))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 08:02:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// Open opens the named object file. If the object is a shared
    	// library, start/limit/offset are the addresses where it is mapped
    	// into memory in the address space being inspected. If the object
    	// is a linux kernel, relocationSymbol is the name of the symbol
    	// corresponding to the start address.
    	Open(file string, start, limit, offset uint64, relocationSymbol string) (ObjFile, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    }
    
    // callOffset parses:
    //
    //	<call-offset> ::= h <nv-offset> _
    //	              ::= v <v-offset> _
    //
    //	<nv-offset> ::= <(offset) number>
    //
    //	<v-offset> ::= <(offset) number> _ <(virtual offset) number>
    //
    // The c parameter, if not 0, is a character we just read which is the
    // start of the <call-offset>.
    //
    // We don't display the offset information anywhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. src/os/file_unix.go

    	runtime.SetFinalizer(file, nil)
    	return err
    }
    
    // seek sets the offset for the next Read or Write on file to offset, interpreted
    // according to whence: 0 means relative to the origin of the file, 1 means
    // relative to the current offset, and 2 means relative to the end.
    // It returns the new offset and an error, if any.
    func (f *File) seek(offset int64, whence int) (ret int64, err error) {
    	if info := f.dirinfo.Swap(nil); info != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/debug/buildinfo/buildinfo.go

    	if s := x.f.Section("data"); s != nil {
    		return uint64(s.Offset), uint64(s.Size)
    	}
    	return 0, 0
    }
    
    func (x *plan9objExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, sect := range x.f.Sections {
    		if uint64(sect.Offset) <= addr && addr <= uint64(sect.Offset+sect.Size-1) {
    			n := uint64(sect.Offset+sect.Size) - 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)
  6. src/encoding/asn1/marshal.go

    	dst = appendTwoDigits(dst, hour)
    	dst = appendTwoDigits(dst, min)
    	dst = appendTwoDigits(dst, sec)
    
    	_, offset := t.Zone()
    
    	switch {
    	case offset/60 == 0:
    		return append(dst, 'Z')
    	case offset > 0:
    		dst = append(dst, '+')
    	case offset < 0:
    		dst = append(dst, '-')
    	}
    
    	offsetMinutes := offset / 60
    	if offsetMinutes < 0 {
    		offsetMinutes = -offsetMinutes
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    )
    
    func TypeErrorEndPos(fset *token.FileSet, src []byte, start token.Pos) token.Pos {
    	// Get the end position for the type error.
    	offset, end := fset.PositionFor(start, false).Offset, start
    	if offset >= len(src) {
    		return end
    	}
    	if width := bytes.IndexAny(src[offset:], " \n,():;[]+-*"); width > 0 {
    		end = start + token.Pos(width)
    	}
    	return end
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/runtime/runtime1.go

    }
    
    // reflectlite_resolveNameOff resolves a name offset from a base pointer.
    //
    //go:linkname reflectlite_resolveNameOff internal/reflectlite.resolveNameOff
    func reflectlite_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
    	return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
    }
    
    // reflectlite_resolveTypeOff resolves an *rtype offset from a base type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/encoding/base32/base32.go

    func stripNewlines(dst, src []byte) int {
    	offset := 0
    	for _, b := range src {
    		if b == '\r' || b == '\n' {
    			continue
    		}
    		dst[offset] = b
    		offset++
    	}
    	return offset
    }
    
    func (r *newlineFilteringReader) Read(p []byte) (int, error) {
    	n, err := r.wrapped.Read(p)
    	for n > 0 {
    		s := p[0:n]
    		offset := stripNewlines(s, s)
    		if err != nil || offset > 0 {
    			return offset, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. cmd/storage-rest_test.go

    		objectName     string
    		offset         int64
    		expectedResult []byte
    		expectErr      bool
    	}{
    		{"foo", "myobject", 0, []byte("foo"), false},
    		{"foo", "myobject", 1, []byte("oo"), false},
    		// file not found error.
    		{"foo", "yourobject", 0, nil, true},
    	}
    
    	result := make([]byte, 100)
    	for i, testCase := range testCases {
    		result = result[testCase.offset:3]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top