Home
last modified time | relevance | path

Searched refs:rhs_null_bytes (Results 1 – 8 of 8) sorted by relevance

/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/arrow/src/array/equal/
H A Dprimitive.rs54 let rhs_null_bytes = rhs_nulls.as_ref().unwrap().as_slice(); in primitive_equal() localVariable
60 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset()); in primitive_equal()
H A Dfixed_list.rs58 let rhs_null_bytes = rhs_nulls.as_ref().unwrap().as_slice(); in fixed_list_equal() localVariable
65 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset()); in fixed_list_equal()
H A Ddecimal.rs56 let rhs_null_bytes = rhs_nulls.as_ref().unwrap().as_slice(); in decimal_equal() localVariable
63 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset()); in decimal_equal()
H A Dfixed_binary.rs56 let rhs_null_bytes = rhs_nulls.as_ref().unwrap().as_slice(); in fixed_binary_equal() localVariable
63 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset()); in fixed_binary_equal()
H A Dboolean.rs77 let rhs_null_bytes = rhs_nulls.as_ref().unwrap().as_slice(); in boolean_equal() localVariable
86 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos); in boolean_equal()
H A Ddictionary.rs61 let rhs_null_bytes = rhs_nulls.as_ref().unwrap().as_slice(); in dictionary_equal() localVariable
67 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset()); in dictionary_equal()
H A Dstructure.rs76 let rhs_null_bytes = rhs_nulls.as_ref().unwrap().as_slice(); in struct_equal() localVariable
83 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset()); in struct_equal()
H A Dlist.rs148 let rhs_null_bytes = rhs_nulls.unwrap().as_slice(); in list_equal() localVariable
155 let rhs_is_null = !get_bit(rhs_null_bytes, rhs_pos + rhs.offset()); in list_equal()