HomeSort by relevance Sort by last modified time
    Searched refs:lshift (Results 1 - 16 of 16) sorted by null

  /external/valgrind/main/VEX/priv/
guest_arm_helpers.c 56 static inline UInt lshift ( UInt x, Int n ) function
81 UInt nf = lshift( res & (1<<31), ARMG_CC_SHIFT_N - 31 );
82 UInt zf = lshift( res == 0, ARMG_CC_SHIFT_Z );
84 UInt cf = lshift( res < argL, ARMG_CC_SHIFT_C );
85 UInt vf = lshift( (res ^ argL) & (res ^ argR),
97 UInt nf = lshift( res & (1<<31), ARMG_CC_SHIFT_N - 31 );
98 UInt zf = lshift( res == 0, ARMG_CC_SHIFT_Z );
100 UInt cf = lshift( argL >= argR, ARMG_CC_SHIFT_C );
101 UInt vf = lshift( (argL ^ argR) & (argL ^ res),
114 UInt nf = lshift( res & (1<<31), ARMG_CC_SHIFT_N - 31 )
    [all...]
guest_amd64_helpers.c 150 static inline Long lshift ( Long x, Int n ) function
201 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
202 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
222 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
223 of = lshift((argL ^ argR) & (argL ^ res), \
247 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
248 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
272 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
273 of = lshift((argL ^ argR) & (argL ^ res), \
289 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80;
    [all...]
guest_x86_helpers.c 112 inline static Int lshift ( Int x, Int n ) function
159 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
160 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
180 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
181 of = lshift((argL ^ argR) & (argL ^ res), \
205 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
206 of = lshift((argL ^ argR ^ -1) & (argL ^ res), \
230 sf = lshift(res, 8 - DATA_BITS) & 0x80; \
231 of = lshift((argL ^ argR) & (argL ^ res), \
247 sf = lshift(CC_DEP1, 8 - DATA_BITS) & 0x80;
    [all...]
  /external/qemu/target-i386/
helper_template.h 65 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
66 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
89 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
90 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
113 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
114 of = lshift((src1 ^ src2) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
138 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
139 of = lshift((src1 ^ src2) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
160 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
180 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80
    [all...]
exec.h 71 static inline target_long lshift(target_long x, int n) function
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 273 int lshift = MAX(0, -rshift); local
293 int pix = ((pix_row[x] + delta) >> rshift) << lshift;
300 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
306 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
335 int lshift = MAX(0, -rshift); local
355 int pix = ((pix_row[x] + delta) >> rshift) << lshift;
362 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
368 int pix = ((pix_row[j] + delta) >> rshift) << lshift;
  /system/core/include/private/pixelflinger/
ggl_fixed.h 116 "adc %[lo], %[lo], %[hi], lsl %[lshift] \n"
118 : "%[x]"(x), [y]"r"(y), [lshift] "I"(32-shift), [rshift] "I"(shift)
124 "adc %[lo], %[lo], %[hi], lsl %[lshift] \n"
126 : "%[x]"(x), [y]"r"(y), [lshift] "r"(32-shift), [rshift] "r"(shift)
139 "add %[lo], %[lo], %[hi], lsl %[lshift] \n"
141 : "%[x]"(x), [y]"r"(y), [a]"r"(a), [lshift] "I"(32-shift), [rshift] "I"(shift)
146 "add %[lo], %[lo], %[hi], lsl %[lshift] \n"
148 : "%[x]"(x), [y]"r"(y), [a]"r"(a), [lshift] "r"(32-shift), [rshift] "r"(shift)
160 "add %[lo], %[lo], %[hi], lsl %[lshift] \n"
162 : "%[x]"(x), [y]"r"(y), [a]"r"(a), [lshift] "I"(32-shift), [rshift] "I"(shift
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h 75 int lshift = 5; local
77 return h1 << lshift ^ h1 >> rshift ^ h2;
encode.h 84 int lshift = x->ilabel % kPrime; local
85 int rshift = sizeof(size_t) - lshift;
86 size_t hash = x->ilabel << lshift;
determinize.h 434 int lshift = element.state_id % kPrime; local
435 int rshift = sizeof(size_t) - lshift;
436 hash ^= element.state_id << lshift ^
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 487 static ALWAYS_INLINE void lshift(BigInt& b, int k) function in namespace:WTF
1025 lshift(bb, bb2);
1029 lshift(bd, bd2);
1031 lshift(bs, bs2);
1050 lshift(delta, Log2P);
    [all...]
  /bionic/libc/stdlib/
strtod.c 816 lshift function
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 965 lshift
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/include/
gmp.h     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]

Completed in 410 milliseconds