Searched defs:begs (Results 1 - 7 of 7) sorted by relevance
/ast/src/lib/libast/sfio/ |
H A D | sfread.c | 38 reg uchar *s, *begs; local 81 s = begs = (uchar*)buf; 85 { n = s > begs ? s-begs : (size_t)(-1); 138 r = s-begs;
|
H A D | sfwrite.c | 38 reg uchar *s, *begs, *next; local 85 s = begs = (uchar*)buf; 89 { w = s > begs ? s-begs : -1; 153 { if((ssize_t)(n = f->next-f->data) > (w = s-begs)) 169 w = s-begs;
|
/ast/src/lib/libvdelta/vd01/ |
H A D | vddelta01.c | 57 static int vdputinst(Table_t* tab, uchar* begs, uchar* here, Match_t* match, int n_copy) argument 59 static int vdputinst(tab, begs, here, match, n_copy) 61 uchar* begs; /* ADD data if any */ 70 n_add = begs ? here-begs : 0; /* add size */ 126 if((*_Vdwrite)((Vdio_t*)tab, begs, n_add) < 0 )
|
/ast/src/lib/libvdelta/ |
H A D | vddelta.c | 53 static int vdputinst(Table_t* tab, uchar* begs, uchar* here, reg int copy, int n_copy) argument 55 static int vdputinst(tab, begs, here, copy, n_copy) 57 uchar* begs; /* ADD data if any */ 66 n_add = begs ? here-begs : 0; /* add size */ 122 if((*_Vdwrite)((Vdio_t*)tab, begs, n_add) < 0 )
|
H A D | vdsqueeze.c | 51 static int vdputinst(Table_t* tab, uchar* begs, uchar* here, reg int copy, int n_copy) argument 53 static int vdputinst(tab, begs, here, copy, n_copy) 55 uchar* begs; /* ADD data if any */ 65 n_add = begs ? here-begs : 0; /* add size */ 119 STRWRITE(tab, begs, n_add);
|
/ast/src/lib/libvcodex/ |
H A D | vcio.c | 408 Vcchar_t *begs; local 424 begs = vcionext(io); 463 return vcionext(io)-begs;
|
/ast/src/lib/libast/vmalloc/ |
H A D | malloc.c | 1140 static char* insertpid(char* begs, char* ends) argument 1142 static char* insertpid(begs,ends) 1143 char* begs; 1154 { if(s == begs) 1159 *begs++ = *s++; 1161 return begs;
|
Completed in 2931 milliseconds