Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 242 for doffsets (0.18 sec)

  1. 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)
  2. src/reflect/asm_ppc64x.s

    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    // whether the stack-allocated return space contains valid values for stack
    // scanning.
    //
    // The second local is an abi.RegArgs value whose offset is also known to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. test/nilcheck.go

    	_ = *bigstructp // ERROR "nil check"
    	_ = *empty1p    // ERROR "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 "nil check"
    
    	for {
    		if x[9999] != 0 { // ERROR "nil check"
    			break
    		}
    	}
    
    	x = fx10k()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:41:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/unicode/letter.go

    				//	{-1, 0, -1}  LowerCase (Upper, Title are previous)
    				// The characters at even offsets from the beginning of the
    				// sequence are upper case; the ones at odd offsets are lower.
    				// The correct mapping can be done by clearing or setting the low
    				// bit in the sequence offset.
    				// The constants UpperCase and TitleCase are even while LowerCase
    				// is odd so we take the low bit from _case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top