HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
mmx-shift-with-immediate.c 4 void shift(__m64 a, __m64 b, int c) { function
  /external/compiler-rt/lib/
floatsidf.c 42 // Shift a into the significand field and clear the implicit bit. Extra
45 const int shift = significandBits - exponent; local
46 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
floatsisf.c 42 // Shift a into the significand field, rounding if it is a right-shift
44 const int shift = significandBits - exponent; local
45 result = (rep_t)a << shift ^ implicitBit;
47 const int shift = exponent - significandBits; local
48 result = (rep_t)a >> shift ^ implicitBit;
49 rep_t round = (rep_t)a << (typeWidth - shift);
floatunsidf.c 34 // Shift a into the significand field and clear the implicit bit.
35 const int shift = significandBits - exponent; local
36 result = (rep_t)a << shift ^ implicitBit;
floatunsisf.c 34 // Shift a into the significand field, rounding if it is a right-shift
36 const int shift = significandBits - exponent; local
37 result = (rep_t)a << shift ^ implicitBit;
39 const int shift = exponent - significandBits; local
40 result = (rep_t)a >> shift ^ implicitBit;
41 rep_t round = (rep_t)a << (typeWidth - shift);
muldf3.c 74 // Get the significand of a*b. Before multiplying the significands, shift
77 // zero. Normalizing this result is just a conditional left-shift by one
98 // simplify the shift logic.
99 const int shift = 1 - productExponent; local
100 if (shift >= typeWidth) return fromRep(productSign);
102 // Otherwise, shift the significand of the result so that the round
104 wideRightShiftWithSticky(&productHi, &productLo, shift);
  /external/v8/src/
misc-intrinsics.h 63 int result, shift; local
65 shift = (value > 0xFFFF) << 4;
66 value >>= shift; local
67 result = shift;
69 shift = (value > 0xFF) << 3;
70 value >>= shift; local
71 result |= shift;
73 shift = (value > 0xF) << 2;
74 value >>= shift; local
75 result |= shift;
78 value >>= shift; local
    [all...]
  /bootable/bootloader/legacy/libboot/
gpio_keypad.c 52 unsigned int shift; local
56 shift = keypad->noutputs * keypad->ninputs;
67 shift--;
69 if(((unsigned)(keypad->state >> shift) ^ (unsigned)keys) & 1) {
72 mapped_key = keypad->key_map[shift];
75 // shift, mapped_key, keys & 1);
  /external/aac/libFDK/src/arm/
scale_arm.cpp 106 /* It performs a fMultDiv2 and increments shift by 1 */
107 int shift = scalefactor + 1; local
110 shift = fixmin_I(shift,(INT)DFRACT_BITS-1);
112 if (shift >= 0)
124 tmp0 <<= shift; local
125 tmp1 <<= shift; local
126 tmp2 <<= shift; local
127 tmp3 <<= shift; local
137 tmp0 <<= shift; local
154 tmp0 >>= shift; local
155 tmp1 >>= shift; local
156 tmp2 >>= shift; local
157 tmp3 >>= shift; local
167 tmp0 >>= shift; local
    [all...]
  /external/chromium/base/
bits.h 24 int shift = (1 << i); local
25 uint32 x = value >> shift;
28 log += shift;
  /external/dropbear/libtommath/
bn_mp_div_2d.c 18 /* shift right by a certain bit count (store quotient in c, optional remainder in d) */
26 /* if the shift count is <= 0 then we do no work */
53 /* shift by as many digits in the bit count */
58 /* shift any bit count < DIGIT_BIT */
61 register mp_digit *tmpc, mask, shift; local
66 /* shift for lsb */
67 shift = DIGIT_BIT - D;
78 /* shift the current word and mix in the carry bits from the previous word */
79 *tmpc = (*tmpc >> D) | (r << shift);
bn_mp_mul_2d.c 18 /* shift left by a certain bit count */
37 /* shift by as many digits in the bit count */
44 /* shift any bit count < DIGIT_BIT */
47 register mp_digit *tmpc, shift, mask, r, rr; local
53 /* shift for msbs */
54 shift = DIGIT_BIT - d;
63 rr = (*tmpc >> shift) & mask;
65 /* shift the current word and OR in the carry */
  /external/skia/src/core/
SkBitmap_scroll.cpp 22 int shift; local
27 shift = 0;
31 shift = 1;
34 shift = 2;
97 src -= dx << shift;
100 dst += dx << shift;
110 width <<= shift; // now width is the number of bytes to move per line local
  /external/srec/srec/include/
log_tabl.h 32 int shift; member in struct:__anon12637
40 int log_lookup(log_table_info *logtab, int operand, int shift);
  /frameworks/av/media/libstagefright/codecs/aacdec/
ps_bstr_decoding.cpp 232 Int32 shift; local
234 shift = ps_dec->noEnv >> 1;
241 (env * ps_dec->noSubSamples) >> shift;
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 121 unsigned shift; local
125 shift = 28;
131 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
132 shift += 7;
169 unsigned shift; local
172 shift = 28;
175 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
176 shift += 7;
191 unsigned shift = 0; local
198 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
212 unsigned shift = 0; local
    [all...]
  /packages/apps/Email/src/com/beetstra/jutf7/
ModifiedUTF7Charset.java 45 if (ch == shift())
50 byte shift() { method in class:ModifiedUTF7Charset
  /external/chromium/chrome/browser/extensions/
extension_icon_manager.cc 116 color_utils::HSL shift = {-1, 0, 0.6}; local
117 result = SkBitmapOperations::CreateHSLShiftedBitmap(result, shift);
  /external/icu4c/layout/
DeviceTables.cpp 33 le_uint16 shift = 16 - (bits * (fieldIndex + 1)); local
34 le_uint16 field = (word >> shift) & fieldMasks[format];
  /external/iproute2/tc/
f_tcindex.c 21 " [ shift SHIFT ]\n");
67 else if (!strcmp(*argv,"shift")) {
68 int shift; local
71 shift = strtoul(*argv,&end,0);
76 addattr_l(n,4096,TCA_TCINDEX_SHIFT,&shift,
77 sizeof(shift));
149 int shift; local
151 if (RTA_PAYLOAD(tb[TCA_TCINDEX_SHIFT]) < sizeof(shift))
153 shift = *(int *) RTA_DATA(tb[TCA_TCINDEX_SHIFT])
    [all...]
  /external/libpng/
pngwtran.c 66 &(png_ptr->shift));
138 int shift, v; local
144 shift = 6;
151 v |= (value << shift);
152 if (shift == 0)
154 shift = 6;
160 shift -= 2;
163 if (shift != 6)
170 int shift, v; local
176 shift = 4
    [all...]
  /external/libvpx/vp8/encoder/
boolhuff.c 83 register unsigned int shift; local
106 shift = norm[range];
108 range <<= shift; local
109 count += shift;
113 int offset = shift - count;
130 shift = count;
135 lowvalue <<= shift; local
  /external/qemu/distrib/libpng-1.2.19/
pngwtran.c 61 &(png_ptr->shift));
132 int shift, v; local
138 shift = 6;
145 v |= (value << shift);
146 if (shift == 0)
148 shift = 6;
154 shift -= 2;
157 if (shift != 6)
164 int shift, v; local
170 shift = 4
    [all...]
  /external/skia/tests/
RegionTest.cpp 14 int shift = 32 - bits; local
15 rect->set(rand.nextU() >> shift, rand.nextU() >> shift,
16 rand.nextU() >> shift, rand.nextU() >> shift);
  /external/speex/libspeex/
lpc.c 138 int shift, ac_shift; local
143 shift = 8;
144 while (shift && ac0<0x40000000)
146 shift--;
162 d = ADD32(d,SHR32(MULT16_16(x[j],x[j-i]), shift));

Completed in 942 milliseconds

1 2 3 4 5 6 7 8 91011>>