Home | History | Annotate | Download | only in src

Lines Matching refs:m_pos

234 #  define GINDEX(m_pos,m_off,dict,dindex,in)    m_pos = dict[dindex]
237 # define GINDEX(m_pos,m_off,dict,dindex,in) m_off = dict[dindex]
265 /* m_pos is either NULL or a valid pointer */
266 #define LZO_CHECK_MPOS_DET(m_pos,m_off,in,ip,max_offset) \
267 (m_pos == NULL || (m_off = pd(ip, m_pos)) > max_offset)
269 /* m_pos may point anywhere... */
270 #define LZO_CHECK_MPOS_NON_DET(m_pos,m_off,in,ip,max_offset) \
272 m_pos = ip - (lzo_uint) PTR_DIFF(ip,m_pos), \
273 PTR_LT(m_pos,in) || \
274 (m_off = (lzo_uint) PTR_DIFF(ip,m_pos)) == 0 || \
279 #define LZO_CHECK_MPOS_DET(m_pos,m_off,in,ip,max_offset) \
282 (m_pos = (ip) - (m_off), 0) )
284 #define LZO_CHECK_MPOS_NON_DET(m_pos,m_off,in,ip,max_offset) \
287 (m_pos = (ip) - (m_off), 0) )