Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DWORD (0.06 sec)

  1. build/pause/windows/pause.c

    #include <windows.h>
    #include <stdio.h>
    #include <string.h>
    
    #define STRINGIFY(x) #x
    #define VERSION_STRING(x) STRINGIFY(x)
    
    #ifndef VERSION
    #define VERSION HEAD
    #endif
    
    BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
    {
    	switch (fdwCtrlType)
    	{
    	case CTRL_C_EVENT:
    		fprintf(stderr, "Shutting down, got signal\n");
    		exit(0);
    
    	case CTRL_BREAK_EVENT:
    		fprintf(stderr, "Shutting down, got signal\n");
    		exit(0);
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        -Name 'KeepAliveInterval' -Type Dword -Value 1000
      Set-ItemProperty -Force -Confirm:$false `
        -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters' `
        -Name 'KeepAliveTime' -Type Dword -Value 60000
      Set-ItemProperty -Force -Confirm:$false `
        -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters' `
        -Name 'TcpMaxDataRetransmissions' -Type Dword -Value 10
    
      Log-Output 'TCP/IP Parameters'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	c.elitrl = nil
    	c.pool.size = 0
    	c.pool.start = 0
    }
    
    /*
     * MOVD foo(SB), R is actually
     *   MOVD addr, REGTMP
     *   MOVD REGTMP, R
     * where addr is the address of the DWORD containing the address of foo.
     *
     * TODO: hash
     */
    func (c *ctxt7) addpool(p *obj.Prog, a *obj.Addr) {
    	cls := c.aclass(a)
    	lit := c.instoffset
    	t := c.newprog()
    	t.As = AWORD
    	sz := 4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// register indexed load
    		{name: "MOVDloadidx", argLength: 3, reg: gp2load, asm: "MOVD", typ: "UInt64"},    // load 64-bit dword from arg0 + arg1, arg2 = mem.
    		{name: "MOVWloadidx", argLength: 3, reg: gp2load, asm: "MOVW", typ: "Int32"},     // load 32-bit word from arg0 + arg1, sign-extended to 64-bit, arg2=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    		// Opcodes with shift count operands.
    		case ARLDIMI, ARLDIMICC:
    			o1 = AOP_MD(c.opirr(p.As), uint32(p.To.Reg), uint32(p.Reg), sh, uint32(d))
    		}
    
    	case 31: /* dword */
    		d := c.vregoff(&p.From)
    
    		if c.ctxt.Arch.ByteOrder == binary.BigEndian {
    			o1 = uint32(d >> 32)
    			o2 = uint32(d)
    		} else {
    			o1 = uint32(d)
    			o2 = uint32(d >> 32)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    		} else {
    			zRIL(_a, op_LGFI, regtmp(p), uint32(v), asm)
    			zRX(op_LA, uint32(p.To.Reg), uint32(r), regtmp(p), uint32(i), asm)
    		}
    
    	case 31: // dword
    		wd := uint64(c.vregoff(&p.From))
    		*asm = append(*asm,
    			uint8(wd>>56),
    			uint8(wd>>48),
    			uint8(wd>>40),
    			uint8(wd>>32),
    			uint8(wd>>24),
    			uint8(wd>>16),
    			uint8(wd>>8),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top