HomeSort by: relevance | last modified time | path
    Searched defs:shift (Results 1 - 25 of 814) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libgcc/soft-fp/
floatbitintbf.c 36 USItype shift = 0; local
41 FP_FROM_BITINT (i, iprec, iv, shift, SI);
44 if (shift)
46 A_e += shift;
floatbitintdf.c 36 USItype shift = 0; local
41 FP_FROM_BITINT (i, iprec, iv, shift, DI);
44 if (shift)
46 A_e += shift;
floatbitinthf.c 36 USItype shift = 0; local
41 FP_FROM_BITINT (i, iprec, iv, shift, SI);
44 if (shift)
46 A_e += shift;
floatbitintsf.c 36 USItype shift = 0; local
41 FP_FROM_BITINT (i, iprec, iv, shift, SI);
44 if (shift)
46 A_e += shift;
floatbitinttf.c 45 USItype shift = 0; local
50 FP_FROM_BITINT (i, iprec, iv, shift, TI);
53 if (shift)
55 A_e += shift;
floatbitintxf.c 46 USItype shift = 0; local
51 FP_FROM_BITINT (i, iprec, iv, shift, TI);
54 if (shift)
56 A_e += shift;
  /src/lib/libc/stdlib/
a64l.c 23 long value, digit, shift; local
29 shift = 0;
40 value |= digit << shift;
41 shift += 6;
  /src/usr.bin/make/unit-tests/
var-op-sunsh.mk 70 # Until 2020-10-04, the word 'shift' was also affected since it starts with
72 VAR.key:shift= Shift macro
73 .if ${${:UVAR.key\:shift}} != "Shift"
  /src/share/examples/rump/ukbd_read/
kbd.c 48 #define SHIFT (-0x20)
54 int shift = 0; local
75 shift = 0;
80 shift = SHIFT;
94 printf(" (%c)", wev->value - 0x04 + 'a' + shift);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatditf.c 40 // Shift a into the significand field, rounding if it is a right-shift
41 const int shift = significandBits - exponent; local
42 result = (rep_t)aAbs << shift ^ implicitBit;
floatsidf.c 41 // Shift a into the significand field and clear the implicit bit. Extra
44 const int shift = significandBits - exponent; local
45 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
floatsitf.c 40 // Shift a into the significand field and clear the implicit bit.
41 const int shift = significandBits - exponent; local
42 result = (rep_t)aAbs << shift ^ implicitBit;
floatunditf.c 31 // Shift a into the significand field and clear the implicit bit.
32 const int shift = significandBits - exponent; local
33 result = (rep_t)a << shift ^ implicitBit;
floatunsidf.c 33 // Shift a into the significand field and clear the implicit bit.
34 const int shift = significandBits - exponent; local
35 result = (rep_t)a << shift ^ implicitBit;
floatunsitf.c 31 // Shift a into the significand field and clear the implicit bit.
32 const int shift = significandBits - exponent; local
33 result = (rep_t)a << shift ^ implicitBit;
floatsisf.c 41 // Shift a into the significand field, rounding if it is a right-shift
43 const int shift = significandBits - exponent; local
44 result = (rep_t)a << shift ^ implicitBit;
46 const int shift = exponent - significandBits; local
47 result = (rep_t)a >> shift ^ implicitBit;
48 rep_t round = (rep_t)a << (typeWidth - shift);
floatunsisf.c 33 // Shift a into the significand field, rounding if it is a right-shift
35 const int shift = significandBits - exponent; local
36 result = (rep_t)a << shift ^ implicitBit;
38 const int shift = exponent - significandBits; local
39 result = (rep_t)a >> shift ^ implicitBit;
40 rep_t round = (rep_t)a << (typeWidth - shift);
  /src/lib/libm/src/
s_rintl.c 45 shift[2] = { variable
81 x += shift[sign];
82 x -= shift[sign];
  /src/sys/arch/hpc/stand/hpcboot/mips/
mips_boot.cpp 86 int shift; local
111 shift = 0;
119 shift = 4; // VR41 specific shift. for LockPages()
143 _cons, pagesz, shift);
  /src/sys/arch/i386/pci/
sis85c503.c 150 int shift; local
158 shift = SIS85C503_CFG_PIRQ_SHIFT(clink);
160 SIS85C503_CFG_PIRQ_INTR_MASK) << shift);
161 reg |= (irq << shift);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_div_2d.c 20 /* shift right by a certain bit count (store quotient in c, optional remainder in d) */
28 /* if the shift count is <= 0 then we do no work */
55 /* shift by as many digits in the bit count */
60 /* shift any bit count < DIGIT_BIT */
63 register mp_digit *tmpc, mask, shift; local
68 /* shift for lsb */
69 shift = DIGIT_BIT - D;
80 /* shift the current word and mix in the carry bits from the previous word */
81 *tmpc = (*tmpc >> D) | (r << shift);
bn_mp_mul_2d.c 20 /* shift left by a certain bit count */
39 /* shift by as many digits in the bit count */
46 /* shift any bit count < DIGIT_BIT */
49 register mp_digit *tmpc, shift, mask, r, rr; local
55 /* shift for msbs */
56 shift = DIGIT_BIT - d;
65 rr = (*tmpc >> shift) & mask;
67 /* shift the current word and OR in the carry */
  /src/crypto/external/bsd/openssl/dist/ssl/record/
dtls1_bitmap.c 41 unsigned int shift; local
49 shift = -cmp;
50 if (shift >= sizeof(bitmap->map) * 8)
52 else if (bitmap->map & (1UL << shift))
62 unsigned int shift; local
67 shift = cmp;
68 if (shift < sizeof(bitmap->map) * 8)
69 bitmap->map <<= shift, bitmap->map |= 1UL;
74 shift = -cmp;
75 if (shift < sizeof(bitmap->map) * 8
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/ssl/record/
dtls1_bitmap.c 41 unsigned int shift; local
49 shift = -cmp;
50 if (shift >= sizeof(bitmap->map) * 8)
52 else if (bitmap->map & (1UL << shift))
62 unsigned int shift; local
67 shift = cmp;
68 if (shift < sizeof(bitmap->map) * 8)
69 bitmap->map <<= shift, bitmap->map |= 1UL;
74 shift = -cmp;
75 if (shift < sizeof(bitmap->map) * 8
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/
unicode-case-fold.py 50 # Computes the shift (to_char - from_char) in a mapping.
51 def shift(mapping): function
65 # shift and the stride between adjecant mappings (if any) is constant.
86 # above) and modulo of C, return C+shift.
89 if stride(b) == 2 and shift(b[0]) == 1 and modulo == 0:
99 body += pattern.format(last, stride(b), modulo, shift(b[0]))
108 if shift(current_block[0]) != shift(m):
109 # Incompatible shift, start a new block.

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>