left              209 lib/popt/popthelp.c     char * left;
left              217 lib/popt/popthelp.c     left = (char *)malloc(nb);
left              218 lib/popt/popthelp.c     if (left == NULL) return;	/* XXX can't happen */
left              219 lib/popt/popthelp.c     left[0] = '\0';
left              220 lib/popt/popthelp.c     left[maxLeftCol] = '\0';
left              223 lib/popt/popthelp.c 	sprintf(left, "-%c, %s%s", opt->shortName,
left              227 lib/popt/popthelp.c 	sprintf(left, "-%c", opt->shortName);
left              229 lib/popt/popthelp.c 	sprintf(left, "%s%s",
left              232 lib/popt/popthelp.c     if (!*left) goto out;
left              235 lib/popt/popthelp.c 	char * le = left + strlen(left);
left              320 lib/popt/popthelp.c 	fprintf(fp,"  %-*s   ", maxLeftCol, left);
left              322 lib/popt/popthelp.c 	fprintf(fp,"  %s\n", left);
left              326 lib/popt/popthelp.c     left = (char *)_free(left);
left              359 lib/popt/popthelp.c     left = (char *)_free(left);
left              412 lib/popt/popthelp.c 		/*@null@*/ poptItem items, int nitems, int left,
left              426 lib/popt/popthelp.c 	    singleOptionHelp(fp, left, opt, translation_domain);
left              439 lib/popt/popthelp.c 		/*@null@*/ const struct poptOption * table, int left,
left              448 lib/popt/popthelp.c 	itemHelp(fp, con->aliases, con->numAliases, left, NULL);
left              449 lib/popt/popthelp.c 	itemHelp(fp, con->execs, con->numExecs, left, NULL);
left              457 lib/popt/popthelp.c 	    singleOptionHelp(fp, left, opt, translation_domain);
left              472 lib/popt/popthelp.c 	singleTableHelp(con, fp, (const struct poptOption *)opt->arg, left, sub_transdom);
left              121 lib/tdb/common/freelist.c 			goto left;
left              128 lib/tdb/common/freelist.c 				goto left;
left              137 lib/tdb/common/freelist.c left:
left              142 lib/tdb/common/freelist.c 		tdb_off_t left = offset - sizeof(tdb_off_t);
left              147 lib/tdb/common/freelist.c 		if (tdb_ofs_read(tdb, left, &leftsize) == -1) {
left              148 lib/tdb/common/freelist.c 			TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_free: left offset read failed at %u\n", left));
left              157 lib/tdb/common/freelist.c 		left = offset - leftsize;
left              160 lib/tdb/common/freelist.c 		    left < TDB_DATA_START(tdb->header.hash_size)) {
left              165 lib/tdb/common/freelist.c 		if (tdb->methods->tdb_read(tdb, left, &l, sizeof(l), DOCONV()) == -1) {
left              166 lib/tdb/common/freelist.c 			TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_free: left read failed at %u (%u)\n", left, leftsize));
left              176 lib/tdb/common/freelist.c 			if (tdb_rec_write(tdb, left, &l) == -1) {
left              177 lib/tdb/common/freelist.c 				TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_free: update_left failed at %u\n", left));
left              180 lib/tdb/common/freelist.c 			if (update_tailer(tdb, left, &l) == -1) {
left               74 lib/util/rbtree.c 	struct rb_node *left = node->rb_left;
left               77 lib/util/rbtree.c 	if ((node->rb_left = left->rb_right))
left               78 lib/util/rbtree.c 		rb_set_parent(left->rb_right, node);
left               79 lib/util/rbtree.c 	left->rb_right = node;
left               81 lib/util/rbtree.c 	rb_set_parent(left, parent);
left               86 lib/util/rbtree.c 			parent->rb_right = left;
left               88 lib/util/rbtree.c 			parent->rb_left = left;
left               91 lib/util/rbtree.c 		root->rb_node = left;
left               92 lib/util/rbtree.c 	rb_set_parent(node, left);
left              257 lib/util/rbtree.c 		struct rb_node *old = node, *left;
left              260 lib/util/rbtree.c 		while ((left = node->rb_left) != NULL)
left              261 lib/util/rbtree.c 			node = left;
left               40 lib/zlib/contrib/blast/blast.c     unsigned left;              /* available input at in */
left               73 lib/zlib/contrib/blast/blast.c         if (s->left == 0) {
left               74 lib/zlib/contrib/blast/blast.c             s->left = s->infun(s->inhow, &(s->in));
left               75 lib/zlib/contrib/blast/blast.c             if (s->left == 0) longjmp(s->env, 1);       /* out of input */
left               78 lib/zlib/contrib/blast/blast.c         s->left--;
left              131 lib/zlib/contrib/blast/blast.c     int left;           /* bits left in next or left to process */
left              135 lib/zlib/contrib/blast/blast.c     left = s->bitcnt;
left              140 lib/zlib/contrib/blast/blast.c         while (left--) {
left              155 lib/zlib/contrib/blast/blast.c         left = (MAXBITS+1) - len;
left              156 lib/zlib/contrib/blast/blast.c         if (left == 0) break;
left              157 lib/zlib/contrib/blast/blast.c         if (s->left == 0) {
left              158 lib/zlib/contrib/blast/blast.c             s->left = s->infun(s->inhow, &(s->in));
left              159 lib/zlib/contrib/blast/blast.c             if (s->left == 0) longjmp(s->env, 1);       /* out of input */
left              162 lib/zlib/contrib/blast/blast.c         s->left--;
left              163 lib/zlib/contrib/blast/blast.c         if (left > 8) left = 8;
left              189 lib/zlib/contrib/blast/blast.c     int left;           /* number of possible codes left of current length */
left              197 lib/zlib/contrib/blast/blast.c         left = (len >> 4) + 1;
left              201 lib/zlib/contrib/blast/blast.c         } while (--left);
left              214 lib/zlib/contrib/blast/blast.c     left = 1;                           /* one possible code of zero length */
left              216 lib/zlib/contrib/blast/blast.c         left <<= 1;                     /* one more bit, double codes left */
left              217 lib/zlib/contrib/blast/blast.c         left -= h->count[len];          /* deduct count from possible codes */
left              218 lib/zlib/contrib/blast/blast.c         if (left < 0) return left;      /* over-subscribed--return negative */
left              235 lib/zlib/contrib/blast/blast.c     return left;
left              385 lib/zlib/contrib/blast/blast.c     s.left = 0;
left              179 lib/zlib/contrib/infback9/infback9.c         if (left == 0) { \
left              181 lib/zlib/contrib/infback9/infback9.c             left = WSIZE; \
left              183 lib/zlib/contrib/infback9/infback9.c             if (out(out_desc, put, (unsigned)left)) { \
left              228 lib/zlib/contrib/infback9/infback9.c     unsigned long left;         /* available output */
left              270 lib/zlib/contrib/infback9/infback9.c     left = WSIZE;
left              334 lib/zlib/contrib/infback9/infback9.c                 if (copy > left) copy = left;
left              338 lib/zlib/contrib/infback9/infback9.c                 left -= copy;
left              487 lib/zlib/contrib/infback9/infback9.c                 left--;
left              546 lib/zlib/contrib/infback9/infback9.c             if (offset > WSIZE - (wrap ? 0: left)) {
left              557 lib/zlib/contrib/infback9/infback9.c                 if (copy < left) {
left              559 lib/zlib/contrib/infback9/infback9.c                     copy = left - copy;
left              563 lib/zlib/contrib/infback9/infback9.c                     copy = left;
left              567 lib/zlib/contrib/infback9/infback9.c                 left -= copy;
left              577 lib/zlib/contrib/infback9/infback9.c             if (left < WSIZE) {
left              578 lib/zlib/contrib/infback9/infback9.c                 if (out(out_desc, window, (unsigned)(WSIZE - left)))
left               46 lib/zlib/contrib/infback9/inftree9.c     int left;                   /* number of prefix codes available */
left              125 lib/zlib/contrib/infback9/inftree9.c     left = 1;
left              127 lib/zlib/contrib/infback9/inftree9.c         left <<= 1;
left              128 lib/zlib/contrib/infback9/inftree9.c         left -= count[len];
left              129 lib/zlib/contrib/infback9/inftree9.c         if (left < 0) return -1;        /* over-subscribed */
left              131 lib/zlib/contrib/infback9/inftree9.c     if (left > 0 && (type == CODES || max != 1))
left              263 lib/zlib/contrib/infback9/inftree9.c             left = (int)(1 << curr);
left              265 lib/zlib/contrib/infback9/inftree9.c                 left -= count[curr + drop];
left              266 lib/zlib/contrib/infback9/inftree9.c                 if (left <= 0) break;
left              268 lib/zlib/contrib/infback9/inftree9.c                 left <<= 1;
left              253 lib/zlib/contrib/puff/puff.c     int left;           /* bits left in next or left to process */
left              257 lib/zlib/contrib/puff/puff.c     left = s->bitcnt;
left              262 lib/zlib/contrib/puff/puff.c         while (left--) {
left              277 lib/zlib/contrib/puff/puff.c         left = (MAXBITS+1) - len;
left              278 lib/zlib/contrib/puff/puff.c         if (left == 0) break;
left              281 lib/zlib/contrib/puff/puff.c         if (left > 8) left = 8;
left              323 lib/zlib/contrib/puff/puff.c     int left;           /* number of possible codes left of current length */
left              335 lib/zlib/contrib/puff/puff.c     left = 1;                           /* one possible code of zero length */
left              337 lib/zlib/contrib/puff/puff.c         left <<= 1;                     /* one more bit, double codes left */
left              338 lib/zlib/contrib/puff/puff.c         left -= h->count[len];          /* deduct count from possible codes */
left              339 lib/zlib/contrib/puff/puff.c         if (left < 0) return left;      /* over-subscribed--return negative */
left              356 lib/zlib/contrib/puff/puff.c     return left;
left              169 lib/zlib/examples/gun.c         left = 0; \
left              201 lib/zlib/examples/gun.c     int left;                   /* bits left in rem */
left              254 lib/zlib/examples/gun.c     left = 7;
left              282 lib/zlib/examples/gun.c         code += (unsigned)last << left;     /* middle (or high) bits of code */
left              283 lib/zlib/examples/gun.c         left += 8;
left              285 lib/zlib/examples/gun.c         if (bits > left) {                  /* need more bits */
left              288 lib/zlib/examples/gun.c             code += (unsigned)last << left; /* high bits of code */
left              289 lib/zlib/examples/gun.c             left += 8;
left              293 lib/zlib/examples/gun.c         left -= bits;                       /* number of unused bits */
left              294 lib/zlib/examples/gun.c         rem = (unsigned)last >> (8 - left); /* unused bits from last byte */
left              171 lib/zlib/examples/gzappend.c     unsigned left;              /* bytes available at next */
left              184 lib/zlib/examples/gzappend.c     in->left = (unsigned)len;
left              196 lib/zlib/examples/gzappend.c #define read1(in) (in->left == 0 ? readmore(in) : 0, \
left              197 lib/zlib/examples/gzappend.c                    in->left--, *(in->next)++)
left              204 lib/zlib/examples/gzappend.c     if (n > in->left) {
left              205 lib/zlib/examples/gzappend.c         n -= in->left;
left              213 lib/zlib/examples/gzappend.c         if (n > in->left)
left              216 lib/zlib/examples/gzappend.c     in->left -= n;
left              259 lib/zlib/examples/gzappend.c     int ret, lastbit, left, full;
left              273 lib/zlib/examples/gzappend.c     gz.left = 0;
left              289 lib/zlib/examples/gzappend.c     lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left;
left              290 lib/zlib/examples/gzappend.c     left = 0;
left              291 lib/zlib/examples/gzappend.c     strm->avail_in = gz.left;
left              299 lib/zlib/examples/gzappend.c             strm->avail_in = gz.left;
left              326 lib/zlib/examples/gzappend.c                 left = strm->data_type & 0x1f;
left              334 lib/zlib/examples/gzappend.c     gz.left = strm->avail_in;
left              338 lib/zlib/examples/gzappend.c     end = lseek(gz.fd, 0L, SEEK_CUR) - gz.left;
left              348 lib/zlib/examples/gzappend.c     if (gz.left || readin(&gz))
left              371 lib/zlib/examples/gzappend.c     if (left) {
left              374 lib/zlib/examples/gzappend.c         deflatePrime(strm, 8 - left, *gz.buf);
left              389 lib/zlib/examples/gzappend.c     unsigned left;
left              425 lib/zlib/examples/gzappend.c             left = CHUNK - strm->avail_out;
left              426 lib/zlib/examples/gzappend.c             while (left) {
left              427 lib/zlib/examples/gzappend.c                 len = write(gd, out + CHUNK - strm->avail_out - left, left);
left              429 lib/zlib/examples/gzappend.c                 left -= (unsigned)len;
left               80 lib/zlib/examples/gzjoin.c     unsigned left;          /* bytes remaining at next */
left              112 lib/zlib/examples/gzjoin.c     in->left = 0;
left              126 lib/zlib/examples/gzjoin.c     if (in->left != 0)
left              130 lib/zlib/examples/gzjoin.c         len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left);
left              133 lib/zlib/examples/gzjoin.c         in->left += (unsigned)len;
left              134 lib/zlib/examples/gzjoin.c     } while (len != 0 && in->left < CHUNK);
left              139 lib/zlib/examples/gzjoin.c #define bget(in) (in->left ? 0 : bload(in), \
left              140 lib/zlib/examples/gzjoin.c                   in->left ? (in->left--, *(in->next)++) : \
left              163 lib/zlib/examples/gzjoin.c     if (skip <= in->left) {
left              164 lib/zlib/examples/gzjoin.c         in->left -= skip;
left              170 lib/zlib/examples/gzjoin.c     skip -= in->left;
left              171 lib/zlib/examples/gzjoin.c     in->left = 0;
left              175 lib/zlib/examples/gzjoin.c         unsigned left;
left              177 lib/zlib/examples/gzjoin.c         left = skip & (CHUNK - 1);
left              178 lib/zlib/examples/gzjoin.c         if (left == 0) {
left              188 lib/zlib/examples/gzjoin.c         lseek(in->fd, skip - left, SEEK_CUR);
left              189 lib/zlib/examples/gzjoin.c         skip = left;
left              194 lib/zlib/examples/gzjoin.c     if (skip > in->left)
left              196 lib/zlib/examples/gzjoin.c     in->left -= skip;
left              255 lib/zlib/examples/gzjoin.c     if (in->left == 0)
left              257 lib/zlib/examples/gzjoin.c     if (in->left == 0)
left              259 lib/zlib/examples/gzjoin.c     strm->avail_in = in->left;
left              321 lib/zlib/examples/gzjoin.c             in->left = 0;
left              362 lib/zlib/examples/gzjoin.c                     in->left = 0;
left              373 lib/zlib/examples/gzjoin.c     in->left = strm.avail_in;
left               88 lib/zlib/examples/zran.c     off_t in, off_t out, unsigned left, unsigned char *window)
left              121 lib/zlib/examples/zran.c     if (left)
left              122 lib/zlib/examples/zran.c         memcpy(next->window, window + WINSIZE - left, left);
left              123 lib/zlib/examples/zran.c     if (left < WINSIZE)
left              124 lib/zlib/examples/zran.c         memcpy(next->window + left, window, WINSIZE - left);
left              122 lib/zlib/infback.c         left = strm->avail_out; \
left              133 lib/zlib/infback.c         strm->avail_out = left; \
left              203 lib/zlib/infback.c         if (left == 0) { \
left              205 lib/zlib/infback.c             left = state->wsize; \
left              206 lib/zlib/infback.c             state->whave = left; \
left              207 lib/zlib/infback.c             if (out(out_desc, put, left)) { \
left              251 lib/zlib/infback.c     unsigned have, left;        /* available input and output */
left              278 lib/zlib/infback.c     left = state->wsize;
left              337 lib/zlib/infback.c                 if (copy > left) copy = left;
left              341 lib/zlib/infback.c                 left -= copy;
left              466 lib/zlib/infback.c             if (have >= 6 && left >= 258) {
left              469 lib/zlib/infback.c                     state->whave = state->wsize - left;
left              501 lib/zlib/infback.c                 left--;
left              561 lib/zlib/infback.c                                                 left : 0)) {
left              572 lib/zlib/infback.c                 if (copy < left) {
left              574 lib/zlib/infback.c                     copy = left - copy;
left              578 lib/zlib/infback.c                     copy = left;
left              582 lib/zlib/infback.c                 left -= copy;
left              592 lib/zlib/infback.c             if (left < state->wsize) {
left              593 lib/zlib/infback.c                 if (out(out_desc, state->window, state->wsize - left))
left              406 lib/zlib/inflate.c         left = strm->avail_out; \
left              417 lib/zlib/inflate.c         strm->avail_out = left; \
left              561 lib/zlib/inflate.c     unsigned have, left;        /* available input and output */
left              585 lib/zlib/inflate.c     out = left;
left              824 lib/zlib/inflate.c                 if (copy > left) copy = left;
left              829 lib/zlib/inflate.c                 left -= copy;
left              951 lib/zlib/inflate.c             if (have >= 6 && left >= 258) {
left             1039 lib/zlib/inflate.c             if (state->offset > state->whave + out - left) {
left             1047 lib/zlib/inflate.c             if (left == 0) goto inf_leave;
left             1048 lib/zlib/inflate.c             copy = out - left;
left             1063 lib/zlib/inflate.c             if (copy > left) copy = left;
left             1064 lib/zlib/inflate.c             left -= copy;
left             1072 lib/zlib/inflate.c             if (left == 0) goto inf_leave;
left             1074 lib/zlib/inflate.c             left--;
left             1080 lib/zlib/inflate.c                 out -= left;
left             1086 lib/zlib/inflate.c                 out = left;
left               46 lib/zlib/inftrees.c     int left;                   /* number of prefix codes available */
left              131 lib/zlib/inftrees.c     left = 1;
left              133 lib/zlib/inftrees.c         left <<= 1;
left              134 lib/zlib/inftrees.c         left -= count[len];
left              135 lib/zlib/inftrees.c         if (left < 0) return -1;        /* over-subscribed */
left              137 lib/zlib/inftrees.c     if (left > 0 && (type == CODES || max != 1))
left              270 lib/zlib/inftrees.c             left = (int)(1 << curr);
left              272 lib/zlib/inftrees.c                 left -= count[curr + drop];
left              273 lib/zlib/inftrees.c                 if (left <= 0) break;
left              275 lib/zlib/inftrees.c                 left <<= 1;
left             14831 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->left));
left             14845 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->left));
left             14859 librpc/gen_ndr/ndr_spoolss.c 	ndr_print_uint32(ndr, "left", r->left);
left             1105 librpc/gen_ndr/spoolss.h 	uint32_t left;
left             1116 source3/client/clitar.c 	int offset = 0, left = finfo.size;
left             1136 source3/client/clitar.c 	while (left > 0) {
left             1147 source3/client/clitar.c 		left -= TBLOCK;
left              106 source3/include/ads.h 			uint32 left;
left              115 source3/include/ads.h 			uint32 left;
left              340 source3/include/nt_printing.h 	uint32 left;
left             1534 source3/include/proto.h void string_append(char **left, const char *right);
left             1494 source3/lib/system.c 	size_t ent_size, left = size;
left             1506 source3/lib/system.c 		if (left >= ent_size) {
left             1510 source3/lib/system.c 		    left -= ent_size;
left             1532 source3/lib/system.c 		    if (left >= ent_size) {
left             1536 source3/lib/system.c 			left -= ent_size;
left             2059 source3/lib/util_str.c void string_append(char **left, const char *right)
left             2063 source3/lib/util_str.c 	if (*left == NULL) {
left             2064 source3/lib/util_str.c 		*left = (char *)SMB_MALLOC(new_len);
left             2065 source3/lib/util_str.c 		*left[0] = '\0';
left             2067 source3/lib/util_str.c 		new_len += strlen(*left);
left             2068 source3/lib/util_str.c 		*left = (char *)SMB_REALLOC(*left, new_len);
left             2071 source3/lib/util_str.c 	if (*left == NULL) {
left             2075 source3/lib/util_str.c 	safe_strcat(*left, right, new_len-1);
left               99 source3/libads/ndr.c 	ndr_print_uint32(ndr, "left", r->ldap.in.left);
left              108 source3/libads/ndr.c 	ndr_print_uint32(ndr, "left", r->ldap.out.left);
left               58 source3/libads/sasl.c 	ads->ldap.out.left = 4 + NTLMSSP_SIG_SIZE + len;
left               92 source3/libads/sasl.c 	ads->ldap.in.left	= dlen;
left              303 source3/libads/sasl.c 	ads->ldap.out.left = 4 + wrapped.length;
left              340 source3/libads/sasl.c 	ads->ldap.in.left	= unwrapped.length;
left               44 source3/libads/sasl_wrapping.c 	ads->ldap.in.left	= 0;
left               80 source3/libads/sasl_wrapping.c 	ads->ldap.in.left	= 0;
left              134 source3/libads/sasl_wrapping.c 	if (ads->ldap.in.needed == 0 && ads->ldap.in.left == 0) {
left              146 source3/libads/sasl_wrapping.c 	if (ads->ldap.in.left > 0) {
left              147 source3/libads/sasl_wrapping.c 		ret = MIN(ads->ldap.in.left, len);
left              150 source3/libads/sasl_wrapping.c 		ads->ldap.in.left -= ret;
left              157 source3/libads/sasl_wrapping.c 		if (ads->ldap.in.left == 0) {
left              176 source3/libads/sasl_wrapping.c 	ads->ldap.out.left	= 0;
left              194 source3/libads/sasl_wrapping.c 	ads->ldap.out.left	= 0;
left              203 source3/libads/sasl_wrapping.c 	if (ads->ldap.out.left == 0) {
left              222 source3/libads/sasl_wrapping.c 		RSIVAL(ads->ldap.out.buf, 0, ads->ldap.out.left - 4);
left              229 source3/libads/sasl_wrapping.c 				    ads->ldap.out.left);
left              232 source3/libads/sasl_wrapping.c 	ads->ldap.out.left -= ret;
left              234 source3/libads/sasl_wrapping.c 	if (ads->ldap.out.left == 0) {
left              251 source3/libads/sasl_wrapping.c 		if (ads->ldap.in.left > 0) {
left              783 source3/printing/nt_printing.c 				 &i, &form.flag, &form.width, &form.length, &form.left,
left              819 source3/printing/nt_printing.c 			       (*list)[i].left, (*list)[i].top, (*list)[i].right,
left              830 source3/printing/nt_printing.c 			       (*list)[i].left, (*list)[i].top, (*list)[i].right,
left              885 source3/printing/nt_printing.c 	(*list)[n].left		= form->area.left;
left              953 source3/printing/nt_printing.c 	(*list)[n].left		= form->area.left;
left              117 source3/registry/reg_backend_printing.c 		data[2] = form->left;
left              142 source3/registry/reg_backend_printing.c 		data[2] = form->left;
left             7000 source3/rpc_server/srv_spoolss_nt.c 	r->area.left	= form->left;
left             2014 source3/rpcclient/cmd_spoolss.c 		info1.area.left		= 0;
left             2027 source3/rpcclient/cmd_spoolss.c 		info2.area.left		= 0;
left             2095 source3/rpcclient/cmd_spoolss.c 	info1.area.left		= 0;
left             2147 source3/rpcclient/cmd_spoolss.c 		r->area.left, r->area.right,
left             2162 source3/rpcclient/cmd_spoolss.c 		r->area.left, r->area.right,
left              204 source4/heimdal/lib/gssapi/krb5/cfx.c     size_t left;
left              214 source4/heimdal/lib/gssapi/krb5/cfx.c     left = len - rrc;
left              226 source4/heimdal/lib/gssapi/krb5/cfx.c 	memmove(data, (u_char *)data + rrc, left);
left              227 source4/heimdal/lib/gssapi/krb5/cfx.c 	memcpy((u_char *)data + left, tmp, rrc);
left              229 source4/heimdal/lib/gssapi/krb5/cfx.c 	memcpy(tmp, (u_char *)data + left, rrc);
left              230 source4/heimdal/lib/gssapi/krb5/cfx.c 	memmove((u_char *)data + rrc, data, left);
left             1116 source4/heimdal/lib/hcrypto/des.c     uint32_t fval, work, right, left;
left             1119 source4/heimdal/lib/hcrypto/des.c     left = block[0];
left             1137 source4/heimdal/lib/hcrypto/des.c 	    left ^= fval;
left             1138 source4/heimdal/lib/hcrypto/des.c 	    work  = (left << 28) | (left >> 4);
left             1144 source4/heimdal/lib/hcrypto/des.c 	    work  = left ^ *keys++;
left             1166 source4/heimdal/lib/hcrypto/des.c 	    left ^= fval;
left             1167 source4/heimdal/lib/hcrypto/des.c 	    work  = (left << 28) | (left >> 4);
left             1174 source4/heimdal/lib/hcrypto/des.c 	    work  = left ^ *keys++;
left             1184 source4/heimdal/lib/hcrypto/des.c     block[1] = left;
left              834 source4/heimdal/lib/hcrypto/evp.c     int ret, left, blocksize;
left              856 source4/heimdal/lib/hcrypto/evp.c     left = blocksize - ctx->buf_len;
left              857 source4/heimdal/lib/hcrypto/evp.c     assert(left > 0);
left              862 source4/heimdal/lib/hcrypto/evp.c 	if (inlen < left) {
left              869 source4/heimdal/lib/hcrypto/evp.c 	memcpy(ctx->buf + ctx->buf_len, in, left);
left              876 source4/heimdal/lib/hcrypto/evp.c 	inlen -= left;
left              877 source4/heimdal/lib/hcrypto/evp.c 	in = ((unsigned char *)in) + left;
left              922 source4/heimdal/lib/hcrypto/evp.c 	int ret, left, blocksize;
left              926 source4/heimdal/lib/hcrypto/evp.c 	left = blocksize - ctx->buf_len;
left              927 source4/heimdal/lib/hcrypto/evp.c 	assert(left > 0);
left              930 source4/heimdal/lib/hcrypto/evp.c 	memset(ctx->buf + ctx->buf_len, 0, left);
left              252 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 			info[i].info1.area.left		= samdb_result_uint(msgs[i], "area-left", 0);
left              313 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		SET_UINT(sptr_db, msg, "area-left", r->in.info.info1->area.left);
left              378 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		SET_UINT(sptr_db, msg, "area-left", r->in.info.info1->area.left);
left              740 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		info->info1.area.left	= samdb_result_uint(msgs[0], "area-left", 0);
left              946 source4/torture/rpc/spoolss.c 	addform.area.left	= 5;