Searched defs:endd (Results 1 - 7 of 7) sorted by relevance

/ast/src/cmd/vczip/tests/
H A Dtvchuffgroup.c28 char data[64*1024], *d, *endd; local
32 for(endd = (d = data)+sizeof(data); d < endd; )
34 for(k = 0; k < 64 && d < endd; ++k, ++d)
/ast/src/lib/librecsort/
H A Drsprocess.c70 reg uchar *m_key, *c_key, *endd; local
143 { if(!(endd = (uchar*)vmalloc(rs->vm,r->datalen)) || !(r->data = (uchar*)memcpy(endd, r->data, r->datalen)))
175 { if(!(endd = (uchar*)memchr(data,(int)d,s_loop)) )
177 datalen = (endd - data) + 1;
245 if (!(endd = (uchar*)vmalloc(rs->vm,r->datalen)) || !(r->data = (uchar*)memcpy(endd, r->data, r->datalen)))
/ast/src/lib/libvcodex/Vcwindow/
H A Dvcwngram.c187 Vcchar_t* endd; local
189 endd = data + n - (NG_BYTE-1);
190 for(sig = 0, NGINIT(data,key), data += 1; data < endd; ++data)
H A Dvcwprefix.c114 Vcchar_t *endd; local
116 for(key = 0, endd = data+dtsz; data < endd; ++data)
378 Vcchar_t *dt, *endd; local
426 endd = (dt = (Vcchar_t*)data) + dtsz - (pfx->blksz-1);
429 for(dt += 1; dt < endd; ++dt)
/ast/src/lib/libast/sfio/
H A Dsfvprintf.c160 uchar *d, *endd; local
161 #define SFBUF(f) (d = f->next, endd = f->endb)
164 #define SFputc(f,c) { if(d < endd) { *d++ = (uchar)c; } \
167 #define SFnputc(f,c,n) { if(d+n <= endd) { while(n--) *d++ = (uchar)(c); } \
170 #define SFwrite(f,s,n) { if(d+n <= endd) { while(n--) *d++ = (uchar)(*s++); } \
H A Dsfvscanf.c66 uchar *d, *endd, *data; /* local buffering system */ member in struct:_scan_s
74 (sc)->d = d, (sc)->endd = endd, (sc)->data = data, \
78 d = (sc)->d, endd = (sc)->endd, data = (sc)->data, \
102 if(sc->d >= sc->endd) /* refresh local buffer */
110 sc->endd = sc->f->endb;
112 if(sc->d >= sc->endd)
249 if(sc->d > sc->f->data && (n = sc->endd - sc->d) > 0 && n < SFMBMAX)
257 sc->endd
338 uchar *d, *endd, *data; local
[all...]
/ast/src/lib/libvcodex/
H A Dvcsfio.c58 Vcchar_t* endd; /* end of data buffer */ member in struct:_sfdc_s
656 if((r = sfdc->endd - sfdc->next) > 0 )
744 sfdc->endd = text+m;
793 if((w = sfdc->endd - sfdc->next) == 0)
805 w = sfdc->endd - sfdc->next; /* bufferable space */
1042 sfdc->endd = sfdc->data + sfdc->dtsz;

Completed in 30 milliseconds