Home
last modified time | relevance | path

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

/dports/science/afni/afni-AFNI_21.3.16/src/matlab/
H A DDisplayAfniSlice.m93 ubval = Msort(round(Opt.colrange(2).*nM./100)); variable
94 iToScale = find (Msort >= lbval & Msort <= ubval);
/dports/graphics/opendx/dx-4.4.4/src/exec/dxmods/
H A Dsort.c365 typedef struct {int index; unsigned char value;} ubval; typedef
366 #define TYPE ubval
484 case TYPE_UBYTE: SORTARRAY(unsigned char, ubval, SortUByte); break; in SortArray()
/dports/science/py-dipy/dipy-1.4.1/dipy/core/
H A Dgradients.py763 for i, ubval in enumerate(ubvals[:-1]):
764 indices_1 = get_bval_indices(bvals, ubval, tol)
/dports/math/SCIP/scip-7.0.3/src/lpi/
H A Dlpi_clp.cpp1360 double ubval = ub[col]; in SCIPlpiScaleCol() local
1366 if( ubval < COIN_DBL_MAX ) in SCIPlpiScaleCol()
1367 ubval /= scaleval; in SCIPlpiScaleCol()
1369 ubval = -COIN_DBL_MAX; in SCIPlpiScaleCol()
1373 lbval = ubval; in SCIPlpiScaleCol()
1374 ubval = oldlb; in SCIPlpiScaleCol()
1377 ub[col] = ubval; in SCIPlpiScaleCol()
/dports/math/libpgmath/flang-d07daf3/tools/flang1/flang1exe/
H A Dbblock.c1095 int lb, ub, lbval, ubval, p, sval; in make_equiv_ss() local
1116 ubval = CONVAL2G(A_SPTRG(ub)); in make_equiv_ss()
1117 sval = (ubval - lbval + 1) * SIZE; in make_equiv_ss()
1122 SIZE *= (ubval - lbval + 1); in make_equiv_ss()
H A Ddtypeutl.c1134 ISZ_T lbval, ubval; in dtype_with_shape() local
1152 ubval = ad_val_of(A_SPTRG(ub)); in dtype_with_shape()
1155 last_mp_val = (last_mp_val) * (ubval - lbval + 1); in dtype_with_shape()
/dports/graphics/grads/grads-1.9b4/src/
H A Dgaio.c2361 uint8 *ubval; in gahrow() local
2543 ubval = (uint8 *)malloc(len * sizeof (DFNT_UINT8)); in gahrow()
2544 if (ubval==NULL) { in gahrow()
2548 if (SDreaddata(sds_id, start, NULL, count, (VOIDP *)ubval) != 0) { in gahrow()
2553 for (i=0; i<len; i++) gr[i] = (float)ubval[i]; /* Cast uint8 to float */ in gahrow()
2555 free(ubval); in gahrow()
/dports/science/pnetcdf/parallel-netcdf-1.8.1/src/utils/ncmpidump/
H A Dvardata.c182 PRINT_VAL(ubval, unsigned char) in PRINT_VAL()