Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for adcb (0.03 sec)

  1. src/runtime/mbitmap.go

    	i := (addr - span.base()) / goarch.PtrSize / ptrBits
    	j := (addr - span.base()) / goarch.PtrSize % ptrBits
    	bits := span.elemsize / goarch.PtrSize
    	word0 := (*uintptr)(unsafe.Pointer(addb(hbits, goarch.PtrSize*(i+0))))
    	word1 := (*uintptr)(unsafe.Pointer(addb(hbits, goarch.PtrSize*(i+1))))
    
    	var read uintptr
    	if j+bits > ptrBits {
    		// Two reads.
    		bits0 := ptrBits - j
    		bits1 := bits - bits0
    		read = *word0 >> j
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	// due to one of the throws below shows the original block
    	// base and extent.
    	b := b0
    	n := n0
    
    	for i := uintptr(0); i < n; {
    		// Find bits for the next word.
    		bits := uint32(*addb(ptrmask, i/(goarch.PtrSize*8)))
    		if bits == 0 {
    			i += goarch.PtrSize * 8
    			continue
    		}
    		for j := 0; j < 8 && i < n; j++ {
    			if bits&1 != 0 {
    				// Same work as in scanobject; see comments there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/asm5.go

    	{ALDREX, C_SOREG, C_NONE, C_REG, 77, 4, 0, 0, 0, 0},
    	{ASTREX, C_SOREG, C_REG, C_REG, 78, 4, 0, 0, 0, 0},
    	{ADMB, C_NONE, C_NONE, C_NONE, 110, 4, 0, 0, 0, 0},
    	{ADMB, C_LCON, C_NONE, C_NONE, 110, 4, 0, 0, 0, 0},
    	{ADMB, C_SPR, C_NONE, C_NONE, 110, 4, 0, 0, 0, 0},
    	{AMOVF, C_ZFCON, C_NONE, C_FREG, 80, 8, 0, 0, 0, 0},
    	{AMOVF, C_SFCON, C_NONE, C_FREG, 81, 4, 0, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top