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

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetRecog_2022.java 38 int shifts = 0; local
67 shifts++;
84 // Include shifts in this computation, so that KR does not get penalized
85 // for having only a single Escape sequence, but many shifts.
86 if (hits+shifts < 5) {
87 quality -= (5-(hits+shifts))*10;
  /external/boringssl/src/crypto/bn/
gcd.c 117 int shifts = 0; local
166 shifts++;
172 if (shifts) {
173 if (!BN_lshift(a, a, shifts)) {
  /external/icu/icu4c/source/i18n/
csr2022.cpp 39 int32_t shifts = 0; local
73 shifts += 1;
93 // Include shifts in this computation, so that KR does not get penalized
94 // for having only a single Escape sequence, but many shifts.
95 if (hits+shifts < 5) {
96 quality -= (5-(hits+shifts))*10;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecog_2022.java 37 int shifts = 0; local
66 shifts++;
83 // Include shifts in this computation, so that KR does not get penalized
84 // for having only a single Escape sequence, but many shifts.
85 if (hits+shifts < 5) {
86 quality -= (5-(hits+shifts))*10;
  /external/libmpeg2/common/x86/
ideint_spatial_filter_ssse3.c 101 WORD32 shifts[2]; local
188 shifts[i] = 0;
192 shifts[i] = 1;
197 shifts[i] = -1;
214 pu4_row1th = (UWORD32 *)(pu1_src + shifts[0]);
215 pu4_row1tl = (UWORD32 *)(pu1_src + SUB_BLK_WD + shifts[1]);
218 pu4_row2th = (UWORD32 *)(pu1_src + shifts[0]);
219 pu4_row2tl = (UWORD32 *)(pu1_src + SUB_BLK_WD + shifts[1]);
221 pu4_row1bh = (UWORD32 *)(pu1_src - shifts[0]);
222 pu4_row1bl = (UWORD32 *)(pu1_src + SUB_BLK_WD - shifts[1])
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
poly_to_lsp.c 39 int16_t shifts, sign; local
121 shifts = (int16_t)WebRtcSpl_NormW32(y)-16;
122 y <<= shifts; local
125 tmpW32 = (x * y) >> (19 - shifts);
xcorr_coef.c 47 int shifts; local
72 shifts=2;
74 shifts=0;
78 Energy=WebRtcSpl_DotProductWithScale(regressor, regressor, subl, shifts);
84 crossCorr=WebRtcSpl_DotProductWithScale(tp, rp, subl, shifts);
97 /* Calculate the total number of (dynamic) right shifts that have
134 Energy += step * ((*rp_end * *rp_end - *rp_beg * *rp_beg) >> shifts);
enhancer_interface.c 59 int shifts; local
123 shifts = WebRtcSpl_GetSizeInBits((uint32_t)(max16 * max16)) - 25;
124 shifts = WEBRTC_SPL_MAX(0, shifts);
128 shifts, -1);
150 ENH_BLOCKL_HALF, shifts);
206 shifts=2;
208 shifts=0;
211 WebRtcSpl_CrossCorrelation(corr32, target, regressor, plc_blockl, 3, shifts,
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 155 LLVMValueRef shifts[4]; local
199 shifts[i] = LLVMGetUndef(LLVMInt32TypeInContext(gallivm->context));
212 shifts[i] = lp_build_const_int32(gallivm, shift);
229 shifted = LLVMBuildLShr(builder, packed, LLVMConstVector(shifts, 4), "");
272 LLVMValueRef shifts[4]; local
306 shifts[i] = LLVMGetUndef(LLVMInt32TypeInContext(gallivm->context));
315 shifts[i] = lp_build_const_int32(gallivm, shift);
335 shifted = LLVMBuildShl(builder, casted, LLVMConstVector(shifts, 4), "");
lp_bld_swizzle.c 195 * Bit mask and recursive shifts
203 const char shifts[4][2] = { local
229 int shift = shifts[channel][i];
345 * Bit mask and shifts.
  /external/opencv3/modules/photo/src/
align.cpp 79 std::vector<Point> shifts; local
83 shifts.push_back(Point(0, 0));
89 shifts.push_back(shift);
94 for(size_t i = 0; i < shifts.size(); i++) {
95 if(shifts[i].x > max.x) {
96 max.x = shifts[i].x;
98 if(shifts[i].y > max.y) {
99 max.y = shifts[i].y;
101 if(shifts[i].x < min.x) {
102 min.x = shifts[i].x
    [all...]
  /external/v8/test/cctest/
test-macro-assembler-x64.cc 1903 const int shifts[] = { 0, 1, 7, 24, kSmiValueSize - 1}; local
1999 const int shifts[] = { 0, 1, 7, 24, kSmiValueSize - 1}; local
2103 const int shifts[] = { 0, 1, 7, 24, kSmiValueSize - 1}; local
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator.c 17 // Number of right shifts for scaling is linearly depending on number of bits in
19 static const int kShiftsAtZero = 13; // Right shifts at zero binary spectrum.
81 // with possible delay shifts.
555 // Make number of right shifts piecewise linear w.r.t. |far_bit_counts|.
556 int shifts = kShiftsAtZero; local
557 shifts -= (kShiftsLinearSlope * self->farend->far_bit_counts[i]) >> 4;
558 WebRtc_MeanEstimatorFix(bit_count, shifts, &(self->mean_bit_counts[i]));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
Tnaf.java 548 int shifts = getShiftsForCofactor(curve.getCofactor()); local
557 BigInteger dividend0 = ECConstants.ONE.add(ui[1]).shiftRight(shifts);
558 BigInteger dividend1 = ECConstants.ONE.add(ui[0]).shiftRight(shifts).negate();
566 int shifts = getShiftsForCofactor(cofactor); local
575 BigInteger dividend0 = ECConstants.ONE.add(ui[1]).shiftRight(shifts);
576 BigInteger dividend1 = ECConstants.ONE.add(ui[0]).shiftRight(shifts).negate();
LongArray.java 1216 int shifts = top < 64 ? positions : positions - 1; local
    [all...]
  /external/bzip2/
blocksort.c 992 Int32 shifts = 0; local
994 while ((bbSize >> shifts) > 65534) shifts++;
998 UInt16 qVal = (UInt16)(j >> shifts);
1003 AssertH ( ((bbSize-1) >> shifts) <= 65535, 1002 );
  /external/opencv/cvaux/src/
cvlevmarprojbandle.cpp 369 int *shifts = 0; local
391 CV_CALL(shifts = (int*)cvAlloc(sizeof(int)*numImages));
392 memset(shifts,0,sizeof(int)*numImages);
407 sum += cvmGet(pointDeriv[currImage],0,shifts[currImage]*4+i) *
408 cvmGet(pointDeriv[currImage],0,shifts[currImage]*4+j);
410 sum += cvmGet(pointDeriv[currImage],1,shifts[currImage]*4+i) *
411 cvmGet(pointDeriv[currImage],1,shifts[currImage]*4+j);
425 shifts[currImage]++;
431 cvFree( &shifts);
634 int *shifts = 0 local
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
APIInfo.java 46 public int[] shifts = { 0, 3, 5, 6, 7, 8, 9 }; field in class:APIInfo
148 if (typ >= shifts.length) {
151 return (info >>> shifts[typ]) & masks[typ];
173 int val = (info >>> shifts[typ]) & masks[typ];
185 info &= ~(masks[typ] << shifts[typ]);
186 info |= (val&masks[typ]) << shifts[typ];
225 info &= ~(masks[typ] << shifts[typ]);
226 info |= i << shifts[typ];
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 633 int shifts = 0; local
636 shifts++;
639 Bitmap ret = Bitmap.createScaledBitmap(image, image.getWidth() >> shifts,
640 image.getHeight() >> shifts, true);
  /external/valgrind/VEX/switchback/
test_bzip2.c 3012 Int32 shifts = 0; local
    [all...]
  /external/valgrind/exp-sgcheck/tests/
hackedbz2.c 3038 Int32 shifts = 0; local
    [all...]
  /external/valgrind/memcheck/tests/
origin5-bz2.c 3029 Int32 shifts = 0; local
    [all...]
varinfo6.c 3066 Int32 shifts = 0; local
    [all...]
  /external/valgrind/perf/
bz2.c 3027 Int32 shifts = 0; local
    [all...]
test_input_for_tinycc.c 2669 Int32 shifts = 0; local
    [all...]

Completed in 630 milliseconds

1 2