HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 151 - 175 of 828) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetEncoder.java 54 private final byte shift; field in class:UTF7StyleCharsetEncoder
73 this.shift = cs.shift();
152 } else if (!base64mode && ch == shift) {
153 out.put(shift);
205 out.put(shift);
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 351 const int shift = (GGL_DITHER_BITS - (sbits-dbits)); local
352 if (shift>0) ADD(AL, 0, ireg, ireg, reg_imm(dither.reg, LSR, shift));
353 else if (shift<0) ADD(AL, 0, ireg, ireg, reg_imm(dither.reg, LSL,-shift));
359 int shift = sh-dbits; local
361 MOV(AL, 0, ireg, reg_imm(s.reg, LSR, shift));
369 MOV(AL, 0, d.reg, reg_imm(s.reg, LSR, shift));
371 ORR(AL, 0, d.reg, d.reg, reg_imm(s.reg, LSR, shift));
375 int shift = sh-dh local
    [all...]
  /art/runtime/gc/accounting/
space_bitmap-inl.h 110 const size_t shift = CTZ(left_edge); local
111 mirror::Object* obj = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
113 left_edge ^= (static_cast<uword>(1)) << shift;
123 const size_t shift = CTZ(w); local
124 mirror::Object* obj = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
126 w ^= (static_cast<uword>(1)) << shift;
149 const size_t shift = CTZ(right_edge); local
150 mirror::Object* obj = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
152 right_edge ^= (static_cast<uword>(1)) << shift;
  /external/aac/libAACdec/src/
aacdec_pns.cpp 294 int i, shift, sfExponent; local
308 shift = sfExponent - specScale + 1 + noise_e;
311 if (shift>=0) {
312 shift = fixMin( shift, DFRACT_BITS-1 );
314 spec [i] = fMultDiv2 (spec [i], sfMatissa) << shift;
317 shift = fixMin( -shift, DFRACT_BITS-1 );
319 spec [i] = fMultDiv2 (spec [i], sfMatissa) >> shift;
  /external/aac/libFDK/include/
FDK_trigFcts.h 148 int shift = (31-scale-LD-1); local
153 s = ((LONG)residual) >> shift;
155 residual &= ( (1<<shift) - 1 );
  /external/aac/libSYS/src/
wav_file.cpp 486 int shift; local
495 shift = (nBufBits-nSigBits)-(32-bps);
499 shift += 8;
502 if (shift < 0)
503 tmp >>= -shift;
505 tmp <<= shift; local
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager.cc 149 int shift = std::min(intersect.height(), local
151 if (shift > 0) {
152 gfx::Point origin(window->bounds().x(), window->bounds().y() - shift);
  /external/chromium_org/chrome/browser/devtools/
devtools_network_interceptor.cc 140 int64_t shift = ticks % length; local
143 (ticks / length) * kPacketSize + (i < shift ? kPacketSize : 0));
146 throttled_transactions_.begin() + shift, throttled_transactions_.end());
  /external/chromium_org/chrome/browser/extensions/
extension_action.cc 43 color_utils::HSL shift = {-1, 0, 0.5}; variable
45 SkBitmapOperations::CreateHSLShiftedBitmap(icon_rep.sk_bitmap(), shift),
  /external/chromium_org/chrome/browser/
process_info_snapshot_mac.cc 89 int shift = 0; local
92 shift = 0;
96 shift = 1;
99 shift = 2;
102 shift = 3;
105 shift = 4;
108 shift = 5;
111 shift = 6;
118 for (int i = 0; i < shift; i++)
  /external/chromium_org/chrome/common/extensions/
command.cc 190 bool shift = (modifiers & ui::EF_SHIFT_DOWN) != 0; local
192 // We support Ctrl+foo, Alt+foo, Ctrl+Shift+foo, Alt+Shift+foo, but not
193 // Ctrl+Alt+foo and not Shift+foo either. For a more detailed reason why we
196 // On Mac Command can also be used in combination with Shift or on its own,
199 (shift && !ctrl && !alt && !command)) {
212 (shift || ctrl || alt || command)) {
  /external/chromium_org/net/spdy/
hpack_input_stream.cc 78 size_t shift = 0; local
79 while (has_more && (shift < 32)) {
85 uint32 addend = next_octet << shift;
87 if ((addend >> shift) != next_octet) {
91 shift += 7;
143 // Shift byte remainder to most-signifcant bits of |new_bits|.
146 // Shift bits to the most-significant open bits of |out|.
  /external/chromium_org/remoting/codec/
audio_encoder_opus_unittest.cc 24 // Phase shift between left and right channels.
43 // small changes (e.g. one sample shift between signals).
51 // defines frequency of the signal. |channel| is used to calculate phase shift
88 // This function returns the approximate shift in samples by finding the first
104 // phase shift from the original signal, then calculates standard deviation of
110 double shift = EstimateSignalShift(received_data); local
115 GetSampleValue(rate, frequency_hz, i - shift, 0);
118 GetSampleValue(rate, frequency_hz, i - shift, 1);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLTexture.cpp 302 int shift = (1 << ii); local
303 GLsizei x = (value >> shift);
306 log += shift;
  /external/chromium_org/third_party/freetype/src/base/
fttrigon.c 118 FT_Int shift; local
124 shift = FT_MSB( FT_ABS( x ) | FT_ABS( y ) );
126 if ( shift <= FT_TRIG_SAFE_MSB )
128 shift = FT_TRIG_SAFE_MSB - shift;
129 vec->x = (FT_Pos)( (FT_ULong)x << shift );
130 vec->y = (FT_Pos)( (FT_ULong)y << shift );
134 shift -= FT_TRIG_SAFE_MSB;
135 vec->x = x >> shift;
136 vec->y = y >> shift;
365 FT_Int shift; local
402 FT_Int shift; local
438 FT_Int shift; local
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-map-private.hh 49 unsigned int shift; member in struct:hb_ot_map_t::feature_map_t
80 inline hb_mask_t get_mask (hb_tag_t feature_tag, unsigned int *shift = NULL) const {
82 if (shift) *shift = map ? map->shift : 0;
  /external/chromium_org/third_party/libevent/
event_tagging.c 150 int count = 0, shift = 0, done = 0; local
154 number |= (lower & 0x7f) << shift;
155 shift += 7;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_format_yuv.c 82 * Avoid shift with per-element count.
100 LLVMValueRef shift; local
101 shift = LLVMBuildMul(builder, i, lp_build_const_int_vec(gallivm, type, 16), "");
102 shift = LLVMBuildAdd(builder, shift, lp_build_const_int_vec(gallivm, type, 8), "");
103 *y = LLVMBuildLShr(builder, packed, shift, "");
150 * Avoid shift with per-element count.
167 LLVMValueRef shift; local
168 shift = LLVMBuildMul(builder, i, lp_build_const_int_vec(gallivm, type, 16), "");
169 *y = LLVMBuildLShr(builder, packed, shift, "");
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 538 int shift = 3 - emit.current_node; local
541 code->code_addr[shift + i] = code->code_addr[i];
542 for(i = 0; i < shift; ++i)
  /external/chromium_org/third_party/mesa/src/src/glx/
XF86dri.c 199 int shift = 32; /* var to prevent warning on next line */ local
200 *hSAREA |= ((drm_handle_t) rep.hSAREAHigh) << shift;
506 * backwards compatibility (Because of the >> 2 shift) but the fix
575 int shift = 32; /* var to prevent warning on next line */ local
576 *hFrameBuffer |= ((drm_handle_t) rep.hFrameBufferHigh) << shift;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pixeltransfer.c 192 * Apply color index shift and offset to an array of pixels.
198 GLint shift = ctx->Pixel.IndexShift; local
201 if (shift > 0) {
203 indexes[i] = (indexes[i] << shift) + offset;
206 else if (shift < 0) {
207 shift = -shift;
209 indexes[i] = (indexes[i] >> shift) + offset;
222 * Apply color index shift, offset and table lookup to an array
245 * Apply stencil index shift, offset and table lookup to an arra
254 GLint shift = ctx->Pixel.IndexShift; local
    [all...]
texenv.c 352 GLuint shift; local
355 shift = 0;
358 shift = 1;
361 shift = 2;
371 if (texUnit->Combine.ScaleShiftRGB == shift)
374 texUnit->Combine.ScaleShiftRGB = shift;
377 if (texUnit->Combine.ScaleShiftA == shift)
380 texUnit->Combine.ScaleShiftA = shift;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plhash.h 87 PRUint32 shift; /* multiplicative hash shift */ member in struct:PLHashTable
  /external/chromium_org/third_party/opus/src/celt/
entenc.c 215 int shift; local
218 shift=EC_SYM_BITS-_nbits;
219 mask=((1<<_nbits)-1)<<shift;
222 _this->buf[0]=(unsigned char)((_this->buf[0]&~mask)|_val<<shift);
226 _this->rem=(_this->rem&~mask)|_val<<shift;
231 (opus_uint32)_val<<(EC_CODE_SHIFT+shift);
mdct.c 106 const opus_val16 *window, int overlap, int shift, int stride)
115 N >>= shift; local
176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]);
177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]);
185 opus_fft(l->kfft[shift], (kiss_fft_cpx *)f, (kiss_fft_cpx *)f2);
198 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]);
199 yi = S_MUL(fp[0],t[(N4-i)<<shift]) - S_MUL(fp[1],t[i<<shift])
220 N >>= shift; local
    [all...]

Completed in 1438 milliseconds

1 2 3 4 5 67 8 91011>>