Searched defs:shift (Results 1 - 9 of 9) sorted by relevance

/ast/src/lib/libast/string/
H A Dwc2utf8.c39 unsigned short shift; member in struct:Utf8_s
62 *s++ = ops[i].prefix | (w >> ops[i].shift);
63 switch (ops[i].shift)
H A Dstrtoi.h234 register int shift; local
398 shift = base < 4 ? 1 : 2;
400 shift = base < 16 ? 3 : 4;
402 shift = base < 64 ? 5 : 6;
409 n <<= shift;
487 shift = 9;
492 shift = 10;
496 shift = 20;
500 shift = 30;
504 shift
[all...]
/ast/src/cmd/3d/
H A Dpathnext.c36 register int shift; local
51 ep = sp + (shift = strlen(sp));
52 if (!(vpath = search(state.path.table ? state.path.table : &state.vpath, sp, shift, (const char*)visits, T_PREFIX)))
65 shift = vpathlen - (cp - sp);
66 if (shift < 0)
69 * shift left
75 else if (shift > 0)
78 * shift right extra
84 tmp[shift] = *tmp;
85 extra += shift;
[all...]
/ast/src/lib/libast/sfio/
H A Dsfvscanf.c247 /* shift left data so that there will be more room to back up on error.
308 reg int inp, shift, base, width; local
849 shift = 4;
907 shift = base < 4 ? 1 : 2;
909 shift = base < 16 ? 3 : 4;
910 else shift = base < 64 ? 5 : 6;
913 { argv.lu = (argv.lu << shift) + sp[inp];
/ast/src/cmd/dsslib/time_t/
H A Dtime_t.c41 int shift; member in struct:Precise_s
89 precise->shift = 0;
106 precise->shift = 32;
168 if (precise->shift)
169 t = s2n(t, precise->shift);
194 if (precise->shift)
195 t = n2s(t, precise->shift);
420 int shift; local
425 if (shift = ((Precise_t*)r->type->data)->shift)
484 int shift; local
[all...]
/ast/src/cmd/ie/
H A Dedit.c643 register int shift = 7-editb.e_wsize; local
646 strcpy(pp,pp+shift);
647 editb.e_plen -= shift;
1039 /* shift lookahead buffer if necessary */
/ast/src/cmd/ksh93/sh/
H A Dlex.c2153 register int shift = (dp+1-sp); local
2154 offset += shift;
2157 ep = sp - shift;
/ast/src/cmd/ksh93/edit/
H A Dedit.c733 register int shift = 7-ep->e_wsize; local
736 strcpy(pp,pp+shift);
737 ep->e_plen -= shift;
995 /* shift lookahead buffer if necessary */
/ast/src/lib/libdss/
H A Dcx.h350 Cxunsigned_t shift; /* local shift */ member in struct:Cxpart_s
363 Cxunsigned_t shift; /* global shift */ member in struct:Cxmap_s

Completed in 43 milliseconds