Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 242 for doffsets (0.28 sec)

  1. src/internal/zstd/zstd.go

    	// The number of bytes read from r up to the start of the current
    	// block, for error reporting.
    	blockOffset int64
    
    	// Buffered decompressed data.
    	buffer []byte
    	// Current read offset in buffer.
    	off int
    
    	// The current repeated offsets.
    	repeatedOffset1 uint32
    	repeatedOffset2 uint32
    	repeatedOffset3 uint32
    
    	// The current Huffman tree used for compressing literals.
    	huffmanTable     []uint16
    	huffmanTableBits int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

    not being told what column the text began in, so it
    didn't know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    In the process of fixing this, I cleaned up the arguments
    to Fold and ExpandTabs and renamed them Break and
    _ExpandTabs so that I could be sure that I found all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. src/cmd/internal/buildid/rewrite.go

    	// The search for id is over the entire tiny+big buffer.
    	tiny := (len(id) + 127) &^ 127 // round up to 128-aligned
    	buf := make([]byte, tiny+bufSize)
    	h := sha256.New()
    	start := tiny
    	for offset := int64(0); ; {
    		// The file offset maintained by the loop corresponds to &buf[tiny].
    		// buf[start:tiny] is left over from previous iteration.
    		// After reading n bytes into buf[tiny:], we process buf[start:tiny+n].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. src/main/webapp/js/bootstrap.min.js.map

    $(this._element).closest('.navbar').length > 0\n  }\n\n  _getOffset() {\n    const offset = {}\n\n    if (typeof this._config.offset === 'function') {\n      offset.fn = (data) => {\n        data.offsets = {\n          ...data.offsets,\n          ...this._config.offset(data.offsets, this._element) || {}\n        }\n\n        return data\n      }\n    } else {\n      offset.offset = this._config.offset\n    }\n\n    return offset\n  }\n\n  _getPopperConfig() {\n    const popperConfig = {\n      placement:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  5. src/image/ycbcr_test.go

    	// will be set multiple times. That's OK. We just want to avoid a uniform image.
    	for y := r1.Min.Y; y < r1.Max.Y; y++ {
    		for x := r1.Min.X; x < r1.Max.X; x++ {
    			yi := m.YOffset(x, y)
    			ci := m.COffset(x, y)
    			m.Y[yi] = uint8(16*y + x)
    			m.Cb[ci] = uint8(y + 16*x)
    			m.Cr[ci] = uint8(y + 16*x)
    		}
    	}
    
    	// Make various sub-images of m.
    	for y0 := delta.Y + 3; y0 < delta.Y+7; y0++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 00:14:16 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/closure.go

    	// Update the call expression's type. We need to do this
    	// because typecheck gave it the result type of the OCLOSURE
    	// node, but we only rewrote the ONAME node's type. Logically,
    	// they're the same, but the stack offsets probably changed.
    	if typ.NumResults() == 1 {
    		n.SetType(typ.Result(0).Type)
    	} else {
    		n.SetType(typ.ResultsTuple())
    	}
    
    	// Add to Closures for enqueueFunc. It's no longer a proper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/dwarf.go

    			}
    
    			// This slice will hold the offset in bytes for each child
    			// variable DIE with respect to the start of the parent
    			// subprogram DIE.
    			for _, v := range flattened {
    				offsets = append(offsets, int32(ctxt.CurrentOffset(s.Absfn)))
    				putAbstractVar(ctxt, s.Absfn, v)
    			}
    		}
    	}
    	ctxt.RecordChildDieOffsets(s.Absfn, flattened, offsets)
    
    	Uleb128put(ctxt, s.Absfn, 0)
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. src/go/ast/print.go

    }
    
    // Fprint prints the (sub-)tree starting at AST node x to w.
    // If fset != nil, position information is interpreted relative
    // to that file set. Otherwise positions are printed as integer
    // values (file set specific offsets).
    //
    // A non-nil [FieldFilter] f may be provided to control the output:
    // struct fields for which f(fieldname, fieldvalue) is true are
    // printed; all others are filtered from the output. Unexported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. test/nilptr3.go

    	_ = *bigstructp // ERROR "generated nil check"
    	_ = *empty1p    // ERROR "generated nil check"
    }
    
    func fx10k() *[10000]int
    
    var b bool
    
    func f3(x *[10000]int) {
    	// Using a huge type and huge offsets so the compiler
    	// does not expect the memory hardware to fault.
    	_ = x[9999] // ERROR "generated nil check"
    
    	for {
    		if x[9999] != 0 { // ERROR "removed nil check"
    			break
    		}
    	}
    
    	x = fx10k()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/runtime/sys_windows_386.s

    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	MOVL	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLL	$2, CX
    
    	// Save offset from TLS into tls_g.
    	ADDL	$TEB_TlsSlots, CX
    settls:
    	MOVL	CX, runtimeĀ·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top