Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bidiIndex (0.08 sec)

  1. src/fmt/fmt_test.go

    	// Erroneous cases.
    	{"%[d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%]d", SE{2, 1}, "%!](int=2)d%!(EXTRA int=1)"},
    	{"%[]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[-3]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[99]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[3]", SE{2, 1}, "%!(NOVERB)"},
    	{"%[1].2d", SE{5, 6}, "%!d(BADINDEX)"},
    	{"%[1]2d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%3.[2]d", SE{7}, "%!d(BADINDEX)"},
    	{"%.[2]d", SE{7}, "%!d(BADINDEX)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		s.refillAllocCache(whichByte)
    		aCache = s.allocCache
    		bitIndex = sys.TrailingZeros64(aCache)
    		// nothing available in cached bits
    		// grab the next 8 bytes and try again.
    	}
    	result := sfreeindex + uint16(bitIndex)
    	if result >= snelems {
    		s.freeindex = snelems
    		return snelems
    	}
    
    	s.allocCache >>= uint(bitIndex + 1)
    	sfreeindex = result + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top