Lines Matching refs:source
97 static int Pred1Compress(node_p node, u_char *source, u_char *dest,
99 static int Pred1Decompress(node_p node, u_char *source, u_char *dest,
101 static void Pred1SyncTable(node_p node, u_char *source, int len);
565 Pred1Compress(node_p node, u_char *source, u_char *dest, int len) in Pred1Compress() argument
577 if (priv->GuessTable[priv->Hash] == *source) in Pred1Compress()
582 priv->GuessTable[priv->Hash] = *source; in Pred1Compress()
583 *dest++ = *source; in Pred1Compress()
585 HASH(*source++); in Pred1Compress()
600 Pred1Decompress(node_p node, u_char *source, u_char *dest, int slen, int dlen) in Pred1Decompress() argument
608 flags = *source++; in Pred1Decompress()
622 priv->GuessTable[priv->Hash] = *source; in Pred1Decompress()
624 *dest = *source++; in Pred1Decompress()
639 Pred1SyncTable(node_p node, u_char *source, int len) in Pred1SyncTable() argument
644 priv->GuessTable[priv->Hash] = *source; in Pred1SyncTable()
645 HASH(*source++); in Pred1SyncTable()