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

1 2 3 4 5 6 7 8 91011>>

  /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/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/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/srec/srec/cfront/
sh_down.h 35 static PINLINE int fixed_point_convert(float xx, int shift);
36 static PINLINE int shift_up_inline(int value, unsigned int shift);
37 static PINLINE int shift_down_inline(int value, unsigned int shift);
42 static PINLINE int shift_up_inline(int value, unsigned int shift)
44 /* Shift up using bit operations with max limit */
47 ASSERT(shift > 0);
53 retval = temp << shift;
64 static PINLINE int shift_down_inline(int value, unsigned int shift)
65 /* Shift down using bit operations with rounding */
67 if (shift-- == 0
    [all...]
log_tabl.c 61 logtab->shift = (int)(val + 0.5);
84 int log_lookup(log_table_info *logtab, int operand, int shift)
94 shift++;
98 shift++;
102 log_report("tab: %d %d -> %d\n", operand, shift,
103 (int)((shift) *(logtab->shift) + logtab->table[operand]));
105 return ((int)((shift) *(logtab->shift) + logtab->table[operand]));
122 int ii, aa, bb, cc, value, shift; local
    [all...]
  /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/chrome/test/remoting/
key_code_conv.h 18 // 3. The shift state.
21 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationPolicy.cpp 38 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy)
45 if (!newTabModifier && !shift && !alt)
50 if (shift)
55 if (shift)
  /external/aac/libSBRdec/src/
transcendent.h 128 int shift; local
138 shift = (int)(a_e - b_e);
140 shiftAbs = (shift>0)? shift : -shift;
142 shiftedMantissa = (shift>0)? (FX_SGL2FX_DBL(b_m) >> shiftAbs) : (FX_SGL2FX_DBL(a_m) >> shiftAbs);
143 otherMantissa = (shift>0)? FX_SGL2FX_DBL(a_m) : FX_SGL2FX_DBL(b_m);
144 *ptrSum_e = (shift>0)? a_e : b_e;
147 /* shift by 1 bit to avoid overflow */
166 int shift; local
215 int preShift, postShift, index, shift; local
271 int preShift, postShift, index, shift; local
347 int shift = result_e - *destScale; local
    [all...]
  /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/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/chromium_org/chrome/browser/resources/cryptotoken/
b64.js 11 var shift = 0;
17 shift += 8;
18 while (shift >= 6) {
19 var i = (accu >> (shift - 6)) & 63;
21 shift -= 6;
24 if (shift) {
26 shift += 8;
27 var i = (accu >> (shift - 6)) & 63;
39 var shift = 0;
45 shift += 8
    [all...]
  /external/chromium_org/base/
bits.h 23 int shift = (1 << i); local
24 uint32 x = value >> shift;
27 log += shift;
  /external/chromium_org/third_party/brotli/src/woff2/
port.h 33 int shift = (1 << i);
34 uint32 x = value >> shift;
37 log += shift;
  /external/compiler-rt/lib/builtins/arm/
clzsi2.S 39 * if ((r0 >> SHIFT) == 0)
40 * r1 += SHIFT;
42 * r0 >>= SHIFT;
43 * for descending powers of two as SHIFT.
46 #define BLOCK(shift) \
47 lsrs r2, r0, shift; \
49 addeq r1, shift \
  /external/ltrace/sysdeps/linux-gnu/arm/
regs.c 78 uint32_t shift; local
80 if (arm_get_register_offpc(proc, BITS(inst, 8, 11), &shift) < 0)
82 shift &= 0xff;
84 shift = BITS(inst, 7, 11);
96 res = shift >= 32 ? 0 : res << shift;
100 res = shift >= 32 ? 0 : res >> shift;
104 if (shift >= 32)
105 shift = 31
    [all...]
  /system/core/include/private/pixelflinger/
ggl_fixed.h 110 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) CONST;
111 inline GGLfixed gglMulx(GGLfixed x, GGLfixed y, int shift) {
113 if (__builtin_constant_p(shift)) {
118 : "%[x]"(x), [y]"r"(y), [lshift] "I"(32-shift), [rshift] "I"(shift)
126 : "%[x]"(x), [y]"r"(y), [lshift] "r"(32-shift), [rshift] "r"(shift)
133 inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) CONST;
134 inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) {
136 if (__builtin_constant_p(shift)) {
    [all...]
  /external/libhevc/common/mips/
ihevc_platform_macros.h 58 #define SHR_NEG(val,shift) ((shift>0)?(val>>shift):(val<<(-shift)))
59 #define SHL_NEG(val,shift) ((shift<0)?(val>>(-shift)):(val<<shift))
  /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/av/media/libeffects/lvm/lib/Common/src/
Int16LShiftToInt32_16x32.c 31 LVM_INT16 shift )
40 *dst = ( ((LVM_INT32)*src) << shift);
  /packages/apps/Email/src/com/beetstra/jutf7/
ModifiedUTF7Charset.java 45 if (ch == shift())
50 byte shift() { method in class:ModifiedUTF7Charset
  /external/compiler-rt/lib/builtins/
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);
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);
  /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...]

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011>>