pos 147 lib/util/byteorder.h #define CVAL(buf,pos) ((uint_t)(((const uint8_t *)(buf))[pos])) pos 148 lib/util/byteorder.h #define CVAL_NC(buf,pos) (((uint8_t *)(buf))[pos]) /* Non-const version of CVAL */ pos 149 lib/util/byteorder.h #define PVAL(buf,pos) (CVAL(buf,pos)) pos 150 lib/util/byteorder.h #define SCVAL(buf,pos,val) (CVAL_NC(buf,pos) = (val)) pos 154 lib/util/byteorder.h #define _PTRPOS(buf,pos) (((const uint8_t *)(buf))+(pos)) pos 155 lib/util/byteorder.h #define SVAL(buf,pos) ld_le16((const uint16_t *)_PTRPOS(buf,pos)) pos 156 lib/util/byteorder.h #define IVAL(buf,pos) ld_le32((const uint32_t *)_PTRPOS(buf,pos)) pos 157 lib/util/byteorder.h #define SSVAL(buf,pos,val) st_le16((uint16_t *)_PTRPOS(buf,pos), val) pos 158 lib/util/byteorder.h #define SIVAL(buf,pos,val) st_le32((uint32_t *)_PTRPOS(buf,pos), val) pos 159 lib/util/byteorder.h #define SVALS(buf,pos) ((int16_t)SVAL(buf,pos)) pos 160 lib/util/byteorder.h #define IVALS(buf,pos) ((int32_t)IVAL(buf,pos)) pos 161 lib/util/byteorder.h #define SSVALS(buf,pos,val) SSVAL((buf),(pos),((int16_t)(val))) pos 162 lib/util/byteorder.h #define SIVALS(buf,pos,val) SIVAL((buf),(pos),((int32_t)(val))) pos 166 lib/util/byteorder.h #define SVAL(buf,pos) (PVAL(buf,pos)|PVAL(buf,(pos)+1)<<8) pos 167 lib/util/byteorder.h #define IVAL(buf,pos) (SVAL(buf,pos)|SVAL(buf,(pos)+2)<<16) pos 168 lib/util/byteorder.h #define SSVALX(buf,pos,val) (CVAL_NC(buf,pos)=(uint8_t)((val)&0xFF),CVAL_NC(buf,pos+1)=(uint8_t)((val)>>8)) pos 169 lib/util/byteorder.h #define SIVALX(buf,pos,val) (SSVALX(buf,pos,val&0xFFFF),SSVALX(buf,pos+2,val>>16)) pos 170 lib/util/byteorder.h #define SVALS(buf,pos) ((int16_t)SVAL(buf,pos)) pos 171 lib/util/byteorder.h #define IVALS(buf,pos) ((int32_t)IVAL(buf,pos)) pos 172 lib/util/byteorder.h #define SSVAL(buf,pos,val) SSVALX((buf),(pos),((uint16_t)(val))) pos 173 lib/util/byteorder.h #define SIVAL(buf,pos,val) SIVALX((buf),(pos),((uint32_t)(val))) pos 174 lib/util/byteorder.h #define SSVALS(buf,pos,val) SSVALX((buf),(pos),((int16_t)(val))) pos 175 lib/util/byteorder.h #define SIVALS(buf,pos,val) SIVALX((buf),(pos),((int32_t)(val))) pos 187 lib/util/byteorder.h #define SVAL(buf,pos) (*(const uint16_t *)((const char *)(buf) + (pos))) pos 188 lib/util/byteorder.h #define SVAL_NC(buf,pos) (*(uint16_t *)((char *)(buf) + (pos))) /* Non const version of above. */ pos 189 lib/util/byteorder.h #define IVAL(buf,pos) (*(const uint32_t *)((const char *)(buf) + (pos))) pos 190 lib/util/byteorder.h #define IVAL_NC(buf,pos) (*(uint32_t *)((char *)(buf) + (pos))) /* Non const version of above. */ pos 191 lib/util/byteorder.h #define SVALS(buf,pos) (*(const int16_t *)((const char *)(buf) + (pos))) pos 192 lib/util/byteorder.h #define SVALS_NC(buf,pos) (*(int16_t *)((char *)(buf) + (pos))) /* Non const version of above. */ pos 193 lib/util/byteorder.h #define IVALS(buf,pos) (*(const int32_t *)((const char *)(buf) + (pos))) pos 194 lib/util/byteorder.h #define IVALS_NC(buf,pos) (*(int32_t *)((char *)(buf) + (pos))) /* Non const version of above. */ pos 197 lib/util/byteorder.h #define SSVAL(buf,pos,val) SVAL_NC(buf,pos)=((uint16_t)(val)) pos 198 lib/util/byteorder.h #define SIVAL(buf,pos,val) IVAL_NC(buf,pos)=((uint32_t)(val)) pos 199 lib/util/byteorder.h #define SSVALS(buf,pos,val) SVALS_NC(buf,pos)=((int16_t)(val)) pos 200 lib/util/byteorder.h #define SIVALS(buf,pos,val) IVALS_NC(buf,pos)=((int32_t)(val)) pos 208 lib/util/byteorder.h #define RSVAL(buf,pos) SREV(SVAL(buf,pos)) pos 209 lib/util/byteorder.h #define RSVALS(buf,pos) SREV(SVALS(buf,pos)) pos 210 lib/util/byteorder.h #define RIVAL(buf,pos) IREV(IVAL(buf,pos)) pos 211 lib/util/byteorder.h #define RIVALS(buf,pos) IREV(IVALS(buf,pos)) pos 212 lib/util/byteorder.h #define RSSVAL(buf,pos,val) SSVAL(buf,pos,SREV(val)) pos 213 lib/util/byteorder.h #define RSSVALS(buf,pos,val) SSVALS(buf,pos,SREV(val)) pos 214 lib/util/byteorder.h #define RSIVAL(buf,pos,val) SIVAL(buf,pos,IREV(val)) pos 215 lib/util/byteorder.h #define RSIVALS(buf,pos,val) SIVALS(buf,pos,IREV(val)) pos 176 lib/util/params.c static int Continuation(char *line, int pos ) pos 65 lib/zlib/contrib/minizip/ioapi.h #define ZSEEK(filefunc,filestream,pos,mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode)) pos 1580 lib/zlib/contrib/minizip/unzip.c extern int ZEXPORT unzSetOffset (file, pos) pos 1582 lib/zlib/contrib/minizip/unzip.c uLong pos; pos 346 lib/zlib/contrib/minizip/unzip.h extern int ZEXPORT unzSetOffset (unzFile file, uLong pos); pos 1123 source3/include/proto.h ssize_t write_data_at_offset(int fd, const char *buffer, size_t N, SMB_OFF_T pos); pos 4922 source3/include/proto.h ssize_t print_job_write(int snum, uint32 jobid, const char *buf, SMB_OFF_T pos, size_t size); pos 6370 source3/include/proto.h ssize_t read_file(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n); pos 6376 source3/include/proto.h SMB_OFF_T pos, pos 844 source3/lib/util.c ssize_t write_data_at_offset(int fd, const char *buffer, size_t N, SMB_OFF_T pos) pos 2212 source3/printing/printing.c ssize_t print_job_write(int snum, uint32 jobid, const char *buf, SMB_OFF_T pos, size_t size) pos 31 source3/smbd/fileio.c static bool read_from_write_cache(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n) pos 54 source3/smbd/fileio.c ssize_t read_file(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n) pos 120 source3/smbd/fileio.c SMB_OFF_T pos, pos 251 source3/smbd/fileio.c SMB_OFF_T pos, pos 656 source3/utils/net_rap.c const char *jparms, uint16 pos, uint16 status, pos 224 source3/utils/smbget.c static void print_progress(const char *name, time_t start, time_t now, off_t start_pos, off_t pos, off_t total)