pos               106 lib/replace/repdir_getdirentries.c 		long pos;
pos               107 lib/replace/repdir_getdirentries.c 		d->nbytes = getdirentries(d->fd, d->buf, DIR_BUF_SIZE, &pos);
pos               108 lib/replace/repdir_getdirentries.c 		d->seekpos = pos;
pos               146 lib/replace/repdir_getdirentries.c 	long pos;
pos               148 lib/replace/repdir_getdirentries.c 	d->nbytes = getdirentries(d->fd, d->buf, DIR_BUF_SIZE, &pos);
pos              1141 lib/replace/snprintf.c 	int i, pos;
pos              1148 lib/replace/snprintf.c 			pos = 0;
pos              1151 lib/replace/snprintf.c 			pos = max_num;
pos              1159 lib/replace/snprintf.c 		for (i = pos; i < max; i++) {
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               178 lib/util/params.c 	pos--;
pos               179 lib/util/params.c 	while( (pos >= 0) && isspace((int)line[pos]))
pos               180 lib/util/params.c 		pos--;
pos               182 lib/util/params.c 	return (((pos >= 0) && ('\\' == line[pos])) ? pos : -1 );
pos                65 lib/zlib/contrib/minizip/ioapi.h #define ZSEEK(filefunc,filestream,pos,mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode))
pos              1591 lib/zlib/contrib/minizip/unzip.c     s->pos_in_central_dir = pos;
pos                96 lib/zlib/example.c     z_off_t pos;
pos               133 lib/zlib/example.c     pos = gzseek(file, -8L, SEEK_CUR);
pos               134 lib/zlib/example.c     if (pos != 6 || gztell(file) != pos) {
pos               136 lib/zlib/example.c                 (long)pos, (long)gztell(file));
pos               282 lib/zlib/examples/gzjoin.c     int pos;                /* where the "last block" bit is in byte */
pos               346 lib/zlib/examples/gzjoin.c             pos = strm.data_type & 7;
pos               349 lib/zlib/examples/gzjoin.c             if (pos != 0) {
pos               351 lib/zlib/examples/gzjoin.c                 pos = 0x100 >> pos;
pos               352 lib/zlib/examples/gzjoin.c                 last = strm.next_in[-1] & pos;
pos               354 lib/zlib/examples/gzjoin.c                     strm.next_in[-1] &= ~pos;
pos               377 lib/zlib/examples/gzjoin.c     pos = strm.data_type & 7;
pos               380 lib/zlib/examples/gzjoin.c     if (pos == 0 || !clr)
pos               385 lib/zlib/examples/gzjoin.c         last &= ((0x100 >> pos) - 1);       /* assure unused bits are zero */
pos               386 lib/zlib/examples/gzjoin.c         if (pos & 1) {
pos               389 lib/zlib/examples/gzjoin.c             if (pos == 1)
pos               395 lib/zlib/examples/gzjoin.c             switch (pos) {
pos               266 source3/client/cifs.upcall.c 	char *pos;
pos               270 source3/client/cifs.upcall.c 		pos = index(tkn, ';');
pos               273 source3/client/cifs.upcall.c 			if (pos == NULL)
pos               276 source3/client/cifs.upcall.c 				len = pos - tkn;
pos               285 source3/client/cifs.upcall.c 			if (pos == NULL)
pos               288 source3/client/cifs.upcall.c 				len = pos - tkn;
pos               334 source3/client/cifs.upcall.c 		if (pos == NULL)
pos               336 source3/client/cifs.upcall.c 		tkn = pos + 1;
pos              1001 source3/client/clitar.c 	int fnum = -1, pos = 0, dsize = 0, bpos = 0;
pos              1023 source3/client/clitar.c 		if (cli_write(cli, fnum, 0, buffer_p + bpos, pos, dsize) != dsize) {
pos              1029 source3/client/clitar.c 		pos += dsize;
pos               348 source3/include/smb.h 	SMB_OFF_T pos;
pos               849 source3/lib/util.c 	if (pos == (SMB_OFF_T)-1) {
pos               854 source3/lib/util.c 		ret = sys_pwrite(fd,buffer + total,N - total, pos);
pos               866 source3/lib/util.c 		pos += ret;
pos               871 source3/lib/util.c 	if (sys_lseek(fd, pos, SEEK_SET) == -1) {
pos              2009 source3/libsmb/clirap2.c 					uint16 jid = 0, pos = 0, fsstatus = 0;
pos              2039 source3/libsmb/clirap2.c 					GETWORD(p, pos, endp);
pos              2057 source3/libsmb/clirap2.c 						jfn(jid, ownername, notifyname, datatype, jparms, pos, fsstatus,
pos              2185 source3/libsmb/clirap2.c 				uint16_t jid = 0, pos = 0, fsstatus = 0;
pos              2215 source3/libsmb/clirap2.c 				GETWORD(p, pos,endp);
pos              2233 source3/libsmb/clirap2.c 					jfn(jid, ownername, notifyname, datatype, jparms, pos, fsstatus,
pos               239 source3/modules/vfs_commit.c                 if (commit(handle, fsp, fsp->fh->pos, ret) == -1) {
pos               336 source3/modules/vfs_default.c 		fsp->fh->pos = 0;
pos               347 source3/modules/vfs_default.c 		fsp->fh->pos = 0;
pos                30 source3/modules/vfs_dirsort.c 	long pos;
pos                75 source3/modules/vfs_dirsort.c 	current_pos = data->pos;
pos                76 source3/modules/vfs_dirsort.c 	data->pos = 0;
pos                79 source3/modules/vfs_dirsort.c 		data->directory_list[data->pos++] = *dp;
pos                83 source3/modules/vfs_dirsort.c 	data->pos = current_pos;
pos                99 source3/modules/vfs_dirsort.c 	data->pos = 0;
pos               136 source3/modules/vfs_dirsort.c 	if (data->pos >= data->number_of_entries) {
pos               140 source3/modules/vfs_dirsort.c 	return &data->directory_list[data->pos++];
pos               149 source3/modules/vfs_dirsort.c 	data->pos = offset;
pos               158 source3/modules/vfs_dirsort.c 	return data->pos;
pos               166 source3/modules/vfs_dirsort.c 	data->pos = 0;
pos                59 source3/modules/vfs_shadow_copy.c 	int pos;
pos               125 source3/modules/vfs_shadow_copy.c 	if (dirp->pos < dirp->num) {
pos               126 source3/modules/vfs_shadow_copy.c 		return &(dirp->dirs[dirp->pos++]);
pos               137 source3/modules/vfs_shadow_copy.c 		dirp->pos = offset ;
pos               144 source3/modules/vfs_shadow_copy.c 	return( dirp->pos ) ;
pos               150 source3/modules/vfs_shadow_copy.c 	dirp->pos = 0 ;
pos              1150 source3/printing/nt_printing.c 						int pos = (i + sizeof(VS_SIGNATURE)*2 + 3) & 0xfffffffc;
pos              1152 source3/printing/nt_printing.c 						if (IVAL(buf,pos) == VS_MAGIC_VALUE) {
pos              1153 source3/printing/nt_printing.c 							*major = IVAL(buf,pos+VS_MAJOR_OFFSET);
pos              1154 source3/printing/nt_printing.c 							*minor = IVAL(buf,pos+VS_MINOR_OFFSET);
pos                65 source3/printing/printfsp.c 	fsp->fh->pos = -1;
pos              2226 source3/printing/printing.c 	return_code = write_data_at_offset(pjob->fd, buf, size, pos);
pos                97 source3/rpcclient/cmd_eventlog.c 		uint32_t pos = 0;
pos               131 source3/rpcclient/cmd_eventlog.c 		size = IVAL(data, pos);
pos               135 source3/rpcclient/cmd_eventlog.c 			blob = data_blob_const(data + pos, size);
pos               146 source3/rpcclient/cmd_eventlog.c 			pos += size;
pos               148 source3/rpcclient/cmd_eventlog.c 			if (pos + 4 > sent_size) {
pos               152 source3/rpcclient/cmd_eventlog.c 			size = IVAL(data, pos);
pos               356 source3/smbd/aio.c 		aio_ex->fsp->fh->pos = aio_ex->acb.aio_offset + nread;
pos               357 source3/smbd/aio.c 		aio_ex->fsp->fh->position_information = aio_ex->fsp->fh->pos;
pos               455 source3/smbd/aio.c 		aio_ex->fsp->fh->pos = aio_ex->acb.aio_offset + nwritten;
pos               132 source3/smbd/fake_file.c 	fsp->fh->pos = -1;
pos                39 source3/smbd/fileio.c 	if( n > wcp->data_size || pos < wcp->offset || pos + n > wcp->offset + wcp->data_size) {
pos                43 source3/smbd/fileio.c 	memcpy(data, wcp->data + (pos - wcp->offset), n);
pos                67 source3/smbd/fileio.c 	if(read_from_write_cache(fsp, data, pos, n)) {
pos                68 source3/smbd/fileio.c 		fsp->fh->pos = pos + n;
pos                69 source3/smbd/fileio.c 		fsp->fh->position_information = fsp->fh->pos;
pos                75 source3/smbd/fileio.c 	fsp->fh->pos = pos;
pos                81 source3/smbd/fileio.c 		readret = SMB_VFS_PREAD(fsp,data,n,pos);
pos                93 source3/smbd/fileio.c 		readret = SMB_VFS_PREAD(fsp,data,n,pos);
pos               105 source3/smbd/fileio.c 		fsp->fsp_name, (double)pos, (unsigned long)n, (long)ret ));
pos               107 source3/smbd/fileio.c 	fsp->fh->pos += ret;
pos               108 source3/smbd/fileio.c 	fsp->fh->position_information = fsp->fh->pos;
pos               125 source3/smbd/fileio.c         if (pos == -1) {
pos               128 source3/smbd/fileio.c 		fsp->fh->pos = pos;
pos               129 source3/smbd/fileio.c 		if (pos && lp_strict_allocate(SNUM(fsp->conn))) {
pos               130 source3/smbd/fileio.c 			if (vfs_fill_sparse(fsp, pos) == -1) {
pos               134 source3/smbd/fileio.c                 ret = vfs_pwrite_data(req, fsp, data, n, pos);
pos               138 source3/smbd/fileio.c 		fsp->fsp_name, (double)pos, (unsigned long)n, (long)ret ));
pos               141 source3/smbd/fileio.c 		fsp->fh->pos += ret;
pos               146 source3/smbd/fileio.c 		fsp->position_information = fsp->pos;
pos               268 source3/smbd/fileio.c 		return print_job_write(SNUM(fsp->conn), jobid, data, pos, n);
pos               360 source3/smbd/fileio.c 		total_written = real_write_file(req, fsp, data, pos, n);
pos               365 source3/smbd/fileio.c 		fsp->fsp_name, fsp->fh->fd, (double)pos, (unsigned int)n, (double)wcp->offset, (unsigned int)wcp->data_size));
pos               367 source3/smbd/fileio.c 	fsp->fh->pos = pos + n;
pos               377 source3/smbd/fileio.c 		if ((pos >= wcp->offset) && (pos <= wcp->offset + wcp->data_size)) {
pos               395 source3/smbd/fileio.c 			size_t data_used = MIN((wcp->alloc_size - (pos - wcp->offset)), n);
pos               397 source3/smbd/fileio.c 			memcpy(wcp->data + (pos - wcp->offset), data, data_used);
pos               403 source3/smbd/fileio.c 			if(pos + data_used > wcp->offset + wcp->data_size) {
pos               404 source3/smbd/fileio.c 				wcp->data_size = pos + data_used - wcp->offset;
pos               433 source3/smbd/fileio.c 			pos += data_used;
pos               441 source3/smbd/fileio.c 		} else if ((pos < wcp->offset) && (pos + n > wcp->offset) && 
pos               442 source3/smbd/fileio.c 					(pos + n <= wcp->offset + wcp->alloc_size)) {
pos               460 source3/smbd/fileio.c 			size_t data_used = pos + n - wcp->offset;
pos               468 source3/smbd/fileio.c 			if(pos + n > wcp->offset + wcp->data_size) {
pos               469 source3/smbd/fileio.c 				wcp->data_size = pos + n - wcp->offset;
pos               500 source3/smbd/fileio.c 		} else if ( (pos >= wcp->file_size) && 
pos               502 source3/smbd/fileio.c 					(pos > wcp->offset + wcp->data_size) && 
pos               503 source3/smbd/fileio.c 					(pos < wcp->offset + wcp->alloc_size) ) {
pos               528 source3/smbd/fileio.c 			if(pos + n <= wcp->offset + wcp->alloc_size) {
pos               531 source3/smbd/fileio.c 				data_used = wcp->offset + wcp->alloc_size - pos;
pos               539 source3/smbd/fileio.c 				pos - (wcp->offset + wcp->data_size) );
pos               541 source3/smbd/fileio.c 			memcpy(wcp->data + (pos - wcp->offset), data, data_used);
pos               547 source3/smbd/fileio.c 			if(pos + data_used > wcp->offset + wcp->data_size) {
pos               548 source3/smbd/fileio.c 				wcp->data_size = pos + data_used - wcp->offset;
pos               578 source3/smbd/fileio.c 			pos += data_used;
pos               586 source3/smbd/fileio.c                 } else if ( (pos >= wcp->file_size) &&
pos               589 source3/smbd/fileio.c 			    (pos < wcp->file_size + wcp->alloc_size)) {
pos               618 source3/smbd/fileio.c 			wcp->data_size = pos - wcp->file_size + 1;
pos               676 source3/smbd/fileio.c len = %u\n",fsp->fh->fd, (double)pos, (unsigned int)n, (double)wcp->offset, (unsigned int)wcp->data_size ));
pos               688 source3/smbd/fileio.c 				ssize_t ret = real_write_file(NULL,fsp, data, pos, n);
pos               696 source3/smbd/fileio.c 				if ((pos <= wcp->offset) &&
pos               697 source3/smbd/fileio.c 						(pos + n >= wcp->offset + wcp->data_size) ) {
pos               708 source3/smbd/fileio.c 				if (pos + ret > wcp->file_size) {
pos               709 source3/smbd/fileio.c 					wcp->file_size = pos + ret;
pos               722 source3/smbd/fileio.c 				write_path, fsp->fh->fd, (double)wcp->file_size, (double)pos, (unsigned int)n,
pos               735 source3/smbd/fileio.c 		ssize_t ret = real_write_file(NULL,fsp, data, pos, n);
pos               740 source3/smbd/fileio.c 		if (pos + ret > wcp->file_size) {
pos               741 source3/smbd/fileio.c 			wcp->file_size = pos + n;
pos               762 source3/smbd/fileio.c 			wcp->offset = pos;
pos              4328 source3/smbd/reply.c 			res = fsp->fh->pos + startpos;
pos              4365 source3/smbd/reply.c 	fsp->fh->pos = res;
pos              3841 source3/smbd/trans2.c 	SMB_OFF_T pos = 0;
pos              3939 source3/smbd/trans2.c 			pos = fsp->fh->position_information;
pos              4474 source3/smbd/trans2.c 			SOFF_T(pdata,0,pos);
pos               469 source3/torture/cmd_vfs.c 	SMB_OFF_T pos;
pos               485 source3/torture/cmd_vfs.c 	pos = SMB_VFS_LSEEK(vfs->files[fd], offset, whence);
pos               486 source3/torture/cmd_vfs.c 	if (pos == (SMB_OFF_T)-1) {
pos               232 source3/utils/smbget.c 	if(now - start)avg = 1.0 * (pos - start_pos) / (now - start);
pos               233 source3/utils/smbget.c 	eta = (total - pos) / avg;
pos               234 source3/utils/smbget.c 	if(total)prcnt = 100.0 * pos / total;
pos               236 source3/utils/smbget.c 	human_readable(pos, hpos, sizeof(hpos));
pos               348 source4/heimdal/kdc/kerberos4.c 	size_t pos;
pos               407 source4/heimdal/kdc/kerberos4.c 	pos = krb5_storage_seek(sp, ticket_len + req_len, SEEK_CUR);
pos               410 source4/heimdal/kdc/kerberos4.c 	auth.length = pos;
pos                68 source4/heimdal/kdc/krb5tgs.c     int pos;
pos                73 source4/heimdal/kdc/krb5tgs.c     pos = ad->len - 1;
pos                75 source4/heimdal/kdc/krb5tgs.c     if (ad->val[pos].ad_type != KRB5_AUTHDATA_IF_RELEVANT)
pos                78 source4/heimdal/kdc/krb5tgs.c     ret = decode_AuthorizationData(ad->val[pos].ad_data.data,
pos                79 source4/heimdal/kdc/krb5tgs.c 				   ad->val[pos].ad_data.length,
pos               298 source4/heimdal/lib/asn1/gen_decode.c 	int pos = 0;
pos               311 source4/heimdal/lib/asn1/gen_decode.c 	    while (m->val / 8 > pos / 8) {
pos               315 source4/heimdal/lib/asn1/gen_decode.c 		pos += 8;
pos               153 source4/heimdal/lib/asn1/gen_encode.c 	int pos;
pos               168 source4/heimdal/lib/asn1/gen_encode.c 	pos = t->members->prev->val;
pos               170 source4/heimdal/lib/asn1/gen_encode.c 	if (pos > 31)
pos               180 source4/heimdal/lib/asn1/gen_encode.c 	pos = ASN1_TAILQ_LAST(t->members, memhead)->val;
pos               182 source4/heimdal/lib/asn1/gen_encode.c 	    if (pos < 31)
pos               183 source4/heimdal/lib/asn1/gen_encode.c 		pos = 31;
pos               187 source4/heimdal/lib/asn1/gen_encode.c 	    while (m->val / 8 < pos / 8) {
pos               208 source4/heimdal/lib/asn1/gen_encode.c 		pos -= 8;
pos               108 source4/heimdal/lib/asn1/gen_length.c 		int pos = ASN1_TAILQ_LAST(t->members, memhead)->val;
pos               113 source4/heimdal/lib/asn1/gen_length.c 		    while (m->val / 8 < pos / 8) {
pos               114 source4/heimdal/lib/asn1/gen_length.c 			pos -= 8;
pos               118 source4/heimdal/lib/asn1/gen_length.c 			     name, m->gen_name, variable, (pos + 8) / 8);
pos              2290 source4/heimdal/lib/hcrypto/imath/imath.c   mp_size pos;
pos              2300 source4/heimdal/lib/hcrypto/imath/imath.c   for(pos = 0; pos < size_b; ++pos, ++da, ++db, ++dc) {
pos              2307 source4/heimdal/lib/hcrypto/imath/imath.c   for(/* */; pos < size_a; ++pos, ++da, ++dc) {
pos              2325 source4/heimdal/lib/hcrypto/imath/imath.c   mp_size pos;
pos              2332 source4/heimdal/lib/hcrypto/imath/imath.c   for(pos = 0; pos < size_b; ++pos, ++da, ++db, ++dc) {
pos              2341 source4/heimdal/lib/hcrypto/imath/imath.c   for(/* */; pos < size_a; ++pos, ++da, ++dc) {
pos              2821 source4/heimdal/lib/hcrypto/imath/imath.c   mp_size  tdig = (p2 / MP_DIGIT_BIT), pos;
pos              2827 source4/heimdal/lib/hcrypto/imath/imath.c   for(pos = 0, zp = MP_DIGITS(z); pos < tdig; ++pos, ++zp) {
pos              3280 source4/heimdal/lib/hcrypto/imath/imath.c   int pos = 0, limit = *limpos;
pos              3283 source4/heimdal/lib/hcrypto/imath/imath.c   while(uz > 0 && pos < limit) {
pos              3287 source4/heimdal/lib/hcrypto/imath/imath.c     for(i = sizeof(mp_digit); i > 0 && pos < limit; --i) {
pos              3288 source4/heimdal/lib/hcrypto/imath/imath.c       buf[pos++] = (unsigned char)d;
pos              3302 source4/heimdal/lib/hcrypto/imath/imath.c   if(pad != 0 && (buf[pos - 1] >> (CHAR_BIT - 1))) {
pos              3303 source4/heimdal/lib/hcrypto/imath/imath.c     if(pos < limit)
pos              3304 source4/heimdal/lib/hcrypto/imath/imath.c       buf[pos++] = 0;
pos              3310 source4/heimdal/lib/hcrypto/imath/imath.c   REV(unsigned char, buf, pos);
pos              3313 source4/heimdal/lib/hcrypto/imath/imath.c   *limpos = pos;
pos               320 source4/heimdal/lib/hcrypto/rand-fortuna.c     unsigned		pos;
pos               333 source4/heimdal/lib/hcrypto/rand-fortuna.c 	pos = 0;
pos               335 source4/heimdal/lib/hcrypto/rand-fortuna.c 	pos = get_rand_pool(st);
pos               336 source4/heimdal/lib/hcrypto/rand-fortuna.c     md_update(&st->pool[pos], hash, BLOCK);
pos               338 source4/heimdal/lib/hcrypto/rand-fortuna.c     if (pos == 0)
pos               593 source4/heimdal/lib/krb5/config_file.c 	char *pos = NULL;
pos               597 source4/heimdal/lib/krb5/config_file.c 	s = strtok_r(tmp, " \t", &pos);
pos               607 source4/heimdal/lib/krb5/config_file.c 	    s = strtok_r(NULL, " \t", &pos);
pos               209 source4/heimdal/lib/krb5/fcache.c     off_t pos;
pos               212 source4/heimdal/lib/krb5/fcache.c     pos = lseek(fd, 0, SEEK_END);
pos               213 source4/heimdal/lib/krb5/fcache.c     if (pos < 0)
pos               218 source4/heimdal/lib/krb5/fcache.c     while(pos > 0) {
pos               219 source4/heimdal/lib/krb5/fcache.c         ssize_t tmp = write(fd, buf, min(sizeof(buf), pos));
pos               223 source4/heimdal/lib/krb5/fcache.c 	pos -= tmp;
pos               448 source4/heimdal/lib/krb5/keytab_file.c     off_t pos, curpos;
pos               450 source4/heimdal/lib/krb5/keytab_file.c     pos = krb5_storage_seek(cursor->sp, 0, SEEK_CUR);
pos               456 source4/heimdal/lib/krb5/keytab_file.c 	pos = krb5_storage_seek(cursor->sp, -len, SEEK_CUR);
pos               477 source4/heimdal/lib/krb5/keytab_file.c     if(len + 4 + pos - curpos >= 4) {
pos               483 source4/heimdal/lib/krb5/keytab_file.c     if(start) *start = pos;
pos               484 source4/heimdal/lib/krb5/keytab_file.c     if(end) *end = pos + 4 + len;
pos               486 source4/heimdal/lib/krb5/keytab_file.c     krb5_storage_seek(cursor->sp, pos + 4 + len, SEEK_SET);
pos               239 source4/heimdal/lib/krb5/keytab_keyfile.c     off_t pos;
pos               242 source4/heimdal/lib/krb5/keytab_keyfile.c     pos = krb5_storage_seek(cursor->sp, 0, SEEK_CUR);
pos               244 source4/heimdal/lib/krb5/keytab_keyfile.c     if ((pos - 4) / (4 + 8) >= d->num_entries)
pos               280 source4/heimdal/lib/krb5/keytab_keyfile.c     krb5_storage_seek(cursor->sp, pos + 4 + 8, SEEK_SET);
pos               137 source4/heimdal/lib/krb5/store.c     off_t pos;
pos               141 source4/heimdal/lib/krb5/store.c     pos = sp->seek(sp, 0, SEEK_CUR);
pos               145 source4/heimdal/lib/krb5/store.c 	sp->seek(sp, pos, SEEK_SET);
pos               151 source4/heimdal/lib/krb5/store.c 	sp->seek(sp, pos, SEEK_SET);
pos               110 source4/heimdal/lib/roken/base64.c 	    val += pos(token[i]);
pos                96 source4/heimdal/lib/roken/hex.c 	p[0] = pos(str[0]);
pos               101 source4/heimdal/lib/roken/hex.c 	p[i] = pos(str[i * 2]) << 4 | pos(str[(i * 2) + 1]);
pos               131 source4/torture/rpc/eventlog.c 		uint32_t pos = 0;
pos               161 source4/torture/rpc/eventlog.c 		size = IVAL(r.out.data, pos);
pos               165 source4/torture/rpc/eventlog.c 			blob = data_blob_const(r.out.data + pos, size);
pos               179 source4/torture/rpc/eventlog.c 			pos += size;
pos               181 source4/torture/rpc/eventlog.c 			if (pos + 4 > *r.out.sent_size) {
pos               185 source4/torture/rpc/eventlog.c 			size = IVAL(r.out.data, pos);
pos                61 source4/torture/smb2/persistent_handles.c 	uint64_t pos;
pos               112 source4/torture/smb2/persistent_handles.c 	pos = qfinfo.position_information.out.position;
pos               114 source4/torture/smb2/persistent_handles.c 			(unsigned long long)pos);
pos               129 source4/torture/smb2/persistent_handles.c 	pos = qfinfo.position_information.out.position;
pos               131 source4/torture/smb2/persistent_handles.c 			(unsigned long long)pos);
pos               172 source4/torture/smb2/persistent_handles.c 	pos = qfinfo.position_information.out.position;
pos               174 source4/torture/smb2/persistent_handles.c 			(unsigned long long)pos);