/external/skia/bench/ |
D | ClipStrategyBench.cpp | 17 kMask, enumerator 88 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 1 );) 89 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 5 );) 90 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 10 );) 91 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 100);)
|
/external/skqp/bench/ |
D | ClipStrategyBench.cpp | 17 kMask, enumerator 88 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 1 );) 89 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 5 );) 90 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 10 );) 91 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 100);)
|
/external/angle/src/common/ |
D | bitset_utils_unittest.cpp | 103 constexpr uint32_t kMask = (1 << 12) - 1; in TYPED_TEST() local 105 EXPECT_EQ(mBits.set(12).bits() & ~kMask, 0u); in TYPED_TEST() 106 EXPECT_EQ(mBits.set(13).bits() & ~kMask, 0u); in TYPED_TEST() 107 EXPECT_EQ(mBits.flip(12).bits() & ~kMask, 0u); in TYPED_TEST() 108 EXPECT_EQ(mBits.flip(13).bits() & ~kMask, 0u); in TYPED_TEST() 119 constexpr uint32_t kMask = (1 << 12) - 1; in TYPED_TEST() local 120 constexpr uint32_t kSelfMaskedValue = kSelfValue & kMask; in TYPED_TEST() 121 constexpr uint32_t kOtherMaskedValue = kOtherValue & kMask; in TYPED_TEST() 124 constexpr uint32_t kSelfShiftedLeft = kSelfMaskedValue << kShift & kMask; in TYPED_TEST() 125 constexpr uint32_t kSelfShiftedRight = kSelfMaskedValue >> kShift & kMask; in TYPED_TEST() [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ |
D | RunQueue.h | 56 Elem* e = &array_[front & kMask]; in PushFront() 71 Elem* e = &array_[(front - 1) & kMask]; in PopFront() 88 Elem* e = &array_[(back - 1) & kMask]; in PushBack() 107 Elem* e = &array_[back & kMask]; in PopBack() 131 Elem* e = &array_[mid & kMask]; in PopBackHalf() 181 static const unsigned kMask = kSize - 1;
|
/external/rust/crates/ring/crypto/fipsmodule/ec/ |
D | ecp_nistz256.c | 197 static const crypto_word kMask = (1 << (5 /* kWindowSize */ + 1)) - 1; in GFp_nistz256_point_mul() local 243 raw_wvalue = (raw_wvalue >> ((index - 1) % 8)) & kMask; in GFp_nistz256_point_mul() 253 raw_wvalue = (raw_wvalue >> ((index - 1) % 8)) & kMask; in GFp_nistz256_point_mul() 274 raw_wvalue = (raw_wvalue << 1) & kMask; in GFp_nistz256_point_mul() 314 static const crypto_word kMask = (1 << (7 /* kWindowSize */ + 1)) - 1; in GFp_nistz256_point_mul_base() local 325 crypto_word raw_wvalue = (p_str[0] << 1) & kMask; in GFp_nistz256_point_mul_base() 338 raw_wvalue = (raw_wvalue >> ((index - 1) % 8)) & kMask; in GFp_nistz256_point_mul_base()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | device_options.h | 54 static constexpr unsigned kMask = 0xf; // Mask of all available flags. member 58 CHECK((flags & kMask) == flags); in DeviceOptions()
|
/external/angle/third_party/abseil-cpp/absl/random/ |
D | gaussian_distribution.h | 63 static constexpr uint64_t kMask = 0x07f; variable 75 double x[kMask + 2]; 76 double f[kMask + 2]; 241 int i = static_cast<int>(bits & kMask); // pick a random strip in zignor()
|
/external/webrtc/third_party/abseil-cpp/absl/random/ |
D | gaussian_distribution.h | 63 static constexpr uint64_t kMask = 0x07f; variable 75 double x[kMask + 2]; 76 double f[kMask + 2]; 241 int i = static_cast<int>(bits & kMask); // pick a random strip in zignor()
|
/external/abseil-cpp/absl/random/ |
D | gaussian_distribution.h | 63 static constexpr uint64_t kMask = 0x07f; variable 75 double x[kMask + 2]; 76 double f[kMask + 2]; 241 int i = static_cast<int>(bits & kMask); // pick a random strip in zignor()
|
/external/libtextclassifier/abseil-cpp/absl/random/ |
D | gaussian_distribution.h | 63 static constexpr uint64_t kMask = 0x07f; variable 75 double x[kMask + 2]; 76 double f[kMask + 2]; 241 int i = static_cast<int>(bits & kMask); // pick a random strip in zignor()
|
/external/openscreen/third_party/abseil/src/absl/random/ |
D | gaussian_distribution.h | 63 static constexpr uint64_t kMask = 0x07f; variable 75 double x[kMask + 2]; 76 double f[kMask + 2]; 241 int i = static_cast<int>(bits & kMask); // pick a random strip in zignor()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/ |
D | gaussian_distribution.h | 63 static constexpr uint64_t kMask = 0x07f; variable 75 double x[kMask + 2]; 76 double f[kMask + 2]; 241 int i = static_cast<int>(bits & kMask); // pick a random strip in zignor()
|
/external/abseil-cpp/absl/random/internal/ |
D | gaussian_distribution_gentables.cc | 64 using gaussian_distribution_base::kMask; 81 static constexpr int kC = kMask + 1; in TableGenerator()
|
D | generate_real.h | 93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u; variable 133 (static_cast<uint_type>(bits) & kMask);
|
/external/libtextclassifier/abseil-cpp/absl/random/internal/ |
D | gaussian_distribution_gentables.cc | 64 using gaussian_distribution_base::kMask; 81 static constexpr int kC = kMask + 1; in TableGenerator()
|
D | generate_real.h | 93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u; variable 133 (static_cast<uint_type>(bits) & kMask);
|
/external/openscreen/third_party/abseil/src/absl/random/internal/ |
D | gaussian_distribution_gentables.cc | 64 using gaussian_distribution_base::kMask; 81 static constexpr int kC = kMask + 1; in TableGenerator()
|
D | generate_real.h | 93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u; variable 133 (static_cast<uint_type>(bits) & kMask);
|
/external/webrtc/third_party/abseil-cpp/absl/random/internal/ |
D | gaussian_distribution_gentables.cc | 64 using gaussian_distribution_base::kMask; 81 static constexpr int kC = kMask + 1; in TableGenerator()
|
D | generate_real.h | 93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u; variable 133 (static_cast<uint_type>(bits) & kMask);
|
/external/angle/third_party/abseil-cpp/absl/random/internal/ |
D | gaussian_distribution_gentables.cc | 64 using gaussian_distribution_base::kMask; 81 static constexpr int kC = kMask + 1; in TableGenerator()
|
D | generate_real.h | 93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u; variable 133 (static_cast<uint_type>(bits) & kMask);
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/internal/ |
D | gaussian_distribution_gentables.cc | 64 using gaussian_distribution_base::kMask; 81 static constexpr int kC = kMask + 1; in TableGenerator()
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | p256-x86_64.c | 198 static const crypto_word_t kMask = (1 << (5 /* kWindowSize */ + 1)) - 1; in ecp_nistz256_windowed_mul() local 237 wvalue = (wvalue >> ((index - 1) % 8)) & kMask; in ecp_nistz256_windowed_mul() 246 wvalue = (wvalue >> ((index - 1) % 8)) & kMask; in ecp_nistz256_windowed_mul() 269 wvalue = (wvalue << 1) & kMask; in ecp_nistz256_windowed_mul() 288 static const crypto_word_t kMask = (1 << (7 /* kWindowSize */ + 1)) - 1; in calc_first_wvalue() local 291 crypto_word_t wvalue = (p_str[0] << 1) & kMask; in calc_first_wvalue() 297 static const crypto_word_t kMask = (1 << (7 /* kWindowSize */ + 1)) - 1; in calc_wvalue() local 302 wvalue = (wvalue >> ((*index - 1) % 8)) & kMask; in calc_wvalue()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/ec/ |
D | p256-x86_64.c | 198 static const unsigned kMask = (1 << (5 /* kWindowSize */ + 1)) - 1; in ecp_nistz256_windowed_mul() local 237 wvalue = (wvalue >> ((index - 1) % 8)) & kMask; in ecp_nistz256_windowed_mul() 246 wvalue = (wvalue >> ((index - 1) % 8)) & kMask; in ecp_nistz256_windowed_mul() 269 wvalue = (wvalue << 1) & kMask; in ecp_nistz256_windowed_mul() 288 static const unsigned kMask = (1 << (7 /* kWindowSize */ + 1)) - 1; in calc_first_wvalue() local 291 unsigned wvalue = (p_str[0] << 1) & kMask; in calc_first_wvalue() 297 static const unsigned kMask = (1 << (7 /* kWindowSize */ + 1)) - 1; in calc_wvalue() local 301 wvalue = (wvalue >> ((*index - 1) % 8)) & kMask; in calc_wvalue()
|