Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ull (0.02 sec)

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

    //export GoIssue6833Func
    func GoIssue6833Func(aui uint, aui64 uint64) uint64 {
    	return aui64 + uint64(aui)
    }
    
    func test6833(t *testing.T) {
    	ui := 7
    	ull := uint64(0x4000300020001000)
    	v := uint64(C.issue6833Func(C.uint(ui), C.ulonglong(ull)))
    	exp := uint64(ui) + ull
    	if v != exp {
    		t.Errorf("issue6833Func() returns %x, expected %x", v, exp)
    	}
    }
    
    // issue 6907
    
    const CString = "C string"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/testdata/err2.go

    		_ C.uint          = "ui"  // ERROR HERE: C\.uint
    		_ C.ulong         = "ul"  // ERROR HERE: C\.ulong
    		_ C.longlong      = "ll"  // ERROR HERE: C\.longlong
    		_ C.ulonglong     = "ull" // ERROR HERE: C\.ulonglong
    		_ C.complexfloat  = "cf"  // ERROR HERE: C\.complexfloat
    		_ C.complexdouble = "cd"  // ERROR HERE: C\.complexdouble
    	)
    
    	// issue 13830
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/codegen.cc

                           "::xla::cpu_function_runtime::BufferInfo("
                           "::xla::cpu_function_runtime::EncodedBufferInfo{",
                           encoded.packed_kind_and_size, "ULL, ",
                           param_to_str(encoded.entry_param_number), ", ",
                           param_to_str(encoded.result_param_number), "})");
                     });
      return buffer_infos_as_strings;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. src/encoding/json/decode.go

    				'.', 'e', 'E', '+', '-':
    			default:
    				break Switch
    			}
    		}
    	case 't': // true
    		i += len("rue")
    	case 'f': // false
    		i += len("alse")
    	case 'n': // null
    		i += len("ull")
    	}
    	if i < len(data) {
    		d.opcode = stateEndValue(&d.scan, data[i])
    	} else {
    		d.opcode = scanEnd
    	}
    	d.off = i + 1
    }
    
    // value consumes a JSON value from d.data[d.off-1:], decoding into v, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    var builtinTypeSuffix = map[string]string{
    	"int":                "",
    	"unsigned int":       "u",
    	"long":               "l",
    	"unsigned long":      "ul",
    	"long long":          "ll",
    	"unsigned long long": "ull",
    }
    
    // Builtin float types.
    var builtinTypeFloat = map[string]bool{
    	"double":      true,
    	"long double": true,
    	"float":       true,
    	"__float128":  true,
    	"half":        true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top