HomeSort by relevance Sort by last modified time
    Searched refs:kLength (Results 1 - 25 of 40) sorted by null

1 2

  /external/v8/src/
lookup-cache.cc 13 for (int index = 0; index < kLength; index++) keys_[index].source = NULL;
lookup-cache.h 33 for (int i = 0; i < kLength; ++i) {
42 static const int kLength = 64;
48 Key keys_[kLength];
49 int results_[kLength];
lookup-cache-inl.h 20 return (source_hash ^ name_hash) % kLength;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
receiver_report.cc 41 kRrBaseLength + report_blocks_count * ReportBlock::kLength) {
52 block.Parse(next_report_block, ReportBlock::kLength);
53 next_report_block += ReportBlock::kLength;
74 *index += ReportBlock::kLength;
rrtr_unittest.cc 27 kBlockSizeBytes == Rrtr::kLength,
31 uint8_t buffer[Rrtr::kLength];
rrtr.h 25 static const size_t kLength = 4 * (kBlockLength + 1); // 12
36 // Consumes Rrtr::kLength bytes.
sli.cc 66 kCommonFeedbackLength + Macroblocks::kLength) {
73 Macroblocks::kLength;
81 next_item += Macroblocks::kLength;
102 *index += Macroblocks::kLength;
transport_feedback_unittest.cc 145 const size_t kLength = sizeof(kReceived) / sizeof(uint16_t);
147 kHeaderSize + kStatusChunkSize + (kLength * kSmallDeltaSize);
151 test.WithInput(kReceived, nullptr, kLength);
157 const size_t kLength = sizeof(kReceived) / sizeof(uint16_t);
159 kHeaderSize + kStatusChunkSize + (kLength * kSmallDeltaSize);
163 test.WithInput(kReceived, nullptr, kLength);
170 const size_t kLength = sizeof(kReceived) / sizeof(uint16_t);
172 kHeaderSize + kStatusChunkSize + (kLength * kSmallDeltaSize);
176 test.WithInput(kReceived, nullptr, kLength);
183 const size_t kLength = sizeof(kReceived) / sizeof(uint16_t)
    [all...]
voip_metric.h 25 static const size_t kLength = 4 * (kBlockLength + 1); // 36
35 // Consumes VoipMetric::kLength bytes.
sli.h 30 static const size_t kLength = 4;
71 items_.size() * Macroblocks::kLength;
receiver_report.h 55 report_blocks_.size() * ReportBlock::kLength;
voip_metric_unittest.cc 27 kBlockSizeBytes == VoipMetric::kLength,
31 uint8_t buffer[VoipMetric::kLength];
report_block.cc 50 if (length < ReportBlock::kLength) {
report_block.h 22 static const size_t kLength = 24;
30 // Consumes ReportBlock::kLength bytes.
report_block_unittest.cc 31 const size_t kBufferLength = ReportBlock::kLength;
  /system/bt/types/
raw_address.h 26 static constexpr unsigned int kLength = 6;
28 uint8_t address[kLength];
raw_address.cc 33 std::copy(addr, addr + kLength, address);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_vector_unittest.cc 95 static const size_t kLength = 10;
96 AudioVector vec1(kLength);
97 AudioVector vec2(kLength);
98 // Set the first vector to [0, 1, ..., kLength - 1].
99 // Set the second vector to [kLength, kLength + 1, ..., 2 * kLength - 1].
100 for (size_t i = 0; i < kLength; ++i) {
102 vec2[i] = static_cast<int16_t>(i + kLength);
106 ASSERT_EQ(2 * kLength, vec1.Size())
    [all...]
  /external/v8/src/ast/
context-slot-cache.h 38 for (int i = 0; i < kLength; ++i) {
53 static const int kLength = 256;
102 Key keys_[kLength];
103 uint32_t values_[kLength];
context-slot-cache.cc 26 return static_cast<int>((addr_hash ^ name->Hash()) % kLength);
69 for (int index = 0; index < kLength; index++) keys_[index].data = nullptr;
  /external/vixl/examples/aarch64/
neon-matrix-multiply.cc 112 const int kLength = kRowSize * kColSize;
114 float mat1[kLength], mat2[kLength], output[kLength];
117 memset(output, 0, sizeof(output[0]) * kLength);
121 // float mat1[kLength] = { 1.0f, 52.03f, 4.43f, ... };
  /external/skia/experimental/svg/model/
SkSVGValue.h 23 kLength,
77 using SkSVGLengthValue = SkSVGWrapperValue<SkSVGLength , SkSVGValue::Type::kLength >;
  /external/skia/gm/
convexpaths.cpp 99 kLength = 100,
104 fPaths.back().lineTo(kLength * SkIntToScalar(i) / kPtsPerSide, 0);
107 fPaths.back().lineTo(kLength, kLength * SkIntToScalar(i) / kPtsPerSide);
110 fPaths.back().lineTo(kLength * SkIntToScalar(i) / kPtsPerSide, kLength);
113 fPaths.back().lineTo(0, kLength * SkIntToScalar(i) / kPtsPerSide);
occludedrrectblur.cpp 151 constexpr int kLength = 128;
158 r = SkIRect::MakeWH(kLength, kWidth);
160 r = SkIRect::MakeWH(kWidth, kLength);
178 constexpr int kLength = 64;
204 r = SkIRect::MakeWH(kLength, kWidth);
206 r = SkIRect::MakeWH(kWidth, kLength);
  /external/v8/src/builtins/
builtins-async-function.cc 40 enum Fields { kGeneratorSlot = Context::MIN_CONTEXT_SLOTS, kLength };
112 CreatePromiseContext(native_context, AwaitContext::kLength);

Completed in 270 milliseconds

1 2