Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 204 for coffsets (0.38 sec)

  1. src/runtime/symtab.go

    	funcnameOffset uintptr // offset to the funcnametab variable from pcHeader
    	cuOffset       uintptr // offset to the cutab variable from pcHeader
    	filetabOffset  uintptr // offset to the filetab variable from pcHeader
    	pctabOffset    uintptr // offset to the pctab variable from pcHeader
    	pclnOffset     uintptr // offset to the pclntab variable from pcHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    func (p *parser) loadBatch(pid int32, events []Event) ([]Event, error) {
    	offsets := p.batchOffsets[pid]
    	if len(offsets) == 0 {
    		return nil, io.EOF
    	}
    	n := offsets[0].numEvents
    	offset := offsets[0].offset
    	offsets = offsets[1:]
    	p.batchOffsets[pid] = offsets
    
    	p.off = offset
    
    	if cap(events) < n {
    		events = make([]Event, 0, n)
    	}
    
    	gotHeader := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			vars:        make(map[string]*asmVar),
    			varByOffset: make(map[int]*asmVar),
    		}
    		offset = 0
    		addParams(decl.Type.Params.List, false)
    		if decl.Type.Results != nil && len(decl.Type.Results.List) > 0 {
    			offset += -offset & (arch.maxAlign - 1)
    			addParams(decl.Type.Results.List, true)
    		}
    		fn.size = offset
    		m[arch.name] = fn
    	}
    
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/internal/bytealg/bytealg.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bytealg
    
    import (
    	"internal/cpu"
    	"unsafe"
    )
    
    // Offsets into internal/cpu records for use in assembly.
    const (
    	offsetX86HasSSE42  = unsafe.Offsetof(cpu.X86.HasSSE42)
    	offsetX86HasAVX2   = unsafe.Offsetof(cpu.X86.HasAVX2)
    	offsetX86HasPOPCNT = unsafe.Offsetof(cpu.X86.HasPOPCNT)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/size.go

    	}
    	for i, m := range methods {
    		m.Offset = int64(i) * int64(PtrSize)
    	}
    
    	t.SetAllMethods(methods)
    }
    
    // calcStructOffset computes the offsets of a sequence of fields,
    // starting at the given offset. It returns the resulting offset and
    // maximum field alignment.
    func calcStructOffset(t *Type, fields []*Field, offset int64) int64 {
    	for _, f := range fields {
    		CalcSize(f.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/internal/poll/copy_file_range_linux.go

    	//                         size_t len, unsigned int flags);
    	//
    	// Note that in the call to unix.CopyFileRange below, we use nil
    	// values for off_in and off_out. For the system call, this means
    	// "use and update the file offsets". That is why we must acquire
    	// locks for both file descriptors (and why this whole machinery is
    	// in the internal/poll package to begin with).
    	if err := dst.writeLock(); err != nil {
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 17:40:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.h

    // Returns the type of the size tensor used to track a data structure's element
    // count. It is a tensor<1xi32>, and we use R1 instead of a scalar because it is
    // easier to concat it with other offsets.
    TensorType GetSizeType(OpBuilder builder);
    
    // Reshapes a scalar value to match the size type tensor<i32>.
    Value ReshapeScalarToSizeType(OpBuilder builder, Value scalar, Location loc);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. src/runtime/sys_freebsd_386.s

    	MOVL	$SYS_thr_new, AX
    	INT	$0x80
    	JAE	2(PC)
    	NEGL	AX
    	MOVL	AX, ret+8(FP)
    	RET
    
    // Called by OS using C ABI.
    TEXT runtime·thr_start(SB),NOSPLIT,$0
    	NOP	SP	// tell vet SP changed - stop checking offsets
    	MOVL	4(SP), AX // m
    	MOVL	m_g0(AX), BX
    	LEAL	m_tls(AX), BP
    	MOVL	m_id(AX), DI
    	ADDL	$7, DI
    	PUSHAL
    	PUSHL	$32
    	PUSHL	BP
    	PUSHL	DI
    	CALL	runtime·setldt(SB)
    	POPL	AX
    	POPL	AX
    	POPL	AX
    	POPAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		return len(x.Args) == 1 &&
    			hasBasicType(info, x.Fun, types.Uintptr) &&
    			hasBasicType(info, x.Args[0], types.UnsafePointer)
    
    	case *ast.BinaryExpr:
    		// "It is valid both to add and to subtract offsets from a
    		// pointer in this way. It is also valid to use &^ to round
    		// pointers, usually for alignment."
    		switch x.Op {
    		case token.ADD, token.SUB, token.AND_NOT:
    			// TODO(mdempsky): Match compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/internal/zstd/fse.go

    		//     be.baseline = 1 << e.sym
    		//     be.basebits = e.sym
    		// That would give us an offset value that corresponds to
    		// the one described in the RFC. However, for offsets > 3
    		// we have to subtract 3. And for offset values 1, 2, 3
    		// we use a repeated offset.
    		//
    		// The baseline is always a power of 2, and is never 0,
    		// so for those low values we will see one entry that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top