Lines Matching refs:scale
57 size_t scale;
86 // Ensure that the scale is properly set.
87 scale = 10;
88 bcl_ctxt_setScale(ctxt, scale);
89 scale = bcl_ctxt_scale(ctxt);
90 if (scale != 10) err(BCL_ERROR_FATAL_UNKNOWN_ERR);
92 scale = 16;
93 bcl_ctxt_setIbase(ctxt, scale);
94 scale = bcl_ctxt_ibase(ctxt);
95 if (scale != 16) err(BCL_ERROR_FATAL_UNKNOWN_ERR);
98 bcl_ctxt_setObase(ctxt, scale);
99 scale = bcl_ctxt_obase(ctxt);
100 if (scale != 16) err(BCL_ERROR_FATAL_UNKNOWN_ERR);
104 scale = bcl_ctxt_ibase(ctxt);
105 if (scale != 10) err(BCL_ERROR_FATAL_UNKNOWN_ERR);
107 scale = bcl_ctxt_obase(ctxt);
108 if (scale != 10) err(BCL_ERROR_FATAL_UNKNOWN_ERR);