Home | History | Annotate | Download | only in common

Lines Matching refs:lead

63 /* number of lead bytes */
79 /* number of lead bytes for positive and negative 2/3/4-byte sequences */
98 /* The lead byte start values. */
109 /* The length of a byte sequence, according to the lead byte (!=BOCU1_RESET). */
110 #define BOCU1_LENGTH_FROM_LEAD(lead) \
111 ((BOCU1_START_NEG_2<=(lead) && (lead)<BOCU1_START_POS_2) ? 1 : \
112 (BOCU1_START_NEG_3<=(lead) && (lead)<BOCU1_START_POS_3) ? 2 : \
113 (BOCU1_START_NEG_4<=(lead) && (lead)<BOCU1_START_POS_4) ? 3 : 4)
496 c=-c; /* negative lead surrogate as "incomplete" indicator to avoid c=0 everywhere else */
730 c=-c; /* negative lead surrogate as "incomplete" indicator to avoid c=0 everywhere else */
859 * Function for BOCU-1 decoder; handles multi-byte lead bytes.
861 * @param b lead byte;
1015 /* decode a sequence of single and lead bytes */
1072 * For multi-byte difference lead bytes, set the decoder state
1073 * with the partial difference value from the lead byte and
1229 /* decode a sequence of single and lead bytes */
1279 * For multi-byte difference lead bytes, set the decoder state
1280 * with the partial difference value from the lead byte and