Home | History | Annotate | Download | only in common

Lines Matching full:lead

60 /* number of lead bytes */
76 /* number of lead bytes for positive and negative 2/3/4-byte sequences */
95 /* The lead byte start values. */
106 /* The length of a byte sequence, according to the lead byte (!=BOCU1_RESET). */
107 #define BOCU1_LENGTH_FROM_LEAD(lead) \
108 ((BOCU1_START_NEG_2<=(lead) && (lead)<BOCU1_START_POS_2) ? 1 : \
109 (BOCU1_START_NEG_3<=(lead) && (lead)<BOCU1_START_POS_3) ? 2 : \
110 (BOCU1_START_NEG_4<=(lead) && (lead)<BOCU1_START_POS_4) ? 3 : 4)
491 c=-c; /* negative lead surrogate as "incomplete" indicator to avoid c=0 everywhere else */
725 c=-c; /* negative lead surrogate as "incomplete" indicator to avoid c=0 everywhere else */
854 * Function for BOCU-1 decoder; handles multi-byte lead bytes.
856 * @param b lead byte;
1010 /* decode a sequence of single and lead bytes */
1067 * For multi-byte difference lead bytes, set the decoder state
1068 * with the partial difference value from the lead byte and
1224 /* decode a sequence of single and lead bytes */
1274 * For multi-byte difference lead bytes, set the decoder state
1275 * with the partial difference value from the lead byte and