Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reflect_gcbits (0.13 sec)

  1. src/runtime/mbitmap.go

    			nptr += nbit * count
    		}
    	}
    }
    
    // Testing.
    
    // reflect_gcbits returns the GC type info for x, for testing.
    // The result is the bitmap entries (0 or 1), one entry per byte.
    //
    //go:linkname reflect_gcbits reflect.gcbits
    func reflect_gcbits(x any) []byte {
    	return getgcmask(x)
    }
    
    // Returns GC type info for the pointer stored in ep for testing.
    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/hash/crc32/gen_const_ppc64le.go

    		j += 2
    		fmt.Fprintf(w, "\n")
    	}
    
    	for i := (1024 * 2) - 128; i >= 0; i -= 128 {
    		a := reflect_bits(get_remainder(ref_poly, 32, uint(i+32)), 32)
    		b := reflect_bits(get_remainder(ref_poly, 32, uint(i+64)), 32)
    		c := reflect_bits(get_remainder(ref_poly, 32, uint(i+96)), 32)
    		d := reflect_bits(get_remainder(ref_poly, 32, uint(i+128)), 32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top