Home
last modified time | relevance | path

Searched refs:word (Results 1 – 4 of 4) sorted by relevance

/libtiff-4.0.7/tools/
H A Dtiff2ps.c2842 uint32 word; in Ascii85Encode() local
2844 word = (((raw[0]<<8)+raw[1])<<16) + (raw[2]<<8) + raw[3]; in Ascii85Encode()
2845 if (word != 0L) { in Ascii85Encode()
2849 q = word / (85L*85*85*85); /* actually only a byte */ in Ascii85Encode()
2852 word -= q * (85L*85*85*85); q = word / (85L*85*85); in Ascii85Encode()
2855 word -= q * (85L*85*85); q = word / (85*85); in Ascii85Encode()
2858 w1 = (uint16) (word - q*(85L*85)); in Ascii85Encode()
/libtiff-4.0.7/libtiff/
H A Dtif_ojpeg.c378 static int OJPEGReadWord(OJPEGState* sp, uint16* word);
2047 OJPEGReadWord(OJPEGState* sp, uint16* word) in OJPEGReadWord() argument
2052 *word=(m<<8); in OJPEGReadWord()
2055 *word|=m; in OJPEGReadWord()
/libtiff-4.0.7/m4/
H A Dlibtool.m41587 # (2) before a word containing "conftest.", or (3) at the end.
2070 # (2) before a word containing "conftest.", or (3) at the end.
3167 dnl POSIX.2 word splitting is done only on the output of word expansions,
3168 dnl not every word. This closes a longstanding sh security hole.
/libtiff-4.0.7/
H A DChangeLog1538 * libtiff/tif_pixarlog.c: Allocate working buffer one word larger since we "forward
1539 accumulate" and overwrite the end by one word in at least some cases.