Home
last modified time | relevance | path

Searched refs:xtype (Results 1 – 25 of 3222) sorted by relevance

12345678910>>...129

/dports/math/py-gmpy2/gmpy2-2.1.1/src/
H A Dgmpy2_truediv.c55 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) { in GMPy_Integer_TrueDivWithType()
106 if (IS_TYPE_MPQ(xtype) && IS_TYPE_MPQ(ytype)) { in GMPy_Rational_TrueDivWithType()
170 if (IS_TYPE_MPFR(xtype) && IS_TYPE_MPFR(ytype)) { in GMPy_Real_TrueDivWithType()
178 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_Real_TrueDivWithType()
218 if (IS_TYPE_MPC(xtype) && IS_TYPE_MPC(ytype)) { in GMPy_Complex_TrueDivWithType()
265 int xtype = GMPy_ObjectType(x); in GMPy_Number_TrueDiv_Slot() local
274 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_TrueDiv_Slot()
287 int xtype = GMPy_ObjectType(x); in GMPy_Number_Div2_Slot() local
296 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_Div2_Slot()
314 int xtype = GMPy_ObjectType(x); in GMPy_Number_TrueDiv() local
[all …]
H A Dgmpy2_math.h34 static PyObject * GMPy_RealWithType_Sin(PyObject *x, int xtype, CTXT_Object *context);
35 static PyObject * GMPy_ComplexWithType_Sin(PyObject *x, int xtype, CTXT_Object *context);
39 static PyObject * GMPy_RealWithType_Cos(PyObject *x, int xtype, CTXT_Object *context);
44 static PyObject * GMPy_RealWithType_Tan(PyObject *x, int xtype, CTXT_Object *context);
49 static PyObject * GMPy_RealWithType_Atan(PyObject *x, int xtype, CTXT_Object *context);
54 static PyObject * GMPy_RealWithType_Sinh(PyObject *x, int xtype, CTXT_Object *context);
59 static PyObject * GMPy_RealWithType_Cosh(PyObject *x, int xtype, CTXT_Object *context);
64 static PyObject * GMPy_RealWithType_Tanh(PyObject *x, int xtype, CTXT_Object *context);
79 static PyObject * GMPy_RealWithType_Sec(PyObject *x, int xtype, CTXT_Object *context);
83 static PyObject * GMPy_RealWithType_Csc(PyObject *x, int xtype, CTXT_Object *context);
[all …]
H A Dgmpy2_macros.h91 if (IS_TYPE_MPFR(xtype)) { \
98 if (IS_TYPE_REAL(xtype)) { \
117 if (IS_TYPE_MPC(xtype)) { \
142 if (IS_TYPE_REAL(xtype)) \
144 if (IS_TYPE_COMPLEX(xtype)) \
170 if (IS_TYPE_REAL(xtype)) \
203 if (IS_TYPE_REAL(xtype)) \
341 if (IS_TYPE_REAL(xtype)) \
390 if (IS_TYPE_REAL(xtype)) \
442 if (IS_TYPE_REAL(xtype)) \
[all …]
H A Dgmpy2_predicate.c50 if (IS_TYPE_MPFR(xtype)) { in GMPy_RealWithType_Is_NAN()
72 if (IS_TYPE_MPC(xtype)) { in GMPy_ComplexWithType_Is_NAN()
121 if (IS_TYPE_MPFR(xtype)) { in GMPy_RealWithType_Is_Infinite()
143 if (IS_TYPE_MPC(xtype)) { in GMPy_ComplexWithType_Is_Infinite()
182 if (IS_TYPE_MPFR(xtype)) { in GMPy_RealWithType_Is_Finite()
204 if (IS_TYPE_MPC(xtype)) { in GMPy_ComplexWithType_Is_Finite()
243 if (IS_TYPE_MPFR(xtype)) { in GMPy_RealWithType_Is_Zero()
265 if (IS_TYPE_MPC(xtype)) { in GMPy_ComplexWithType_Is_Zero()
301 if (IS_TYPE_MPFR(xtype)) { in GMPy_RealWithType_Is_Signed()
346 if (IS_TYPE_MPFR(xtype)) { in GMPy_RealWithType_Is_Regular()
[all …]
H A Dgmpy2_mul.c46 if (IS_TYPE_MPZANY(xtype)) { in GMPy_Integer_MulWithType()
72 if (IS_TYPE_PyInteger(xtype)) { in GMPy_Integer_MulWithType()
127 if (IS_TYPE_MPQ(xtype) && IS_TYPE_MPQ(ytype)) { in GMPy_Rational_MulWithType()
172 if (IS_TYPE_MPFR(xtype) && IS_TYPE_MPFR(ytype)) { in GMPy_Real_MulWithType()
179 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_Real_MulWithType()
221 if (IS_TYPE_MPC(xtype) && IS_TYPE_MPC(ytype)) { in GMPy_Complex_MulWithType()
256 int xtype = GMPy_ObjectType(x); in GMPy_Number_Mul() local
259 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) in GMPy_Number_Mul()
265 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_Mul()
283 int xtype = GMPy_ObjectType(x); in GMPy_Number_Mul_Slot() local
[all …]
H A Dgmpy2_sub.c46 if (IS_TYPE_MPZANY(xtype)) { in GMPy_Integer_SubWithType()
76 if (IS_TYPE_PyInteger(xtype)) { in GMPy_Integer_SubWithType()
141 if (IS_TYPE_MPQ(xtype) && IS_TYPE_MPQ(ytype)) { in GMPy_Rational_SubWithType()
196 if (IS_TYPE_MPFR(xtype) && IS_TYPE_MPFR(ytype)) { in GMPy_Real_SubWithType()
203 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_Real_SubWithType()
251 if (IS_TYPE_MPC(xtype) && IS_TYPE_MPC(ytype)) { in GMPy_Complex_SubWithType()
289 int xtype = GMPy_ObjectType(x); in GMPy_Number_Sub() local
292 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) in GMPy_Number_Sub()
298 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_Sub()
316 int xtype = GMPy_ObjectType(x); in GMPy_Number_Sub_Slot() local
[all …]
H A Dgmpy2_add.c47 if (IS_TYPE_MPZANY(xtype)) { in GMPy_Integer_AddWithType()
78 if (IS_TYPE_PyInteger(xtype)) { in GMPy_Integer_AddWithType()
138 if (IS_TYPE_MPQ(xtype) && IS_TYPE_MPQ(ytype)) { in GMPy_Rational_AddWithType()
198 if (IS_TYPE_MPFR(xtype) && IS_TYPE_MPFR(ytype)) { in GMPy_Real_AddWithType()
205 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_Real_AddWithType()
249 if (IS_TYPE_MPC(xtype) && IS_TYPE_MPC(ytype)) { in GMPy_Complex_AddWithType()
287 int xtype = GMPy_ObjectType(x); in GMPy_Number_Add_Slot() local
290 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) in GMPy_Number_Add_Slot()
296 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_Add_Slot()
314 int xtype = GMPy_ObjectType(x); in GMPy_Number_Add() local
[all …]
H A Dgmpy2_floordiv.c45 if (IS_TYPE_MPZANY(xtype)) { in GMPy_Integer_FloorDivWithType()
93 if (IS_TYPE_PyInteger(xtype)) { in GMPy_Integer_FloorDivWithType()
154 if (IS_TYPE_MPQ(xtype) && IS_TYPE_MPQ(ytype)) { in GMPy_Rational_FloorDivWithType()
226 if (IS_TYPE_MPFR(xtype) && IS_TYPE_MPFR(ytype)) { in GMPy_Real_FloorDivWithType()
238 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_Real_FloorDivWithType()
278 int xtype = GMPy_ObjectType(x); in GMPy_Number_FloorDiv_Slot() local
281 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) in GMPy_Number_FloorDiv_Slot()
287 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_FloorDiv_Slot()
290 if (IS_TYPE_COMPLEX(xtype) && IS_TYPE_COMPLEX(ytype)) in GMPy_Number_FloorDiv_Slot()
303 int xtype = GMPy_ObjectType(x); in GMPy_Number_FloorDiv() local
[all …]
H A Dgmpy2_abs.c57 if (IS_TYPE_MPZ(xtype)) { in GMPy_Integer_AbsWithType()
95 if (IS_TYPE_MPQ(xtype)) { in GMPy_Rational_AbsWithType()
194 int xtype = GMPy_ObjectType(x); in GMPy_Number_Abs() local
196 if (IS_TYPE_INTEGER(xtype)) in GMPy_Number_Abs()
197 return GMPy_Integer_AbsWithType(x, xtype, context); in GMPy_Number_Abs()
199 if (IS_TYPE_RATIONAL(xtype)) in GMPy_Number_Abs()
200 return GMPy_Rational_AbsWithType(x, xtype, context); in GMPy_Number_Abs()
202 if (IS_TYPE_REAL(xtype)) in GMPy_Number_Abs()
203 return GMPy_Real_AbsWithType(x, xtype, context); in GMPy_Number_Abs()
205 if (IS_TYPE_COMPLEX(xtype)) in GMPy_Number_Abs()
[all …]
H A Dgmpy2_cmp.c51 int xtype, ytype; in GMPy_MPANY_cmp() local
64 xtype = GMPy_ObjectType(x); in GMPy_MPANY_cmp()
67 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) { in GMPy_MPANY_cmp()
144 if (IS_TYPE_REAL(xtype) && IS_TYPE_INTEGER(ytype)) { in GMPy_MPANY_cmp()
165 if (IS_TYPE_REAL(xtype) && IS_TYPE_RATIONAL(ytype)) { in GMPy_MPANY_cmp()
186 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_MPANY_cmp()
207 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_MPANY_cmp()
262 int xtype, ytype; in GMPy_MPANY_cmp_abs() local
275 xtype = GMPy_ObjectType(x); in GMPy_MPANY_cmp_abs()
364 if (IS_TYPE_REAL(xtype) && IS_TYPE_INTEGER(ytype)) { in GMPy_MPANY_cmp_abs()
[all …]
H A Dgmpy2_mod.c44 if (IS_TYPE_MPZANY(xtype)) { in GMPy_Integer_ModWithType()
204 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) { in GMPy_Real_ModWithType()
285 int xtype = GMPy_ObjectType(x); in GMPy_Number_Mod_Slot() local
288 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) in GMPy_Number_Mod_Slot()
291 if (IS_TYPE_RATIONAL(xtype) && IS_TYPE_RATIONAL(ytype)) in GMPy_Number_Mod_Slot()
294 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_Mod_Slot()
297 if (IS_TYPE_COMPLEX(xtype) && IS_TYPE_COMPLEX(ytype)) in GMPy_Number_Mod_Slot()
312 int xtype = GMPy_ObjectType(x); in GMPy_Number_Mod() local
315 if (IS_TYPE_INTEGER(xtype) && IS_TYPE_INTEGER(ytype)) in GMPy_Number_Mod()
321 if (IS_TYPE_REAL(xtype) && IS_TYPE_REAL(ytype)) in GMPy_Number_Mod()
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/netcdf/vtknetcdf/libdispatch/
H A Ddcompound.c99 nc_insert_compound(int ncid, nc_type xtype, const char *name, in nc_insert_compound() argument
105 return ncp->dispatch->insert_compound(ncid, xtype, name, in nc_insert_compound()
175 nc_inq_compound(int ncid, nc_type xtype, char *name, in nc_inq_compound() argument
203 nc_inq_compound_name(int ncid, nc_type xtype, char *name) in nc_inq_compound_name() argument
205 return nc_inq_compound(ncid,xtype,name,NULL,NULL); in nc_inq_compound_name()
226 nc_inq_compound_size(int ncid, nc_type xtype, size_t *sizep) in nc_inq_compound_size() argument
228 return nc_inq_compound(ncid,xtype,NULL,sizep,NULL); in nc_inq_compound_size()
251 return nc_inq_compound(ncid,xtype,NULL,NULL,nfieldsp); in nc_inq_compound_nfields()
287 nc_inq_compound_field(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_field() argument
321 nc_inq_compound_fieldname(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_fieldname() argument
[all …]
H A Ddattput.c229 value, xtype); in nc_put_att()
257 nc_type xtype, size_t len, const signed char *value) in nc_put_att_schar() argument
291 nc_type xtype, size_t len, const unsigned char *value) in nc_put_att_uchar() argument
325 nc_type xtype, size_t len, const short *value) in nc_put_att_short() argument
359 nc_type xtype, size_t len, const int *value) in nc_put_att_int() argument
393 nc_type xtype, size_t len, const long *value) in nc_put_att_long() argument
427 nc_type xtype, size_t len, const float *value) in nc_put_att_float() argument
461 nc_type xtype, size_t len, const double *value) in nc_put_att_double() argument
563 nc_type xtype, size_t len, const unsigned int *value) in nc_put_att_uint() argument
597 nc_type xtype, size_t len, in nc_put_att_longlong() argument
[all …]
/dports/math/libmesh/libmesh-1.6.2/contrib/netcdf/netcdf-c-4.6.2/libdispatch/
H A Ddcompound.c99 nc_insert_compound(int ncid, nc_type xtype, const char *name, in nc_insert_compound() argument
105 return ncp->dispatch->insert_compound(ncid, xtype, name, in nc_insert_compound()
175 nc_inq_compound(int ncid, nc_type xtype, char *name, in nc_inq_compound() argument
203 nc_inq_compound_name(int ncid, nc_type xtype, char *name) in nc_inq_compound_name() argument
205 return nc_inq_compound(ncid,xtype,name,NULL,NULL); in nc_inq_compound_name()
226 nc_inq_compound_size(int ncid, nc_type xtype, size_t *sizep) in nc_inq_compound_size() argument
228 return nc_inq_compound(ncid,xtype,NULL,sizep,NULL); in nc_inq_compound_size()
251 return nc_inq_compound(ncid,xtype,NULL,NULL,nfieldsp); in nc_inq_compound_nfields()
287 nc_inq_compound_field(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_field() argument
321 nc_inq_compound_fieldname(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_fieldname() argument
[all …]
H A Ddattput.c238 value, xtype); in nc_put_att()
243 nc_type xtype, size_t len, const signed char *value) in nc_put_att_schar() argument
254 nc_type xtype, size_t len, const unsigned char *value) in nc_put_att_uchar() argument
265 nc_type xtype, size_t len, const short *value) in nc_put_att_short() argument
276 nc_type xtype, size_t len, const int *value) in nc_put_att_int() argument
287 nc_type xtype, size_t len, const long *value) in nc_put_att_long() argument
298 nc_type xtype, size_t len, const float *value) in nc_put_att_float() argument
309 nc_type xtype, size_t len, const double *value) in nc_put_att_double() argument
342 nc_type xtype, size_t len, const unsigned int *value) in nc_put_att_uint() argument
353 nc_type xtype, size_t len, in nc_put_att_longlong() argument
[all …]
/dports/math/vtk8/VTK-8.2.0/ThirdParty/netcdf/vtknetcdf/libdispatch/
H A Ddcompound.c99 nc_insert_compound(int ncid, nc_type xtype, const char *name, in nc_insert_compound() argument
105 return ncp->dispatch->insert_compound(ncid, xtype, name, in nc_insert_compound()
175 nc_inq_compound(int ncid, nc_type xtype, char *name, in nc_inq_compound() argument
203 nc_inq_compound_name(int ncid, nc_type xtype, char *name) in nc_inq_compound_name() argument
205 return nc_inq_compound(ncid,xtype,name,NULL,NULL); in nc_inq_compound_name()
226 nc_inq_compound_size(int ncid, nc_type xtype, size_t *sizep) in nc_inq_compound_size() argument
228 return nc_inq_compound(ncid,xtype,NULL,sizep,NULL); in nc_inq_compound_size()
251 return nc_inq_compound(ncid,xtype,NULL,NULL,nfieldsp); in nc_inq_compound_nfields()
287 nc_inq_compound_field(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_field() argument
321 nc_inq_compound_fieldname(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_fieldname() argument
[all …]
H A Ddattput.c236 value, xtype); in nc_put_att()
241 nc_type xtype, size_t len, const signed char *value) in nc_put_att_schar() argument
252 nc_type xtype, size_t len, const unsigned char *value) in nc_put_att_uchar() argument
263 nc_type xtype, size_t len, const short *value) in nc_put_att_short() argument
274 nc_type xtype, size_t len, const int *value) in nc_put_att_int() argument
285 nc_type xtype, size_t len, const long *value) in nc_put_att_long() argument
296 nc_type xtype, size_t len, const float *value) in nc_put_att_float() argument
307 nc_type xtype, size_t len, const double *value) in nc_put_att_double() argument
340 nc_type xtype, size_t len, const unsigned int *value) in nc_put_att_uint() argument
351 nc_type xtype, size_t len, in nc_put_att_longlong() argument
[all …]
/dports/science/netcdf/netcdf-c-4.7.4/libdispatch/
H A Ddcompound.c99 nc_insert_compound(int ncid, nc_type xtype, const char *name, in nc_insert_compound() argument
105 return ncp->dispatch->insert_compound(ncid, xtype, name, in nc_insert_compound()
175 nc_inq_compound(int ncid, nc_type xtype, char *name, in nc_inq_compound() argument
203 nc_inq_compound_name(int ncid, nc_type xtype, char *name) in nc_inq_compound_name() argument
205 return nc_inq_compound(ncid,xtype,name,NULL,NULL); in nc_inq_compound_name()
226 nc_inq_compound_size(int ncid, nc_type xtype, size_t *sizep) in nc_inq_compound_size() argument
228 return nc_inq_compound(ncid,xtype,NULL,sizep,NULL); in nc_inq_compound_size()
251 return nc_inq_compound(ncid,xtype,NULL,NULL,nfieldsp); in nc_inq_compound_nfields()
287 nc_inq_compound_field(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_field() argument
321 nc_inq_compound_fieldname(int ncid, nc_type xtype, int fieldid, in nc_inq_compound_fieldname() argument
[all …]
H A Ddattput.c229 value, xtype); in nc_put_att()
257 nc_type xtype, size_t len, const signed char *value) in nc_put_att_schar() argument
291 nc_type xtype, size_t len, const unsigned char *value) in nc_put_att_uchar() argument
325 nc_type xtype, size_t len, const short *value) in nc_put_att_short() argument
359 nc_type xtype, size_t len, const int *value) in nc_put_att_int() argument
393 nc_type xtype, size_t len, const long *value) in nc_put_att_long() argument
427 nc_type xtype, size_t len, const float *value) in nc_put_att_float() argument
461 nc_type xtype, size_t len, const double *value) in nc_put_att_double() argument
563 nc_type xtype, size_t len, const unsigned int *value) in nc_put_att_uint() argument
597 nc_type xtype, size_t len, in nc_put_att_longlong() argument
[all …]
/dports/science/pnetcdf/parallel-netcdf-1.8.1/src/libcxx/
H A Dncmpi_notyet.h4 ncmpi_insert_compound(int ncid, nc_type xtype, const char *name,
9 ncmpi_insert_array_compound(int ncid, nc_type xtype, const char *name,
13 ncmpi_insert_enum(int ncid, nc_type xtype, const char *name,
19 ncmpi_inq_enum(int ncid, nc_type xtype, char *name, nc_type *base_nc_typep,
25 ncmpi_inq_enum_member(int ncid, nc_type xtype, int idx, char *name,
35 ncmpi_inq_compound_name(int ncid, nc_type xtype, char *name);
39 ncmpi_inq_compound_size(int ncid, nc_type xtype, MPI_Offset *sizep);
53 ncmpi_inq_compound_fieldname(int ncid, nc_type xtype, int fieldid,
65 ncmpi_inq_compound_fieldoffset(int ncid, nc_type xtype, int fieldid,
70 ncmpi_inq_compound_fieldtype(int ncid, nc_type xtype, int fieldid,
[all …]
/dports/astro/py-astropy/astropy-5.0/cextern/wcslib/C/
H A Dspc.c428 } else if (xtype == 'W' || xtype == 'w') { in spcset()
455 } else if (xtype == 'A' || xtype == 'a') { in spcset()
907 if (xtype) *xtype = xtype_t; in spctype()
1008 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1011 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1031 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1034 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1050 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1053 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1149 } else if (*xtype == 'W' || *xtype == 'w') { in spcxpse()
[all …]
/dports/astro/wcslib/wcslib-7.7/C/
H A Dspc.c428 } else if (xtype == 'W' || xtype == 'w') { in spcset()
455 } else if (xtype == 'A' || xtype == 'a') { in spcset()
907 if (xtype) *xtype = xtype_t; in spctype()
1008 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1011 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1031 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1034 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1050 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1053 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1149 } else if (*xtype == 'W' || *xtype == 'w') { in spcxpse()
[all …]
/dports/astro/siril/siril/subprojects/wcslib/
H A Dspc.c405 } else if (xtype == 'W' || xtype == 'w') { in spcset()
432 } else if (xtype == 'A' || xtype == 'a') { in spcset()
884 if (xtype) *xtype = xtype_t; in spctype()
985 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
988 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1008 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1011 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1027 } else if (*xtype == 'W' || *xtype == 'w') { in spcspxe()
1030 } else if (*xtype == 'A' || *xtype == 'a') { in spcspxe()
1126 } else if (*xtype == 'W' || *xtype == 'w') { in spcxpse()
[all …]
/dports/textproc/miller/miller-5.10.2/go/reg-test/expected/
H A Dcase-dsl-absent-empty.sh.out46 sumtype=float,xtype=float,sum=1.105470109128046
49 sumtype=float,xtype=float,sum=2.264761728567491
51 sumtype=float,xtype=float,sum=3.403671949227191
247 x=1 xtype=int sum=11 stype=int
248 x= xtype=empty sum= stype=empty
249 y= xtype=absent sum=10 stype=int
250 x=7 xtype=int sum=17 stype=int
253 x=1 xtype=int sum=11 stype=int
254 x= xtype=empty sum= stype=empty
255 y= xtype=absent sum=999 stype=int
[all …]
/dports/ftp/ncftp3/ncftp-3.2.6/libncftp/
H A Du_decodeurl.c91 if (xtype != NULL) in FTPDecodeURL()
92 *xtype = kTypeBinary; in FTPDecodeURL()
190 if (xtype != NULL) in FTPDecodeURL()
194 if (xtype != NULL) in FTPDecodeURL()
195 *xtype = kTypeAscii; in FTPDecodeURL()
198 if (xtype != NULL) in FTPDecodeURL()
204 if (xtype != NULL) in FTPDecodeURL()
214 if (xtype != NULL) in FTPDecodeURL()
218 if (xtype != NULL) in FTPDecodeURL()
222 if (xtype != NULL) in FTPDecodeURL()
[all …]

12345678910>>...129