Searched refs:downward (Results 1 - 6 of 6) sorted by relevance
/external/libvterm/src/ |
H A D | vterm.c | 232 int downward, 241 if(abs(downward) >= rect.end_row - rect.start_row || 270 if(downward >= 0) { 272 dest.end_row = rect.end_row - downward; 273 src.start_row = rect.start_row + downward; 277 int upward = -downward; 287 if(downward > 0) 288 rect.start_row = rect.end_row - downward; 289 else if(downward < 0) 290 rect.end_row = rect.start_row - downward; 231 vterm_scroll_rect(VTermRect rect, int downward, int rightward, int (*moverect)(VTermRect src, VTermRect dest, void *user), int (*eraserect)(VTermRect rect, int selective, void *user), void *user) argument 305 int downward = src.start_row - dest.start_row; local [all...] |
H A D | screen.c | 225 int downward = src.start_row - dest.start_row; local 228 if(downward < 0) { 241 getcell(screen, row + downward, src.start_col), 303 static int scrollrect(VTermRect rect, int downward, int rightward, void *user) argument 307 vterm_scroll_rect(rect, downward, rightward, 313 vterm_scroll_rect(rect, downward, rightward, 326 screen->pending_scroll_downward = downward; 330 ((screen->pending_scroll_downward == 0 && downward == 0) || 332 screen->pending_scroll_downward += downward; 339 screen->pending_scroll_downward = downward; [all...] |
H A D | state.c | 81 static void scroll(VTermState *state, VTermRect rect, int downward, int rightward) argument 83 if(!downward && !rightward) 88 int height = rect.end_row - rect.start_row - abs(downward); 90 if(downward > 0) 92 state->lineinfo + rect.start_row + downward, 95 memmove(state->lineinfo + rect.start_row - downward, 101 if((*state->callbacks->scrollrect)(rect, downward, rightward, state->cbdata)) 105 vterm_scroll_rect(rect, downward, rightward,
|
/external/webrtc/webrtc/p2p/base/ |
H A D | dtlstransportchannel.cc | 256 StreamInterfaceChannel* downward = new StreamInterfaceChannel(channel_); local 258 dtls_.reset(rtc::SSLStreamAdapter::Create(downward)); 261 delete downward; 265 downward_ = downward;
|
/external/libvterm/include/ |
H A D | vterm.h | 188 int (*scrollrect)(VTermRect rect, int downward, int rightward, void *user); 295 int downward,
|
/external/ImageMagick/www/api/ |
H A D | quantize.php | 77 <p>For each pixel in the input image, storage_class scans downward from the root of the color description tree. At each level of the tree it identifies the single node which represents a cube in RGB space containing the pixel's color. It updates the following data for each such node:</p>
|
Completed in 110 milliseconds