Home
last modified time | relevance | path

Searched refs:end_step (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fxcodec/
Dprogressivedecoder.cpp207 int end_step = (int)step; in Calc() local
208 if (end_step >= dest_len) { in Calc()
209 end_step = dest_len; in Calc()
210 for (int dest_row = start_step; dest_row < end_step; dest_row++) { in Calc()
219 int length = end_step - start_step; in Calc()
227 for (int dest_row = start_step + 1; dest_row < end_step; dest_row++) { in Calc()
230 pWeight->m_SrcEnd = end_step; in Calc()
232 FXSYS_roundf((float)(end_step - dest_row) / (float)length * 65536); in Calc()
/external/u-boot/drivers/mtd/nand/raw/
Dnand_base.c1901 int start_step, end_step, num_steps; in nand_read_subpage() local
1913 end_step = (data_offs + readlen - 1) / chip->ecc.size; in nand_read_subpage()
1914 num_steps = end_step - start_step + 1; in nand_read_subpage()
2964 uint32_t end_step = (offset + data_len - 1) / ecc_size; in nand_write_subpage_hwecc() local
2979 if ((step < start_step) || (step > end_step)) in nand_write_subpage_hwecc()
2986 if (!oob_required || (step < start_step) || (step > end_step)) in nand_write_subpage_hwecc()
/external/tensorflow/tensorflow/python/eager/
Dbackprop.py849 context.context().end_step()
Dcontext.py1554 def end_step(self): member in Context