Searched defs:shift (Results 176 - 200 of 657) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dapp_result.cc175 const color_utils::HSL shift = {-1, 0, 0.6}; local
176 icon = gfx::ImageSkiaOperations::CreateHSLShiftedImage(icon, shift);
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_icon_source.cc51 color_utils::HSL shift = {-1, 0, 0.6}; local
52 return SkBitmapOperations::CreateHSLShiftedBitmap(*image, shift);
/external/chromium_org/chrome/common/extensions/
H A Dcommand.cc198 bool shift = (modifiers & ui::EF_SHIFT_DOWN) != 0; local
207 (shift && !ctrl && !alt && !command)) {
220 (shift || ctrl || alt || command)) {
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLTexture.cpp308 int shift = (1 << ii); local
309 GLsizei x = (value >> shift);
312 log += shift;
/external/chromium_org/third_party/freetype/src/base/
H A Dftbitmap.c155 FT_Int shift = bit_last & 7; local
156 FT_UInt mask = 0xFF00U >> shift;
165 if ( shift > 0 )
H A Dftcalc.c106 FT_Int shift = 0; local
108 /* determine msb bit index in `shift' */
112 shift += 16;
117 shift += 8;
122 shift += 4;
127 shift += 2;
132 shift += 1;
135 return shift;
463 * However, on a platform where right-shift of a signed quantity fills
482 * It makes the assumption that right-shift o
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-map-private.hh49 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/icu/source/i18n/
H A Dusrchimp.h56 int16_t shift[MAX_TABLE_SIZE_]; member in struct:UPattern
/external/chromium_org/third_party/libevent/
H A Devent_tagging.c150 int count = 0, shift = 0, done = 0; local
154 number |= (lower & 0x7f) << shift;
155 shift += 7;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dintrapred_test.cc99 int sum = 0, shift = BlockSizeLog2Min1() + mbptr_->up_available + local
107 expected = (sum + (1 << (shift - 1))) >> shift;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
H A Dreconintra_neon.c27 int shift = x->up_available + x->left_available; local
30 if (shift) {
48 shift += 3;
49 expected_dc = (average + (1 << (shift - 1))) >> shift;
116 int shift = x->up_available + x->left_available; local
120 if (shift) {
142 shift += 2;
143 expected_udc = (average_u + (1 << (shift - 1))) >> shift;
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dquantize.c242 short *shift, short d)
253 *shift = l;
254 /* use multiplication and constant shift by 16 */
255 *shift = 1 << (16 - *shift);
260 *shift = 0;
261 /* use multiplication and constant shift by 16 */
262 *shift = 1 << (16 - *shift);
241 invert_quant(int improved_quant, short *quant, short *shift, short d) argument
/external/chromium_org/third_party/libwebp/utils/
H A Dbit_writer.c116 if (bw->range_ < 127) { // emit 'shift' bits out and renormalize
117 const int shift = kNorm[bw->range_]; local
119 bw->value_ <<= shift;
120 bw->nb_bits_ += shift;
264 const int shift = VP8L_WRITER_MAX_BITS - used; local
267 n_bits -= shift;
268 bits >>= shift; local
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos.c161 unsigned shift; local
192 shift = 0;
212 shifts[i] = lp_build_const_int32(gallivm, shift);
223 shift += bits;
275 unsigned shift; local
301 shift = 0;
315 shifts[i] = lp_build_const_int32(gallivm, shift);
325 shift += bits;
H A Dlp_bld_format_yuv.c82 * 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...]
H A Dlp_bld_swizzle.c229 int shift = shifts[channel][i]; local
232 shift = -shift;
235 if(shift > 0)
236 tmp = LLVMBuildLShr(builder, a, lp_build_const_int_vec(bld->gallivm, type4, shift*type.width), "");
237 if(shift < 0)
238 tmp = LLVMBuildShl(builder, a, lp_build_const_int_vec(bld->gallivm, type4, -shift*type.width), "");
360 int shift; local
385 * Mask and shift the channels, trying to group as many channels in the
386 * same shift a
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog_emit.c538 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/gallium/state_trackers/wgl/
H A Dstw_pixelformat.c56 } shift; member in struct:stw_pf_color_info
167 pfi->pfd.cRedShift = color->shift.red;
169 pfi->pfd.cGreenShift = color->shift.green;
171 pfi->pfd.cBlueShift = color->shift.blue;
173 pfi->pfd.cAlphaShift = color->shift.alpha;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpixeltransfer.c192 * 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, offse
254 GLint shift = ctx->Pixel.IndexShift; local
[all...]
H A Dtexenv.c352 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/mesa/src/src/mesa/swrast/
H A Ds_drawpix.c344 /* Special case: shift 32-bit values down to Visual.depthBits */
345 const GLint shift = 32 - ctx->DrawBuffer->Visual.depthBits; local
351 if (shift == 0) {
357 span.array->z[col] = zSrc[col] >> shift;
543 * stencil offset/shift, GL_DEPTH_WRITEMASK and GL_STENCIL_WRITEMASK,
626 /* get stencil values, with shift/offset/mapping */
/external/chromium_org/third_party/opus/src/celt/
H A Dentenc.c215 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);
H A Dkiss_fft.c564 st->shift = 0;
565 while (nfft<<st->shift != base->nfft && st->shift < 32)
566 st->shift++;
567 if (st->shift>=32)
572 st->shift = -1;
601 if (cfg->shift < 0)
616 int shift; local
618 /* st->shift can be -1 */
619 shift
675 int shift; local
[all...]
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dnoise_shape_analysis_FIX.c267 opus_int shift, slope_part, flat_part; local
272 shift = slope_part;
273 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(opus_int16) );
274 shift += flat_part;
275 silk_apply_sine_window( x_windowed + shift, x_ptr + shift, 2, slope_part );
/external/chromium_org/third_party/opus/src/silk/float/
H A Dnoise_shape_analysis_FLP.c232 opus_int shift, slope_part, flat_part; local
237 shift = slope_part;
238 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(silk_float) );
239 shift += flat_part;
240 silk_apply_sine_window_FLP( x_windowed + shift, x_ptr + shift, 2, slope_part );

Completed in 1106 milliseconds

1234567891011>>