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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/stdlib/
a64l.c 23 long value, digit, shift; local in function:__weak_alias
29 shift = 0;
40 value |= digit << shift;
41 shift += 6;
a64l.c 23 long value, digit, shift; local in function:__weak_alias
29 shift = 0;
40 value |= digit << shift;
41 shift += 6;
  /src/share/examples/rump/ukbd_read/
kbd.c 48 #define SHIFT (-0x20)
54 int shift = 0; local in function:main
75 shift = 0;
80 shift = SHIFT;
94 printf(" (%c)", wev->value - 0x04 + 'a' + shift);
kbd.c 48 #define SHIFT (-0x20)
54 int shift = 0; local in function:main
75 shift = 0;
80 shift = SHIFT;
94 printf(" (%c)", wev->value - 0x04 + 'a' + shift);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatunditf.c 31 // Shift a into the significand field and clear the implicit bit.
32 const int shift = significandBits - exponent; local in function:__floatunditf
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 in function:__floatunsidf
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 in function:__floatunsitf
33 result = (rep_t)a << shift ^ implicitBit;
floatunditf.c 31 // Shift a into the significand field and clear the implicit bit.
32 const int shift = significandBits - exponent; local in function:__floatunditf
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 in function:__floatunsidf
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 in function:__floatunsitf
33 result = (rep_t)a << shift ^ implicitBit;
floatditf.c 40 // Shift a into the significand field, rounding if it is a right-shift
41 const int shift = significandBits - exponent; local in function:__floatditf
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 in function:__floatsidf
45 result = (rep_t)(unsigned int)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 in function:__floatsisf
44 result = (rep_t)a << shift ^ implicitBit;
46 const int shift = exponent - significandBits; local in function:__floatsisf
47 result = (rep_t)a >> shift ^ implicitBit;
48 rep_t round = (rep_t)a << (typeWidth - shift);
floatsitf.c 40 // Shift a into the significand field and clear the implicit bit.
41 const int shift = significandBits - exponent; local in function:__floatsitf
42 result = (rep_t)aAbs << shift ^ implicitBit;
floatunsisf.c 33 // Shift a into the significand field, rounding if it is a right-shift
35 const int shift = significandBits - exponent; local in function:__floatunsisf
36 result = (rep_t)a << shift ^ implicitBit;
38 const int shift = exponent - significandBits; local in function:__floatunsisf
39 result = (rep_t)a >> shift ^ implicitBit;
40 rep_t round = (rep_t)a << (typeWidth - shift);
floatditf.c 40 // Shift a into the significand field, rounding if it is a right-shift
41 const int shift = significandBits - exponent; local in function:__floatditf
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 in function:__floatsidf
45 result = (rep_t)(unsigned int)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 in function:__floatsisf
44 result = (rep_t)a << shift ^ implicitBit;
46 const int shift = exponent - significandBits; local in function:__floatsisf
47 result = (rep_t)a >> shift ^ implicitBit;
48 rep_t round = (rep_t)a << (typeWidth - shift);
floatsitf.c 40 // Shift a into the significand field and clear the implicit bit.
41 const int shift = significandBits - exponent; local in function:__floatsitf
42 result = (rep_t)aAbs << shift ^ implicitBit;
floatunsisf.c 33 // Shift a into the significand field, rounding if it is a right-shift
35 const int shift = significandBits - exponent; local in function:__floatunsisf
36 result = (rep_t)a << shift ^ implicitBit;
38 const int shift = exponent - significandBits; local in function:__floatunsisf
39 result = (rep_t)a >> shift ^ implicitBit;
40 rep_t round = (rep_t)a << (typeWidth - shift);
  /src/sys/arch/i386/pci/
sis85c503.c 150 int shift; local in function:sis85c503_set_intr
158 shift = SIS85C503_CFG_PIRQ_SHIFT(clink);
160 SIS85C503_CFG_PIRQ_INTR_MASK) << shift);
161 reg |= (irq << shift);
sis85c503.c 150 int shift; local in function:sis85c503_set_intr
158 shift = SIS85C503_CFG_PIRQ_SHIFT(clink);
160 SIS85C503_CFG_PIRQ_INTR_MASK) << shift);
161 reg |= (irq << shift);
  /src/lib/libm/src/
s_rintl.c 45 shift[2] = { variable in typeref:typename:const float[2]
81 x += shift[sign];
82 x -= shift[sign];
s_rintl.c 45 shift[2] = { variable in typeref:typename:const float[2]
81 x += shift[sign];
82 x -= shift[sign];
  /src/common/lib/libc/atomic/
atomic_cas_by_cas32.c 51 const size_t shift = off*8; local in function:_atomic_cas_16
52 const uint32_t mask = 0x0ffff << shift;
53 const uint32_t old32_part = (uint32_t)old << shift;
54 const uint32_t new32_part = (uint32_t)new << shift;
60 return (uint16_t)((old32 & mask) >> shift);
75 const size_t shift = off*8; local in function:crt_alias
76 const uint32_t mask = 0x0ff << shift;
77 const uint32_t old32_part = (uint32_t)old << shift;
78 const uint32_t new32_part = (uint32_t)new << shift;
84 return (uint8_t)((old32 & mask) >> shift);
    [all...]

Completed in 32 milliseconds

1 2 3 4 5 6 7 8 91011>>