Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for fpregs (0.07 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. 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)
  4. 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)
  5. 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)
Back to top