Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,104 for ulong (0.06 sec)

  1. src/cmd/cgo/internal/test/callback_windows.go

    // Copyright 2023 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.
    
    package cgotest
    
    /*
    #include <windows.h>
    USHORT backtrace(ULONG FramesToCapture, PVOID *BackTrace) {
    #ifdef _AMD64_
    	CONTEXT context;
    	RtlCaptureContext(&context);
    	ULONG64 ControlPc;
    	ControlPc = context.Rip;
    	int i;
    	for (i = 0; i < FramesToCapture; i++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

      input_spatial_dimensions : [long];
      kernel_input_feature_dimension : long;
      kernel_output_feature_dimension : long;
      kernel_spatial_dimensions : [long];
      output_batch_dimension : long;
      output_feature_dimension : long;
      output_spatial_dimensions	: [long];
      feature_group_count : long;
      batch_group_count : long;
      precision_config : [StablehloPrecisionConfig];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

        }
    
        public class KaLongConstantValue(
            override val value: Long,
            override val sourcePsi: KtElement?
        ) : KaConstantValue(ConstantValueKind.Long) {
            override fun renderAsKotlinConstant(): String = value.toString()
        }
    
        public class KaUnsignedLongConstantValue(
            override val value: ULong,
            override val sourcePsi: KtElement?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. misc/cgo/gmp/gmp.go

    func (z *Int) Lsh(x *Int, s uint) *Int {
    	x.doinit()
    	z.doinit()
    	C._mpz_mul_2exp(&z.i[0], &x.i[0], C.ulong(s))
    	return z
    }
    
    // Rsh sets z = x >> s and returns z.
    func (z *Int) Rsh(x *Int, s uint) *Int {
    	x.doinit()
    	z.doinit()
    	C._mpz_div_2exp(&z.i[0], &x.i[0], C.ulong(s))
    	return z
    }
    
    // Exp sets z = x^y % m and returns z.
    // If m == nil, Exp sets z = x^y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val UNIT: ClassId = ClassId.topLevel(StandardNames.FqNames.unit.toSafe())
        public val INT: ClassId = ClassId.topLevel(StandardNames.FqNames._int.toSafe())
        public val LONG: ClassId = ClassId.topLevel(StandardNames.FqNames._long.toSafe())
        public val SHORT: ClassId = ClassId.topLevel(StandardNames.FqNames._short.toSafe())
        public val BYTE: ClassId = ClassId.topLevel(StandardNames.FqNames._byte.toSafe())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                // Unsigned integers
                is UByte -> printer.append(value.toString())
                is UShort -> printer.append(value.toString())
                is UInt -> printer.append(value.toString())
                is ULong -> printer.append(value.toString())
                // Java values
                is Enum<*> -> printer.append(value.name)
                is List<*> -> renderList(value, printer, renderSymbolsFully = false)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    var dwarfToName = map[string]string{
    	"long int":               "long",
    	"long unsigned int":      "ulong",
    	"unsigned int":           "uint",
    	"short unsigned int":     "ushort",
    	"unsigned short":         "ushort", // Used by Clang; issue 13129.
    	"short int":              "short",
    	"long long int":          "longlong",
    	"long long unsigned int": "ulonglong",
    	"signed char":            "schar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    The standard C numeric types are available under the names
    C.char, C.schar (signed char), C.uchar (unsigned char),
    C.short, C.ushort (unsigned short), C.int, C.uint (unsigned int),
    C.long, C.ulong (unsigned long), C.longlong (long long),
    C.ulonglong (unsigned long long), C.float, C.double,
    C.complexfloat (complex float), and C.complexdouble (complex double).
    The C type void* is represented by Go's unsafe.Pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.go

    // issue 22958
    
    typedef struct {
    	unsigned long long f8  : 8;
    	unsigned long long f16 : 16;
    	unsigned long long f24 : 24;
    	unsigned long long f32 : 32;
    	unsigned long long f40 : 40;
    	unsigned long long f48 : 48;
    	unsigned long long f56 : 56;
    	unsigned long long f64 : 64;
    } issue22958Type;
    
    // issue 23356
    int a(void) { return 5; };
    int r(void) { return 3; };
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. src/internal/diff/testdata/long.txt

    Russ Cox <******@****.***> 1643490792 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 253 bytes
    - Viewed (0)
Back to top