Home
last modified time | relevance | path

Searched refs:y_cols (Results 1 – 14 of 14) sorted by relevance

/dports/databases/grass7/grass-7.8.6/raster/r.out.mpeg/
H A Dwrite.c33 int *y_rows, int *y_cols, char *filename) in write_ycc() argument
48 *y_cols = ncols; in write_ycc()
52 *y_cols &= ~0x0f; in write_ycc()
58 cols = *y_cols; in write_ycc()
80 if (*y_rows != rows || *y_cols != cols) in write_ycc()
157 int *y_rows, int *y_cols, char *filename) in write_ppm() argument
165 *y_cols = ncols; in write_ppm()
169 *y_cols &= ~0x0f; in write_ppm()
173 cols = *y_cols; in write_ppm()
177 if (*y_rows != rows || *y_cols != cols) in write_ppm()
[all …]
H A Dmain.c240 int y_rows, y_cols; in load_files() local
329 write_ppm(pr, pg, pb, nrows, ncols, &y_rows, &y_cols, yfiles[cnt]); in load_files()
331 write_ycc(pr, pg, pb, nrows, ncols, &y_rows, &y_cols, yfiles[cnt]); in load_files()
336 write_params(mpfilename, yfiles, outfile, cnt, quality, y_rows, y_cols, 0); in load_files()
/dports/science/py-nilearn/nilearn-0.8.1/examples/02_decoding/
H A Dplot_miyawaki_reconstruction.py94 y_cols = y_shape[1] variable
114 height_tf = (np.eye(y_cols) + np.eye(y_cols, k=1))[:y_cols - 1] * .5
196 height_tf_i = (np.eye(y_cols) + np.eye(y_cols, k=-1))[:, :y_cols - 1] * .5
205 width_tf_i = (np.eye(y_cols) + np.eye(y_cols, k=1))[:y_cols - 1] * .5
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-core/cirq/experiments/
H A Dt2_decay_experiment.py294 y_cols = list(y_basis_data.columns)
300 if any(col not in y_cols for col in _T2_COLUMNS):
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-core/cirq/experiments/
H A Dt2_decay_experiment.py288 y_cols = list(y_basis_data.columns)
294 if any(col not in y_cols for col in _T2_COLUMNS):
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-core/cirq/experiments/
H A Dt2_decay_experiment.py294 y_cols = list(y_basis_data.columns)
300 if any(col not in y_cols for col in _T2_COLUMNS):
/dports/science/py-cirq-google/Cirq-0.13.0/cirq-core/cirq/experiments/
H A Dt2_decay_experiment.py294 y_cols = list(y_basis_data.columns)
300 if any(col not in y_cols for col in _T2_COLUMNS):
/dports/science/py-cirq-ionq/Cirq-0.13.1/cirq-core/cirq/experiments/
H A Dt2_decay_experiment.py294 y_cols = list(y_basis_data.columns)
300 if any(col not in y_cols for col in _T2_COLUMNS):
/dports/devel/R-cran-caret/caret/R/
H A Dtrain_recipes.R111 y_cols <- role_cols(rec, "outcome") functionVar
112 y <- dat[, y_cols]
113 if(length(y_cols) > 1)
128 dat[, y_cols] <- tmp$y
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/plotting/frame/
H A Dtest_frame_subplots.py131 y_cols = ["numeric", "timedelta", "datetime_no_tz", "datetime_all_tz"]
132 for col in y_cols:
/dports/multimedia/librav1e/rav1e-0.5.1/src/
H A Dlrf.rs1414 let y_cols = ((fi.width + (y_unit_size >> 1)) / y_unit_size).max(1); in new() localVariable
1435 y_cols, in new()
/dports/multimedia/rav1e/rav1e-0.5.1/src/
H A Dlrf.rs1414 let y_cols = ((fi.width + (y_unit_size >> 1)) / y_unit_size).max(1); in new() localVariable
1435 y_cols, in new()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/rav1e-0.4.1/src/
H A Dlrf.rs1420 let y_cols = ((fi.width + (y_unit_size >> 1)) / y_unit_size).max(1); in new() localVariable
1441 y_cols, in new()
/dports/devel/py-numba/numba-0.51.2/numba/np/
H A Darraymath.py2578 y_rows, y_cols = y_arr.shape
2580 if m_cols != y_cols: