Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,045 for uint16_t (0.21 sec)

  1. src/main/java/jcifs/dcerpc/rpc.idl

    	typedef unsigned char uint8_t;
    	typedef unsigned short uint16_t;
    	typedef unsigned int uint32_t;
    
    	/* dce */
    
    	typedef struct {
    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    		uuid_t uuid;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	typedef unsigned char uint8_t;
    	typedef unsigned short uint16_t;
    	typedef unsigned int uint32_t;
    
    	/* dce */
    
    	typedef struct {
    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    		uuid_t uuid;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	version(0.0)
    ]
    interface lsarpc
    {
    	import "../rpc.idl";
    
    	typedef struct {
    		uint32_t length;
    		uint16_t impersonation_level;
    		uint8_t context_mode;
    		uint8_t effective_only;
    	} LsarQosInfo;
    
    	typedef struct {
    		uint32_t length;
    		uint8_t *root_directory;
    		unicode_string *object_name;
    		uint32_t attributes;
    		uint32_t security_descriptor;
    		LsarQosInfo *security_quality_of_service;
    	} LsarObjectAttributes;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	version(0.0)
    ]
    interface lsarpc
    {
    	import "../rpc.idl";
    
    	typedef struct {
    		uint32_t length;
    		uint16_t impersonation_level;
    		uint8_t context_mode;
    		uint8_t effective_only;
    	} LsarQosInfo;
    
    	typedef struct {
    		uint32_t length;
    		uint8_t *root_directory;
    		unicode_string *object_name;
    		uint32_t attributes;
    		uint32_t security_descriptor;
    		LsarQosInfo *security_quality_of_service;
    	} LsarObjectAttributes;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/constant_utils.cc

          switch (itype.getWidth()) {
            case 8:
              return DenseElementsAttr::get<uint8_t>(shaped_type,
                                                     static_cast<uint8_t>(value));
              break;
            case 16:
              return DenseElementsAttr::get<uint16_t>(shaped_type,
                                                      static_cast<uint16_t>(value));
              break;
            case 32:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

          return mlir::ElementsAttr(
              DenseElementsAttr::get(shaped_type, ArrayRef<uint8_t>(buffer)));
        }
        case 16: {
          values = ReadAsHostEndian<uint16_t>(buffer);
          break;
        }
        case 32: {
          values = ReadAsHostEndian<uint32_t>(buffer);
          break;
        }
        case 64: {
          values = ReadAsHostEndian<uint64_t>(buffer);
          break;
        }
        default:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/base/tests/tensor_types_test_util.h

    };
    
    struct UINT8Type {
      using type = uint8_t;
      static constexpr TF_DataType kDType = TF_UINT8;
    };
    
    struct INT8Type {
      using type = int8_t;
      static constexpr TF_DataType kDType = TF_INT8;
    };
    
    struct INT64Type {
      using type = int64_t;
      static constexpr TF_DataType kDType = TF_INT64;
    };
    
    struct UINT16Type {
      using type = uint16_t;
      static constexpr TF_DataType kDType = TF_UINT16;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

          output->Add(
              Eigen::numext::bit_cast<uint16_t>(attr.getSplatValue<Eigen::half>()));
      } else {
        output->Reserve(attr.getNumElements());
        for (const Eigen::half value : attr.getValues<Eigen::half>())
          output->AddAlreadyReserved(Eigen::numext::bit_cast<uint16_t>(value));
      }
    }
    
    // Converts an MLIR elements attribute containing signed int values and adds it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

    constexpr float kBlockOverRandomSparsityRatioQuant = 0.8;
    
    Eigen::half APFloatToEigenHalf(const APFloat& val) {
      uint16_t raw_data = val.bitcastToAPInt().getZExtValue();
      return Eigen::numext::bit_cast<Eigen::half>(raw_data);
    }
    
    APFloat EigenHalfToAPFloat(const Eigen::half& val) {
      uint16_t raw_data = Eigen::numext::bit_cast<uint16_t>(val);
      return APFloat(APFloat::IEEEhalf(), APInt(16, raw_data));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. src/runtime/write_err_android.go

    	// The first 11 bytes of the header corresponds to android_log_header_t
    	// as defined in system/core/include/private/android_logger.h
    	//   hdr[0] log type id (unsigned char), defined in <log/log.h>
    	//   hdr[1:2] tid (uint16_t)
    	//   hdr[3:11] log_time defined in <log/log_read.h>
    	//      hdr[3:7] sec unsigned uint32, little endian.
    	//      hdr[7:11] nsec unsigned uint32, little endian.
    	hdr[0] = 0 // LOG_ID_MAIN
    	sec, nsec, _ := time_now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top