Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for isNaked (0.24 sec)

  1. src/runtime/mbitmap.go

    	return markBits{bytep, mask, objIndex}
    }
    
    func (s *mspan) markBitsForBase() markBits {
    	return markBits{&s.gcmarkBits.x, uint8(1), 0}
    }
    
    // isMarked reports whether mark bit m is set.
    func (m markBits) isMarked() bool {
    	return *m.bytep&m.mask != 0
    }
    
    // setMarked sets the marked bit in the markbits, atomically.
    func (m markBits) setMarked() {
    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

    			gcDumpObject("base", base, off)
    			gcDumpObject("obj", obj, ^uintptr(0))
    			getg().m.traceback = 2
    			throw("marking free object")
    		}
    
    		// If marked we have nothing to do.
    		if mbits.isMarked() {
    			return
    		}
    		mbits.setMarked()
    
    		// Mark span.
    		arena, pageIdx, pageMask := pageIndexOf(span.base())
    		if arena.pageMarks[pageIdx]&pageMask == 0 {
    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/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    become transparent by filling their Pores with any Substance of equal or almost equal density with their parts. Thus Paper dipped in Water or Oil, the _Oculus Mundi_ Stone steep'd in Water, Linnen Cloth oiled or varnish'd, and many other Substances soaked in such Liquors as will intimately pervade their little Pores, become by that means more transparent than otherwise; so, on the contrary, the most transparent Substances, may, by evacuating their Pores, or separating their parts, be render'd sufficiently...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. src/testdata/Isaac.Newton-Opticks.txt

    almost equal density with their parts. Thus Paper dipped in Water or
    Oil, the _Oculus Mundi_ Stone steep'd in Water, Linnen Cloth oiled or
    varnish'd, and many other Substances soaked in such Liquors as will
    intimately pervade their little Pores, become by that means more
    transparent than otherwise; so, on the contrary, the most transparent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top