HomeSort by: relevance | last modified time | path
    Searched defs:low_ (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gdb/dist/readline/readline/examples/
readlinebuf.h 61 int low_; member in class:readlinebuf
66 virtual int_type showmanyc() const { return high_ - low_; }
69 int rd = n > (high_ - low_)? (high_ - low_) : n;
71 low_ += rd;
74 low_ = high_ = 0;
88 if ( high_ == low_ ) {
89 low_ = high_ = 0;
98 if ( low_ < high_ ) return line_[low_];
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
readlinebuf.h 61 int low_; member in class:readlinebuf
66 virtual int_type showmanyc() const { return high_ - low_; }
69 int rd = n > (high_ - low_)? (high_ - low_) : n;
71 low_ += rd;
74 low_ = high_ = 0;
88 if ( high_ == low_ ) {
89 low_ = high_ = 0;
98 if ( low_ < high_ ) return line_[low_];
    [all...]

Completed in 21 milliseconds