Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 12821 (2.08 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	OP_PLD_SFX_R12   = OP_PLD_SFX | 12<<21        // pld   r12,0 (suffix instruction word)
    	OP_PLA_SFX_R12   = OP_PLA_SFX | 12<<21        // pla   r12,0 (suffix instruction word)
    	OP_LIS_R12       = OP_ADDIS | 12<<21          // lis r12,0
    	OP_LD_R12_R12    = OP_LD | 12<<21 | 12<<16    // ld r12,0(r12)
    	OP_MTCTR_R12     = OP_MTCTR | 12<<21          // mtctr r12
    	OP_MFLR_R12      = OP_MFLR | 12<<21           // mflr r12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="net.bytebuddy" name="byte-buddy" version="1.8.21">
             <artifact name="byte-buddy-1.8.21.jar">
                <pgp value="F42B96B8648B5C4A1C43A62FBB2914C1FA0811C3"/>
             </artifact>
          </component>
          <component group="net.bytebuddy" name="byte-buddy-agent" version="1.10.9">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    // Locked returns the locked status of this page.
    // If this bit is 1, the virtual page is locked in physical memory.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Locked() bool {
    	return (b & (1 << 22)) == 1
    }
    
    // LargePage returns the large page status of this page.
    // If this bit is 1, the page is a large page.
    func (b PSAPI_WORKING_SET_EX_BLOCK) LargePage() bool {
    	return (b & (1 << 23)) == 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top