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

1 2 3

  /external/syzkaller/vendor/google.golang.org/grpc/codes/
code_string.go 47 case OutOfRange:
48 return "OutOfRange"
codes.go 107 // OutOfRange means operation was attempted past the valid range.
114 // OutOfRange if asked to read from an offset past the current
118 // OutOfRange. We recommend using OutOfRange (the more specific
120 // a space can easily look for an OutOfRange error to detect when
122 OutOfRange Code = 11
163 `"OUT_OF_RANGE"`: OutOfRange,
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
utils.cc 36 return errors::OutOfRange("Unknown precision mode");
  /external/tensorflow/tensorflow/contrib/ignite/kernels/igfs/
igfs_random_access_file.cc 41 if (sz == 0) return errors::OutOfRange("End of file");
  /external/tensorflow/tensorflow/python/framework/
test_file_system.cc 29 s = errors::OutOfRange("EOF");
  /art/cmdline/
cmdline_parse_result.h 64 // Create an error result with the OutOfRange error and the specified message.
65 static CmdlineParseResult<T> OutOfRange(const std::string& message) {
69 // Create an error result with the OutOfRange code and a custom message
72 static CmdlineParseResult<T> OutOfRange(const T& value,
  /external/tensorflow/tensorflow/core/lib/io/
inputbuffer.h 93 // If end of file is reached while reading, OutOfRange error is returned.
116 if (offset == nullptr) return errors::OutOfRange("Parsed past limit.");
130 if (offset == nullptr) return errors::OutOfRange("Parsed past limit.");
inputstream_interface_test.cc 33 return errors::OutOfRange("limit reached");
60 // Skipping past end of the file causes OutOfRange error.
random_inputstream.cc 82 return errors::OutOfRange("reached end of file");
record_reader.cc 97 return errors::OutOfRange("eof");
  /external/tensorflow/tensorflow/core/kernels/
count_up_to_op.cc 42 context->SetStatus(errors::OutOfRange("Reached limit of ", limit_));
80 context->SetStatus(errors::OutOfRange("Reached limit of ", limit_));
decode_compressed_op.cc 47 s = errors::OutOfRange("reached end of file");
initializable_lookup_table.h 96 // Status::OutOfRange.
189 status_ = errors::OutOfRange("No more data.");
extract_image_patches_op.cc 47 errors::OutOfRange(attr_name, " is out of range."));
extract_volume_patches_op.cc 53 errors::OutOfRange(attr_name, " is out of range."));
fifo_queue.cc 170 attempt->context->SetStatus(errors::OutOfRange(
299 attempt->context->SetStatus(errors::OutOfRange(
priority_queue.cc 213 attempt->context->SetStatus(errors::OutOfRange(
304 // Return OutOfRange if closed and there are fewer elements
311 attempt->context->SetStatus(errors::OutOfRange(
reduce_join_op.cc 140 errors::OutOfRange("Invalid reduction dimension ", reduce_index,
  /external/grpc-grpc/src/ruby/lib/grpc/
errors.rb 68 codes[OUT_OF_RANGE] = OutOfRange
168 class OutOfRange < BadStatus
  /external/tensorflow/tensorflow/c/
python_api.cc 66 status->status = tensorflow::errors::OutOfRange(
77 status->status = tensorflow::errors::OutOfRange(
  /external/tensorflow/tensorflow/core/lib/core/
errors.h 110 DECLARE_ERROR(OutOfRange, OUT_OF_RANGE)
  /external/tensorflow/tensorflow/core/lib/io/snappy/
snappy_buffers_test.cc 186 errors::OutOfRange("EOF reached"));
snappy_inputbuffer.cc 181 // We throw OutOfRange error iff no new data has been read from file.
185 // OutOfRange error.
187 return errors::OutOfRange("EOF reached");
  /external/tensorflow/tensorflow/contrib/android/
asset_manager_filesystem.cc 102 return errors::OutOfRange("Read after file end.");
113 : errors::OutOfRange("Read less bytes than requested.");
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/PartitionDxe/
Partition.h 106 BOOLEAN OutOfRange;

Completed in 413 milliseconds

1 2 3