Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ull (0.03 sec)

  1. 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)
  2. 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)
  3. 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