HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 301 - 325 of 412) sorted by null

<<11121314151617

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DefaultSoftKeyboardJAJP.java 330 /* Keyboard[# of Languages][portrait/landscape][# of keyboard type][shift off/on][max # of key-modes][noinput/input] */
692 /* update shift key's state */
1185 int shift = getShiftKeyState(mWnn.getCurrentInputEditorInfo()); local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 58 /** A private area code(ALT+SHIFT+X) to be ignore (G1 specific). */
87 /** SHIFT key state */
89 /** SHIFT key state (pressing) */
99 /** Shift lock toggle definition */
251 * Get the shift key state from the editor.
255 * @return State ID of the shift key (0:off, 1:on)
506 /* update shift/alt state */
632 int shift = (mAutoCaps) ? getShiftKeyState(edit) : 0; local
633 if (shift != mHardShift && (key >= KeyEvent.KEYCODE_A && key <= KeyEvent.KEYCODE_Z)) {
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
sockets.c 340 int shift = 4*ndigits; local
343 while (shift >= 0) {
344 buf = format_char(buf, end, hex[(val >> shift) & 15]);
345 shift -= 4;
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.cpp 566 const int shift = fragment.h <= 8 ? 0 : fragment.h-8; local
571 if (shift) {
573 reg_imm(mAlphaSource.reg, LSR, shift));
580 if (shift) {
582 reg_imm(fragment.reg, LSR, shift));
587 mAlphaSource.s -= shift;
700 const int shift = GGL_COLOR_BITS-fragment.size(); local
702 if (shift) CMP(AL, fragment.reg, reg_imm(ref, LSR, shift));
902 int shift = rot + bitpos local
    [all...]
  /system/core/libpixelflinger/
trap.cpp 696 const int shift = TRI_ITERATORS_BITS - TRI_FRACTION_BITS; local
701 edge->x = (x1 << shift) + (1LU << (TRI_ITERATORS_BITS-1));
882 const int shift = FIXED_BITS - TRI_FRACTION_BITS; local
885 edge->x = x1 << shift;
1002 const int32_t shift = TRI_FRACTION_BITS + TRI_ITERATORS_BITS - FIXED_BITS; local
1006 GGLfixed l_min = gglMulAddx(left->x_incr, y - left->y_top, left->x, shift);
1013 GGLfixed r_min = gglMulAddx(right->x_incr, y - right->y_top, right->x, shift);
    [all...]
  /external/aac/libSBRdec/src/
env_calc.cpp 889 int shift = fixMin(DFRACT_BITS-1,(int)(h_sbr_cal_env->filtBufferNoise_e - noise_e)); local
894 int shift = fixMin(DFRACT_BITS-1,-(int)(h_sbr_cal_env->filtBufferNoise_e - noise_e)); local
938 int shift = (int) (noise_e - final_e); local
1346 SCHAR shift; local
1468 SCHAR shift, sum_e; local
1792 int shift = (int) (scale_change+1); local
1821 int shift = (int) (scale_change+1); local
1966 int shift; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 1872 int shift; local
    [all...]
  /external/freetype/src/cff/
cffgload.c 951 FT_Int shift = 16; local
987 shift = 0;
992 val <<= shift;
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 1465 int shift; local
    [all...]
  /external/icu4c/i18n/
smpdtfmt.cpp 1221 int32_t shift = numLen - 6; local
    [all...]
usearch.cpp 481 * Initializing shift tables, with the default values.
482 * If a corresponding default value is 0, the shift table is not set.
483 * @param shift table for forwards shift
484 * @param backshift table for backwards shift
492 inline void setShiftTable(int16_t shift[], int16_t backshift[],
498 // estimate the value to shift. to do that we estimate the smallest
504 shift[count] = defaultforward;
510 shift[hash(cetable[count])] = temp > 1 ? temp : 1;
512 shift[hash(cetable[cesize])] = 1
748 int32_t shift = pattern->shift[hash(ce)]; local
1989 int32_t shift = strsrch->pattern.backShift[hash(ce)]; local
3385 UBool shift; local
    [all...]
  /external/libpng/
pngrutil.c 2548 int shift; local
2602 int shift; local
2654 int shift; local
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 377 uintptr_t shift = 0; local
383 result |= (byte & 0x7f) << shift;
384 shift += 7;
401 uintptr_t shift = 0; local
407 result |= (byte & 0x7f) << shift;
408 shift += 7;
414 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) {
415 result |= (~0 << shift);
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 1518 unsigned shift; local
    [all...]
  /external/opencv/cv/src/
cvcalibinit.cpp 1987 const int shift = 0; local
    [all...]
cvhough.cpp 566 const int shift = 16; local
605 dy0 = cvRound( b*(1 << shift)/fabs(a) );
606 y0 = (y0 << shift) + (1 << (shift-1));
612 dx0 = cvRound( a*(1 << shift)/fabs(b) );
613 x0 = (x0 << shift) + (1 << (shift-1));
633 i1 = y >> shift;
637 j1 = x >> shift;
681 i1 = y >> shift;
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 63 int shift, CvPoint offset=cvPoint(0,0) );
70 const void* color, int thickness, int line_type, int shift );
74 const void* color, int line_type, int shift );
988 icvFillConvexPoly( CvMat* img, CvPoint *v, int npts, const void* color, int line_type, int shift )
997 int delta = shift ? 1 << (shift - 1) : 0;
2540 int shift = 0; local
    [all...]
cxmatmul.cpp 1607 CvMat shiftstub, *shift = (CvMat*)shiftvec; local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 1206 int shift = h[1]*(y >> y_shift); local
    [all...]
  /external/qemu/
arm-dis.c 109 %I print cirrus signed shift immediate: bits 0..3|4..6
1600 int shift = (given & 0x60) >> 5; local
2448 unsigned shift; local
3654 unsigned int shift = 0; local
    [all...]
  /external/qemu/audio/
audio.c 709 int bits = 8, sign = 0, shift = 0; local
721 shift = 1;
728 shift = 2;
736 info->shift = (as->nchannels == 2) + shift;
737 info->align = (1 << info->shift) - 1;
738 info->bytes_per_second = info->freq << info->shift;
749 memset (buf, 0x00, len << info->shift);
754 memset (buf, 0x80, len << info->shift);
761 int shift = info->nchannels - 1 local
778 int shift = info->nchannels - 1; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrutil.c 2475 int shift; local
2532 int shift; local
2587 int shift; local
3338 int shift; local
3392 int shift; local
3444 int shift; local
    [all...]
  /external/qemu/target-arm/
neon_helper.c 471 int8_t shift = (int8_t)shiftop; local
472 if (shift >= 64 || shift <= -64) {
474 } else if (shift < 0) {
475 val >>= -shift;
477 val <<= shift; local
501 int8_t shift = (int8_t)shiftop; local
503 if (shift >= 64) {
505 } else if (shift <= -64) {
507 } else if (shift < 0)
510 val <<= shift; local
536 int8_t shift = (int8_t)shiftop; local
552 int8_t shift = (int8_t)shiftop; local
568 val <<= shift; local
595 int8_t shift = (int8_t)shiftop; local
613 int8_t shift = (uint8_t)shiftop; local
631 val <<= shift; local
664 int8_t shift = (int8_t)shiftop; local
676 val <<= shift; local
719 int8_t shift = (uint8_t)shiftop; local
732 val <<= shift; local
822 int8_t shift = (int8_t)shiftop; local
851 int8_t shift = (int8_t)shiftop; local
874 val <<= shift; local
920 int8_t shift = (int8_t)shiftop; local
947 int8_t shift = (uint8_t)shiftop; local
970 val <<= shift; local
    [all...]
  /external/qemu/target-i386/
ops_sse.h 21 #if SHIFT == 0
41 int shift; local
45 #if SHIFT == 1
49 shift = s->B(0);
50 d->W(0) >>= shift;
51 d->W(1) >>= shift;
52 d->W(2) >>= shift;
53 d->W(3) >>= shift;
54 #if SHIFT == 1
55 d->W(4) >>= shift;
65 int shift; local
86 int shift; local
110 int shift; local
130 int shift; local
147 int shift; local
167 int shift; local
185 int shift; local
204 int shift, i; local
217 int shift, i; local
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 760 int* shift) {
776 *shift = s;
822 int shift; local
823 SkDetScalar scale = sk_inv_determinant(fMat, isPersp, &shift);
837 shift = 61 - shift;
838 inv->fMat[kMScaleX] = SkScalarMulShift(SkPerspMul(fMat[kMScaleY], fMat[kMPersp2]) - SkPerspMul(fMat[kMTransY], fMat[kMPersp1]), scale, shift);
839 inv->fMat[kMSkewX] = SkScalarMulShift(SkPerspMul(fMat[kMTransX], fMat[kMPersp1]) - SkPerspMul(fMat[kMSkewX], fMat[kMPersp2]), scale, shift);
840 inv->fMat[kMTransX] = SkScalarMulShift(SkScalarMul(fMat[kMSkewX], fMat[kMTransY]) - SkScalarMul(fMat[kMTransX], fMat[kMScaleY]), scale, shift);
842 inv->fMat[kMSkewY] = SkScalarMulShift(SkPerspMul(fMat[kMTransY], fMat[kMPersp0]) - SkPerspMul(fMat[kMSkewY], fMat[kMPersp2]), scale, shift);
    [all...]

Completed in 1752 milliseconds

<<11121314151617