Home
last modified time | relevance | path

Searched refs:kInitialValue (Results 1 – 12 of 12) sorted by relevance

/external/pigweed/pw_checksum/public/pw_checksum/
Dcrc16_ccitt.h47 static constexpr uint16_t kInitialValue = 0xFFFF;
53 uint16_t initial_value = kInitialValue) {
59 uint16_t initial_value = kInitialValue) {
63 constexpr Crc16Ccitt() : value_(kInitialValue) {} in Crc16Ccitt()
75 void clear() { value_ = kInitialValue; } in clear()
Dcrc32.h76 constexpr Crc32() : state_(kInitialValue) {} in Crc32()
88 void clear() { state_ = kInitialValue; } in clear()
91 static constexpr uint32_t kInitialValue = _PW_CHECKSUM_CRC32_INITIAL_STATE;
/external/libtextclassifier/abseil-cpp/absl/container/
Dfixed_array_exception_safety_test.cc34 constexpr int kInitialValue = 5; variable
170 test_fill.WithInitialValue(FixedArr(kSmallSize, Thrower(kInitialValue))) in TEST()
173 test_fill.WithInitialValue(FixedArr(kLargeSize, Thrower(kInitialValue))) in TEST()
188 FixedArrWithAlloc(kSmallSize, Thrower(kInitialValue))) in TEST()
192 FixedArrWithAlloc(kLargeSize, Thrower(kInitialValue))) in TEST()
/external/openscreen/third_party/abseil/src/absl/container/
Dfixed_array_exception_safety_test.cc34 constexpr int kInitialValue = 5; variable
170 test_fill.WithInitialValue(FixedArr(kSmallSize, Thrower(kInitialValue))) in TEST()
173 test_fill.WithInitialValue(FixedArr(kLargeSize, Thrower(kInitialValue))) in TEST()
188 FixedArrWithAlloc(kSmallSize, Thrower(kInitialValue))) in TEST()
192 FixedArrWithAlloc(kLargeSize, Thrower(kInitialValue))) in TEST()
/external/webrtc/third_party/abseil-cpp/absl/container/
Dfixed_array_exception_safety_test.cc34 constexpr int kInitialValue = 5; variable
171 test_fill.WithInitialValue(FixedArr(kSmallSize, Thrower(kInitialValue))) in TEST()
174 test_fill.WithInitialValue(FixedArr(kLargeSize, Thrower(kInitialValue))) in TEST()
189 FixedArrWithAlloc(kSmallSize, Thrower(kInitialValue))) in TEST()
193 FixedArrWithAlloc(kLargeSize, Thrower(kInitialValue))) in TEST()
/external/abseil-cpp/absl/container/
Dfixed_array_exception_safety_test.cc34 constexpr int kInitialValue = 5; variable
171 test_fill.WithInitialValue(FixedArr(kSmallSize, Thrower(kInitialValue))) in TEST()
174 test_fill.WithInitialValue(FixedArr(kLargeSize, Thrower(kInitialValue))) in TEST()
189 FixedArrWithAlloc(kSmallSize, Thrower(kInitialValue))) in TEST()
193 FixedArrWithAlloc(kLargeSize, Thrower(kInitialValue))) in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/
Dfixed_array_exception_safety_test.cc34 constexpr int kInitialValue = 5; variable
170 test_fill.WithInitialValue(FixedArr(kSmallSize, Thrower(kInitialValue))) in TEST()
173 test_fill.WithInitialValue(FixedArr(kLargeSize, Thrower(kInitialValue))) in TEST()
188 FixedArrWithAlloc(kSmallSize, Thrower(kInitialValue))) in TEST()
192 FixedArrWithAlloc(kLargeSize, Thrower(kInitialValue))) in TEST()
/external/pigweed/pw_kvs/public/pw_kvs/
Dcrc16_checksum.h28 void Reset() override { crc_ = checksum::Crc16Ccitt::kInitialValue; } in Reset()
35 uint16_t crc_ = checksum::Crc16Ccitt::kInitialValue;
/external/pigweed/pw_checksum/
Dcrc16_ccitt_test.cc39 Crc16Ccitt::kInitialValue); in TEST()
43 uint16_t crc = Crc16Ccitt::kInitialValue; in TEST()
/external/pigweed/pw_persistent_ram/public/pw_persistent_ram/
Dpersistent_buffer.h123 checksum_ = checksum::Crc16Ccitt::kInitialValue; in clear()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiPipelineTests.cpp1259 const deUint32 kInitialValue = 50u; in DestroyAfterEndTest() local
1269 const std::vector<deUint32> bufferValues (kBufferElements, kInitialValue); in DestroyAfterEndTest()
1379 const auto expectedValue = kInitialValue + kBaseValue + i; in DestroyAfterEndTest()
/external/angle/src/tests/gl_tests/
DStateChangeTest.cpp4093 const float kInitialValue = 0.125f; in TEST_P() local
4098 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, kSize, kSize, GL_RED, GL_FLOAT, &kInitialValue); in TEST_P()
4150 EXPECT_PIXEL_COLOR32F_NEAR(0, 0, GLColor32F(kInitialValue + 0.193f * 2, 0.0f, 0.0f, 1.0f), in TEST_P()