HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 1 - 25 of 828) 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/chromium_org/ui/events/keycodes/
keyboard_code_conversion.cc 13 const bool shift = (flags & EF_SHIFT_DOWN) != 0; local
14 const bool upper = shift ^ ((flags & EF_CAPS_LOCK_DOWN) != 0);
22 if (shift) {
23 // following graphics chars require shift key to input.
65 return shift ? ")!@#$%^&*("[key_code - VKEY_0] :
89 return shift ? ':' : ';';
91 return shift ? '+' : '=';
93 return shift ? '<' : ',';
95 return shift ? '_' : '-';
97 return shift ? '>' : '.'
    [all...]
  /external/libunwind/src/mi/
_ReadSLEB.c 6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
14 shift += 7;
19 if (shift < 8 * sizeof (unw_word_t) && (byte & 0x40) != 0)
21 result |= ((unw_word_t) -1) << shift;
_ReadULEB.c 6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
16 shift += 7;
  /external/chromium_org/v8/src/
misc-intrinsics.h 40 int result, shift; local
42 shift = (value > 0xFFFF) << 4;
43 value >>= shift; local
44 result = shift;
46 shift = (value > 0xFF) << 3;
47 value >>= shift; local
48 result |= shift;
50 shift = (value > 0xF) << 2;
51 value >>= shift; local
52 result |= shift;
55 value >>= shift; local
    [all...]
  /external/compiler-rt/lib/builtins/
floatsidf.c 43 // Shift a into the significand field and clear the implicit bit. Extra
46 const int shift = significandBits - exponent; local
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
floatsisf.c 43 // Shift a into the significand field, rounding if it is a right-shift
45 const int shift = significandBits - exponent; local
46 result = (rep_t)a << shift ^ implicitBit;
48 const int shift = exponent - significandBits; local
49 result = (rep_t)a >> shift ^ implicitBit;
50 rep_t round = (rep_t)a << (typeWidth - shift);
floatunsidf.c 35 // Shift a into the significand field and clear the implicit bit.
36 const int shift = significandBits - exponent; local
37 result = (rep_t)a << shift ^ implicitBit;
floatunsisf.c 35 // Shift a into the significand field, rounding if it is a right-shift
37 const int shift = significandBits - exponent; local
38 result = (rep_t)a << shift ^ implicitBit;
40 const int shift = exponent - significandBits; local
41 result = (rep_t)a >> shift ^ implicitBit;
42 rep_t round = (rep_t)a << (typeWidth - shift);
  /art/compiler/dex/quick/arm/
codegen_arm.h 167 int shift);
168 LIR* OpRegRegShift(OpKind op, RegStorage r_dest_src1, RegStorage r_src2, int shift);
208 uint32_t shift; member in struct:art::FINAL::__anon11
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintl.c 44 shift[2] = { variable
80 x += shift[sign];
81 x -= shift[sign];
  /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_org/base/
bits.h 23 int shift = (1 << i); local
24 uint32 x = value >> shift;
27 log += shift;
  /external/chromium_org/pdf/
fading_control.cc 58 double shift = local
60 if (shift > delta)
63 alpha_shift_ = static_cast<int>(ceil(shift));
68 // If disabling, make alpha shift negative.
  /external/chromium_org/third_party/skia/src/core/
SkBitmap_scroll.cpp 26 int shift = this->bytesPerPixel() >> 1; local
83 src -= dx << shift;
86 dst += dx << shift;
96 width <<= shift; // now width is the number of bytes to move per line local
  /external/deqp/framework/delibs/debase/
deInt32.c 131 int shift = deClz32(a); local
132 deUint32 normalized = (deUint32)a << shift; /* Highest bit is always 1. */
154 *exp = 31 - shift;
  /external/fio/lib/
ieee754.c 14 int shift; local
32 shift = 0;
35 shift++;
39 shift--;
47 exp = shift + ((1 << (expbits - 1)) - 1); // shift + bias
56 long long shift; local
70 shift = ((i >> significandbits) & ((1LL << expbits) - 1)) - bias;
71 while (shift > 0) {
73 shift--
    [all...]
  /external/libhevc/common/
ihevc_chroma_itrans_recon.c 92 * @param[in] shift
93 * Output shift
120 WORD32 shift; local
129 shift = IT_SHIFT_STAGE_1;
130 add = 1 << (shift - 1);
153 CLIP_S16(((e[0] + o[0] + add) >> shift));
155 CLIP_S16(((e[1] + o[1] + add) >> shift));
157 CLIP_S16(((e[1] - o[1] + add) >> shift));
159 CLIP_S16(((e[0] - o[0] + add) >> shift));
170 shift = IT_SHIFT_STAGE_2
    [all...]
ihevc_weighted_pred.c 62 * dst = ( (src + lvl_shift) * wgt0 + (1 << (shift - 1)) ) >> shift +
86 * @param[in] shift
90 * added before shift and offset
112 WORD32 shift,
125 i4_tmp += 1 << (shift - 1);
126 i4_tmp = (i4_tmp >> shift) + off0;
145 * dst = ( (src + lvl_shift) * wgt0 + (1 << (shift - 1)) ) >> shift +
169 * @param[in] shift
502 WORD32 shift; local
585 WORD32 shift; local
    [all...]
  /external/libhevc/decoder/
ihevcd_itrans_recon_dc.c 94 WORD32 add, shift; local
102 shift = IT_SHIFT_STAGE_1;
103 add = 1 << (shift - 1);
104 dc_value = CLIP_S16((quant_out * 64 + add) >> shift);
105 shift = IT_SHIFT_STAGE_2;
106 add = 1 << (shift - 1);
107 dc_value = CLIP_S16((dc_value * 64 + add) >> shift);
124 WORD32 add, shift; local
133 shift = IT_SHIFT_STAGE_1;
134 add = 1 << (shift - 1)
    [all...]
  /external/skia/src/core/
SkBitmap_scroll.cpp 26 int shift = this->bytesPerPixel() >> 1; local
83 src -= dx << shift;
86 dst += dx << shift;
96 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:__anon34833
40 int log_lookup(log_table_info *logtab, int operand, int 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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 128 # Shift a token; we're done with it
129 self.shift(type, value, newstate, context)
175 def shift(self, type, value, newstate, context): member in class:Parser
176 """Shift a token. (Internal)"""

Completed in 834 milliseconds

1 2 3 4 5 6 7 8 91011>>