GNU Octave 7.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
ov-uint64.cc
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 2004-2022 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-base-int.h"
49#include "ov-base-int.cc"
50#include "ov-uint64.h"
51#include "pr-output.h"
52#include "variables.h"
53
54#include "byte-swap.h"
55#include "ls-oct-text.h"
56#include "ls-utils.h"
57#include "ls-hdf5.h"
58
61
62// Prevent implicit instantiations on some systems (Windows, others?)
63// that can lead to duplicate definitions of static data members.
64
65extern template class octave_base_scalar<double>;
66
68
70
72 "uint64 matrix", "uint64");
73
75
77
79 "uint64 scalar", "uint64");
static octave_hdf5_id hdf5_save_type
Definition: ov-intx.h:383
static octave_hdf5_id hdf5_save_type
Definition: ov-intx.h:696
int64_t octave_hdf5_id
#define DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(t, n, c)
Definition: ov-base.h:222
#define HDF5_SAVE_TYPE
Definition: ov-uint64.cc:42