Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,076 for unassigned (0.16 sec)

  1. android/guava/src/com/google/common/primitives/UnsignedLongs.java

      /**
       * A (self-inverse) bijection which converts the ordering on unsigned longs to the ordering on
       * longs, that is, {@code a <= b} as unsigned longs if and only if {@code flip(a) <= flip(b)} as
       * signed longs.
       */
      private static long flip(long a) {
        return a ^ Long.MIN_VALUE;
      }
    
      /**
       * Compares the two specified {@code long} values, treating them as unsigned values between {@code
       * 0} and {@code 2^64 - 1} inclusive.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue44739.go

    )
    
    func f(a T, _ byte, b T) bool {
    	// initialization of a,b
    	// tests unaligned store
    	return a.y == b.y
    }
    
    func g(a T) {
    	// test load of unaligned
    	// 8 byte gostring, store
    	// to unaligned static
    	copy(a.y[:], gostring2)
    }
    
    func main() {
    	var t1, t2 T
    
    	// test copy to automatic storage,
    	// load of unaligned gostring.
    	copy(st.y[:], gostring2)
    	copy(t1.y[:], st.y[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 19:33:23 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20/xor.go

    // Use of this source code is governed by a BSD-style
    // license that can be found src the LICENSE file.
    
    package chacha20
    
    import "runtime"
    
    // Platforms that have fast unaligned 32-bit little endian accesses.
    const unaligned = runtime.GOARCH == "386" ||
    	runtime.GOARCH == "amd64" ||
    	runtime.GOARCH == "arm64" ||
    	runtime.GOARCH == "ppc64le" ||
    	runtime.GOARCH == "s390x"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 22:52:07 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    // Because the registers are msan-undefined, the signal handler will
    // be invoked with all registers msan-undefined.
    __attribute__((noinline))
    void msanGoWait(unsigned long a1, unsigned long a2, unsigned long a3, unsigned long a4, unsigned long a5, unsigned long a6) {
    	sigset_t mask;
    
    	sigemptyset(&mask);
            sigsuspend(&mask);
    }
    
    // msanGoSignalThread is the thread ID of the msanGoLoop thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/AuthenticationSupported.java

         * <p>
         * If no credentials have been assigned to this repository, an empty set of credentials of the specified type is assigned to this repository and returned.
         *
         * @param credentialsType type of the credential
         * @return The credentials
         * @throws IllegalArgumentException when the credentials assigned to this repository are not assignable to the specified type
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 10 11:27:47 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    #ifdef MEMTRACE
      void* CU_calloc(size_t nmemb, size_t size, unsigned int uiLine, const char* szFileName);
      void* CU_malloc(size_t size, unsigned int uiLine, const char* szFileName);
      void  CU_free(void *ptr, unsigned int uiLine, const char* szFileName);
      void* CU_realloc(void *ptr, size_t size, unsigned int uiLine, const char* szFileName);
      CU_EXPORT void CU_dump_memory_usage(const char*);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/UnsignedBytes.java

      }
    
      /**
       * Returns the unsigned {@code byte} value represented by a string with the given radix.
       *
       * @param string the string containing the unsigned {@code byte} representation to be parsed.
       * @param radix the radix to use while parsing {@code string}
       * @throws NumberFormatException if the string does not contain a valid unsigned {@code byte} with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/UnsignedInteger.java

            "value (%s) is outside the range for an unsigned integer value",
            value);
        return fromIntBits(value.intValue());
      }
    
      /**
       * Returns an {@code UnsignedInteger} holding the value of the specified {@code String}, parsed as
       * an unsigned {@code int} value.
       *
       * @throws NumberFormatException if the string does not contain a parsable unsigned {@code int}
       *     value
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/UnsignedInteger.java

            "value (%s) is outside the range for an unsigned integer value",
            value);
        return fromIntBits(value.intValue());
      }
    
      /**
       * Returns an {@code UnsignedInteger} holding the value of the specified {@code String}, parsed as
       * an unsigned {@code int} value.
       *
       * @throws NumberFormatException if the string does not contain a parsable unsigned {@code int}
       *     value
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue6833_c.c

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "_cgo_export.h"
     
    unsigned long long
    issue6833Func(unsigned int aui, unsigned long long aull) {
    	return GoIssue6833Func(aui, aull);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 303 bytes
    - Viewed (0)
Back to top