Searched defs:byte (Results 1 - 4 of 4) sorted by relevance

/ast/src/lib/libodelta/
H A Ddelta.c60 static int delputc(int byte) argument
65 *Dnext++ = byte;
/ast/src/lib/libvcodex/Vcmisc/
H A Dvctranspose.c68 int byte; local
100 else /* output one byte from this record */
101 { *flip++ = (byte = data[fl[r].rpos]);
102 if(byte == rsep) /* record is done */
/ast/src/lib/libvcodex/
H A Dvcio.c919 ssize_t vchexcode(Vcchar_t* byte, ssize_t bytez, Vcchar_t* hex, ssize_t hexz, int type) argument
937 if(!byte || !hex)
940 if(type >= 0) /* byte to hex */
950 hex[h] = dig[(byte[b]>>4) & 0xf];
951 hex[h+1] = dig[(byte[b]>>0) & 0xf];
958 else /* hex to byte, allow mixed case */
967 byte[b] = (Vcchar_t)((l<<4) | r);
971 byte[b] = 0;
/ast/src/cmd/pax/
H A Dpax-slt.c64 getlabnum(register char* p, int byte, int width, int base) argument
70 p += byte - 1;
83 getlabstr(register char* p, int byte, int width, register char* s) argument
90 p += byte - 1;

Completed in 14 milliseconds