Searched refs:adjust (Results 1 - 25 of 32) sorted by relevance

12

/osnet-11/usr/src/lib/libc/port/stdio/
H A Dftell.c55 ptrdiff_t adjust; local
63 adjust = (ptrdiff_t)-iop->_cnt;
65 adjust = 0;
68 adjust = iop->_ptr - iop->_base;
70 adjust = (ptrdiff_t)-iop->_cnt;
79 tres += adjust;
H A Dftello.c63 ptrdiff_t adjust; local
71 adjust = (ptrdiff_t)-iop->_cnt;
73 adjust = 0;
76 adjust = iop->_ptr - iop->_base;
84 tres += (off64_t)adjust;
/osnet-11/usr/src/lib/libc/i386/gen/
H A Dalloca.s36 leal 4(%esp),%eax / adjust, accounting for the "size" arg
/osnet-11/usr/src/cmd/sendmail/db/btree/
H A Dbt_rsearch.c282 __bam_adjust(dbc, adjust)
284 int32_t adjust;
303 adjust, 1)) != 0)
307 GET_BINTERNAL(h, epg->indx)->nrecs += adjust;
309 GET_RINTERNAL(h, epg->indx)->nrecs += adjust;
312 RE_NREC_ADJ(h, adjust);
H A Dbt_curadj.c117 __bam_ca_di(dbp, pgno, indx, adjust)
121 int adjust;
138 cp->indx += adjust;
140 cp->dindx += adjust;
245 * of the time we don't adjust pointers to the left page, because
H A Dbt_split.c776 int adjust, cnt, isbigkey, ret; local
780 adjust = TYPE(pp) == P_LBTREE ? P_INDX : O_INDX;
793 off = NUM_ENT(cp->page) - adjust;
795 off = adjust;
821 top = NUM_ENT(pp) - adjust;
869 off = splitp + cnt * adjust;
877 if (splitp <= (db_indx_t)(cnt * adjust))
879 off = splitp - cnt * adjust;
895 pp->inp[splitp] == pp->inp[splitp - adjust])
897 off = splitp + cnt * adjust;
[all...]
H A Dbt_rec.c660 * Recovery function for the adjust of a count change in an internal
699 GET_BINTERNAL(pagep, argp->indx)->nrecs += argp->adjust;
701 RE_NREC_ADJ(pagep, argp->adjust);
704 GET_RINTERNAL(pagep, argp->indx)->nrecs += argp->adjust;
706 RE_NREC_ADJ(pagep, argp->adjust);
715 GET_BINTERNAL(pagep, argp->indx)->nrecs -= argp->adjust;
717 RE_NREC_ADJ(pagep, argp->adjust);
720 GET_RINTERNAL(pagep, argp->indx)->nrecs -= argp->adjust;
722 RE_NREC_ADJ(pagep, -(argp->adjust));
H A Dbt_cursor.c320 * If the tree has record numbers, we have to adjust the counts.
831 * error, again. Second, we adjust cursors during the split,
1039 * we have to adjust the stack as necessary. If there was only a
1171 db_indx_t adjust, indx; local
1182 adjust = dbp->type == DB_BTREE ? P_INDX : O_INDX;
1186 adjust = O_INDX;
1209 indx += adjust;
1227 adjust = P_INDX;
1245 indx += adjust;
1262 adjust
1284 db_indx_t indx, adjust; local
[all...]
H A Dbtree_auto.c922 fileid, pgno, lsn, indx, adjust, total)
931 int32_t adjust;
952 + sizeof(adjust)
975 memcpy(bp, &adjust, sizeof(adjust));
976 bp += sizeof(adjust);
1027 printf("\tadjust: %ld\n", (long)argp->adjust);
1066 memcpy(&argp->adjust, bp, sizeof(argp->adjust));
1067 bp += sizeof(argp->adjust);
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Dwclib.c341 int adjust=0; local
395 if((cp-start)-adjust > longest)
396 longest = (cp-start)-adjust-1;
400 nchars -= adjust;
401 adjust = 0;
422 adjust += skip;
506 if ((wp->mode&WC_LONGEST) && ((endbuff + 1 - start) - adjust - (lastchar == '\n')) > longest)
507 longest = (endbuff + 1 - start) - adjust - (lastchar == '\n');
514 nchars -= adjust;
H A Ddate.c154 "[i:incremental|adjust?Set the system time in incrementatl adjustments to"
219 settime(void* context, const char* cmd, Time_t now, int adjust, int network) argument
226 if (!adjust && !network)
236 if (adjust)
298 int increment = 0; /* incrementally adjust time */
H A Dls.c335 int adjust; /* key() print with adjustment */ member in struct:__anon1493
749 state.adjust -= (s - p) + i - 2;
806 state.adjust = 0;
807 fill -= sfkeyprintf(sfstdout, lp, state.format, key, NiL) + state.adjust;
850 state.adjust = 2;
852 w = a + state.adjust + 1;
/osnet-11/usr/src/lib/gss_mechs/mech_dh/dh_common/
H A Dgeneric_key.c77 adjust(char *keyout, char *keyin, int keylen) function
161 (void) adjust(secret, xkey, keylen);
167 (void) adjust(public, xkey, keylen);
/osnet-11/usr/src/lib/libnsl/key/
H A Dgen_dhkeys.c47 static void adjust();
90 adjust(keyout, keyin) function
150 (void) adjust(secret, xkey);
152 (void) adjust(public, xkey);
/osnet-11/usr/src/cmd/sendmail/db/db/
H A Ddb_overflow.c256 __db_ovref(dbc, pgno, adjust)
259 int32_t adjust;
273 &LSN(h), 0, dbp->log_fileid, h->pgno, adjust,
276 OV_REF(h) += adjust;
H A Ddb_auto.c613 fileid, pgno, adjust, lsn)
620 int32_t adjust;
639 + sizeof(adjust)
655 memcpy(bp, &adjust, sizeof(adjust));
656 bp += sizeof(adjust);
707 printf("\tadjust: %ld\n", (long)argp->adjust);
743 memcpy(&argp->adjust, bp, sizeof(argp->adjust));
744 bp += sizeof(argp->adjust);
[all...]
H A Ddb_rec.c363 OV_REF(pagep) += argp->adjust;
369 OV_REF(pagep) -= argp->adjust;
/osnet-11/usr/src/cmd/sendmail/db/include/
H A Ddb_auto.h62 int32_t adjust; member in struct:_db_ovref_args
H A Dbtree_auto.h100 int32_t adjust; member in struct:_bam_cadjust_args
/osnet-11/usr/src/lib/libshell/common/edit/
H A Demacs.c186 int adjust,oadjust; local
257 adjust = -1;
314 oadjust = count = adjust;
317 adjust = -1;
436 adjust = ep->mark - i;
440 adjust = i - ep->mark;
548 adjust = 4*count;
608 adjust = escape(ep,out,oadjust);
1393 Then output the character and adjust the screen only.
1446 If not, adjust th
[all...]
/osnet-11/usr/src/lib/libc/capabilities/sun4v-hwcap3/common/
H A Dmemcpy.s297 add %o2, %o3, %o2 ! adjust remaining count
355 subcc %o2, 7, %o2 ! adjust count
364 sub %o2,56,%o2 ! adjust %o2 to -63 off count
623 subcc %o2, 63, %o2 ! adjust length to allow cc test
648 addcc %o2, 32, %o2 ! adjust remaining count
663 addcc %o2, 16, %o2 ! adjust remaining count
707 subcc %o2, 31, %o2 ! adjust length to allow cc test
884 sub %o0, 8, %o0 ! adjust %o0 for ASI alignment
897 add %o0,8+PRE_STORE*64+32, %o0 ! adjust %o0 for ASI
934 sub %o2, 63, %o2 ! adjust lengt
[all...]
H A Dmemset.s233 sub %o5, 8, %o5 ! adjust %o5 for immediate %asi value
/osnet-11/usr/src/lib/libc/capabilities/sun4u-opl/common/
H A Dmemcpy.s151 subcc %o2, 31, %o2 ! adjust length to allow cc test
170 addcc %o2, 16, %o2 ! adjust remaining count
337 sub %o2, 3, %o2 ! adjust count to allow cc zero test
414 subcc %o2, 7, %o2 ! adjust count to allow zero tst
576 subcc %o2, 15, %o2 ! adjust length to allow cc test
658 subcc %o2, 31, %o2 ! adjust length to allow cc test
677 addcc %o2, 16, %o2 ! adjust remaining count
872 subcc %o2, (16 * BLOCK_SIZE) + 63, %o2 ! adjust length to allow
923 addcc %o2, 32, %o2 ! adjust finish count
938 addcc %o2, 16, %o2 ! adjust remainin
[all...]
/osnet-11/usr/src/lib/libc/sparcv9/gen/
H A Dstrcmp.s96 add %o2, %o3, %o2 ! adjust pointers
/osnet-11/usr/src/lib/libpp/common/
H A Dppcontrol.c2295 long adjust; local
2303 if (adjust = (np - op))
2309 ip->control += adjust;

Completed in 49 milliseconds

12