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

1 2

  /external/tensorflow/tensorflow/core/kernels/
crop_and_resize_op_test.cc 278 const int kLength = 999; // Length of the input. Must use an odd number.
279 const int kHalf = (kLength + 1) / 2; // Half size for the cropped result.
286 AddInput<float>(TensorShape({1, kLength, kLength, 1}),
287 [kLength](int i) -> float { return i % kLength; });
  /system/core/libunwindstack/tests/
MemoryOfflineBufferTest.cpp 35 buffer_.resize(kLength);
36 for (size_t i = 0; i < kLength; i++) {
43 static constexpr size_t kLength = 0x2000;
45 static constexpr uint64_t kEnd = kStart + kLength;
74 ASSERT_TRUE(memory_->ReadFully(kStart + kLength - 105, buffer.data(), 105));
75 ASSERT_NO_FATAL_FAILURE(VerifyBuffer(buffer.data(), kLength - 105, 105));
80 ASSERT_EQ(100U, memory_->Read(kStart + kLength - 100, buffer.data(), buffer.size()));
81 VerifyBuffer(buffer.data(), kLength - 100, 100);
  /external/v8/src/
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];
  /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/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...]
  /system/bt/types/
raw_address.h 26 static constexpr unsigned int kLength = 6;
28 uint8_t address[kLength];
54 // Returns the number of copied octets - should be always RawAddress::kLength
  /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 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/skqp/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/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];
  /external/v8/src/builtins/
builtins-async-function.cc 40 enum Fields { kGeneratorSlot = Context::MIN_CONTEXT_SLOTS, kLength };
112 CreatePromiseContext(native_context, AwaitContext::kLength);
builtins-async-iterator.cc 20 enum Fields { kDoneSlot = Context::MIN_CONTEXT_SLOTS, kLength };
248 CreatePromiseContext(native_context, ValueUnwrapContext::kLength);
  /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/skia/experimental/svg/model/
SkSVGValue.h 24 kLength,
79 using SkSVGLengthValue = SkSVGWrapperValue<SkSVGLength , SkSVGValue::Type::kLength >;
  /external/skqp/experimental/svg/model/
SkSVGValue.h 24 kLength,
79 using SkSVGLengthValue = SkSVGWrapperValue<SkSVGLength , SkSVGValue::Type::kLength >;
  /external/v8/src/objects/
module-info.h 79 kLength
  /external/v8/src/heap/
marking.h 58 static const size_t kLength = (1 << kPageSizeBits) >> (kPointerSizeLog2);
67 int CellsCount() { return CellsForLength(kLength); }
  /external/vixl/test/aarch64/examples/
test-examples.cc 250 const int kLength = kRowSize * kColSize;
252 float mat1[kLength], mat2[kLength], expected[kLength], output[kLength];
299 for (int i = 0; i < kLength; i++) {
  /art/runtime/
jni_internal_test.cc 487 constexpr size_t kLength = 10;
488 jbooleanArray array = env_->NewBooleanArray(kLength);
490 jboolean elements[kLength];
491 env_->GetByteArrayRegion(reinterpret_cast<jbyteArray>(array), 0, kLength,
496 env_->GetShortArrayRegion(reinterpret_cast<jshortArray>(array), 0, kLength,
501 env_->GetCharArrayRegion(reinterpret_cast<jcharArray>(array), 0, kLength,
506 env_->GetIntArrayRegion(reinterpret_cast<jintArray>(array), 0, kLength,
511 env_->GetLongArrayRegion(reinterpret_cast<jlongArray>(array), 0, kLength,
516 env_->GetFloatArrayRegion(reinterpret_cast<jfloatArray>(array), 0, kLength,
521 env_->GetDoubleArrayRegion(reinterpret_cast<jdoubleArray>(array), 0, kLength,
    [all...]

Completed in 1230 milliseconds

1 2