Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for aux1 (0.06 sec)

  1. src/cmd/internal/goobj/objfile_test.go

    		t.Errorf("read Reloc2 mismatch: got %v %v %v %v %v", r2.Off(), r2.Siz(), r2.Type(), r2.Add(), r2.Sym())
    	}
    
    	b = b[RelocSize:]
    	var a2 Aux
    	a2.fromBytes(b)
    	if a2.Type() != AuxFuncInfo || a2.Sym() != (SymRef{33, 44}) {
    		t.Errorf("read Aux2 mismatch: got %v %v", a2.Type(), a2.Sym())
    	}
    }
    
    var issue41621prolog = `
    package main
    var lines = []string{
    `
    
    var issue41621epilog = `
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:12 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. security/pkg/server/ca/authenticate/oidc_test.go

    			audToCheck:  []string{"aud1"},
    			audExpected: []string{"aud1", "aud2"},
    		},
    		{
    			name:        "audience is NOT in the expected set",
    			expectRet:   false,
    			audToCheck:  []string{"aud3"},
    			audExpected: []string{"aud1", "aud2"},
    		},
    		{
    			name:        "one of the audiences is in the expected set",
    			expectRet:   true,
    			audToCheck:  []string{"aud1", "aud3"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/runtime/os_dragonfly.go

    	// skip over argv, envp to get to auxv
    	for argv_index(argv, n) != nil {
    		n++
    	}
    
    	// skip NULL separator
    	n++
    
    	auxvp := (*[1 << 28]uintptr)(add(unsafe.Pointer(argv), uintptr(n)*goarch.PtrSize))
    	pairs := sysauxv(auxvp[:])
    	auxv = auxvp[: pairs*2 : pairs*2]
    }
    
    const (
    	_AT_NULL   = 0
    	_AT_PAGESZ = 6
    )
    
    func sysauxv(auxv []uintptr) (pairs int) {
    	var i int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/hwcap_linux.go

    	_AT_HWCAP  = 16
    	_AT_HWCAP2 = 26
    
    	procAuxv = "/proc/self/auxv"
    
    	uintSize = int(32 << (^uint(0) >> 63))
    )
    
    // For those platforms don't have a 'cpuid' equivalent we use HWCAP/HWCAP2
    // These are initialized in cpu_$GOARCH.go
    // and should not be changed after they are initialized.
    var hwCap uint
    var hwCap2 uint
    
    func readHWCAP() error {
    	// For Go 1.21+, get auxv from the Go runtime.
    	if a := getAuxv(); len(a) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite386splitload.go

    	for {
    		vo := auxIntToValAndOff(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		mem := v_1
    		v.reset(Op386CMPBconst)
    		v.AuxInt = int8ToAuxInt(vo.Val8())
    		v0 := b.NewValue0(v.Pos, Op386MOVBload, typ.UInt8)
    		v0.AuxInt = int32ToAuxInt(vo.Off())
    		v0.Aux = symToAux(sym)
    		v0.AddArg2(ptr, mem)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/debug/pe/symbol.go

    			naux = int(sym.NumberOfAuxSymbols)
    		} else {
    			// Read an aux symbol. At the moment we assume all
    			// aux symbols are format 5 (obviously this doesn't always
    			// hold; more cases will be needed below if more aux formats
    			// are supported in the future).
    			naux--
    			aux := (*COFFSymbolAuxFormat5)(unsafe.Pointer(&sym))
    			err = binary.Read(r, binary.LittleEndian, aux)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/cse.go

    			return tc
    		}
    	}
    
    	if v.Aux != w.Aux {
    		if v.Aux == nil {
    			return types.CMPlt
    		}
    		if w.Aux == nil {
    			return types.CMPgt
    		}
    		return lt2Cmp(auxIDs[v.Aux] < auxIDs[w.Aux])
    	}
    
    	return types.CMPeq
    }
    
    // Sort values to make the initial partition.
    type sortvalues struct {
    	a      []*Value // array of values
    	auxIDs auxmap   // aux -> aux ID map
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/cse_test.go

    // This tests for a bug found when partitioning, but not sorting by the Aux value.
    func TestCSEAuxPartitionBug(t *testing.T) {
    	c := testConfig(t)
    	arg1Aux := &tstAux{"arg1-aux"}
    	arg2Aux := &tstAux{"arg2-aux"}
    	arg3Aux := &tstAux{"arg3-aux"}
    	a := c.Temp(c.config.Types.Int8.PtrTo())
    
    	// construct lots of values with args that have aux values and place
    	// them in an order that triggers the bug
    	fun := c.Fun("entry",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/runtime/rt0_linux_ppc64le.s

    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// The TLS pointer should be initialized to 0.
    	//
    	// In an ELFv2 compliant dynamically linked binary, R3 contains argc,
    	// R4 contains argv, R5 contains envp, R6 contains auxv, and R13
    	// contains the TLS pointer.
    	//
    	// When loading via glibc, the first doubleword on the stack points
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/runtime/rt0_linux_ppc64.s

    TEXT _main<>(SB),NOSPLIT,$-8
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    	//
    	// TODO(austin): Support ABI v1 dynamic linking entry point
    	XOR	R0, R0 // Note, newer kernels may not always set R0 to 0.
    	MOVD	$runtime·rt0_go(SB), R12
    	MOVD	R12, CTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
Back to top