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

  /external/tensorflow/tensorflow/core/kernels/
sparse_slice_op.cc 34 const Tensor& input_start = context->input(3); variable
49 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_start.shape()),
52 input_start.shape().DebugString()));
59 OP_REQUIRES(context, input_dims == input_start.NumElements(),
62 " but got length ", input_start.NumElements()));
75 const gtl::ArraySlice<int64> start(input_start.flat<int64>().data(),
sparse_slice_grad_op.cc 30 const Tensor *backprop_val_grad, *input_indices, *output_indices, *input_start; variable
33 OP_REQUIRES_OK(ctx, ctx->input("input_start", &input_start));
67 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(input_start->shape()),
69 "The input_start should be a vector but received shape ",
70 input_start->shape().DebugString()));
73 OP_REQUIRES(ctx, num_dims == input_start->NumElements(),
75 "Expected input_start to be a vector of length ", num_dims,
76 " but got length ", input_start->NumElements()));
91 const auto input_start_flat = input_start->flat<int64>()
    [all...]
spectrogram.cc 94 int input_start = 0; local
95 while (GetNextWindowOfSamples(input, &input_start)) {
135 int input_start = 0; local
136 while (GetNextWindowOfSamples(input, &input_start)) {
169 int* input_start) {
170 auto input_it = input.begin() + *input_start;
175 *input_start += input_remaining; // Increases it to input.size().
183 *input_start += samples_to_next_step_;
  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 18 uint8_t* input_start; member in struct:__anon15580::DecoderHandle
59 handle->input_start = nullptr;
64 handle->input_start = new (std::nothrow) uint8_t[input_size];
65 ok = !!handle->input_start;
79 if (!!handle->input_start) delete[] handle->input_start;
89 return env->NewDirectByteBuffer(handle->input_start, input_size);
126 const uint8_t* in = handle->input_start + handle->input_offset;
196 delete[] handle->input_start;
  /external/brotli/java/org/brotli/wrapper/enc/
encoder_jni.cc 18 uint8_t* input_start; member in struct:__anon15581::EncoderHandle
58 handle->input_start = nullptr;
63 handle->input_start = new (std::nothrow) uint8_t[input_size];
64 ok = !!handle->input_start;
89 if (!!handle->input_start) delete[] handle->input_start;
99 return env->NewDirectByteBuffer(handle->input_start, input_size);
138 const uint8_t* in = handle->input_start + handle->input_offset;
189 delete[] handle->input_start;
  /external/tensorflow/tensorflow/lite/kernels/internal/
spectrogram.cc 125 int input_start = 0; local
126 while (GetNextWindowOfSamples(input, &input_start)) {
166 int input_start = 0; local
167 while (GetNextWindowOfSamples(input, &input_start)) {
200 int* input_start) {
201 auto input_it = input.begin() + *input_start;
206 *input_start += input_remaining; // Increases it to input.size().
214 *input_start += samples_to_next_step_;
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
tree_utils.h 217 // input_start and input_end simultaneously.
245 int64 input_start = index; local
246 int64 val = indices(input_start, 0);
248 --input_start;
249 if (input_start < 0) {
252 val = indices(input_start, 0);
254 *sparse_input_start = input_start + 1;
264 return input_end - input_start - 1;
  /external/tensorflow/tensorflow/examples/speech_commands/
test_streaming_accuracy.cc 250 const float* input_start = &(audio_data[audio_data_offset]); local
251 const float* input_end = input_start + clip_duration_samples;
252 std::copy(input_start, input_end, audio_data_tensor.flat<float>().data());
  /external/v8/src/regexp/arm64/
regexp-macro-assembler-arm64.h 102 const byte** input_start,
172 Register input_start() { return x26; } function in class:v8::internal::RegExpMacroAssemblerARM64
  /external/v8/src/regexp/
regexp-macro-assembler.cc 163 const byte** input_start, const byte** input_end) {
209 intptr_t byte_length = *input_end - *input_start;
210 *input_start = StringCharacterPosition(*subject, start_index);
211 *input_end = *input_start + byte_length;
259 const byte* input_start = local
262 const byte* input_end = input_start + byte_length;
266 input_start,
279 const byte* input_start,
292 const byte* input_start, const byte* input_end, int* output,
296 int result = fn.Call(input, start_offset, input_start, input_end, output
    [all...]
  /external/brotli/c/enc/
encode.c 1437 const uint8_t* input_start = input_buffer; local
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
executor.cc 172 // ExecutorImpl::tensors_[input_start] is the 1st positional input
174 int input_start = 0; member in struct:tensorflow::__anon44831::NodeItem
629 item->input_start = frame_info->total_inputs;
    [all...]

Completed in 5560 milliseconds