Searched defs:shift (Results 1 - 25 of 713) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dmmx-shift-with-immediate.c4 void shift(__m64 a, __m64 b, int c) { function
H A Dattr-target-x86-mmx.c9 void __attribute__((target("sse"))) shift(__m64 a, __m64 b, int c) { function
/external/compiler-rt/test/ubsan/TestCases/Misc/
H A Dcoverage-levels.cc7 // RUN: %clangxx -fsanitize=shift -DGOOD_SHIFT=1 -O1 -fsanitize-coverage=func %s -o %t
16 // RUN: %clangxx -fsanitize=shift -O1 -fsanitize-coverage=func %s -o %t
18 // RUN: %clangxx -fsanitize=shift -O1 -fsanitize-coverage=bb %s -o %t
20 // RUN: %clangxx -fsanitize=shift -O1 -fsanitize-coverage=edge %s -o %t
28 int shift = argc * 32; local
30 shift = 3;
32 if ((argc << shift) == 16) // False.
37 // CHECK_WARN: shift exponent 32 is too large
/external/syslinux/com32/lib/
H A Dsuffix_number.c43 int shift; local
48 shift = 10;
51 shift = 20;
54 shift = 30;
57 shift = 40;
60 shift = 50;
63 shift = 60;
66 shift = 0;
69 v <<= shift; local
/external/compiler-rt/lib/builtins/
H A Dfloatsidf.c46 const int shift = significandBits - exponent; local
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
H A Dfloatsisf.c43 // Shift a into the significand field, rounding if it is a right-shift
45 const int shift = significandBits - exponent; local
46 result = (rep_t)a << shift ^ implicitBit;
48 const int shift = exponent - significandBits; local
49 result = (rep_t)a >> shift ^ implicitBit;
50 rep_t round = (rep_t)a << (typeWidth - shift);
H A Dfloatunditf.c32 const int shift = significandBits - exponent; local
33 result = (rep_t)a << shift ^ implicitBit;
H A Dfloatunsidf.c36 const int shift = significandBits - exponent; local
37 result = (rep_t)a << shift ^ implicitBit;
H A Dfloatunsisf.c35 // Shift a into the significand field, rounding if it is a right-shift
37 const int shift = significandBits - exponent; local
38 result = (rep_t)a << shift ^ implicitBit;
40 const int shift = exponent - significandBits; local
41 result = (rep_t)a >> shift ^ implicitBit;
42 rep_t round = (rep_t)a << (typeWidth - shift);
H A Dfloatunsitf.c32 const int shift = significandBits - exponent; local
33 result = (rep_t)a << shift ^ implicitBit;
H A Dfloatditf.c40 // Shift a into the significand field, rounding if it is a right-shift
41 const int shift = significandBits - exponent; local
42 result = (rep_t)aAbs << shift ^ implicitBit;
H A Dfloatsitf.c41 const int shift = significandBits - exponent; local
42 result = (rep_t)aAbs << shift ^ implicitBit;
/external/libnl/lib/route/
H A Dpktloc_syntax.y36 %type <i> mask layer align shift
51 NAME align layer NUMBER mask shift
66 loc->shift = $6;
98 shift: label
/external/libunwind/src/mi/
H A D_ReadSLEB.c6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
14 shift += 7;
19 if (shift < 8 * sizeof (unw_word_t) && (byte & 0x40) != 0)
21 result |= ((unw_word_t) -1) << shift;
H A D_ReadULEB.c6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
16 shift += 7;
/external/freetype/builds/atari/
H A Ddeflinejoiner.awk4 function shift( array, \ function
29 elm = shift( array )
/external/gemmlowp/meta/
H A Dlegacy_operations_common.h22 std::int32_t shift)
27 shift(shift) {}
34 std::int32_t shift; member in class:Quantized8BitOperation
20 Quantized8BitOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, std::int32_t sum_offset, std::int32_t multiplier, std::int32_t shift) argument
/external/libnl/include/netlink/route/
H A Dpktloc.h29 uint8_t shift; member in struct:rtnl_pktloc
/external/libopus/silk/mips/
H A Dsigproc_fix_mipsr1.h42 static inline int silk_LSHIFT_SAT32(int a, int shift) argument
46 r = __builtin_mips_shll_s_w(a, shift);
52 static inline int silk_RSHIFT_ROUND(int a, int shift) argument
56 r = __builtin_mips_shra_r_w(a, shift);
/external/libopus/silk/
H A Dsum_sqr_shift.c34 /* Compute number of bits to right shift the sum of squares of a vector */
38 opus_int *shift, /* O Number of bits right shift applied to energy */
47 /* Do a first run with the maximum shift we could have. */
80 *shift = shft;
36 silk_sum_sqr_shift( opus_int32 *energy, opus_int *shift, const opus_int16 *x, opus_int len ) argument
/external/libvpx/libvpx/vpx_ports/
H A Dbitops.h60 const int shift = (1 << i); local
61 const unsigned int x = value >> shift;
64 log += shift;
/external/python/cpython2/Demo/turtle/
H A Dtdemo_colormixer.py26 self.ondrag(self.shift)
28 def shift(self, x, y): member in class:ColorTurtle
/external/python/cpython2/Lib/lib2to3/pgen2/
H A Dparse.py129 self.shift(type, value, newstate, context)
175 def shift(self, type, value, newstate, context): member in class:Parser
/external/python/cpython3/Lib/lib2to3/pgen2/
H A Dparse.py129 self.shift(type, value, newstate, context)
175 def shift(self, type, value, newstate, context): member in class:Parser
/external/python/cpython3/Lib/turtledemo/
H A Dcolormixer.py26 self.ondrag(self.shift)
28 def shift(self, x, y): member in class:ColorTurtle

Completed in 494 milliseconds

1234567891011>>