Searched defs:shift (Results 1 - 9 of 9) sorted by relevance
/ast/src/lib/libast/string/ |
H A D | wc2utf8.c | 39 unsigned short shift; member in struct:Utf8_s 62 *s++ = ops[i].prefix | (w >> ops[i].shift); 63 switch (ops[i].shift)
|
H A D | strtoi.h | 234 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 D | pathnext.c | 36 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 D | sfvscanf.c | 247 /* 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 D | time_t.c | 41 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 D | edit.c | 643 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 D | lex.c | 2153 register int shift = (dp+1-sp); local 2154 offset += shift; 2157 ep = sp - shift;
|
/ast/src/cmd/ksh93/edit/ |
H A D | edit.c | 733 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 D | cx.h | 350 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