Lines Matching refs:loop_count
84 size_t loop_count = (inend - inptr) / 16; \
85 if (loop_count > (outend - outptr) / 64) \
86 loop_count = (outend - outptr) / 64; \
87 if (loop_count > 16) \
88 loop_count = 16; \
165 , [R_LI] "+a" (loop_count) \
176 if (loop_count != 0) \
218 size_t loop_count = (inend - inptr) / 64; \
220 if (loop_count > (outend - outptr) / 16) \
221 loop_count = (outend - outptr) / 16; \
222 if (loop_count > 16) \
223 loop_count = 16; \
224 size_t remaining_loop_count = loop_count; \
284 loop_count -= remaining_loop_count; \
285 if (loop_count > 0) \
317 , [R_LI] "+d" (loop_count) \
329 inptr -= loop_count * 64; \