Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 242 for doffsets (0.14 sec)

  1. src/runtime/sys_linux_arm.s

    	// (callee-save).
    
    	// We don't know how much stack space the VDSO code will need,
    	// so switch to g0.
    
    	// Save old SP. Use R13 instead of SP to avoid linker rewriting the offsets.
    	MOVW	R13, R5
    
    	MOVW	g_m(g), R6
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    	// Save the old values on stack and restore them on exit,
    	// so this function is reentrant.
    	MOVW	m_vdsoPC(R6), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    		return
    	}
    	if len(text) == 1 {
    		sa[0] = 0
    		return
    	}
    
    	// Establish slices indexed by text character
    	// holding character frequency and bucket-sort offsets.
    	// If there's only enough tmp for one slice,
    	// we make it the bucket offsets and recompute
    	// the character frequency each time we need it.
    	var freq, bucket []int64
    	if len(tmp) >= 2*textMax {
    		freq, bucket = tmp[:textMax], tmp[textMax:2*textMax]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/internal/codesign/codesign.go

    	CS_EXECSEG_CAN_EXEC_CDHASH = 0x200 // can execute blessed cdhash
    )
    
    type Blob struct {
    	typ    uint32 // type of entry
    	offset uint32 // offset of entry
    	// data follows
    }
    
    func (b *Blob) put(out []byte) []byte {
    	out = put32be(out, b.typ)
    	out = put32be(out, b.offset)
    	return out
    }
    
    const blobSize = 2 * 4
    
    type SuperBlob struct {
    	magic  uint32 // magic number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/internal/coverage/encodecounter/encode.go

    	if err := binary.Write(ws, binary.LittleEndian, cfw.csh); err != nil {
    		return err
    	}
    	hdrsz := uint32(len(ws.BytesWritten()))
    
    	// Write string table and args to a byte slice (since we need
    	// to capture offsets at various points), then emit the slice
    	// once we are done.
    	cfw.stab.Freeze()
    	if err := cfw.stab.Write(ws); err != nil {
    		return err
    	}
    	cfw.csh.StrTabLen = uint32(len(ws.BytesWritten())) - hdrsz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/runtime/sys_windows_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "funcdata.h"
    #include "time_windows.h"
    #include "cgo/abi_arm64.h"
    
    // Offsets into Thread Environment Block (pointer in R18)
    #define TEB_error 0x68
    #define TEB_TlsSlots 0x1480
    #define TEB_ArbitraryPtr 0x28
    
    // Note: R0-R7 are args, R8 is indirect return value address,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                        // ... otherwise we can still report the line
                        spec.lineInFileLocation(resourceName, line);
                    }
                }
    
                // If we know the offsets ...
                // (offset doesn't require line and column to be set, hence the separate check)
                // (documentation says that getEndPosition() will be NOPOS iff getPosition() is NOPOS)
                if (0 < position) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. internal/s3select/select.go

    		rsc.offset = rsc.size + offset
    	}
    	if rsc.offset < 0 {
    		return rsc.offset, errors.New("seek to invalid negative offset")
    	}
    	if rsc.offset >= rsc.size {
    		return rsc.offset, errors.New("seek past end of object")
    	}
    	if rsc.reader != nil {
    		_ = rsc.reader.Close()
    		rsc.reader = nil
    	}
    	return rsc.offset, nil
    }
    
    // Read call to implement io.Reader
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/version.go

    	}
    	// There is no utility in versionutil to get the version without the metadata,
    	// so this needs some manual formatting.
    	// Discard offsets after a release label and keep the labels down to e.g. `alpha.0` instead of
    	// including the offset e.g. `alpha.0.206`. This is done to comply with GCR image tags.
    	pre := v.PreRelease()
    	patch := v.Patch()
    	if len(pre) > 0 {
    		if patch > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/internal/zstd/block.go

    			r.repeatedOffset2 = r.repeatedOffset1
    			r.repeatedOffset1 = offset
    		} else {
    			if literal == 0 {
    				offset++
    			}
    			switch offset {
    			case 1:
    				offset = r.repeatedOffset1
    			case 2:
    				offset = r.repeatedOffset2
    				r.repeatedOffset2 = r.repeatedOffset1
    				r.repeatedOffset1 = offset
    			case 3:
    				offset = r.repeatedOffset3
    				r.repeatedOffset3 = r.repeatedOffset2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    // and if the offsets match, if they are available.
    func adjacent(m1, m2 *Mapping) bool {
    	if m1.File != "" && m2.File != "" {
    		if m1.File != m2.File {
    			return false
    		}
    	}
    	if m1.BuildID != "" && m2.BuildID != "" {
    		if m1.BuildID != m2.BuildID {
    			return false
    		}
    	}
    	if m1.Limit != m2.Start {
    		return false
    	}
    	if m1.Offset != 0 && m2.Offset != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top