Searched refs:kOne (Results 1 - 15 of 15) sorted by relevance

/external/openfst/src/include/fst/extensions/ngram/
H A Dbitmap-index.h51 (kOne << (index & kStorageBlockMask))) != 0;
55 bits[index >> kStorageLogBitSize] |= (kOne << (index & kStorageBlockMask));
59 bits[index >> kStorageLogBitSize] &= ~(kOne << (index & kStorageBlockMask));
120 static const uint64 kOne = 1; member in class:fst::BitmapIndex
/external/clang/test/Sema/
H A Dstatements.c46 enum Numbers { kOne, kTwo, kThree, kFour};
48 switch (num == kOne) {// expected-warning {{switch condition has boolean value}}
H A Dswitch.c309 kOne = 1, enumerator in enum:__anon2812
315 case kOne:
/external/ceres-solver/include/ceres/
H A Drotation.h316 static const T kOne = T(1.0); local
321 T costheta = std::min(std::max((R(0, 0) + R(1, 1) + R(2, 2) - kOne) / kTwo,
323 kOne);
330 kOne);
371 const T inv_one_minus_costheta = kOne / (kOne - costheta);
396 static const T kOne = T(1.0); local
410 R(0, 0) = costheta + wx*wx*(kOne - costheta);
411 R(1, 0) = wz*sintheta + wx*wy*(kOne - costheta);
412 R(2, 0) = -wy*sintheta + wx*wz*(kOne
[all...]
/external/skia/tests/
H A DPointTest.cpp145 const SkPoint kOne = {1.0f, 1.0f}; local
147 SkPoint slow = kOne, fast = kOne;
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dfwd_dct32x32_impl_avx2.h91 const __m256i kOne = _mm256_set1_epi16(1); local
469 step2[ 0] = _mm256_add_epi16(step2[ 0], kOne);
470 step2[ 1] = _mm256_add_epi16(step2[ 1], kOne);
471 step2[ 2] = _mm256_add_epi16(step2[ 2], kOne);
472 step2[ 3] = _mm256_add_epi16(step2[ 3], kOne);
473 step2[ 4] = _mm256_add_epi16(step2[ 4], kOne);
474 step2[ 5] = _mm256_add_epi16(step2[ 5], kOne);
475 step2[ 6] = _mm256_add_epi16(step2[ 6], kOne);
476 step2[ 7] = _mm256_add_epi16(step2[ 7], kOne);
477 step2[ 8] = _mm256_add_epi16(step2[ 8], kOne);
[all...]
H A Dfwd_dct32x32_impl_sse2.h108 const __m128i kOne = _mm_set1_epi16(1); local
565 step2[0] = _mm_add_epi16(step2[ 0], kOne);
566 step2[1] = _mm_add_epi16(step2[ 1], kOne);
567 step2[2] = _mm_add_epi16(step2[ 2], kOne);
568 step2[3] = _mm_add_epi16(step2[ 3], kOne);
569 step2[4] = _mm_add_epi16(step2[ 4], kOne);
570 step2[5] = _mm_add_epi16(step2[ 5], kOne);
571 step2[6] = _mm_add_epi16(step2[ 6], kOne);
572 step2[7] = _mm_add_epi16(step2[ 7], kOne);
573 step2[8] = _mm_add_epi16(step2[ 8], kOne);
[all...]
H A Dfwd_txfm_impl_sse2.h612 const __m128i kOne = _mm_set1_epi16(1); local
684 in00 = _mm_add_epi16(in00, kOne);
685 in01 = _mm_add_epi16(in01, kOne);
686 in02 = _mm_add_epi16(in02, kOne);
687 in03 = _mm_add_epi16(in03, kOne);
688 in04 = _mm_add_epi16(in04, kOne);
689 in05 = _mm_add_epi16(in05, kOne);
690 in06 = _mm_add_epi16(in06, kOne);
691 in07 = _mm_add_epi16(in07, kOne);
692 in08 = _mm_add_epi16(in08, kOne);
[all...]
/external/v8/src/
H A Dbit-vector.h63 static const uintptr_t kOne = 1; // This saves some static_casts. member in class:v8::internal::BitVector
98 return (block & (kOne << (i % kDataBits))) != 0;
103 data_[i / kDataBits] |= (kOne << (i % kDataBits));
110 data_[i / kDataBits] &= ~(kOne << (i % kDataBits));
H A Dutils.h279 static const U kOne = static_cast<U>(1U); member in class:v8::internal::BitFieldBase
280 static const U kMask = ((kOne << shift) << size) - (kOne << shift);
286 static const T kMax = static_cast<T>((kOne << size) - 1);
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
H A Dintelligibility_enhancer.cc282 static const size_t kOne = 1; // Avoids repeated static_cast<>s below. local
284 center_freqs_[max(kOne, i - lf) - 1] * freqs_ /
287 center_freqs_[max(kOne, i) - 1] * freqs_ / (0.5f * sample_rate_hz_)));
288 lll = min(freqs_, max(lll, kOne)) - 1;
289 ll = min(freqs_, max(ll, kOne)) - 1;
297 rrr = min(freqs_, max(rrr, kOne)) - 1;
298 rr = min(freqs_, max(rr, kOne)) - 1;
/external/boringssl/src/crypto/bn/
H A Dbn.c170 static const BIGNUM kOne = STATIC_BIGNUM(kOneLimbs); local
172 return &kOne;
/external/skia/gm/
H A Dbleed.cpp125 static const uint8_t kOne = 0xFF; local
127 kPremul_SkAlphaType, kZero, kOne, k3Q, kHalf);
274 static const uint8_t kOne = 0xFF; local
277 ctx, result, width, height, kAlpha_8_GrPixelConfig, kZero, kOne, k3Q, kHalf, k1Q);
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_dct_sse2.c43 const __m128i kOne = _mm_set1_epi16(1); local
46 __m128i out01 = _mm_add_epi16(in01, kOne);
47 __m128i out23 = _mm_add_epi16(in23, kOne);
/external/vixl/test/
H A Dtest-assembler-a64.cc19175 const float kOne = 1.0f; local
19183 __ Fmov(v11.V2S(), kOne);

Completed in 1821 milliseconds