GNU Octave 10.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
ov-uint64.cc
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 2004-2025 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if defined (HAVE_CONFIG_H)
27# include "config.h"
28#endif
29
30#include "lo-ieee.h"
31#include "lo-utils.h"
32#include "mx-base.h"
33#include "quit.h"
34
35#include "errwarn.h"
36#include "oct-lvalue.h"
37#include "oct-hdf5.h"
38#include "ops.h"
39#include "ov-base.h"
40
41#if defined (HAVE_HDF5)
42# define HDF5_SAVE_TYPE H5T_NATIVE_UINT64
43#else
44// This value will not be used.
45# define HDF5_SAVE_TYPE 0
46#endif
47
48#include "ov-uint64.h"
49#include "pr-output.h"
50#include "variables.h"
51
52#include "byte-swap.h"
53#include "ls-oct-text.h"
54#include "ls-utils.h"
55#include "ls-hdf5.h"
56
57octave_hdf5_id octave_uint64_matrix::s_hdf5_save_type = HDF5_SAVE_TYPE;
58octave_hdf5_id octave_uint64_scalar::s_hdf5_save_type = HDF5_SAVE_TYPE;
59
61 "uint64 matrix", "uint64");
62
64 "uint64 scalar", "uint64");
int64_t octave_hdf5_id
#define DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(t, n, c)
Definition ov-base.h:246
#define HDF5_SAVE_TYPE
Definition ov-uint64.cc:42