Home
last modified time | relevance | path

Searched refs:Int16Type (Results 1 – 25 of 461) sorted by relevance

12345678910>>...19

/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/util/
H A Dvalue_parsing_test.cc164 AssertConversion<Int16Type>("0", 0); in TEST()
171 AssertConversionFails<Int16Type>("32768"); in TEST()
174 AssertConversionFails<Int16Type>(""); in TEST()
175 AssertConversionFails<Int16Type>("-"); in TEST()
176 AssertConversionFails<Int16Type>("0.0"); in TEST()
177 AssertConversionFails<Int16Type>("e"); in TEST()
180 AssertConversion<Int16Type>("0x0", 0); in TEST()
181 AssertConversion<Int16Type>("0X1aA", 426); in TEST()
182 AssertConversion<Int16Type>("0xb", 11); in TEST()
185 AssertConversionFails<Int16Type>("0x"); in TEST()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/go/arrow/
H A Ddatatype_numeric.gen.go29 type Int16Type struct{} struct
31 func (t *Int16Type) ID() Type { return INT16 } argument
32 func (t *Int16Type) Name() string { return "int16" } argument
33 func (t *Int16Type) String() string { return "int16" } argument
34 func (t *Int16Type) BitWidth() int { return 16 } argument
35 func (t *Int16Type) Fingerprint() string { return typeFingerprint(t) } argument
134 Int16: &Int16Type{},
/dports/security/vault/vault-1.8.2/vendor/github.com/snowflakedb/gosnowflake/vendor/github.com/apache/arrow/go/arrow/
H A Ddatatype_numeric.gen.go28 type Int16Type struct{} struct
30 func (t *Int16Type) ID() Type { return INT16 } argument
31 func (t *Int16Type) Name() string { return "int16" } argument
32 func (t *Int16Type) String() string { return "int16" } argument
33 func (t *Int16Type) BitWidth() int { return 16 } argument
122 Int16: &Int16Type{},
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/go/arrow/
H A Ddatatype_numeric.gen.go28 type Int16Type struct{} struct
30 func (t *Int16Type) ID() Type { return INT16 } argument
31 func (t *Int16Type) Name() string { return "int16" } argument
32 func (t *Int16Type) String() string { return "int16" } argument
33 func (t *Int16Type) BitWidth() int { return 16 } argument
122 Int16: &Int16Type{},
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/go/arrow/
H A Ddatatype_numeric.gen.go28 type Int16Type struct{} struct
30 func (t *Int16Type) ID() Type { return INT16 } argument
31 func (t *Int16Type) Name() string { return "int16" } argument
32 func (t *Int16Type) String() string { return "int16" } argument
33 func (t *Int16Type) BitWidth() int { return 16 } argument
122 Int16: &Int16Type{},
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dvalue_parsing_test.cc133 AssertConversion<Int16Type>("0", 0); in TEST()
134 AssertConversion<Int16Type>("32767", 32767); in TEST()
135 AssertConversion<Int16Type>("032767", 32767); in TEST()
136 AssertConversion<Int16Type>("-32768", -32768); in TEST()
137 AssertConversion<Int16Type>("-0032768", -32768); in TEST()
140 AssertConversionFails<Int16Type>("32768"); in TEST()
141 AssertConversionFails<Int16Type>("-32769"); in TEST()
143 AssertConversionFails<Int16Type>(""); in TEST()
144 AssertConversionFails<Int16Type>("-"); in TEST()
145 AssertConversionFails<Int16Type>("0.0"); in TEST()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dvalue_parsing_test.cc144 AssertConversion<Int16Type>("0", 0); in TEST()
145 AssertConversion<Int16Type>("32767", 32767); in TEST()
146 AssertConversion<Int16Type>("032767", 32767); in TEST()
147 AssertConversion<Int16Type>("-32768", -32768); in TEST()
148 AssertConversion<Int16Type>("-0032768", -32768); in TEST()
151 AssertConversionFails<Int16Type>("32768"); in TEST()
152 AssertConversionFails<Int16Type>("-32769"); in TEST()
154 AssertConversionFails<Int16Type>(""); in TEST()
155 AssertConversionFails<Int16Type>("-"); in TEST()
156 AssertConversionFails<Int16Type>("0.0"); in TEST()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/csharp/src/Apache.Arrow/Types/
H A DInt16Type.cs18 public sealed class Int16Type : NumberType class
20 public static readonly Int16Type Default = new Int16Type();
/dports/databases/arrow/apache-arrow-6.0.1/csharp/src/Apache.Arrow/Types/
H A DInt16Type.cs18 public sealed class Int16Type : IntegerType class
20 public static readonly Int16Type Default = new Int16Type();
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/csharp/src/Apache.Arrow/Types/
H A DInt16Type.cs18 public sealed class Int16Type : NumberType class
20 public static readonly Int16Type Default = new Int16Type();
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/rust/arrow/src/compute/kernels/
H A Dcast.rs134 Int16 => cast_numeric_to_bool::<Int16Type>(array), in cast()
154 Int16 => cast_bool_to_numeric::<Int16Type>(array), in cast()
183 Int16 => cast_string_to_numeric::<Int16Type>(array), in cast()
199 Int16 => cast_numeric_to_string::<Int16Type>(array), in cast()
1205 get_cast_values::<Int16Type>(&f64_array, &DataType::Int16) in test_cast_from_f64()
1349 get_cast_values::<Int16Type>(&f32_array, &DataType::Int16) in test_cast_from_f32()
1451 get_cast_values::<Int16Type>(&u64_array, &DataType::Int16) in test_cast_from_uint64()
1523 get_cast_values::<Int16Type>(&u32_array, &DataType::Int16) in test_cast_from_uint32()
1589 get_cast_values::<Int16Type>(&u16_array, &DataType::Int16) in test_cast_from_uint16()
1655 get_cast_values::<Int16Type>(&u8_array, &DataType::Int16) in test_cast_from_uint8()
[all …]
H A Dsort.rs53 DataType::Int16 => sort_primitive::<Int16Type>(values, v, n, &options), in sort_to_indices()
271 test_sort_to_indices_primitive_arrays::<Int16Type>( in test_sort_to_indices_primitives()
297 test_sort_to_indices_primitive_arrays::<Int16Type>( in test_sort_to_indices_primitives()
334 test_sort_to_indices_primitive_arrays::<Int16Type>( in test_sort_to_indices_primitives()
422 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
438 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
456 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
490 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/rust/arrow/src/array/
H A Dmod.rs116 pub type Int16Array = PrimitiveArray<Int16Type>;
127 pub type Int16DictionaryArray = DictionaryArray<Int16Type>;
162 pub type Int16BufferBuilder = BufferBuilder<Int16Type>;
203 pub type Int16Builder = PrimitiveBuilder<Int16Type>;
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/arrow/src/compute/kernels/
H A Dcast.rs326 Int16 => cast_numeric_to_bool::<Int16Type>(array), in cast()
346 Int16 => cast_bool_to_numeric::<Int16Type>(array), in cast()
372 Int16 => cast_string_to_numeric::<Int16Type>(array), in cast()
440 Int16 => cast_numeric_to_string::<Int16Type, i32>(array), in cast()
467 Int16 => cast_numeric_to_string::<Int16Type, i64>(array), in cast()
1956 get_cast_values::<Int16Type>(&f64_array, &DataType::Int16) in test_cast_from_f64()
2100 get_cast_values::<Int16Type>(&f32_array, &DataType::Int16) in test_cast_from_f32()
2406 get_cast_values::<Int16Type>(&u8_array, &DataType::Int16) in test_cast_from_uint8()
2816 get_cast_values::<Int16Type>(&i8_array, &DataType::Int16) in test_cast_from_int8()
3221 make_dictionary_primitive::<Int16Type>(), in get_arrays_of_all_types()
[all …]
H A Dsort.rs156 DataType::Int16 => sort_list::<i32, Int16Type>(values, v, n, &options), in sort_to_indices()
204 sort_string_dictionary::<Int16Type>(values, v, n, &options) in sort_to_indices()
868 test_sort_to_indices_primitive_arrays::<Int16Type>( in test_sort_to_indices_primitives()
918 test_sort_to_indices_primitive_arrays::<Int16Type>( in test_sort_to_indices_primitives()
980 test_sort_to_indices_primitive_arrays::<Int16Type>( in test_sort_to_indices_primitives()
1089 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
1105 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
1123 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
1181 test_sort_primitive_arrays::<Int16Type>( in test_sort_primitives()
1409 test_sort_string_dict_arrays::<Int16Type>( in test_sort_string_dicts()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/rust/parquet/src/arrow/
H A Dconverter.rs44 Float32Type, Float64Type, Int16Type, Int32Type, Int64Type, Int8Type,
219 pub type Int16Converter = CastConverter<ParquetInt32Type, Int32Type, Int16Type>;
313 use arrow::datatypes::{Int16Type, Int32Type};
344 .downcast_ref::<PrimitiveArray<Int16Type>>() in test_converter_arrow_source_target_different()
347 assert!(array.equals(&PrimitiveArray::<Int16Type>::from(raw_data))); in test_converter_arrow_source_target_different()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/arrow/src/array/
H A Dmod.rs137 pub type Int16Array = PrimitiveArray<Int16Type>;
148 pub type Int16DictionaryArray = DictionaryArray<Int16Type>;
231 pub type Int16Builder = PrimitiveBuilder<Int16Type>;
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/compute/kernels/
H A Dscalar_cast_test.cc209 CheckCase<SourceType, std::string, Int16Type, int16_t>(src_type, v_int, is_valid, in TestCastStringToNumber()
363 CheckCase<UInt8Type, uint8_t, Int16Type, int16_t>(uint8(), v3, is_valid, int16(), e3, in TEST_F()
377 ArrayFromVector<Int16Type, int16_t>(int16(), is_valid, e11, &expected); in TEST_F()
394 CheckCase<Int16Type, int16_t, UInt8Type, uint8_t>(int16(), v1, is_valid, uint8(), e1, in TEST_F()
399 CheckFails<Int16Type>(int16(), v2, is_valid, uint8(), options); in TEST_F()
403 CheckFails<Int16Type>(int16(), v3, is_valid, uint8(), options); in TEST_F()
408 CheckCase<Int32Type, int32_t, Int16Type, int16_t>(int32(), v4, is_valid, int16(), e4, in TEST_F()
484 CheckCase<UInt32Type, uint32_t, Int16Type, int16_t>( in TEST_F()
486 CheckCase<UInt32Type, uint32_t, Int16Type, int16_t>( in TEST_F()
1188 auto a1 = _MakeArray<Int16Type, int16_t>(type, values1, {}); in TEST_F()
[all …]
H A Dcodegen_internal.h620 return ScalarPrimitiveExecUnary<Op, Int16Type, Int16Type>;
657 return ScalarPrimitiveExecBinary<Op, Int16Type, Int16Type, Int16Type>;
699 return Generator<Type0, Int16Type, Args...>::Exec;
747 return Generator<Type0, Int16Type, Args...>::Exec;
777 return Generator<Type0, Int16Type, Args...>::Exec;
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/csharp/test/Apache.Arrow.Tests/
H A DTestData.cs39 builder.Field(CreateField(Int16Type.Default, i)); in CreateSampleRecordBatch()
96 IArrowTypeVisitor<Int16Type>,
119 … public void Visit(Int16Type type) => GenerateArray(new Int16Array.Builder(), x => (short)x);
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/arrow/src/datatypes/
H A Dtypes.rs42 make_type!(Int16Type, i16, DataType::Int16);
126 impl ArrowDictionaryKeyType for Int16Type {} implementation
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/compute/kernels/
H A Dscalar_set_lookup_benchmark.cc98 SetLookupBenchmarkNumeric<Int16Type>(state, "index_in_meta_binary", state.range(0)); in IndexInInt16SmallSet()
114 SetLookupBenchmarkNumeric<Int16Type>(state, "is_in_meta_binary", state.range(0)); in IsInInt16SmallSet()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/compute/kernels/
H A Dscalar_set_lookup_benchmark.cc98 SetLookupBenchmarkNumeric<Int16Type>(state, "index_in_meta_binary", state.range(0)); in IndexInInt16SmallSet()
114 SetLookupBenchmarkNumeric<Int16Type>(state, "is_in_meta_binary", state.range(0)); in IsInInt16SmallSet()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/csharp/test/Apache.Arrow.Tests/
H A DTestData.cs39 builder.Field(CreateField(Int16Type.Default, i)); in CreateSampleRecordBatch()
102 IArrowTypeVisitor<Int16Type>,
126 … public void Visit(Int16Type type) => GenerateArray(new Int16Array.Builder(), x => (short)x);
/dports/security/certmgr/certmgr-3.0.3/vendor/github.com/google/certificate-transparency-go/certificate-transparency-go-1.0.21/vendor/github.com/coreos/etcd/cmd/vendor/go.uber.org/zap/zapcore/
H A Dfield.go63 Int16Type const
135 case Int16Type:

12345678910>>...19