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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glx/
XF86dri.c 200 int shift = 32; /* var to prevent warning on next line */ local
201 *hSAREA |= ((drm_handle_t) rep.hSAREAHigh) << shift;
513 * backwards compatibility (Because of the >> 2 shift) but the fix
582 int shift = 32; /* var to prevent warning on next line */ local
583 *hFrameBuffer |= ((drm_handle_t) rep.hFrameBufferHigh) << shift;
  /external/mesa3d/src/intel/vulkan/
anv_nir_lower_multiview.c 104 nir_ssa_def *shift = nir_imul(b, compacted, nir_imm_int(b, 4)); local
111 shifted = nir_ushr(b, nir_imm_int(b, remap), shift);
114 nir_ushr(b, nir_imm_int(b, remap), shift);
117 nir_isub(b, shift, nir_imm_int(b, 32)));
118 shifted = nir_bcsel(b, nir_ilt(b, shift, nir_imm_int(b, 32)),
  /external/mesa3d/src/mesa/main/
pixeltransfer.c 194 * Apply color index shift and offset to an array of pixels.
200 GLint shift = ctx->Pixel.IndexShift; local
203 if (shift > 0) {
205 indexes[i] = (indexes[i] << shift) + offset;
208 else if (shift < 0) {
209 shift = -shift;
211 indexes[i] = (indexes[i] >> shift) + offset;
224 * Apply color index shift, offset and table lookup to an array
247 * Apply stencil index shift, offset and table lookup to an arra
256 GLint shift = ctx->Pixel.IndexShift; local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Huffman.java 186 int shift = 8 - len; local
187 int start = (code << shift) & 0xFF;
188 int end = 1 << shift;
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/framed/
Huffman.java 187 int shift = 8 - len; local
188 int start = (code << shift) & 0xFF;
189 int end = 1 << shift;
  /external/openssh/
bitmap.c 190 size_t i, offset, shift; local
201 shift = ((l + (BITMAP_BYTES - 1)) % BITMAP_BYTES) * 8;
203 b->d[offset] |= (BITMAP_WTYPE)s[i] << shift;
204 if (shift == 0) {
206 shift = BITMAP_BITS - 8;
208 shift -= 8;
  /external/python/cpython2/Parser/
parser.c 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) function
261 /* Shift the token */
262 if ((err = shift(&ps->p_stack, type, str,
264 D(printf(" MemError: shift.\n"));
267 D(printf(" Shift.\n"));
  /external/skia/src/core/
SkAnalyticEdge.cpp 372 int shift = fCurveShift; local
380 newx = oldx + (dx >> shift);
381 newy = oldy + (dy >> shift);
382 if (SkAbs32(dy >> shift) >= SK_Fixed1 * 2) { // only snap when dy is large enough
  /external/skia/tests/
PathCoverageTest.cpp 50 int shift = 30 - SkCLZ(distance); local
52 shift &= ~(shift>>31);
53 if (shift > MAX_COEFF_SHIFT) {
54 shift = MAX_COEFF_SHIFT;
56 return 1 << shift;
  /external/skqp/src/core/
SkAnalyticEdge.cpp 372 int shift = fCurveShift; local
380 newx = oldx + (dx >> shift);
381 newy = oldy + (dy >> shift);
382 if (SkAbs32(dy >> shift) >= SK_Fixed1 * 2) { // only snap when dy is large enough
  /external/skqp/tests/
PathCoverageTest.cpp 50 int shift = 30 - SkCLZ(distance); local
52 shift &= ~(shift>>31);
53 if (shift > MAX_COEFF_SHIFT) {
54 shift = MAX_COEFF_SHIFT;
56 return 1 << shift;
  /external/speex/libspeexdsp/
fftwrap.c 47 int i, shift; local
56 shift=0;
60 shift++;
64 out[i] = SHL16(in[i], shift);
66 return shift;
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len)
74 out[i] = PSHR16(in[i], shift);
326 int shift; local
328 shift = maximize_range(in, in, 32000, t->N);
330 renorm_range(in, in, shift, t->N)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
MachOObject.cpp 365 uint32_t shift = 0; local
368 assert(shift < 64 && "too big for uint64_t");
371 delta |= ((byte & 0x7F) << shift);
372 shift += 7;
379 shift = 0;
  /external/tensorflow/tensorflow/lite/kernels/
kernel_util.cc 27 int32_t* significand, int* shift) {
28 QuantizeMultiplier(effective_output_scale, significand, shift);
30 if (*shift < -31) {
31 // If shift is less than -31, RoundingDivideByPOT fails. This happens when
33 // significand and shift are set to zero.
35 *shift = 0;
42 const TfLiteFusedActivation& activation, int32_t* multiplier, int* shift,
70 // Populate multiplier and shift using affine quantization.
81 int shift; local
82 GuardedQuantizeMultiplier(effective_output_scale, &significand, &shift);
    [all...]
kernel_util_test.cc 230 int shift; local
241 &multiplier, &shift, &output_activation_min, &output_activation_max,
287 int32_t two_pow_neg_31 = 0x30000000; // 2^-31 so shift = -30.
288 int32_t two_pow_neg_32 = 0x2F800000; // 2^-32 so shift = -31.
289 int32_t two_pow_neg_33 = 0x2F000000; // 2^-33 so shift = -32.
339 int shift; local
350 &multiplier, &shift, &output_activation_min, &output_activation_max,
  /external/u-boot/arch/arm/cpu/arm1136/mx31/
generic.c 105 unsigned long reg, shift, tmp; local
108 shift = (~mode & 0x3) * 8;
111 tmp &= ~(0xff << shift);
112 tmp |= ((mode >> IOMUX_MODE_POS) & 0xff) << shift;
  /external/u-boot/cmd/
efi.c 31 int shift; member in struct:attr_info
176 if (attr & (1ULL << mem_attr[j].shift)) {
  /external/u-boot/drivers/i2c/
soft_i2c.c 328 int shift; local
363 shift = (alen-1) * 8;
365 if(write_byte(addr >> shift)) {
369 shift -= 8;
403 int shift, failures = 0; local
414 shift = (alen-1) * 8;
416 if(write_byte(addr >> shift)) {
420 shift -= 8;
  /external/u-boot/drivers/misc/
pca9551_led.c 42 u8 shift, buf; local
49 shift = led << 1;
52 shift = (led - 4) << 1;
59 *state = (buf >> shift) & 0x03;
66 u8 shift, buf, mask; local
73 shift = led << 1;
76 shift = (led - 4) << 1;
78 mask = 0x03 << shift;
84 buf = (buf & ~mask) | ((state & 0x03) << shift);
  /external/u-boot/drivers/pinctrl/nxp/
pinctrl-imx.c 117 * | 0xff | shift | width | select |
121 * We encode the select input value, width and shift of
131 u8 shift = (val >> 16) & 0xff; local
132 u32 mask = ((1 << width) - 1) << shift;
139 val |= select << shift;
  /external/u-boot/include/
spi_flash.h 37 * @shift: Flash shift useful in dual parallel
69 u8 shift; member in struct:spi_flash
  /external/v8/src/
source-position-table.cc 80 int shift = 0; local
87 << shift;
89 shift += ValueBits::kSize;
  /external/vixl/test/aarch32/
test-assembler-cond-rd-memop-rs-shift-amount-1to31-a32.cc 74 ShiftType shift; member in struct:vixl::aarch32::__anon48965::Operands
3633 ShiftType shift = kTests[i].operands.shift; local
    [all...]
test-assembler-cond-rd-memop-rs-shift-amount-1to32-a32.cc 74 ShiftType shift; member in struct:vixl::aarch32::__anon48966::Operands
3633 ShiftType shift = kTests[i].operands.shift; local
    [all...]
test-assembler-cond-rd-rn-operand-rm-shift-amount-1to31-a32.cc 89 ShiftType shift; member in struct:vixl::aarch32::__anon49002::Operands
2663 ShiftType shift = kTests[i].operands.shift; local
    [all...]

Completed in 881 milliseconds

1 2 3 4 5 6 7 8 91011>>