Lines Matching refs:sc
80 static int eshift (short unsigned int *x, int sc);
2506 eshift (short unsigned int *x, int sc) in eshift() argument
2511 if (sc == 0) in eshift()
2517 if (sc < 0) in eshift()
2519 sc = -sc; in eshift()
2520 while (sc >= 16) in eshift()
2524 sc -= 16; in eshift()
2527 while (sc >= 8) in eshift()
2531 sc -= 8; in eshift()
2534 while (sc > 0) in eshift()
2538 sc -= 1; in eshift()
2543 while (sc >= 16) in eshift()
2546 sc -= 16; in eshift()
2549 while (sc >= 8) in eshift()
2552 sc -= 8; in eshift()
2555 while (sc > 0) in eshift()
2558 sc -= 1; in eshift()
2578 int sc; in enormlz() local
2580 sc = 0; in enormlz()
2590 sc += 16; in enormlz()
2594 if (sc > NBITS) in enormlz()
2595 return (sc); in enormlz()
2601 sc += 8; in enormlz()
2607 sc += 1; in enormlz()
2608 if (sc > (NBITS + 16)) in enormlz()
2611 return (sc); in enormlz()
2614 return (sc); in enormlz()
2623 sc -= 8; in enormlz()
2628 sc -= 1; in enormlz()
2630 if (sc < -NBITS) in enormlz()
2633 return (sc); in enormlz()
2636 return (sc); in enormlz()