Home
last modified time | relevance | path

Searched refs:ct (Results 351 – 375 of 32591) sorted by relevance

1...<<11121314151617181920>>...1304

/dports/security/akmos/akmos-0.7.2/src/
H A Dbits.h68 #define UNPACK32LE(ct, st) \ argument
70 (ct)[3] = (uint8_t)(st); \
71 (ct)[2] = (uint8_t)((st) >> 8); \
72 (ct)[1] = (uint8_t)((st) >> 16); \
73 (ct)[0] = (uint8_t)((st) >> 24); \
79 #define UNPACK32BE(ct, st) \ argument
81 (ct)[0] = (uint8_t)(st); \
82 (ct)[1] = (uint8_t)((st) >> 8); \
83 (ct)[2] = (uint8_t)((st) >> 16); \
84 (ct)[3] = (uint8_t)((st) >> 24); \
[all …]
/dports/editors/ted/Ted-2.23/docEdit/
H A DdocTocResult.c242 CalculateToc * ct, in docMakeTocParagraph() argument
340 ct->ctDfTocTo= docClaimFieldCopy( &(ct->ctBdToc->bdFieldList), in docStartTocField()
373 ct->ctBdToc= docIntermediaryDocument( &(ct->ctSectNode), ct->ctBdDoc ); in docSetupTocDocument()
377 ct->ctDefaultTextAttributeNumber= docTextAttributeNumber( ct->ctBdToc, in docSetupTocDocument()
389 ct->ctLevelAttributeNumbers[level]= ct->ctDefaultTextAttributeNumber; in docSetupTocDocument()
431 if ( docAddRootFieldToTree( &(ct->ctBdToc->bdBody), ct->ctDfTocTo ) ) in docFinishTocField()
440 CalculateToc * ct, in docGetTocParaProperties() argument
512 te= ct->ctEntries; in docCalculateTocField()
526 if ( docParaInsertTocEntry( ct, ct->ctTocField.tfHyperlinks, te, in docCalculateTocField()
588 CalculateToc ct; in docRecalculateOneTocField() local
[all …]
/dports/lang/asn1c/asn1c-0.9.27/libasn1parser/
H A Dasn1p_constr.c13 ct = calloc(1, sizeof(*ct)); in asn1p_constraint_new()
14 if(ct) { in asn1p_constraint_new()
18 return ct; in asn1p_constraint_new()
24 if(ct) { in asn1p_constraint_free()
28 if(ct->value) in asn1p_constraint_free()
32 if(ct->range_stop) in asn1p_constraint_free()
38 ct->elements[ct->el_count]); in asn1p_constraint_free()
43 free(ct); in asn1p_constraint_free()
101 if(ct->el_count == ct->el_size) { in asn1p_constraint_make_memory()
102 unsigned int newsize = ct->el_size ? ct->el_size << 2 : 4; in asn1p_constraint_make_memory()
[all …]
/dports/devel/openocd/openocd-0.11.0/jimtcl/
H A Djim-subcmd.c33 for (; ct->cmd; ct++) { in add_commands()
61 if (ct->args && *ct->args) { in add_cmd_usage()
88 const jim_subcmd_type *ct; in Jim_ParseSubCmd() local
134 for (ct = command_table; ct->cmd; ct++) { in Jim_ParseSubCmd()
150 partial = ct; in Jim_ParseSubCmd()
156 if (partial && !ct->cmd) { in Jim_ParseSubCmd()
157 ct = partial; in Jim_ParseSubCmd()
160 if (!ct->cmd) { in Jim_ParseSubCmd()
186 if (argc - 2 < ct->minargs || (ct->maxargs >= 0 && argc - 2 > ct->maxargs)) { in Jim_ParseSubCmd()
196 return ct; in Jim_ParseSubCmd()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/snowflakedb/gosnowflake/
H A Dold_driver_test.go39 ct, err := rows.ColumnTypes()
56 …if ct[0].Name() != "C1" || ct[1].Name() != "C2" || ct[2].Name() != "C3" || ct[3].Name() != "C4" ||…
72 dbt.mustFailLength(ct[0])
87 dbt.mustFailLength(ct[1])
95 dbt.mustFailDecimalSize(ct[2])
96 cLen = dbt.mustLength(ct[2])
107 dbt.mustFailDecimalSize(ct[3])
108 dbt.mustFailLength(ct[3])
116 dbt.mustFailDecimalSize(ct[4])
128 dbt.mustFailDecimalSize(ct[5])
[all …]
/dports/security/py-python-gvm/python-gvm-21.10.0/tests/protocols/gmpv208/enums/
H A Dtest_alive_test.py31 ct = AliveTest.from_string(None)
32 self.assertIsNone(ct)
33 ct = AliveTest.from_string('')
34 self.assertIsNone(ct)
41 ct = AliveTest.from_string('ICMP Ping')
42 self.assertEqual(ct, AliveTest.ICMP_PING)
53 ct = AliveTest.from_string('ARP Ping')
54 self.assertEqual(ct, AliveTest.ARP_PING)
61 ct = AliveTest.from_string('ICMP & ARP Ping')
73 ct = AliveTest.from_string('Consider Alive')
[all …]
/dports/security/py-python-gvm/python-gvm-21.10.0/tests/protocols/gmpv214/enums/
H A Dtest_alive_test.py31 ct = AliveTest.from_string(None)
32 self.assertIsNone(ct)
33 ct = AliveTest.from_string('')
34 self.assertIsNone(ct)
41 ct = AliveTest.from_string('ICMP Ping')
42 self.assertEqual(ct, AliveTest.ICMP_PING)
53 ct = AliveTest.from_string('ARP Ping')
54 self.assertEqual(ct, AliveTest.ARP_PING)
61 ct = AliveTest.from_string('ICMP & ARP Ping')
73 ct = AliveTest.from_string('Consider Alive')
[all …]
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgxbitops.h40 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
43 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
45 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
47 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
49 #define cbit_mask(ct) (cbits(ct)-1) argument
51 #define calign_bytes(ct)\ argument
52 (sizeof(ct) == 1 ? 1:\
53 sizeof(ct) == sizeof(short) ? arch_align_short_mod :\
56 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
69 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgxbitops.h40 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
43 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
45 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
47 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
49 #define cbit_mask(ct) (cbits(ct)-1) argument
51 #define calign_bytes(ct)\ argument
52 (sizeof(ct) == 1 ? 1:\
53 sizeof(ct) == sizeof(short) ? arch_align_short_mod :\
56 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
69 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgxbitops.h35 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
38 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
40 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
42 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
44 #define cbit_mask(ct) (cbits(ct)-1) argument
46 #define calign_bytes(ct)\ argument
47 (sizeof(ct) == 1 ? 1:\
48 sizeof(ct) == sizeof(short) ? ARCH_ALIGN_SHORT_MOD :\
51 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
64 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgxbitops.h37 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
40 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
42 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
44 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
46 #define cbit_mask(ct) (cbits(ct)-1) argument
48 #define calign_bytes(ct)\ argument
49 (sizeof(ct) == 1 ? 1:\
50 sizeof(ct) == sizeof(short) ? ARCH_ALIGN_SHORT_MOD :\
53 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
66 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgxbitops.h35 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
38 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
40 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
42 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
44 #define cbit_mask(ct) (cbits(ct)-1) argument
46 #define calign_bytes(ct)\ argument
47 (sizeof(ct) == 1 ? 1:\
48 sizeof(ct) == sizeof(short) ? ARCH_ALIGN_SHORT_MOD :\
51 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
64 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgxbitops.h37 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
40 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
42 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
44 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
46 #define cbit_mask(ct) (cbits(ct)-1) argument
48 #define calign_bytes(ct)\ argument
49 (sizeof(ct) == 1 ? 1:\
50 sizeof(ct) == sizeof(short) ? ARCH_ALIGN_SHORT_MOD :\
53 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
66 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgxbitops.h37 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
40 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
42 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
44 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
46 #define cbit_mask(ct) (cbits(ct)-1) argument
48 #define calign_bytes(ct)\ argument
49 (sizeof(ct) == 1 ? 1:\
50 sizeof(ct) == sizeof(short) ? ARCH_ALIGN_SHORT_MOD :\
53 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
66 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgxbitops.h37 #define cbytes(ct) size_of(ct) /* sizeof may be unsigned */ argument
40 #define clog2_bytes(ct) (size_of(ct) == 8 ? 3 : size_of(ct)>>1) argument
42 #define cbits(ct) (size_of(ct)*8) /* sizeof may be unsigned */ argument
44 #define clog2_bits(ct) (clog2_bytes(ct)+3) argument
46 #define cbit_mask(ct) (cbits(ct)-1) argument
48 #define calign_bytes(ct)\ argument
49 (sizeof(ct) == 1 ? 1:\
50 sizeof(ct) == sizeof(short) ? ARCH_ALIGN_SHORT_MOD :\
53 #define calign_bit_mask(ct) (calign_bytes(ct)*8-1) argument
66 #define cmask(ct) ((ct) (((((ct)1 << (size_of(ct)*8-2)) - 1) << 2) + 3)) argument
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/include/boost_1_59_0/patches/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp87 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
94 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
95 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
96 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
142 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
143 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
144 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
167 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
168 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
169 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp84 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
91 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
92 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
93 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
139 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
140 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
141 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
164 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
165 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
166 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/include/boost_1_59_0/patches/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp87 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
94 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
95 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
96 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
142 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
143 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
144 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
167 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
168 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
169 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp84 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
91 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
92 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
93 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
139 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
140 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
141 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
164 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
165 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
166 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/percona57-server/boost_1_59_0/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp84 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
91 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
92 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
93 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
139 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
140 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
141 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
164 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
165 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
166 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/include/boost_1_59_0/patches/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp87 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
94 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
95 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
96 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
142 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
143 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
144 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
167 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
168 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
169 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/include/boost_1_59_0/patches/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp87 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
94 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
95 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
96 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
142 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
143 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
144 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
167 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
168 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
169 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/include/boost_1_59_0/patches/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp87 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
94 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
95 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
96 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
142 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
143 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
144 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
167 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
168 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
169 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/databases/percona57-client/boost_1_59_0/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp84 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
91 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
92 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
93 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
139 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
140 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
141 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
164 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
165 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
166 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/geometry/strategies/transform/
H A Dmatrix_transformers.hpp87 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::ublas_transformer
94 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
95 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
96 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
142 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in ublas_transformer()
143 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in ublas_transformer()
144 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in ublas_transformer()
167 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3, in ublas_transformer()
168 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3, in ublas_transformer()
169 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2, ct const& m_2_3, in ublas_transformer()
[all …]

1...<<11121314151617181920>>...1304