Home
last modified time | relevance | path

Searched +refs:arrow +refs:mode (Results 1 – 25 of 19094) sorted by relevance

12345678910>>...764

/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/c_glib/arrow-glib/
H A Dfile-mode.cpp36 garrow_file_mode_from_raw(arrow::io::FileMode::type mode) in garrow_file_mode_from_raw() argument
38 switch (mode) { in garrow_file_mode_from_raw()
39 case arrow::io::FileMode::type::READ: in garrow_file_mode_from_raw()
41 case arrow::io::FileMode::type::WRITE: in garrow_file_mode_from_raw()
43 case arrow::io::FileMode::type::READWRITE: in garrow_file_mode_from_raw()
50 arrow::io::FileMode::type
51 garrow_file_mode_to_raw(GArrowFileMode mode) in garrow_file_mode_to_raw() argument
53 switch (mode) { in garrow_file_mode_to_raw()
55 return arrow::io::FileMode::type::READ; in garrow_file_mode_to_raw()
57 return arrow::io::FileMode::type::WRITE; in garrow_file_mode_to_raw()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/c_glib/arrow-glib/
H A Dfile-mode.cpp32 garrow_file_mode_from_raw(arrow::io::FileMode::type mode) in garrow_file_mode_from_raw() argument
34 switch (mode) { in garrow_file_mode_from_raw()
35 case arrow::io::FileMode::type::READ: in garrow_file_mode_from_raw()
37 case arrow::io::FileMode::type::WRITE: in garrow_file_mode_from_raw()
39 case arrow::io::FileMode::type::READWRITE: in garrow_file_mode_from_raw()
46 arrow::io::FileMode::type
47 garrow_file_mode_to_raw(GArrowFileMode mode) in garrow_file_mode_to_raw() argument
49 switch (mode) { in garrow_file_mode_to_raw()
51 return arrow::io::FileMode::type::READ; in garrow_file_mode_to_raw()
53 return arrow::io::FileMode::type::WRITE; in garrow_file_mode_to_raw()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/c_glib/arrow-glib/
H A Dfile-mode.cpp36 garrow_file_mode_from_raw(arrow::io::FileMode::type mode) in garrow_file_mode_from_raw() argument
38 switch (mode) { in garrow_file_mode_from_raw()
39 case arrow::io::FileMode::type::READ: in garrow_file_mode_from_raw()
41 case arrow::io::FileMode::type::WRITE: in garrow_file_mode_from_raw()
43 case arrow::io::FileMode::type::READWRITE: in garrow_file_mode_from_raw()
50 arrow::io::FileMode::type
51 garrow_file_mode_to_raw(GArrowFileMode mode) in garrow_file_mode_to_raw() argument
53 switch (mode) { in garrow_file_mode_to_raw()
55 return arrow::io::FileMode::type::READ; in garrow_file_mode_to_raw()
57 return arrow::io::FileMode::type::WRITE; in garrow_file_mode_to_raw()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/gandiva/
H A Dselection_vector_impl.h34 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
38 : max_slots_(max_slots), num_slots_(0), buffer_(buffer), mode_(mode) { in SelectionVectorImpl()
43 std::shared_ptr<arrow::Buffer> buffer) in SelectionVectorImpl()
44 : max_slots_(max_slots), num_slots_(num_slots), buffer_(buffer), mode_(mode) { in SelectionVectorImpl()
73 arrow::Buffer& GetBuffer() const override { return *buffer_; } in GetBuffer()
76 std::shared_ptr<arrow::Buffer>* buffer);
87 std::shared_ptr<arrow::Buffer> buffer_;
94 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
95 ArrayPtr SelectionVectorImpl<C_TYPE, A_TYPE, mode>::ToArray() const { in ToArray()
96 auto data_type = arrow::TypeTraits<A_TYPE>::type_singleton(); in ToArray()
[all …]
H A Dselection_vector.cc99 std::shared_ptr<arrow::Buffer> buffer; in MakeInt16()
106 int64_t num_slots, std::shared_ptr<arrow::Buffer> buffer, in MakeImmutableInt16()
124 std::shared_ptr<arrow::Buffer> buffer; in MakeInt32()
132 int64_t num_slots, std::shared_ptr<arrow::Buffer> buffer, in MakeImmutableInt32()
150 std::shared_ptr<arrow::Buffer> buffer; in MakeInt64()
157 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
158 Status SelectionVectorImpl<C_TYPE, A_TYPE, mode>::AllocateBuffer( in AllocateBuffer()
159 int64_t max_slots, arrow::MemoryPool* pool, std::shared_ptr<arrow::Buffer>* buffer) { in AllocateBuffer()
166 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
167 Status SelectionVectorImpl<C_TYPE, A_TYPE, mode>::ValidateBuffer( in ValidateBuffer()
[all …]
H A Dprojector.cc37 ExpressionVector expression_vector, SelectionVector::Mode mode) in ProjectorCacheKey() argument
38 : schema_(schema), configuration_(configuration), mode_(mode), uniqifier_(0) { in ProjectorCacheKey()
47 arrow::internal::hash_combine(result, static_cast<size_t>(mode)); in ProjectorCacheKey()
229 Status Projector::Evaluate(const arrow::RecordBatch& batch, arrow::MemoryPool* pool, in Evaluate()
236 arrow::MemoryPool* pool, arrow::ArrayVector* output) { in Evaluate()
267 arrow::Status astatus; in AllocArrayData()
277 if (arrow::is_binary_like(type_id)) { in AllocArrayData()
286 if (arrow::is_primitive(type_id) || type_id == arrow::Type::DECIMAL) { in AllocArrayData()
299 if (type->id() == arrow::Type::BOOL) { in AllocArrayData()
331 if (arrow::is_binary_like(type_id)) { in ValidateArrayDataCapacity()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/gandiva/
H A Dselection_vector_impl.h34 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
38 : max_slots_(max_slots), num_slots_(0), buffer_(buffer), mode_(mode) { in SelectionVectorImpl()
43 std::shared_ptr<arrow::Buffer> buffer) in SelectionVectorImpl()
44 : max_slots_(max_slots), num_slots_(num_slots), buffer_(buffer), mode_(mode) { in SelectionVectorImpl()
73 arrow::Buffer& GetBuffer() const override { return *buffer_; } in GetBuffer()
76 std::shared_ptr<arrow::Buffer>* buffer);
87 std::shared_ptr<arrow::Buffer> buffer_;
94 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
95 ArrayPtr SelectionVectorImpl<C_TYPE, A_TYPE, mode>::ToArray() const { in ToArray()
96 auto data_type = arrow::TypeTraits<A_TYPE>::type_singleton(); in ToArray()
[all …]
H A Dselection_vector.cc99 std::shared_ptr<arrow::Buffer> buffer; in MakeInt16()
106 int64_t num_slots, std::shared_ptr<arrow::Buffer> buffer, in MakeImmutableInt16()
124 std::shared_ptr<arrow::Buffer> buffer; in MakeInt32()
132 int64_t num_slots, std::shared_ptr<arrow::Buffer> buffer, in MakeImmutableInt32()
150 std::shared_ptr<arrow::Buffer> buffer; in MakeInt64()
157 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
158 Status SelectionVectorImpl<C_TYPE, A_TYPE, mode>::AllocateBuffer( in AllocateBuffer()
159 int64_t max_slots, arrow::MemoryPool* pool, std::shared_ptr<arrow::Buffer>* buffer) { in AllocateBuffer()
166 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
167 Status SelectionVectorImpl<C_TYPE, A_TYPE, mode>::ValidateBuffer( in ValidateBuffer()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/gandiva/
H A Dselection_vector_impl.h34 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
38 : max_slots_(max_slots), num_slots_(0), buffer_(buffer), mode_(mode) { in SelectionVectorImpl()
43 std::shared_ptr<arrow::Buffer> buffer) in SelectionVectorImpl()
44 : max_slots_(max_slots), num_slots_(num_slots), buffer_(buffer), mode_(mode) { in SelectionVectorImpl()
73 arrow::Buffer& GetBuffer() const override { return *buffer_; } in GetBuffer()
76 std::shared_ptr<arrow::Buffer>* buffer);
87 std::shared_ptr<arrow::Buffer> buffer_;
94 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
95 ArrayPtr SelectionVectorImpl<C_TYPE, A_TYPE, mode>::ToArray() const { in ToArray()
96 auto data_type = arrow::TypeTraits<A_TYPE>::type_singleton(); in ToArray()
[all …]
H A Dselection_vector.cc98 std::shared_ptr<arrow::Buffer> buffer; in MakeInt16()
105 int64_t num_slots, std::shared_ptr<arrow::Buffer> buffer, in MakeImmutableInt16()
123 std::shared_ptr<arrow::Buffer> buffer; in MakeInt32()
131 int64_t num_slots, std::shared_ptr<arrow::Buffer> buffer, in MakeImmutableInt32()
149 std::shared_ptr<arrow::Buffer> buffer; in MakeInt64()
156 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
157 Status SelectionVectorImpl<C_TYPE, A_TYPE, mode>::AllocateBuffer( in AllocateBuffer()
158 int64_t max_slots, arrow::MemoryPool* pool, std::shared_ptr<arrow::Buffer>* buffer) { in AllocateBuffer()
165 template <typename C_TYPE, typename A_TYPE, SelectionVector::Mode mode>
166 Status SelectionVectorImpl<C_TYPE, A_TYPE, mode>::ValidateBuffer( in ValidateBuffer()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/java/vector/src/main/java/org/apache/arrow/vector/complex/impl/
H A DComplexWriterImpl.java18 package org.apache.arrow.vector.complex.impl;
20 import org.apache.arrow.util.Preconditions;
23 import org.apache.arrow.vector.complex.StateTool;
26 import org.apache.arrow.vector.types.pojo.Field;
37 Mode mode = Mode.INIT; field in ComplexWriterImpl
103 switch (mode) { in clear()
117 switch (mode) { in setValueCount()
132 switch (mode) { in setPosition()
151 switch (mode) { in directStruct()
171 switch (mode) { in rootAsStruct()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/java/vector/src/main/java/org/apache/arrow/vector/complex/impl/
H A DComplexWriterImpl.java18 package org.apache.arrow.vector.complex.impl;
20 import org.apache.arrow.util.Preconditions;
23 import org.apache.arrow.vector.complex.StateTool;
26 import org.apache.arrow.vector.types.pojo.Field;
37 Mode mode = Mode.INIT; field in ComplexWriterImpl
103 switch (mode) { in clear()
117 switch (mode) { in setValueCount()
132 switch (mode) { in setPosition()
151 switch (mode) { in directStruct()
171 switch (mode) { in rootAsStruct()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/java/vector/src/main/java/org/apache/arrow/vector/complex/impl/
H A DComplexWriterImpl.java18 package org.apache.arrow.vector.complex.impl;
20 import org.apache.arrow.util.Preconditions;
23 import org.apache.arrow.vector.complex.StateTool;
26 import org.apache.arrow.vector.types.pojo.Field;
37 Mode mode = Mode.INIT; field in ComplexWriterImpl
103 switch (mode) { in clear()
117 switch (mode) { in setValueCount()
132 switch (mode) { in setPosition()
151 switch (mode) { in directStruct()
171 switch (mode) { in rootAsStruct()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/examples/arrow/
H A Ddataset_documentation_example.cc55 arrow::schema({arrow::field("a", arrow::int64()), arrow::field("b", arrow::int64()), in CreateTable()
119 {arrow::field("a", arrow::int64()), arrow::field("b", arrow::int64()), in CreateExampleParquetHivePartitionedDataset()
120 arrow::field("c", arrow::int64()), arrow::field("part", arrow::utf8())}); in CreateExampleParquetHivePartitionedDataset()
330 std::string mode = argc > 3 ? argv[3] : "no_filter"; in main() local
352 if (mode == "no_filter") { in main()
354 } else if (mode == "filter") { in main()
356 } else if (mode == "project") { in main()
358 } else if (mode == "select_project") { in main()
360 } else if (mode == "partitioned") { in main()
362 } else if (mode == "filter_partitioned") { in main()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/java/vector/src/main/codegen/templates/
H A DUnionMapWriter.java18 import org.apache.arrow.memory.ArrowBuf;
21 import org.apache.arrow.vector.holders.Decimal256Holder;
22 import org.apache.arrow.vector.holders.DecimalHolder;
33 package org.apache.arrow.vector.complex.impl;
125 mode = MapWriteMode.OFF; in endEntry()
132 mode = MapWriteMode.KEY; in key()
150 switch (mode) {
164 switch (mode) { in decimal()
176 switch (mode) { in decimal256()
189 switch (mode) { in struct()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/java/vector/src/main/codegen/templates/
H A DUnionMapWriter.java18 import org.apache.arrow.memory.ArrowBuf;
20 import org.apache.arrow.vector.complex.writer.DecimalWriter;
21 import org.apache.arrow.vector.holders.Decimal256Holder;
22 import org.apache.arrow.vector.holders.DecimalHolder;
33 package org.apache.arrow.vector.complex.impl;
150 switch (mode) {
164 switch (mode) { in decimal()
176 switch (mode) { in decimal256()
189 switch (mode) { in struct()
201 switch (mode) { in list()
[all …]
/dports/games/jigzo/jigzo-0.6.1/src/
H A Dmain.cxx1002 mode = next_mode; in DrawFade()
1048 mode = intro; in Display2()
1055 mode = next_mode; in Display2()
1163 mode = browse; in Display2()
1168 mode = next_mode; in Display2()
1175 mode = play; in Display2()
1182 mode = next_mode; in Display2()
1185 if (mode == play) in Display2()
1243 if (mode == browse) in MouseMove()
1398 if (mode == play) { in MouseClick()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/java/vector/src/main/codegen/templates/
H A DUnionMapWriter.java18 import org.apache.arrow.memory.ArrowBuf;
19 import org.apache.arrow.vector.complex.writer.DecimalWriter;
20 import org.apache.arrow.vector.holders.DecimalHolder;
31 package org.apache.arrow.vector.complex.impl;
123 mode = MapWriteMode.OFF; in endEntry()
130 mode = MapWriteMode.KEY; in key()
137 mode = MapWriteMode.VALUE; in value()
148 switch (mode) {
162 switch (mode) { in decimal()
174 switch (mode) { in struct()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/r/src/
H A Dio.cpp26 RCPP_EXPOSED_ENUM_NODECL(arrow::io::FileMode::type) in RCPP_EXPOSED_ENUM_NODECL()
31 std::shared_ptr<arrow::Buffer> io___Readable__Read( in RCPP_EXPOSED_ENUM_NODECL()
54 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__GetSize()
60 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__supports_zero_copy()
72 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__Tell()
77 std::shared_ptr<arrow::Buffer> io___RandomAccessFile__Read0( in io___RandomAccessFile__Read0()
78 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__Read0()
103 const std::string& path, arrow::io::FileMode::type mode) { in io___MemoryMappedFile__Open() argument
104 return ValueOrStop(arrow::io::MemoryMappedFile::Open(path, mode)); in io___MemoryMappedFile__Open()
118 return ValueOrStop(arrow::io::ReadableFile::Open(path)); in io___ReadableFile__Open()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/r/src/
H A Dio.cpp27 std::shared_ptr<arrow::Buffer> io___Readable__Read( in io___Readable__Read()
50 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__GetSize()
56 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__supports_zero_copy()
68 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__Tell()
73 std::shared_ptr<arrow::Buffer> io___RandomAccessFile__Read0( in io___RandomAccessFile__Read0()
74 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__Read0()
83 std::shared_ptr<arrow::Buffer> io___RandomAccessFile__ReadAt( in io___RandomAccessFile__ReadAt()
99 const std::string& path, arrow::io::FileMode::type mode) { in io___MemoryMappedFile__Open() argument
100 return ValueOrStop(arrow::io::MemoryMappedFile::Open(path, mode)); in io___MemoryMappedFile__Open()
121 const std::shared_ptr<arrow::Buffer>& buffer) { in io___BufferReader__initialize()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/r/src/
H A Dio.cpp27 std::shared_ptr<arrow::Buffer> io___Readable__Read( in io___Readable__Read()
50 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__GetSize()
56 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__supports_zero_copy()
68 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__Tell()
73 std::shared_ptr<arrow::Buffer> io___RandomAccessFile__Read0( in io___RandomAccessFile__Read0()
74 const std::shared_ptr<arrow::io::RandomAccessFile>& x) { in io___RandomAccessFile__Read0()
83 std::shared_ptr<arrow::Buffer> io___RandomAccessFile__ReadAt( in io___RandomAccessFile__ReadAt()
99 const std::string& path, arrow::io::FileMode::type mode) { in io___MemoryMappedFile__Open() argument
100 return ValueOrStop(arrow::io::MemoryMappedFile::Open(path, mode)); in io___MemoryMappedFile__Open()
121 const std::shared_ptr<arrow::Buffer>& buffer) { in io___BufferReader__initialize()
[all …]
/dports/lang/racket/racket-8.3/collects/racket/contract/private/
H A Darrow-collapsible.rkt14 (provide arrow-enter-collapsible-mode/continue
15 arrow-enter-collapsible-mode/collapse
154 (arrow-enter-collapsible-mode/continue
163 (arrow-enter-collapsible-mode/collapse
171 (arrow-enter-collapsible-mode/direct c-c val neg-party chap-not-imp?)]))
329 (define arrow-enter-collapsible-mode/continue
330 (make-enter-collapsible-mode/continue
335 (define arrow-enter-collapsible-mode/collapse
336 (make-enter-collapsible-mode/collapse
342 (define arrow-enter-collapsible-mode/direct
[all …]
/dports/lang/racket-minimal/racket-8.3/collects/racket/contract/private/
H A Darrow-collapsible.rkt14 (provide arrow-enter-collapsible-mode/continue
15 arrow-enter-collapsible-mode/collapse
154 (arrow-enter-collapsible-mode/continue
163 (arrow-enter-collapsible-mode/collapse
171 (arrow-enter-collapsible-mode/direct c-c val neg-party chap-not-imp?)]))
329 (define arrow-enter-collapsible-mode/continue
330 (make-enter-collapsible-mode/continue
335 (define arrow-enter-collapsible-mode/collapse
336 (make-enter-collapsible-mode/collapse
342 (define arrow-enter-collapsible-mode/direct
[all …]
/dports/editors/jupp/jupp/
H A DTODO24 Ctrl-arrow: -
25 Alt-arrow: - (can set Alt=ESC mode, but doesn't work with arrow keys)
26 Shift-arrow: -
40 Ctrl-arrow: OC OD OA OB
56 Shift-arrow:    
119 Ctrl-arrow: Oc Od Oa Ob
275 ^K N column mode on
292 notepad/cua mode?
318 back to start mode?
534 Fixed record length mode
[all …]
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/drmonty/smartmenus/css/
H A Djquery.smartmenus.bootstrap-4.css9 /* Carets in collapsible mode (make them look like +/- buttons) */
10 .navbar-nav.sm-collapsible .sub-arrow {
24 .navbar-nav.sm-collapsible .sub-arrow::before {
27 .navbar-nav.sm-collapsible .show > a > .sub-arrow::before {
44 /* Nav carets in expanded mode */
45 .navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
63 /* Dropdown carets in expanded mode */
93 .navbar-nav .scroll-up-arrow,
94 .navbar-nav .scroll-down-arrow {
107 .navbar-nav .scroll-down-arrow {
[all …]

12345678910>>...764