Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 680 for xoffset (0.32 sec)

  1. src/io/io_test.go

    	for _, whence := range []int{SeekStart, SeekCurrent, SeekEnd} {
    		for offset := int64(-3); offset <= 4; offset++ {
    			brOff, brErr := br.Seek(offset, whence)
    			srOff, srErr := sr.Seek(offset, whence)
    			if (brErr != nil) != (srErr != nil) || brOff != srOff {
    				t.Errorf("For whence %d, offset %d: bytes.Reader.Seek = (%v, %v) != SectionReader.Seek = (%v, %v)",
    					whence, offset, brOff, brErr, srErr, srOff)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	}
    	out[0] = o0
    }
    
    // hashstp RB,offset(RA)
    func type_hashstp(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    	o0 |= uint32(p.From.Reg&0x1f) << 11       // RB
    	o0 |= uint32((p.To.Offset>>8)&0x1) << 0   // DX
    	o0 |= uint32((p.To.Offset>>3)&0x1f) << 21 // D
    	o0 |= uint32(p.To.Reg&0x1f) << 16         // RA
    	if p.To.Offset&0xfffffe07 != 0xfffffe00 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, fmt.Errorf("could not identify base for %s: %v", name, err)
    	}
    
    	if b.fast || (!b.addr2lineFound && !b.llvmSymbolizerFound) {
    		return &fileNM{file: file{
    			b:       b,
    			name:    name,
    			buildID: buildID,
    			m:       &elfMapping{start: start, limit: limit, offset: offset, kernelOffset: kernelOffset},
    		}}, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/objz.go

    			p.From.Offset = -p.From.Offset
    			p.As = AADDC
    		}
    
    	case ASUB:
    		if p.From.Type == obj.TYPE_CONST && isint32(-p.From.Offset) {
    			p.From.Offset = -p.From.Offset
    			p.As = AADD
    		}
    	}
    
    	if c.ctxt.Flag_dynlink {
    		c.rewriteToUseGot(p)
    	}
    }
    
    // Rewrite p, if necessary, to access global data via the global offset table.
    func (c *ctxtz) rewriteToUseGot(p *obj.Prog) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

                    (serverLength > 0 ? serverLength + 4 : 0) + 4];
            int offset = 0;
            if (domainLength > 0) {
                writeUShort(targetInfo, offset, 2);
                offset += 2;
                writeUShort(targetInfo, offset, domainLength);
                offset += 2;
                System.arraycopy(domain, 0, targetInfo, offset, domainLength);
                offset += domainLength;
            }
            if (serverLength > 0) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.6K bytes
    - Viewed (0)
  6. src/debug/macho/file.go

    				sh.Size = sh64.Size
    				sh.Offset = sh64.Offset
    				sh.Align = sh64.Align
    				sh.Reloff = sh64.Reloff
    				sh.Nreloc = sh64.Nreloc
    				sh.Flags = sh64.Flags
    				if err := f.pushSection(sh, r); err != nil {
    					return nil, err
    				}
    			}
    		}
    		if s != nil {
    			if int64(s.Offset) < 0 {
    				return nil, &FormatError{offset, "invalid section offset", s.Offset}
    			}
    			if int64(s.Filesz) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. cmd/sftp-server-driver.go

    }
    
    func (w *writerAt) WriteAt(b []byte, offset int64) (n int, err error) {
    	w.m.Lock()
    	defer w.m.Unlock()
    
    	if w.nextOffset == offset {
    		n, err = w.w.Write(b)
    		w.nextOffset += int64(n)
    	} else {
    		if offset > w.nextOffset+ftpMaxWriteOffset {
    			return 0, fmt.Errorf("write offset %d is too far ahead of next offset %d", offset, w.nextOffset)
    		}
    		w.buffer[offset] = make([]byte, len(b))
    		copy(w.buffer[offset], b)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pcln.go

    // calculateFunctabSize calculates the size of the pclntab, and the offsets in
    // the output buffer for individual func entries.
    func (state pclntab) calculateFunctabSize(ctxt *Link, funcs []loader.Sym) (int64, []uint32) {
    	ldr := ctxt.loader
    	startLocations := make([]uint32, len(funcs))
    
    	// Allocate space for the pc->func table. This structure consists of a pc offset
    	// and an offset to the func structure. After that, we have a single pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/net/http/pattern_test.go

    		{"/{}", "at offset 1: empty wildcard"},
    		{"POST a.com/x/{}/y", "at offset 13: empty wildcard"},
    		{"/{...}", "at offset 1: empty wildcard"},
    		{"/{$...}", "at offset 1: bad wildcard"},
    		{"/{$}/", "at offset 1: {$} not at end"},
    		{"/{$}/x", "at offset 1: {$} not at end"},
    		{"/abc/{$}/x", "at offset 5: {$} not at end"},
    		{"/{a...}/", "at offset 1: {...} wildcard not at end"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_CFA_def_cfa_register   = 0x0d // ULEB128 register
    	DW_CFA_def_cfa_offset     = 0x0e // ULEB128 offset
    	DW_CFA_def_cfa_expression = 0x0f // BLOCK
    	DW_CFA_expression         = 0x10 // ULEB128 register, BLOCK
    	DW_CFA_offset_extended_sf = 0x11 // ULEB128 register, SLEB128 offset
    	DW_CFA_def_cfa_sf         = 0x12 // ULEB128 register, SLEB128 offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
Back to top