Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for emsp (0.05 sec)

  1. src/mdo/reader-stax.vm

            entities.put("scaron", "\u0161");
            entities.put("Yuml", "\u0178");
            entities.put("circ", "\u02c6");
            entities.put("tilde", "\u02dc");
            entities.put("ensp", "\u2002");
            entities.put("emsp", "\u2003");
            entities.put("thinsp", "\u2009");
            entities.put("zwnj", "\u200c");
            entities.put("zwj", "\u200d");
            entities.put("lrm", "\u200e");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

            entities.put("scaron", "\u0161");
            entities.put("Yuml", "\u0178");
            entities.put("circ", "\u02c6");
            entities.put("tilde", "\u02dc");
            entities.put("ensp", "\u2002");
            entities.put("emsp", "\u2003");
            entities.put("thinsp", "\u2009");
            entities.put("zwnj", "\u200c");
            entities.put("zwj", "\u200d");
            entities.put("lrm", "\u200e");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"∅":                          "\u2205",
    	" ":                          "\u2004",
    	" ":                          "\u2005",
    	" ":                            "\u2003",
    	"ŋ":                             "\u014b",
    	" ":                            "\u2002",
    	"ę":                           "\u0119",
    	"𝕖":                            "\U0001d556",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"emptyset;":                        '\U00002205',
    		"emptyv;":                          '\U00002205',
    		"emsp;":                            '\U00002003',
    		"emsp13;":                          '\U00002004',
    		"emsp14;":                          '\U00002005',
    		"eng;":                             '\U0000014B',
    		"ensp;":                            '\U00002002',
    		"eogon;":                           '\U00000119',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"OElig":    "\u0152",
    	"oelig":    "\u0153",
    	"Scaron":   "\u0160",
    	"scaron":   "\u0161",
    	"Yuml":     "\u0178",
    	"circ":     "\u02C6",
    	"tilde":    "\u02DC",
    	"ensp":     "\u2002",
    	"emsp":     "\u2003",
    	"thinsp":   "\u2009",
    	"zwnj":     "\u200C",
    	"zwj":      "\u200D",
    	"lrm":      "\u200E",
    	"rlm":      "\u200F",
    	"ndash":    "\u2013",
    	"mdash":    "\u2014",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. src/runtime/signal_linux_386.go

    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 }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().eflags }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/src/main/asm_i386_gcc/sum.s

        .text
        .globl  _sum
    _sum:
        movl    8(%esp), %eax
        addl    4(%esp), %eax
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 93 bytes
    - Viewed (0)
  8. src/runtime/defs_windows_386.go

    	ebp               uint32
    	eip               uint32
    	segcs             uint32
    	eflags            uint32
    	esp               uint32
    	segss             uint32
    	extendedregisters [512]uint8
    }
    
    func (c *context) ip() uintptr { return uintptr(c.eip) }
    func (c *context) sp() uintptr { return uintptr(c.esp) }
    
    // 386 does not have link register, so this returns 0.
    func (c *context) lr() uintptr      { return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/src/main/asm_i386_masm/sum.s

        .386
        .model    flat
    
    PUBLIC    _sum
    _TEXT     SEGMENT
    _sum    PROC
        mov    eax, DWORD PTR 4[esp]
        add    eax, DWORD PTR 8[esp]
        ret    0
    _sum    ENDP
    _TEXT   ENDS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 184 bytes
    - Viewed (0)
  10. src/runtime/signal_386.go

    	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")
    	print("fs     ", hex(c.fs()), "\n")
    	print("gs     ", hex(c.gs()), "\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)
Back to top