HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 1 - 25 of 782) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
mmx-shift-with-immediate.c 4 void shift(__m64 a, __m64 b, int c) { function
attr-target-x86-mmx.c 9 void __attribute__((target("sse"))) shift(__m64 a, __m64 b, int c) { function
  /external/compiler-rt/test/ubsan/TestCases/Misc/
coverage-levels.cc 7 // 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/libunwind/src/mi/
_ReadSLEB.c 6 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;
_ReadULEB.c 6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
16 shift += 7;
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
floatunsidf.c 64 // Shift a into the significand field and clear the implicit bit.
65 const int shift = significandBits - exponent; local
66 result = (rep_t)a << shift ^ implicitBit;
  /external/compiler-rt/lib/builtins/
floatditf.c 40 // 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;
floatsidf.c 43 // Shift a into the significand field and clear the implicit bit. Extra
46 const int shift = significandBits - exponent; local
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
floatsisf.c 43 // 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);
floatsitf.c 40 // Shift a into the significand field and clear the implicit bit.
41 const int shift = significandBits - exponent; local
42 result = (rep_t)aAbs << shift ^ implicitBit;
floatunditf.c 31 // Shift a into the significand field and clear the implicit bit.
32 const int shift = significandBits - exponent; local
33 result = (rep_t)a << shift ^ implicitBit;
floatunsidf.c 35 // Shift a into the significand field and clear the implicit bit.
36 const int shift = significandBits - exponent; local
37 result = (rep_t)a << shift ^ implicitBit;
floatunsisf.c 35 // 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);
floatunsitf.c 31 // Shift a into the significand field and clear the implicit bit.
32 const int shift = significandBits - exponent; local
33 result = (rep_t)a << shift ^ implicitBit;
  /external/libaom/libaom/av1/common/
cdef.h 31 const int shift = AOMMAX(0, damping - get_msb(threshold)); local
33 AOMMIN(abs(diff), AOMMAX(0, threshold - (abs(diff) >> shift)));
  /external/libaom/libaom/av1/encoder/
cost.h 35 // CDF_PROB_TOP, shift would be -1, and "p15 << shift" would be wrong.
38 const int shift = CDF_PROB_BITS - 1 - get_msb(p15); local
39 const int prob = get_prob(p15 << shift, CDF_PROB_TOP);
41 return av1_prob_cost[prob - 128] + av1_cost_literal(shift);
  /external/libnl/lib/route/
pktloc_syntax.y 36 %type <i> mask layer align shift
51 NAME align layer NUMBER mask shift
66 loc->shift = $6;
98 shift: label
  /external/python/cpython2/Demo/turtle/
tdemo_colormixer.py 26 self.ondrag(self.shift)
28 def shift(self, x, y): member in class:ColorTurtle
  /external/python/cpython3/Lib/turtledemo/
colormixer.py 26 self.ondrag(self.shift)
28 def shift(self, x, y): member in class:ColorTurtle
  /external/tensorflow/tensorflow/core/lib/random/
simple_philox.cc 33 const int shift = Rand32() % (max_log + 1); local
34 const uint32 mask = shift == 32 ? ~static_cast<uint32>(0) : (1 << shift) - 1;
  /external/tensorflow/tensorflow/core/lib/wav/
wav_io.h 81 int shift = 0; local
82 for (int i = 0; i < sizeof(T); ++i, shift += 8) {
83 *value = *value | (data_buf[i] << shift);
  /external/u-boot/arch/arm/mach-uniphier/bcu/
bcu-ld4.c 17 int shift; local
26 shift = bd->dram_ch[0].size / 0x04000000 * 4;
27 writel(ch(shift), BCIPPCCHR2); /* 0x80000000-0x9fffffff */
29 shift -= 32;
30 writel(ch(shift), BCIPPCCHR3); /* 0xa0000000-0xbfffffff */
32 shift -= 32;
33 writel(ch(shift), BCIPPCCHR4); /* 0xc0000000-0xdfffffff */
  /external/webrtc/webrtc/base/
bitbuffer.cc 30 uint8_t shift = 8 - static_cast<uint8_t>(bit_count); local
31 uint8_t mask = 0xFF << shift;
32 return (byte & mask) >> shift;
131 // and shift them into the lowest bits.
261 // Subtract what we've written from the bit count, shift it off the value, and
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintl.c 45 shift[2] = { variable
81 x += shift[sign];
82 x -= shift[sign];
  /bionic/linker/
linker_sleb128.h 49 size_t shift = 0; local
57 value |= (static_cast<size_t>(byte & 127) << shift);
58 shift += 7;
61 if (shift < size && (byte & 64)) {
62 value |= -(static_cast<size_t>(1) << shift);

Completed in 749 milliseconds

1 2 3 4 5 6 7 8 91011>>