/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_libico.cpp | 48 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 51 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 54 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 57 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 60 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 177 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors) = NULL; 276 int shift = 7 - (andPixelNo & 0x7); local 277 int m = 1 << shift; 280 placePixel(pixelNo, buf, xorOffset, x, y, w, bm, alphaByte, m, shift, colors); 295 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors [all...] |
/external/libvorbis/lib/ |
lsp.c | 157 int qexp=0,shift; local 164 if(!(shift=MLOOP_1[(pi|qi)>>25])) 165 if(!(shift=MLOOP_2[(pi|qi)>>19])) 166 shift=MLOOP_3[(pi|qi)>>16]; 167 qi=(qi>>shift)*labs(ilsp[j-1]-wi); 168 pi=(pi>>shift)*labs(ilsp[j]-wi); 169 qexp+=shift; 171 if(!(shift=MLOOP_1[(pi|qi)>>25])) 172 if(!(shift=MLOOP_2[(pi|qi)>>19])) 173 shift=MLOOP_3[(pi|qi)>>16] 188 pi>>=shift; local 189 qi>>=shift; local 205 pi>>=shift; local 206 qi>>=shift; local [all...] |
/external/skia/src/images/ |
SkImageDecoder_libico.cpp | 47 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 50 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 53 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 56 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 59 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors); 177 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors) = NULL; 276 int shift = 7 - (andPixelNo & 0x7); local 277 int m = 1 << shift; 280 placePixel(pixelNo, buf, xorOffset, x, y, w, bm, alphaByte, m, shift, colors); 295 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors [all...] |
/external/tremolo/Tremolo/ |
floor0.c | 201 ogg_int32_t qexp=0,shift; local 237 if(!(shift=MLOOP_1[(pi|qi)>>25])) 238 if(!(shift=MLOOP_2[(pi|qi)>>19])) 239 shift=MLOOP_3[(pi|qi)>>16]; 241 qi=(qi>>shift)*labs(ilsp[j-1]-wi); 242 pi=(pi>>shift)*labs(ilsp[j]-wi); 243 qexp+=shift; 245 if(!(shift=MLOOP_1[(pi|qi)>>25])) 246 if(!(shift=MLOOP_2[(pi|qi)>>19])) 247 shift=MLOOP_3[(pi|qi)>>16] 262 pi>>=shift; local 263 qi>>=shift; local 279 pi>>=shift; local 280 qi>>=shift; local [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/keyboard/ |
keyboard_utils.js | 26 * Converts right/left into tab/shift-tab key events. 46 * Raises tab/shift-tab keyboard events. 49 * @param {boolean} shift True if shift should be on. 52 keyboard.raiseTabKeyEvent_ = function(element, eventType, shift) { 63 shift, // shift 69 * Raises shift+tab keyboard events to focus previous element.
|
/external/chromium_org/ui/aura/test/ |
ui_controls_factory_aurawin.cc | 35 bool shift, 41 window, key, control, shift, alt, base::Closure()); 46 bool shift, 52 return SendKeyPressImpl(window, key, control, shift, alt, task);
|
/external/chromium_org/ui/base/gtk/ |
event_synthesis_gtk.h | 32 bool control, bool shift, bool alt,
|
/external/chromium_org/ui/base/test/ |
ui_controls_internal_win.h | 20 bool shift,
|
/external/iproute2/include/linux/tc_act/ |
tc_pedit.h | 23 __u32 shift; member in struct:tc_pedit_key
|
/packages/apps/Email/src/com/beetstra/jutf7/ |
UTF7Charset.java | 62 * @see com.beetstra.jutf7.UTF7StyleCharset#shift()
64 byte shift() {
method in class:UTF7Charset
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_act/ |
tc_pedit.h | 24 __u32 shift; member in struct:tc_pedit_key
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/ |
tc_pedit.h | 24 __u32 shift; member in struct:tc_pedit_key
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/ |
tc_pedit.h | 24 __u32 shift; member in struct:tc_pedit_key
|
/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/lzma/C/ |
Ppmd.h | 21 #define PPMD_GET_MEAN_SPEC(summ, shift, round) (((summ) + (1 << ((shift) - (round)))) >> (shift))
36 Byte Shift; /* Speed of Freq change; low Shift is for fast change */
37 Byte Count; /* Count to next change of Shift */
40 #define Ppmd_See_Update(p) if ((p)->Shift < PPMD_PERIOD_BITS && --(p)->Count == 0) \
41 { (p)->Summ <<= 1; (p)->Count = (Byte)(3 << (p)->Shift++); }
|
/external/webrtc/src/common_audio/signal_processing/ |
complex_fft.c | 289 int i, j, l, k, istep, n, m, scale, shift; local 310 shift = 0; 316 shift++; 322 shift++; 356 frfi[2 * j] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qr32 - tr32, shift); 357 frfi[2 * j + 1] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qi32 - ti32, shift); 358 frfi[2 * i] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qr32 + tr32, shift); 359 frfi[2 * i + 1] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qi32 + ti32, shift); 410 shift+CIFFTSFT); 412 (qi32 - ti32 + round2), shift + CIFFTSFT) [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
fixed_debug.h | 47 /** 16x32 multiplication, followed by a 16-bit shift right. Results fits in 32 bits */ 137 #define SHR16(a, shift) SHR16_(a, shift, __FILE__, __LINE__) 138 static inline short SHR16_(int a, int shift, char *file, int line) 141 if (!VERIFY_SHORT(a) || !VERIFY_SHORT(shift)) 143 fprintf (stderr, "SHR16: inputs are not short: %d >> %d in %s: line %d\n", a, shift, file, line); 148 res = a>>shift; 159 #define SHL16(a, shift) SHL16_(a, shift, __FILE__, __LINE__) 160 static inline short SHL16_(int a, int shift, char *file, int line [all...] |
/external/speex/libspeex/ |
fixed_debug.h | 103 #define SHR16(a, shift) _SHR16(a, shift, __FILE__, __LINE__) 104 static inline short _SHR16(int a, int shift, char *file, int line) 107 if (!VERIFY_SHORT(a) || !VERIFY_SHORT(shift)) 109 fprintf (stderr, "SHR16: inputs are not short: %d >> %d in %s: line %d\n", a, shift, file, line); 111 res = a>>shift; 117 #define SHL16(a, shift) _SHL16(a, shift, __FILE__, __LINE__) 118 static inline short _SHL16(int a, int shift, char *file, int line) 121 if (!VERIFY_SHORT(a) || !VERIFY_SHORT(shift)) [all...] |
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));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
soc-dapm.h | 73 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \ 77 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 80 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ 83 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \ 86 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, \ 92 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \ 97 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 101 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ 106 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \ 111 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, 260 unsigned char shift; \/* bits to shift *\/ member in struct:snd_soc_dapm_widget [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
soc-dapm.h | 73 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \ 77 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 80 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ 83 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \ 86 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, \ 92 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \ 97 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 101 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ 106 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \ 111 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, 260 unsigned char shift; \/* bits to shift *\/ member in struct:snd_soc_dapm_widget [all...] |
/external/javasqlite/src/main/java/SQLite/ |
StringEncoder.java | 28 * is applied after determining and applying a shift that minimizes 45 // bogus shift, no data 53 // determine shift for minimum number of escapes 54 int shift = 1; local 63 shift = i; 73 out.append((char)shift); 75 // apply shift 76 char c = (char)((a[i] - shift)&0xff); 167 // first element is the shift 170 int shift = s.charAt(i++) local [all...] |
/external/srec/srec/cfront/ |
chelmel4.c | 132 if (channel->shift > 0) 137 SHIFT_DOWN(cepobj->mel_offset[ii], channel->shift)), 138 channel->shift); 145 SHIFT_UP(cepobj->mel_offset[ii], -channel->shift)), 146 channel->shift);
|
/external/srec/srec/clib/ |
matx_ops.c | 76 int ii, jj, shift; local 98 shift = 0; 101 shift++; 105 scale_coef = (1 << shift); 121 return (shift);
|