HomeSort by relevance Sort by last modified time
    Searched refs:shift (Results 51 - 75 of 1221) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/mips/
OP_USHR_LONG.S 3 * Long integer shift. This is different from the generic 32/64-bit
4 * binary operations because vAA/vBB are 64-bit but vCC (the shift
6 * 6 bits of the shift distance.
19 srl v1, a1, a2 # rhi<- ahi >> (shift&31)
20 srl v0, a0, a2 # rlo<- alo >> (shift&31)
21 not a0, a2 # alo<- 31-n (shift is 5b)
23 sll a1, a0 # ahi<- ahi << (32-(shift&31))
25 andi a2, 0x20 # shift & 0x20
26 movn v0, v1, a2 # rlo<- rhi (if shift&0x20)
27 movn v1, zero, a2 # rhi<- 0 (if shift&0x20
    [all...]
  /external/qemu/target-arm/
op_helper.c 37 int shift; local
41 for (shift = 0; shift < 32; shift += 8) {
42 index = (ireg >> shift) & 0xff;
45 val |= tmp << shift;
47 val |= def & (0xff << shift);
57 #define SHIFT 0
60 #define SHIFT 1
63 #define SHIFT
388 int shift = i & 0xff; local
396 int shift = i & 0xff; local
404 int shift = i & 0xff; local
412 int shift = i & 0xff; local
428 int shift = i & 0xff; local
444 int shift = i & 0xff; local
457 int shift1, shift; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
boolhuff.h 68 register unsigned int shift; local
91 shift = vp8_norm[range];
93 range <<= shift; local
94 count += shift;
98 int offset = shift - count;
117 shift = count;
122 lowvalue <<= shift; local
  /external/libvpx/libvpx/vp9/encoder/
vp9_boolhuff.h 49 register unsigned int shift; local
71 shift = vp9_norm[range];
73 range <<= shift; local
74 count += shift;
77 int offset = shift - count;
92 shift = count;
97 lowvalue <<= shift; local
  /external/chromium_org/third_party/opus/src/silk/
SigProc_FIX.h 171 /* Compute number of bits to right shift the sum of squares of a vector */
175 opus_int *shift, /* O Number of bits right shift applied to energy */
344 const opus_int scale, /* I number of bits to shift */
466 #define silk_LSHIFT8(a, shift) ((opus_int8)((opus_uint8)(a)<<(shift))) /* shift >= 0, shift < 8 */
467 #define silk_LSHIFT16(a, shift) ((opus_int16)((opus_uint16)(a)<<(shift))) /* shift >= 0, shift < 16 *
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
AESEngine.java 223 private static int shift(int r, int shift) method in class:AESEngine
225 return (r >>> shift) | (r << -shift);
256 return f2 ^ f4 ^ f8 ^ shift(f2 ^ f9, 8) ^ shift(f4 ^ f9, 16) ^ shift(f9, 24);
308 temp = subWord(shift(temp, 8)) ^ rcon[(i / KC)-1];
487 r0 = T0[C0&255] ^ shift(T0[(C1>>8)&255], 24) ^ shift(T0[(C2>>16)&255],16) ^ shift(T0[(C3>>24)&255],8) ^ KW[r][0]
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
dboolhuff.c 42 int shift = VP8_BD_VALUE_SIZE - 8 - (count + 8); local
45 int x = (int)(shift + CHAR_BIT - bits_left);
63 while(shift >= loop_end)
66 value |= (VP8_BD_VALUE)*bufptr << shift;
69 shift -= CHAR_BIT;
dboolhuff.h 87 register unsigned int shift = vp8_norm[range]; local
88 range <<= shift; local
89 value <<= shift; local
90 count -= shift;
  /external/libvpx/libvpx/vp9/decoder/
vp9_dboolhuff.c 44 int shift = BD_VALUE_SIZE - 8 - (count + 8); local
47 const int x = shift + CHAR_BIT - bits_left;
55 while (shift >= loop_end) {
57 value |= (VP9_BD_VALUE)*buffer++ << shift;
58 shift -= CHAR_BIT;
vp9_dboolhuff.h 66 register unsigned int shift = vp9_norm[range]; local
67 range <<= shift; local
68 value <<= shift; local
69 count -= shift;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintl.c 43 shift[2] = { variable
79 x += shift[sign];
80 x -= shift[sign];
  /external/chromium_org/third_party/opus/src/celt/
mdct.h 62 const opus_val16 *window, int overlap, int shift, int stride);
68 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride);
mdct.c 106 const opus_val16 *window, int overlap, int shift, int stride)
115 N >>= shift; local
176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
185 opus_fft(l->kfft[shift], (kiss_fft_cpx *)f, (kiss_fft_cpx *)f2);
198 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]);
199 yi = S_MUL(fp[0],t[(N4-i)<<shift]) - S_MUL(fp[1],t[i<<shift])
220 N >>= shift; local
    [all...]
  /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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vg_context.h 196 const VGfloat shift)
198 coords[0] += shift;
199 coords[2] -= shift;
211 const VGfloat shift)
213 coords[1] += shift;
214 coords[3] -= shift;
225 VGfloat shift[4])
236 shift[0] = 0.f;
237 shift[1] = 0.f;
243 shift[0] = bounds[0] - coords[0]
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
vg_context.h 196 const VGfloat shift)
198 coords[0] += shift;
199 coords[2] -= shift;
211 const VGfloat shift)
213 coords[1] += shift;
214 coords[3] -= shift;
225 VGfloat shift[4])
236 shift[0] = 0.f;
237 shift[1] = 0.f;
243 shift[0] = bounds[0] - coords[0]
    [all...]
  /external/chromium_org/ui/base/test/
ui_controls_aura.cc 23 bool shift,
28 window, key, control, shift, alt, command);
35 bool shift,
41 window, key, control, shift, alt, command, task);
ui_controls_win.cc 22 bool shift,
27 return internal::SendKeyPressImpl(window, key, control, shift, alt,
34 bool shift,
40 return internal::SendKeyPressImpl(window, key, control, shift, alt, task);
  /external/chromium_org/ui/events/keycodes/
keyboard_code_conversion_gtk.cc 55 int GdkKeyCodeForWindowsKeyCode(KeyboardCode keycode, bool shift) {
57 return XKeysymForWindowsKeyCode(keycode, shift);
71 int GdkNativeKeyCodeForWindowsKeyCode(KeyboardCode keycode, bool shift) {
72 int keyval = GdkKeyCodeForWindowsKeyCode(keycode, shift);
keyboard_code_conversion_x.h 27 bool shift);
  /external/clang/test/CodeGen/
mmx-shift-with-immediate.c 4 void shift(__m64 a, __m64 b, int c) { function
  /external/chromium_org/chrome/test/base/
interactive_test_utils.cc 36 bool shift,
42 return SendKeyPressToWindowSync(window, key, control, shift, alt, command);
48 bool shift,
55 window, key, control, shift, alt, command, runner->QuitClosure());
59 window, key, control, shift, alt, command, runner->QuitClosure());
77 bool shift,
84 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
  /external/chromium_org/third_party/skia/include/core/
SkMath.h 23 * Computes (numer1 << shift) / denom in full 64 intermediate precision.
27 int32_t SkDivBits(int32_t numer, int32_t denom, int shift);
154 * Return a*b/((1 << shift) - 1), rounding any fractional bits.
155 * Only valid if a and b are unsigned and <= 32767 and shift is > 0 and <= 8
157 static inline unsigned SkMul16ShiftRound(U16CPU a, U16CPU b, int shift) {
160 SkASSERT(shift > 0 && shift <= 8);
161 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1));
162 return (prod + (prod >> shift)) >> shift;
    [all...]
  /external/chromium_org/ui/base/gtk/
event_synthesis_gtk.cc 43 bool control, bool shift, bool alt,
49 if (shift) {
56 (shift ? GDK_SHIFT_MASK : 0);
61 // TODO(estade): handle other state flags besides control, shift, alt?
64 (shift ? GDK_SHIFT_MASK : 0) |
67 guint gdk_key = GdkKeyCodeForWindowsKeyCode(key, shift);
73 (shift ? GDK_SHIFT_MASK : 0) | GDK_MOD1_MASK;
78 if (shift) {
  /external/skia/include/core/
SkMath.h 23 * Computes (numer1 << shift) / denom in full 64 intermediate precision.
27 int32_t SkDivBits(int32_t numer, int32_t denom, int shift);
154 * Return a*b/((1 << shift) - 1), rounding any fractional bits.
155 * Only valid if a and b are unsigned and <= 32767 and shift is > 0 and <= 8
157 static inline unsigned SkMul16ShiftRound(U16CPU a, U16CPU b, int shift) {
160 SkASSERT(shift > 0 && shift <= 8);
161 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1));
162 return (prod + (prod >> shift)) >> shift;
    [all...]

Completed in 830 milliseconds

1 23 4 5 6 7 8 91011>>