Searched defs:shift (Results 401 - 425 of 657) sorted by relevance

<<11121314151617181920>>

/external/pixman/pixman/
H A Dpixman-matrix.c290 int shift = 32 - count_leading_zeros (hi32divbits); local
291 fixed_64_16_to_int128 (divint, divfrac, &hi, &div, 16 - shift);
293 fixed_64_16_to_int128 (tmp[0][0], tmp[0][1], &hi, &lo, 32 - shift);
297 fixed_64_16_to_int128 (tmp[1][0], tmp[1][1], &hi, &lo, 32 - shift);
/external/qemu/audio/
H A Daudio_int.h64 int shift; member in struct:audio_pcm_info
/external/qemu/block/
H A Draw-posix.c318 int size, ret, shift, sum; local
327 shift = offset & 0x1ff;
328 size = (shift + count + 0x1ff) & ~0x1ff;
331 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, size);
335 size = 512 - shift;
338 memcpy(buf, s->aligned_buf + shift, size);
406 int size, ret, shift, sum; local
414 shift = offset & 0x1ff;
415 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, 512);
419 size = 512 - shift;
[all...]
/external/qemu/target-arm/
H A Dop_helper.c40 int shift; local
44 for (shift = 0; shift < 32; shift += 8) {
45 index = (ireg >> shift) & 0xff;
48 val |= tmp << shift;
50 val |= def & (0xff << shift);
200 static inline uint32_t do_ssat(CPUARMState *env, int32_t val, int shift) argument
205 top = val >> shift;
206 mask = (1u << shift)
218 do_usat(CPUARMState *env, int32_t val, int shift) argument
234 ssat(CPUARMState *env, uint32_t x, uint32_t shift) argument
240 ssat16(CPUARMState *env, uint32_t x, uint32_t shift) argument
250 usat(CPUARMState *env, uint32_t x, uint32_t shift) argument
256 usat16(CPUARMState *env, uint32_t x, uint32_t shift) argument
378 int shift = i & 0xff; local
386 int shift = i & 0xff; local
394 int shift = i & 0xff; local
402 int shift = i & 0xff; local
418 int shift = i & 0xff; local
434 int shift = i & 0xff; local
447 int shift1, shift; local
[all...]
/external/skia/src/core/
H A DSkScan_AntiPath.cpp568 static int overflows_short_shift(int value, int shift) { argument
569 const int s = 16 + shift;
575 when left-shifted by shift?
577 static int rect_overflows_short_shift(SkIRect rect, int shift) { argument
/external/skia/src/ports/
H A DSkFontHost_FreeType_common.cpp287 int shift = 7; local
288 for (int i = 0; i < leftOverBits; ++i, --shift) {
289 bits |= convert_8_to_1(*src++) << shift;
554 funcs.shift = 0;
/external/strace/
H A Dtime.c422 int shift; member in struct:__anon31370
445 tprintf(", shift=%d, stabil=%d, jitcnt=%d",
446 tx.shift, tx.stabil, tx.jitcnt);
488 tprintf(", shift=%d, stabil=%ld, jitcnt=%ld",
489 tx.shift, (long) tx.stabil, (long) tx.jitcnt);
/external/svox/pico/lib/
H A Dpicosig2.c533 picoos_int32 *D, K2, shift; local
548 shift = 27 - scmeanMGC;
549 K2 = 1 << shift;
553 XXr[nI] = c1[nI] << shift;
3649 corresponding bit shift: 5
4028 /* shift previous excitation window by hop samples*/
/external/valgrind/main/none/tests/ppc32/
H A Dtest_dfp1.c394 int shift = 0; local
411 *hex_fpscr_in = (i << shift);
419 *hex_fpscr_out &= (max_rm - 1) << shift;
420 expected_val = i << shift;
422 *hex_fpscr_out &= BFP_MAX_RM | ((max_rm - 1) << shift);
423 expected_val = (i << shift) | BFP_MAX_RM;
433 shift = 32;
H A Dtest_dfp2.c112 static void _test_dscri (int shift) argument
114 switch(shift) {
131 printf(" dscri, unsupported shift case %d\n", shift);
135 static void _test_dscli (int shift) argument
137 switch(shift) {
154 printf(" dscli, unsupported shift case %d\n", shift);
179 static void _test_dscriq (int shift) argument
181 switch(shift) {
199 _test_dscliq(int shift) argument
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dtest_dfp1.c394 int shift = 0; local
411 *hex_fpscr_in = (i << shift);
419 *hex_fpscr_out &= (max_rm - 1) << shift;
420 expected_val = i << shift;
422 *hex_fpscr_out &= BFP_MAX_RM | ((max_rm - 1) << shift);
423 expected_val = (i << shift) | BFP_MAX_RM;
433 shift = 32;
H A Dtest_dfp2.c112 static void _test_dscri (int shift) argument
114 switch(shift) {
131 printf(" dscri, unsupported shift case %d\n", shift);
135 static void _test_dscli (int shift) argument
137 switch(shift) {
154 printf(" dscli, unsupported shift case %d\n", shift);
179 static void _test_dscriq (int shift) argument
181 switch(shift) {
199 _test_dscliq(int shift) argument
[all...]
/external/webp/src/enc/
H A Dpicture_csp.c126 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { argument
127 const int v = base_value << shift; // final uplifted value
140 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { argument
141 return (int)(base_value << shift);
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp86 //Gets a non-negative right bit shift to operate as a logarithmic divisor
204 inline void inner_swap_loop(RandomAccessIter * bins, const RandomAccessIter & nextbinstart, unsigned ii, right_shift &shift
209 for(RandomAccessIter * target_bin = (bins + (shift(*current, log_divisor) - div_min)); target_bin != local_bin;
210 target_bin = bins + (shift(*current, log_divisor) - div_min)) {
213 RandomAccessIter * b_bin = bins + (shift(*b, log_divisor) - div_min);
232 inline void swap_loop(RandomAccessIter * bins, RandomAccessIter & nextbinstart, unsigned ii, right_shift &shift
236 inner_swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, ii, shift, log_divisor, div_min);
243 , std::vector<size_t> &bin_sizes, right_shift shift, compare comp)
249 unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(shift(*max, 0)) - (shift(*mi
242 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
290 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
347 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
356 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
377 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
387 integer_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
419 find_extremes(RandomAccessIter current, RandomAccessIter last, div_type & max, div_type & min, right_shift shift) argument
583 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
632 negative_float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
766 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift) argument
850 float_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset , std::vector<size_t> &bin_sizes, right_shift shift, compare comp) argument
943 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift) argument
952 float_Sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp) argument
982 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift) argument
991 float_sort(RandomAccessIter first, RandomAccessIter last, right_shift shift, compare comp) argument
[all...]
/external/aac/libAACenc/src/
H A Daacenc_tns.cpp600 int shift = 0; local
601 FIXP_DBL tmp = invSqrtNorm2(value,&shift);
604 *sc += (2*shift);
1309 const INT shift = lpcGainFactor + 1; /* +1, because fMultDiv2 */
1344 signal[j] = (tmp<<shift) + signal[j];
/external/chromium_org/chrome/browser/ui/views/omnibox/
H A Domnibox_view_views.cc690 // into view and shift the contents jarringly.
705 const bool shift = event.IsShiftDown(); local
718 if (shift && model()->popup_model()->IsOpen())
734 if (control || alt || shift)
739 if (control || alt || shift)
750 if (shift && !control && !read_only()) {
/external/chromium_org/content/public/test/
H A Dbrowser_test_utils.cc311 bool shift,
315 web_contents, key_code, NULL, control, shift, alt, command);
322 bool shift,
340 if (shift) {
398 if (shift) {
308 SimulateKeyPress(WebContents* web_contents, ui::KeyboardCode key_code, bool control, bool shift, bool alt, bool command) argument
318 SimulateKeyPressWithCode(WebContents* web_contents, ui::KeyboardCode key_code, const char* code, bool control, bool shift, bool alt, bool command) argument
/external/chromium_org/ppapi/examples/ime/
H A Dime.cc306 void KeyLeft(bool shift) { argument
310 if (!shift && HasSelection())
314 // Move the anchor if the shift key is not pressed.
315 if (!shift)
320 void KeyRight(bool shift) { argument
324 if (!shift && HasSelection())
328 // Move the anchor if the shift key is not pressed.
329 if (!shift)
630 bool shift = ev.GetModifiers() & PP_INPUTEVENT_MODIFIER_SHIFTKEY; local
633 it->KeyLeft(shift);
[all...]
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftimage.h681 /* shift :: The shift that is applied to coordinates before they */
685 /* are sent to the emitter, but after the shift. */
693 /* x' = (x << shift) - delta */
694 /* y' = (x << shift) - delta */
697 /* Set the values of `shift' and `delta' to~0 to get the original */
707 int shift; member in struct:FT_Outline_Funcs_
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-gsub-table.hh508 unsigned int shift = _hb_ctz (lookup_mask); local
509 unsigned int alt_index = ((lookup_mask & glyph_mask) >> shift);
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dmain_wnd.cc554 bool shift = ((::GetAsyncKeyState(VK_SHIFT) & 0x8000) != 0); local
555 UINT next_cmd = shift ? GW_HWNDPREV : GW_HWNDNEXT;
556 UINT loop_around_cmd = shift ? GW_HWNDLAST : GW_HWNDFIRST;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dbitstream.c166 unsigned int shift; local
203 shift = vp8_norm[range];
204 range <<= shift; local
205 count += shift;
209 int offset = shift - count;
231 shift = count;
236 lowvalue <<= shift; local
268 shift = vp8_norm[range];
269 range <<= shift; local
270 count += shift;
301 lowvalue <<= shift; local
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Denc.c261 int size, int round, int shift) {
271 DC = (DC + round) >> shift;
275 DC = (DC + round) >> shift;
259 DCMode(uint8_t* dst, const uint8_t* left, const uint8_t* top, int size, int round, int shift) argument
/external/chromium_org/third_party/libxml/src/
H A DdebugXML.c43 char shift[101]; /* used for indenting */ member in struct:_xmlDebugCtxt
71 ctxt->shift[i] = ' ';
72 ctxt->shift[100] = 0;
144 fprintf(ctxt->output, "%s", &ctxt->shift[100 - 2 * ctxt->depth]);
146 fprintf(ctxt->output, "%s", ctxt->shift);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.c125 int shift, i; local
139 shift = 0;
143 shift = 2;
146 shift = 8;
150 shift = 10;
154 shift = 0;
159 LLVMConstInt(i32t, shift, 0),

Completed in 8995 milliseconds

<<11121314151617181920>>