Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/man/man3dax/dax_scan_range.3dax
Real path: /usr/share/man/man3dax/dax_scan_range.3dax
Zurück
'\" te .\" Copyright (c) 2016, 2020, Oracle and/or its affiliates. .TH dax_scan_range 3DAX "13 Nov 2020" "Oracle Solaris 11.4" "DAX Library Functions" .SH NAME dax_scan_range \- compare vector elements to a range of values .SH SYNOPSIS .LP .nf cc [ flag... ] file... -ldax [ library...] #include <dax.h> dax_result_t dax_scan_range(dax_context_t *\fIctx\fR, uint64_t \fIflags\fR, dax_vec_t *\fIsrc\fR, dax_vec_t *\fIdst\fR, dax_compare_t \fIop\fR, dax_int_t *\fIlower\fR, dax_int_t *\fIupper\fR); .fi .SH DESCRIPTION .sp .LP The \fBdax_scan_range()\fR function is similar to the \fBdax_scan_value()\fR function. But instead of comparing each input element to a single value, this function compares the input elements with a range of values defined by a \fIlower\fR and a \fIupper\fR value. .sp .LP The \fIop\fR parameter can be set to any one of the following values: .sp .ne 2 .mk .na \fBDAX_GE_AND_LE\fR .ad .RS 17n .rt lower <= element && element <= upper .RE .sp .ne 2 .mk .na \fBDAX_GE_AND_LT\fR .ad .RS 17n .rt lower <= element && element < upper .RE .sp .ne 2 .mk .na \fBDAX_GT_AND_LE\fR .ad .RS 17n .rt lower < element && element <= upper .RE .sp .ne 2 .mk .na \fBDAX_GT_AND_LT\fR .ad .RS 17n .rt lower < element && element < upper .RE .sp .ne 2 .mk .na \fBDAX_NE_AND_NE\fR .ad .RS 17n .rt lower != element && element != upper .RE .sp .ne 2 .mk .na \fBDAX_EQ_OR_EQ\fR .ad .RS 17n .rt lower == element || element == upper .RE .sp .ne 2 .mk .na \fBDAX_LT_OR_GE\fR .ad .RS 17n .rt element < lower || element >= upper .RE .sp .ne 2 .mk .na \fBDAX_LE_OR_GE\fR .ad .RS 17n .rt element <= lower || element >= upper .RE .sp .ne 2 .mk .na \fBDAX_LT_OR_GT\fR .ad .RS 17n .rt element < lower || element > upper .RE .sp .ne 2 .mk .na \fBDAX_LE_OR_GT\fR .ad .RS 17n .rt element <= lower || element > upper .RE .SS "Supported Flags" .sp .LP This function supports all the flags supported by the \fBdax_scan_value()\fR function. .SH RETURN VALUES .sp .LP Same as \fBdax_scan_value()\fR. .SH ATTRIBUTES .sp .LP See \fBattributes\fR(7) for descriptions of the following attributes: .sp .TS tab( ) box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPE ATTRIBUTE VALUE _ Availability system/library _ Interface Stability Committed .TE .sp .SH SEE ALSO .sp .LP \fBdax_scan_value\fR(3DAX)