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

<<11121314151617181920>>

  /external/harfbuzz_ng/src/
hb-ot-shape.cc 375 unsigned int shift; local
376 hb_mask_t mask = map->get_mask (feature->tag, &shift);
377 buffer->set_masks (feature->value << shift, mask, feature->start, feature->end);
542 * widths, we shift the mark with it, such that the mark
544 * direction is backward we don't shift and it will end up
  /external/icu/icu4c/source/common/
unisetspan.cpp 93 void shift(int32_t delta) { function in class:OffsetList
778 offsets.shift(spanLength);
    [all...]
uprops.cpp 299 int32_t shift; // =maxValue if getMaxValueFromShift() is used member in struct:IntProperty
306 return (int32_t)(u_getUnicodeProperties(c, prop.column)&prop.mask)>>prop.shift;
310 return (uprv_getMaxValues(prop.column)&prop.mask)>>prop.shift;
314 return prop.shift;
424 * column, mask and shift values for int-value properties from u_getUnicodeProperties().
  /external/icu/icu4c/source/i18n/
collationiterator.cpp 819 int32_t shift = 8; local
821 if(shift == 0) {
827 shift = 16;
829 primary |= pair << shift;
830 shift -= 8;
835 primary |= (pair - 1) << shift
    [all...]
usrchimp.h 27 /* primary order shift */
29 /* secondary order shift */
162 int16_t shift[MAX_TABLE_SIZE_]; member in struct:UPattern
  /external/iproute2/include/linux/tc_ematch/
tc_em_meta.h 18 __u8 shift; member in struct:tcf_meta_val
  /external/iproute2/tc/
f_u32.c 774 } else if (matches(*argv, "shift") == 0) {
775 int shift; local
777 if (get_integer(&shift, *argv, 0))
779 sel->offshift = shift;
  /external/kernel-headers/original/uapi/drm/
msm_drm.h 104 * ((relocbuf->gpuaddr + reloc_offset) << shift) | or
107 * with this by emit'ing two reloc entries with appropriate shift
116 int32_t shift; /* in, amount of left shift (can be negative) */ member in struct:drm_msm_gem_submit_reloc
tegra_drm.h 98 __u32 shift; member in struct:drm_tegra_reloc
  /external/kernel-headers/original/uapi/linux/tc_ematch/
tc_em_meta.h 18 __u8 shift; member in struct:tcf_meta_val
  /external/kernel-headers/original/uapi/linux/
timex.h 81 int shift; /* interval duration (s) (shift) (ro) */ member in struct:timex
  /external/libcxxabi/src/
cxa_personality.cpp 182 uintptr_t shift = 0; local
188 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
189 shift += 7;
205 uintptr_t shift = 0; local
211 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
212 shift += 7;
215 if ((byte & 0x40) && (shift < (sizeof(result) << 3)))
216 result |= static_cast<uintptr_t>(~0) << shift;
    [all...]
  /external/libhevc/decoder/
ihevcd_get_mv.c 185 WORD32 shift = (31 - (ctb_size / MIN_TU_SIZE)); local
188 /* Since we need pattern of 1's starting from the MSB, an additional shift */
190 shift += ((ctb_size - ctb_size_top) / MIN_TU_SIZE);
192 top_avail_bits = ((1 << (ctb_size_top / MIN_PU_SIZE)) - 1) << shift;
ihevcd_inter_pred.c 152 WORD32 shift, lvl_shift1, lvl_shift2; local
498 shift = ps_slice_hdr->s_wt_ofst.i1_luma_log2_weight_denom
511 shift,
519 shift = ps_slice_hdr->s_wt_ofst.i1_chroma_log2_weight_denom
538 shift,
560 shift,
585 shift = ps_slice_hdr->s_wt_ofst.i1_luma_log2_weight_denom
594 shift,
601 shift = ps_slice_hdr->s_wt_ofst.i1_chroma_log2_weight_denom
614 shift,
    [all...]
  /external/libopus/celt/
pitch.c 157 int shift; local
166 shift = celt_ilog2(maxabs)-10;
167 if (shift<0)
168 shift=0;
170 shift++;
173 x_lp[i] = SHR32(HALF32(HALF32(x[0][(2*i-1)]+x[0][(2*i+1)])+x[0][2*i]), shift);
174 x_lp[0] = SHR32(HALF32(HALF32(x[0][1])+x[0][0]), shift);
178 x_lp[i] += SHR32(HALF32(HALF32(x[1][(2*i-1)]+x[1][(2*i+1)])+x[1][2*i]), shift);
179 x_lp[0] += SHR32(HALF32(HALF32(x[1][1])+x[1][0]), shift);
308 int shift=0 local
    [all...]
  /external/libopus/silk/fixed/
pitch_analysis_core_FIX.c 104 opus_int32 cross_corr, normalizer, energy, shift, energy_basis, energy_target; local
168 silk_sum_sqr_shift( &energy, &shift, frame_4kHz, frame_length_4kHz );
169 if( shift > 0 ) {
170 shift = silk_RSHIFT( shift, 1 );
172 frame_4kHz[ i ] = silk_RSHIFT( frame_4kHz[ i ], shift );
317 silk_sum_sqr_shift( &energy, &shift, frame_8kHz, frame_length_8kHz );
318 if( shift > 0 ) {
319 shift = silk_RSHIFT( shift, 1 )
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 325 int shift = src_width - mantissa; local
327 lp_build_const_int_vec(gallivm, dst_type, shift), "");
592 LLVMValueRef shift = lp_build_const_int_vec(gallivm, tmp_type, src_shift - 1); local
594 shifted = LLVMBuildAShr(builder, tmp[i], shift, "");
596 shifted = LLVMBuildLShr(builder, tmp[i], shift, "");
603 LLVMValueRef shift = lp_build_const_int_vec(gallivm, tmp_type, local
607 tmp[i] = LLVMBuildAShr(builder, tmp[i], shift, "");
609 tmp[i] = LLVMBuildLShr(builder, tmp[i], shift, "");
686 LLVMValueRef shift = lp_build_const_int_vec(gallivm, tmp_type, dst_shift - src_shift); local
690 tmp[i] = LLVMBuildShl(builder, tmp[i], shift, "");
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_depth.c 347 * Compute bitmask and bit shift to apply to the incoming fragment Z values
356 unsigned *shift, unsigned *width, unsigned *mask)
390 *shift = padding_right;
397 * Compute bitmask and bit shift to apply to the framebuffer pixel values
403 unsigned *shift, unsigned *mask)
413 *shift = 0;
415 *shift += format_desc->channel[chan].size;
656 LLVMValueRef shift = lp_build_const_int_vec(gallivm, z_type, z_shift); local
657 z_dst = LLVMBuildLShr(builder, zs_dst, shift, "z_dst");
670 LLVMValueRef shift = lp_build_const_int_vec(gallivm, s_type, s_shift) local
748 LLVMValueRef shift = lp_build_const_int_vec(gallivm, z_src_type, local
819 LLVMValueRef shift = lp_build_const_int_vec(gallivm, z_type, z_shift); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
image.c 87 VGfloat src_shift[4], dst_shift[4], shift[4]; local
101 shift[0] = src_shift[0] - dst_shift[0];
102 shift[1] = src_shift[1] - dst_shift[1];
104 if (shift[0] < 0)
105 vg_shift_rectx(src_loc, src_bounds, -shift[0]);
107 vg_shift_rectx(dst_loc, dst_bounds, shift[0]);
109 if (shift[1] < 0)
110 vg_shift_recty(src_loc, src_bounds, -shift[1]);
112 vg_shift_recty(dst_loc, dst_bounds, shift[1]);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
HpackDraft05.java 113 // Using a BitArray as it has left-shift operator.
348 int shift = 0; local
352 result += (b & 0x7f) << shift;
353 shift += 7;
355 result += b << shift; // Last byte.
  /external/openssl/ssl/
d1_pkt.c 1648 unsigned int shift; local
1671 unsigned int shift; local
    [all...]
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Image.cpp 780 FX_DWORD s1, d1, d2, shift, shift1, shift2, tmp, tmp1, tmp2, maskL, maskR, maskM; local
837 shift = s1 - d1;
839 tmp1 = JBIG2_GETDWORD(lineSrc) << shift;
1200 FX_DWORD s1, d1, d2, shift, shift1, shift2, tmp, tmp1, tmp2, maskL, maskR, maskM; local
    [all...]
  /external/qemu/audio/
winaudio.c 164 int shift, i, samples_size; local
182 case AUD_FMT_S8: shift = 0; break;
183 case AUD_FMT_U8: shift = 0; s->silence = 0x80; break;
184 case AUD_FMT_S16: shift = 1; break;
185 case AUD_FMT_U16: shift = 1; s->silence = 0x8000; break;
192 format.nAvgBytesPerSec = (format.nSamplesPerSec & format.nChannels) << shift;
193 format.nBlockAlign = format.nChannels << shift;
194 format.wBitsPerSample = 8 << shift;
272 int wav_samples = audio_MIN(wav_bytes >> hw->info.shift, live);
281 wav_bytes = wav_samples << hw->info.shift;
410 int shift, i, samples_size; local
    [all...]
  /external/qemu/block/
qcow2.h 155 int shift = s->cluster_bits + s->l2_bits; local
156 return (size + (1ULL << shift) - 1) >> shift;
  /external/qemu/target-arm/
op_helper.c 40 int shift; local
44 for (shift = 0; shift < 32; shift += 8) {
45 index = (ireg >> shift) & 0xff;
48 val |= tmp << shift;
50 val |= def & (0xff << shift);
63 #define SHIFT 0
66 #define SHIFT 1
69 #define SHIFT
378 int shift = i & 0xff; local
386 int shift = i & 0xff; local
394 int shift = i & 0xff; local
402 int shift = i & 0xff; local
418 int shift = i & 0xff; local
434 int shift = i & 0xff; local
447 int shift1, shift; local
    [all...]

Completed in 1517 milliseconds

<<11121314151617181920>>