Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 0x3f (0.07 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	EALREADY        = Errno(0x95)
    	EBADE           = Errno(0x32)
    	EBADF           = Errno(0x9)
    	EBADFD          = Errno(0x51)
    	EBADMSG         = Errno(0x4d)
    	EBADR           = Errno(0x33)
    	EBADRQC         = Errno(0x36)
    	EBADSLT         = Errno(0x37)
    	EBFONT          = Errno(0x39)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x2f)
    	ECHILD          = Errno(0xa)
    	ECHRNG          = Errno(0x25)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    	case AMUL:
    		return 0x38 << 15 // mul.w
    	case AMULU:
    		return 0x38 << 15 // mul.w
    	case AMULH:
    		return 0x39 << 15 // mulh.w
    	case AMULHU:
    		return 0x3a << 15 // mulhu.w
    	case AMULV:
    		return 0x3b << 15 // mul.d
    	case AMULVU:
    		return 0x3b << 15 // mul.d
    	case AMULHV:
    		return 0x3c << 15 // mulh.d
    	case AMULHVU:
    		return 0x3d << 15 // mulhu.d
    	case ADIV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    			// through about half the hints. In race mode, take only about
    			// a quarter; we don't have very much space to work with.
    			hintList := &mheap_.arenaHints
    			if (!raceenabled && i > 0x3f) || (raceenabled && i > 0x5f) {
    				hintList = &mheap_.userArena.arenaHints
    			}
    			hint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
    			hint.addr = p
    			hint.next, *hintList = *hintList, hint
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	0x0a, 0x1a, 0x77, 0x6f, 0x72, 0x6b, 0x6c, 0x6f, 0x61, 0x64, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x6f,
    	0x72, 0x6b, 0x6c, 0x6f, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x69, 0x73,
    	0x74, 0x69, 0x6f, 0x2e, 0x77, 0x6f, 0x72, 0x6b, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x7e, 0x0a, 0x07,
    	0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x36, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x6c,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    	{"-0x01", "0x00", "0x00", "-0x01", "-0x01", "-0x01"},
    	{"-0xaf", "-0x50", "-0xf0", "-0x0f", "0xe1", "0x41"},
    	{"0x00", "-0x01", "0x00", "-0x01", "-0x01", "0x00"},
    	{"0x01", "0x01", "0x01", "0x01", "0x00", "0x00"},
    	{"-0x01", "-0x01", "-0x01", "-0x01", "0x00", "0x00"},
    	{"0x07", "0x08", "0x00", "0x0f", "0x0f", "0x07"},
    	{"0x05", "0x0f", "0x05", "0x0f", "0x0a", "0x00"},
    	{"0xff", "-0x0a", "0xf6", "-0x01", "-0xf7", "0x09"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	TranslateName(accName *uint16, accNameFormat uint32, desiredNameFormat uint32, translatedName *uint16, nSize *uint32) (err error) [failretval&0xff==0] = secur32.TranslateNameW
    //sys	GetUserNameEx(nameFormat uint32, nameBuffre *uint16, nSize *uint32) (err error) [failretval&0xff==0] = secur32.GetUserNameExW
    
    // TranslateAccountName converts a directory service
    // object name from one format to another.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// to a string.
    	LLVMStyle
    )
    
    // maxLengthShift is how we shift the MaxLength value.
    const maxLengthShift = 16
    
    // maxLengthMask is a mask for the maxLength value.
    const maxLengthMask = 0x1f << maxLengthShift
    
    // MaxLength returns an Option that limits the maximum length of a
    // demangled string. The maximum length is expressed as a power of 2,
    // so a value of 1 limits the returned string to 2 characters, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/reflect/type.go

    		// Strictly speaking, control chars include the range [0x7f, 0x9f], not just
    		// [0x00, 0x1f], but in practice, we ignore the multi-byte control characters
    		// as it is simpler to inspect the tag's bytes than the tag's runes.
    		i = 0
    		for i < len(tag) && tag[i] > ' ' && tag[i] != ':' && tag[i] != '"' && tag[i] != 0x7f {
    			i++
    		}
    		if i == 0 || i+1 >= len(tag) || tag[i] != ':' || tag[i+1] != '"' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top