Home
last modified time | relevance | path

Searched refs:tail_length (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dtensor_util_test.cc498 std::vector<T> VectorWithConstantTail(int size, int tail_length) { in VectorWithConstantTail() argument
499 CHECK_LE(tail_length, size); in VectorWithConstantTail()
501 for (int i = 0; i < size - tail_length; ++i) { in VectorWithConstantTail()
508 TensorProto CreateAsProtoTensorContent(int size, int tail_length) { in CreateAsProtoTensorContent() argument
509 auto values = VectorWithConstantTail<T>(size, tail_length); in CreateAsProtoTensorContent()
518 TensorProto CreateAsProtoField(int size, int tail_length) { in CreateAsProtoField() argument
519 auto values = VectorWithConstantTail<T>(size, tail_length); in CreateAsProtoField()
537 void ConstantTailTest(int64 length, int64 tail_length, bool as_field) { in ConstantTailTest() argument
543 as_field ? CreateAsProtoField<T>(length, tail_length) in ConstantTailTest()
544 : CreateAsProtoTensorContent<T>(length, tail_length); in ConstantTailTest()
[all …]
/external/speex/libspeexdsp/
Decho_diagnostic.m3 % out = echo_diagnostic(rec_file, play_file, out_file, tail_length)
7 % a filter length of 'tail_length'. The output is saved to 'out_file'.
8 function out = echo_diagnostic(rec_file, play_file, out_file, tail_length)
30 if (b > .3*tail_length)
64 AtA = toeplitz(acorr(1:tail_length));
65 bb = corr(1:tail_length);
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dvarint.cc38 uint32_t tail_length) { in grpc_chttp2_hpack_write_varint_tail() argument
39 switch (tail_length) { in grpc_chttp2_hpack_write_varint_tail()
55 target[tail_length - 1] &= 0x7f; in grpc_chttp2_hpack_write_varint_tail()
Dvarint.h32 uint32_t tail_length);
/external/grpc-grpc/src/core/lib/slice/
Dslice.cc329 size_t tail_length = source->data.refcounted.length - split; in grpc_slice_split_tail_maybe_ref() local
331 if (tail_length < sizeof(tail.data.inlined.bytes) && in grpc_slice_split_tail_maybe_ref()
335 tail.data.inlined.length = static_cast<uint8_t>(tail_length); in grpc_slice_split_tail_maybe_ref()
337 tail_length); in grpc_slice_split_tail_maybe_ref()
359 tail.data.refcounted.length = tail_length; in grpc_slice_split_tail_maybe_ref()
/external/swiftshader/third_party/SPIRV-Tools/test/
Dbit_stream.cpp69 const size_t tail_length = str.size() % N; in PadToWord() local
70 if (tail_length != 0) str += std::string(N - tail_length, '0'); in PadToWord()
/external/deqp-deps/SPIRV-Tools/test/
Dbit_stream.cpp69 const size_t tail_length = str.size() % N; in PadToWord() local
70 if (tail_length != 0) str += std::string(N - tail_length, '0'); in PadToWord()