Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for fpregs (0.24 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Edx    uint32
    	Ecx    uint32
    	Eax    uint32
    	Trapno uint32
    	Err    uint32
    	Eip    uint32
    	Cs     uint32
    	Eflags uint32
    	Esp    uint32
    	Ss     uint32
    	Gs     uint32
    }
    
    type FpReg struct {
    	Env   [7]uint32
    	Acc   [8][10]uint8
    	Ex_sw uint32
    	Pad   [64]uint8
    }
    
    type FpExtendedPrecision struct{}
    
    type PtraceIoDesc struct {
    	Op   int32
    	Offs uintptr
    	Addr *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    }
    
    type Sigset_t struct {
    	Val [4]uint32
    }
    
    type Reg struct {
    	X    [30]uint64
    	Lr   uint64
    	Sp   uint64
    	Elr  uint64
    	Spsr uint32
    	_    [4]byte
    }
    
    type FpReg struct {
    	Q  [32][16]uint8
    	Sr uint32
    	Cr uint32
    	_  [8]byte
    }
    
    type FpExtendedPrecision struct{}
    
    type PtraceIoDesc struct {
    	Op   int32
    	Offs uintptr
    	Addr *byte
    	Len  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        void enablesBeforeAndWhenAndWithPropertiesHooksForJdt() {
            given:
            def jdtFile = file('.settings/org.eclipse.jdt.core.prefs')
            jdtFile << '''
    org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.3
    '''
    
            and:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    ext.hooks = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/anames.go

    	"FMAXNMD",
    	"FMAXNMS",
    	"FMAXS",
    	"FMIND",
    	"FMINNMD",
    	"FMINNMS",
    	"FMINS",
    	"FMOVD",
    	"FMOVQ",
    	"FMOVS",
    	"FMSUBD",
    	"FMSUBS",
    	"FMULD",
    	"FMULS",
    	"FNEGD",
    	"FNEGS",
    	"FNMADDD",
    	"FNMADDS",
    	"FNMSUBD",
    	"FNMSUBS",
    	"FNMULD",
    	"FNMULS",
    	"FRINTAD",
    	"FRINTAS",
    	"FRINTID",
    	"FRINTIS",
    	"FRINTMD",
    	"FRINTMS",
    	"FRINTND",
    	"FRINTNS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/query-params.md

    ```Python hl_lines="9"
    {!../../../docs_src/query_params/tutorial001.py!}
    ```
    
    La partie appelée requête (ou **query**) dans une URL est l'ensemble des paires clés-valeurs placées après le `?` , séparées par des `&`.
    
    Par exemple, dans l'URL :
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    ...les paramètres de requête sont :
    
    * `skip` : avec une valeur de`0`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/nilcheck.go

    		node := work[len(work)-1]
    		work = work[:len(work)-1]
    
    		switch node.op {
    		case Work:
    			b := node.block
    
    			// First, see if we're dominated by an explicit nil check.
    			if len(b.Preds) == 1 {
    				p := b.Preds[0].b
    				if p.Kind == BlockIf && p.Controls[0].Op == OpIsNonNil && p.Succs[0].b == b {
    					if ptr := p.Controls[0].Args[0]; nonNilValues[ptr.ID] == nil {
    						nonNilValues[ptr.ID] = ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/loopbce.go

    //		do something
    //	      nxt = inc + ind
    //		goto loop
    //
    //	 exit_loop:
    func findIndVar(f *Func) []indVar {
    	var iv []indVar
    	sdom := f.Sdom()
    
    	for _, b := range f.Blocks {
    		if b.Kind != BlockIf || len(b.Preds) != 2 {
    			continue
    		}
    
    		var ind *Value   // induction variable
    		var init *Value  // starting value
    		var limit *Value // ending value
    
    		// Check that the control if it either ind </<= limit or limit </<= ind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            p.configure { }
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'Cannot add actions to this collection as it has already been realized.'
        }
    
        def "fires finalize event for element with name after configuration has completed"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def finalAction = Mock(Action)
            def binary1 = Stub(SwiftBinary)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	al.pointers = append(al.pointers, value)
    	return updateProcThreadAttribute(al.data, 0, attribute, value, size, nil, nil)
    }
    
    // Delete frees ProcThreadAttributeList's resources.
    func (al *ProcThreadAttributeListContainer) Delete() {
    	deleteProcThreadAttributeList(al.data)
    	LocalFree(Handle(unsafe.Pointer(al.data)))
    	al.data = nil
    	al.pointers = nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		if len(args) == 0 {
    			args = append(args, "st0")
    		}
    
    	case FPTAN, FSINCOS, FUCOMPP, FCOMPP, FYL2X, FPATAN, FXTRACT, FPREM1, FPREM, FYL2XP1, FSCALE:
    		if len(args) == 0 {
    			args = []string{"st0", "st1"}
    		}
    
    	case FST, FSTP, FISTTP, FIST, FISTP, FBSTP:
    		if len(args) == 1 {
    			args = append(args, "st0")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
Back to top