Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 521 for t_long (0.11 sec)

  1. src/debug/dwarf/testdata/typedef.c

    typedef const char *t_ptr_const_char;
    typedef long t_long;
    typedef unsigned short t_ushort;
    typedef int t_func_int_of_float_double(float, double);
    typedef int (*t_ptr_func_int_of_float_double)(float, double);
    typedef int (*t_ptr_func_int_of_float_complex)(float complex);
    typedef int (*t_ptr_func_int_of_double_complex)(double complex);
    typedef int (*t_ptr_func_int_of_long_double_complex)(long double complex);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. src/debug/dwarf/type_test.go

    	"t_my_struct1":                          "struct my_struct1 {zz [1]int@0}",
    	"t_my_union":                            "union my_union {vi volatile int@0; x char@0 : 1@7; y int@0 : 4@28; array [40]long long int@0}",
    	"t_my_enum":                             "enum my_enum {e1=1; e2=2; e3=-5; e4=1000000000000000}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpKeyId.java

        }
    
        public final String getAsHex() {
            return asHex;
        }
    
        public final long getAsLong() {
            return asLong;
        }
    
        public static String toHex(long keyId) {
            return String.format("%08X", 0xFFFFFFFFL & keyId);
        }
    
        public static long toLong(String keyId) {
            if (keyId == null) {
                throw new IllegalArgumentException("'keyId' cannot be null");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/syscall/types_freebsd.go

    	u_char  ifi_spare_char2;
    	u_char  ifi_datalen;
    	u_long  ifi_mtu;
    	u_long  ifi_metric;
    	u_long  ifi_baudrate;
    	u_long  ifi_ipackets;
    	u_long  ifi_ierrors;
    	u_long  ifi_opackets;
    	u_long  ifi_oerrors;
    	u_long  ifi_collisions;
    	u_long  ifi_ibytes;
    	u_long  ifi_obytes;
    	u_long  ifi_imcasts;
    	u_long  ifi_omcasts;
    	u_long  ifi_iqdrops;
    	u_long  ifi_noproto;
    	u_long  ifi_hwassist;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768_test.go

    		if _, _, err := Encapsulate(ek[:i]); err == nil {
    			t.Errorf("expected error for ek length %d", i)
    		}
    	}
    	ekLong := ek
    	for i := 0; i < 100; i++ {
    		ekLong = append(ekLong, 0)
    		if _, _, err := Encapsulate(ekLong); err == nil {
    			t.Errorf("expected error for ek length %d", len(ekLong))
    		}
    	}
    
    	c, _, err := Encapsulate(ek)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/UnsignedInts.java

       *     and {@link Character#MAX_RADIX}.
       */
      public static String toString(int x, int radix) {
        long asLong = x & INT_MASK;
        return Long.toString(asLong, radix);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/UnsignedInts.java

       *     and {@link Character#MAX_RADIX}.
       */
      public static String toString(int x, int radix) {
        long asLong = x & INT_MASK;
        return Long.toString(asLong, radix);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                type.isUInt -> KaConstantValue.KaUnsignedIntConstantValue((value as Number).toInt().toUInt(), expression)
                type.isLong -> KaConstantValue.KaLongConstantValue((value as Number).toLong(), expression)
                type.isULong -> KaConstantValue.KaUnsignedLongConstantValue((value as Number).toLong().toULong(), expression)
                type.isString -> KaConstantValue.KaStringConstantValue(value.toString(), expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/HashCode.java

        }
    
        @Override
        public int asInt() {
          return hash;
        }
    
        @Override
        public long asLong() {
          throw new IllegalStateException("this HashCode only has 32 bits; cannot create a long");
        }
    
        @Override
        public long padToLong() {
          return UnsignedInts.toLong(hash);
        }
    
        @Override
        void writeBytesToImpl(byte[] dest, int offset, int maxLength) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/HashCode.java

        }
    
        @Override
        public int asInt() {
          return hash;
        }
    
        @Override
        public long asLong() {
          throw new IllegalStateException("this HashCode only has 32 bits; cannot create a long");
        }
    
        @Override
        public long padToLong() {
          return UnsignedInts.toLong(hash);
        }
    
        @Override
        void writeBytesToImpl(byte[] dest, int offset, int maxLength) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
Back to top