HomeSort by relevance Sort by last modified time
    Searched defs:kLength (Results 1 - 18 of 18) sorted by null

  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
rrtr.h 25 static const size_t kLength = 4 * (kBlockLength + 1); // 12
36 // Consumes Rrtr::kLength bytes.
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;
report_block.h 22 static const size_t kLength = 24;
30 // Consumes ReportBlock::kLength bytes.
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...]
  /external/vixl/examples/
neon-matrix-multiply.cc 115 const int kLength = kRowSize * kColSize;
117 float mat1[kLength], mat2[kLength], output[kLength];
120 memset(output, 0, sizeof(output[0]) * kLength);
124 // float mat1[kLength] = { 1.0f, 52.03f, 4.43f, ... };
  /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/skia/gm/
convexpaths.cpp 100 kLength = 100,
105 fPaths.back().lineTo(kLength * SkIntToScalar(i) / kPtsPerSide, 0);
108 fPaths.back().lineTo(kLength, kLength * SkIntToScalar(i) / kPtsPerSide);
111 fPaths.back().lineTo(kLength * SkIntToScalar(i) / kPtsPerSide, kLength);
114 fPaths.back().lineTo(0, kLength * SkIntToScalar(i) / kPtsPerSide);
  /external/webrtc/webrtc/common_audio/
audio_util_unittest.cc 111 const size_t kLength = kSamplesPerChannel * kNumChannels;
120 int16_t interleaved[kLength];
122 ExpectArraysEq(kInterleaved, interleaved, kLength);
  /external/v8/src/ast/
scopeinfo.h 39 for (int i = 0; i < kLength; ++i) {
54 static const int kLength = 256;
103 Key keys_[kLength];
104 uint32_t values_[kLength];
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
bitmaptools.cc 177 const int kLength = 3 * 256;
178 int counts[kLength] = {};
  /external/v8/test/unittests/compiler/
js-typed-lowering-unittest.cc 624 const size_t kLength = 17;
625 double backing_store[kLength];
632 factory()->NewJSTypedArray(type, buffer, 0, kLength);
666 const size_t kLength = 17;
667 double backing_store[kLength];
674 factory()->NewJSTypedArray(type, buffer, 0, kLength);
677 int min = random_number_generator()->NextInt(static_cast<int>(kLength));
678 int max = random_number_generator()->NextInt(static_cast<int>(kLength));
707 const size_t kLength = 17;
708 double backing_store[kLength];
    [all...]
  /external/vixl/test/examples/
test-examples.cc 257 const int kLength = kRowSize * kColSize;
259 float mat1[kLength], mat2[kLength], expected[kLength], output[kLength];
282 for (int i = 0; i < kLength; i++) {
  /art/runtime/
jni_internal_test.cc 483 constexpr size_t kLength = 10;
484 jbooleanArray array = env_->NewBooleanArray(kLength);
486 jboolean elements[kLength];
487 env_->GetByteArrayRegion(reinterpret_cast<jbyteArray>(array), 0, kLength,
492 env_->GetShortArrayRegion(reinterpret_cast<jshortArray>(array), 0, kLength,
497 env_->GetCharArrayRegion(reinterpret_cast<jcharArray>(array), 0, kLength,
502 env_->GetIntArrayRegion(reinterpret_cast<jintArray>(array), 0, kLength,
507 env_->GetLongArrayRegion(reinterpret_cast<jlongArray>(array), 0, kLength,
512 env_->GetFloatArrayRegion(reinterpret_cast<jfloatArray>(array), 0, kLength,
517 env_->GetDoubleArrayRegion(reinterpret_cast<jdoubleArray>(array), 0, kLength,
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc     [all...]
test-api.cc     [all...]
  /external/v8/src/heap/
heap.h     [all...]
spaces.h 152 static const size_t kLength = (1 << kPageSizeBits) >> (kPointerSizeLog2);
162 int CellsCount() { return CellsForLength(kLength); }
    [all...]

Completed in 158 milliseconds