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

1 2 3 4 56 7 8 91011>>

  /external/compiler-rt/lib/
gcc_personality_v0.c 86 uintptr_t shift = 0; local
91 result |= (byte & 0x7f) << shift;
92 shift += 7;
truncdfsf2.c 141 // to get the shift amount for the denormalization.
143 const int shift = srcExpBias - dstExpBias - aExp + 1; local
147 // Right shift by the denormalization amount with sticky.
148 if (shift > srcSigBits) {
151 const bool sticky = significand << (srcBits - shift);
152 src_rep_t denormalizedSignificand = significand >> shift | sticky;
  /external/e2fsprogs/e2fsck/
revoke.c 202 int shift, tmp; local
215 shift = 0;
218 shift++;
219 journal->j_revoke->hash_shift = shift;
  /external/freetype/src/base/
ftbitmap.c 153 FT_Int shift = bit_last & 7; local
154 FT_UInt mask = 0xFF00U >> shift;
163 if ( shift > 0 )
  /external/freetype/src/cff/
cffparse.c 284 FT_Long new_fraction_length, shift; local
290 shift = new_fraction_length - fraction_length;
292 number *= power_tens[shift];
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
AES.java 369 private int shift(int r, int shift) method in class:AES
    [all...]
  /external/grub/stage2/
boot.c 344 int shift = 0; local
349 shift += 10;
351 shift += 10;
353 shift += 10;
359 if (linux_mem_size > (MAXINT >> shift))
362 linux_mem_size <<= shift; local
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 237 int shift = (log2 - DoubleUtils.SIGNIFICAND_BITS) & ~1; // even! local
239 * We have that x / 2^shift < 2^54. Our initial approximation to sqrtFloor(x) will be
240 * 2^(shift/2) * sqrtApproxWithDoubles(x / 2^shift).
242 sqrt0 = sqrtApproxWithDoubles(x.shiftRight(shift)).shiftLeft(shift >> 1);
300 int shift = Long.numberOfTrailingZeros(product); local
301 product >>= shift; local
319 shift += tz;
336 return listProduct(bignums).shiftLeft(shift);
    [all...]
  /external/icu4c/i18n/
usrchimp.h 56 int16_t shift[MAX_TABLE_SIZE_]; member in struct:UPattern
  /external/iproute2/tc/
em_meta.c 33 " META_ID := id [ shift SHIFT ] [ mask MASK ]\n" \
36 " meta(indev shift 1 eq \"ppp\")\n" \
312 if (!bstrcmp(a, "shift")) {
313 unsigned long shift; local
321 shift = bstrtoul(a);
322 if (shift == ULONG_MAX) {
323 PARSE_ERR(a, "meta: invalid shift, must " \
328 obj->shift = (__u8) shift;
    [all...]
m_pedit.c 43 "\t\tATC:= at <atval> offmask <maskval> shift <shiftval>\n "
46 "\t\tNOTE: shiftval is a is a shift value\n "
139 sel->keys[hwm].shift = tkey->shift;
382 /* [at <someval> offmask <maskval> shift <shiftval>] */
385 __u32 atv=0,offmask=0x0,shift=0; local
400 if (get_u32(&shift, *argv, 0))
402 tkey->shift = shift;
  /external/libsepol/src/
avtab.c 304 uint32_t shift = 0; local
313 shift++;
315 if (shift > 2)
316 shift = shift - 2;
317 nslot = 1 << shift;
  /external/libvpx/vp8/decoder/
detokenize.c 91 shift = vp8dx_bitreader_norm[range]; \
92 range <<= shift; \
93 value <<= shift; \
94 count -= shift; \
203 register unsigned int shift; local
reconintra_mt.c 53 int shift; local
79 shift = 3 + x->up_available + x->left_available;
80 expected_dc = (average + (1 << (shift - 1))) >> shift;
184 int shift; local
210 shift = 3 + x->up_available + x->left_available;
211 expected_dc = (average + (1 << (shift - 1))) >> shift;
329 int shift; local
358 shift = 2 + x->up_available + x->left_available
486 int shift; local
    [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 221 assert(j <= i && "Use moveRight shift elements right");
230 assert(i <= j && "Use moveLeft shift elements left");
253 /// shift - Shift elements [i;size) 1 position to the right.
256 void shift(unsigned i, unsigned Size) { function in class:llvm::IntervalMapImpl::NodeBase
649 this->shift(i, Size);
729 this->shift(i, Size);
    [all...]
  /external/mesa3d/src/pixelflinger2/
texture.cpp 113 const unsigned shift = 16; local
117 tc = r * (1 << shift);
119 odd = tc & (1 << shift);
121 tc &= (1 << shift) - 1; // only take mantissa
124 *lerp = tc & ((1 << shift) - 1);
125 tc >>= shift; local
  /external/opencv/cv/src/
cvfilter.cpp 274 int shift = mode == IPL_BORDER_REFLECT_101 ? pix_sz : 0; local
275 idx = k == 0 ? shift : width - shift;
318 int j, dj = 1, shift = border_mode == IPL_BORDER_REFLECT_101; local
320 for( i = top_rows-1, j = top_rows+shift; i >= 0; i-- )
329 j -= 1 + shift;
334 for( i = 0, j = row_count-1-shift; i < bottom_rows; i++, j-- )
    [all...]
  /external/opencv/otherlibs/highgui/
utils.cpp 602 double shift = src_depth == CV_8S || src_depth == CV_16S ? 128 : 0; local
608 cvConvertScale( src, temp, scale, shift );
613 cvConvertScale( src, dst, scale, shift );
  /external/qemu/audio/
wavaudio.c 70 samples = INT_MAX >> hw->info.shift;
73 samples = bytes >> hw->info.shift;
85 dst = advance (wav->pcm_buf, rpos << hw->info.shift);
88 qemu_put_buffer (wav->f, dst, convert_samples << hw->info.shift);
152 wav->pcm_buf = audio_calloc (AUDIO_FUNC, hw->samples, 1 << hw->info.shift);
155 hw->samples << hw->info.shift);
182 uint32_t datalen = wav->total_samples << hw->info.shift;
236 int shift = 0; local
239 result = result | (p[0] << shift);
241 shift += 8
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_bmp.c 263 int shift = (8-ExpandBMP); local
273 *(bits+i) = (pixel>>shift);
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsvideo.c 275 int shift; local
277 for ( shift = 0; (1<<shift) < value; ++shift ) {
280 return(shift);
SDL_gsyuv.c 67 int shift; local
69 for ( shift = 0; (1<<shift) < value; ++shift ) {
72 return(shift);
  /external/skia/bench/
RectBench.cpp 26 RectBench(void* param, int shift, int stroke = 0) : INHERITED(param), fShift(shift), fStroke(stroke) {
34 w >>= shift; local
35 h >>= shift; local
78 OvalBench(void* param, int shift) : RectBench(param, shift) {}
88 RRectBench(void* param, int shift) : RectBench(param, shift) {}
  /external/skia/src/core/
SkEdge.cpp 16 the points into FDot6. This is modulated by the shift parameter, which
20 or pt * 256 for antialiasing. This is implemented as 1 << (shift + 6).
23 or pt >> 8 for antialiasing. This is implemented as pt >> (10 - shift).
29 int shift) {
34 float scale = float(1 << (shift + 6));
40 shift = 10 - shift;
41 x0 = p0.fX >> shift;
42 y0 = p0.fY >> shift;
43 x1 = p1.fX >> shift;
257 int shift = fCurveShift; local
    [all...]
SkPoint.cpp 293 that from overflowing we shift our coordinates down until we are dealing
295 When our square is close to 1.0, we shift x,y down into fixed range.
312 // shift x,y so that the greater of them is 15bits (1.14 fixed point)
314 int shift = SkCLZ(x | y); local
316 x <<= shift - 1;
317 y <<= shift - 1;

Completed in 1801 milliseconds

1 2 3 4 56 7 8 91011>>