Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for ESI (0.02 sec)

  1. src/runtime/cgo/gcc_386.S

     *
     * Calling into the gc tool chain, where all registers are caller save.
     * Called from standard x86 ABI, where %ebp, %ebx, %esi,
     * and %edi are callee-save, so they must be saved explicitly.
     */
    .globl EXT(crosscall1)
    EXT(crosscall1):
    	pushl %ebp
    	movl %esp, %ebp
    	pushl %ebx
    	pushl %esi
    	pushl %edi
    
    	movl 16(%ebp), %eax	/* g */
    	pushl %eax
    	movl 12(%ebp), %eax	/* setg_gcc */
    	call *%eax
    	popl %eax
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:58 UTC 2023
    - 959 bytes
    - Viewed (0)
  2. src/runtime/defs_windows_386.go

    	print("eax     ", hex(r.eax), "\n")
    	print("ebx     ", hex(r.ebx), "\n")
    	print("ecx     ", hex(r.ecx), "\n")
    	print("edx     ", hex(r.edx), "\n")
    	print("edi     ", hex(r.edi), "\n")
    	print("esi     ", hex(r.esi), "\n")
    	print("ebp     ", hex(r.ebp), "\n")
    	print("esp     ", hex(r.esp), "\n")
    	print("eip     ", hex(r.eip), "\n")
    	print("eflags  ", hex(r.eflags), "\n")
    	print("cs      ", hex(r.segcs), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/runtime/signal_linux_386.go

    func (c *sigctxt) ecx() uint32 { return c.regs().ecx }
    func (c *sigctxt) edx() uint32 { return c.regs().edx }
    func (c *sigctxt) edi() uint32 { return c.regs().edi }
    func (c *sigctxt) esi() uint32 { return c.regs().esi }
    func (c *sigctxt) ebp() uint32 { return c.regs().ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().eip }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. docs/yo/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    ## Àpẹẹrẹ ìgbésókè mìíràn
    
    Ní báyìí ṣe àtúnṣe fáìlì `main.py` láti gba kókó èsì láti inú ìbéèrè `PUT`.
    
    Ní báyìí, ṣe ìkéde kókó èsì API nínú kóòdù rẹ nipa lílo àwọn ìtọ́kasí àmì irúfẹ́ Python, ọpẹ́ pàtàkìsi sí Pydantic.
    
    ```Python hl_lines="4  9-12  25-27"
    from typing import Union
    
    from fastapi import FastAPI
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. src/runtime/signal_386.go

    	print("eax    ", hex(c.eax()), "\n")
    	print("ebx    ", hex(c.ebx()), "\n")
    	print("ecx    ", hex(c.ecx()), "\n")
    	print("edx    ", hex(c.edx()), "\n")
    	print("edi    ", hex(c.edi()), "\n")
    	print("esi    ", hex(c.esi()), "\n")
    	print("ebp    ", hex(c.ebp()), "\n")
    	print("esp    ", hex(c.esp()), "\n")
    	print("eip    ", hex(c.eip()), "\n")
    	print("eflags ", hex(c.eflags()), "\n")
    	print("cs     ", hex(c.cs()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/lv/stopwords.txt

    tiklīdz
    jebšu
    tālab
    tāpēc
    nekā
    itin
    jā
    jau
    jel
    nē
    nezin
    tad
    tikai
    vis
    tak
    iekams
    vien
    # modal verbs
    būt  
    biju 
    biji
    bija
    bijām
    bijāt
    esmu
    esi
    esam
    esat 
    būšu     
    būsi
    būs
    būsim
    būsiet
    tikt
    tiku
    tiki
    tika
    tikām
    tikāt
    tieku
    tiec
    tiek
    tiekam
    tiekat
    tikšu
    tiks
    tiksim
    tiksiet
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    //go:build linux && (386 || amd64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegs386 is the registers used by 386 binaries.
    type PtraceRegs386 struct {
    	Ebx      int32
    	Ecx      int32
    	Edx      int32
    	Esi      int32
    	Edi      int32
    	Ebp      int32
    	Eax      int32
    	Xds      int32
    	Xes      int32
    	Xfs      int32
    	Xgs      int32
    	Orig_eax int32
    	Eip      int32
    	Xcs      int32
    	Eflags   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/signal_freebsd_386.go

    func (c *sigctxt) ecx() uint32 { return c.regs().mc_ecx }
    func (c *sigctxt) edx() uint32 { return c.regs().mc_edx }
    func (c *sigctxt) edi() uint32 { return c.regs().mc_edi }
    func (c *sigctxt) esi() uint32 { return c.regs().mc_esi }
    func (c *sigctxt) ebp() uint32 { return c.regs().mc_ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().mc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/signal_openbsd_386.go

    func (c *sigctxt) ecx() uint32 { return c.regs().sc_ecx }
    func (c *sigctxt) edx() uint32 { return c.regs().sc_edx }
    func (c *sigctxt) edi() uint32 { return c.regs().sc_edi }
    func (c *sigctxt) esi() uint32 { return c.regs().sc_esi }
    func (c *sigctxt) ebp() uint32 { return c.regs().sc_ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().sc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  10. src/runtime/signal_netbsd_386.go

    func (c *sigctxt) ecx() uint32 { return c.regs().__gregs[_REG_ECX] }
    func (c *sigctxt) edx() uint32 { return c.regs().__gregs[_REG_EDX] }
    func (c *sigctxt) edi() uint32 { return c.regs().__gregs[_REG_EDI] }
    func (c *sigctxt) esi() uint32 { return c.regs().__gregs[_REG_ESI] }
    func (c *sigctxt) ebp() uint32 { return c.regs().__gregs[_REG_EBP] }
    func (c *sigctxt) esp() uint32 { return c.regs().__gregs[_REG_UESP] }
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.8K bytes
    - Viewed (0)
Back to top