| /ast/src/lib/libtk/unix/ |
| H A D | tkUnixDraw.c | 24 Window window; /* Window to filter. */ member in struct:ScrollInfo 26 int dx, dy; /* Amount by which window was shifted. */ 42 * Scroll a rectangle of the specified window and accumulate 51 * Scrolls the bits in the window and enters the event loop 59 Tk_Window tkwin; /* The window to be scrolled. */ 60 GC gc; /* GC for window to be scrolled. */ 73 info.window = Tk_WindowId(tkwin); 104 * events on the specified window until a NoExpose or the last 112 * for a particular window. 126 * Defer events which aren't for the specified window [all...] |
| H A D | tkUnixWm.c | 5 * application and the window manager. Among other things, it 7 * to the window manager. 31 * each window manager protocol (such as WM_DELETE_WINDOW) for 33 * particular top-level window. 40 * the same top-level window, or NULL for 55 * A data structure of the following type holds window-manager-related 56 * information for each top-level window in an application. 61 * this window. */ 62 Window reparent; /* If the window has been reparented, this 63 * gives the ID of the ancestor of the window 287 Window window; /* We're waiting for events on this window. */ member in struct:WaitRestrictInfo 1000 Window window; local 3635 Window window, dummy1, dummy2, vRoot; local [all...] |
| /ast/src/lib/libvcodex/ |
| H A D | vcsfio.h | 55 char* window; /* window specification */ member in struct:_vcsfdata_s
|
| H A D | vcodex.h | 175 ssize_t window; /* suggested window size */ member in struct:_vcmethod_s 578 #define VC_CHECKSUM (1<<3) /* window has a checksum */ 581 /* Bits in the window control byte. Again, the first two bits are for 584 #define VCD_SOURCEFILE (1<<0) /* match window in source file */ 585 #define VCD_TARGETFILE (1<<1) /* match window in target file */
|
| /ast/src/lib/libz/ |
| H A D | inffast.c | 81 unsigned wsize; /* window size or zero if not using window */ 82 unsigned whave; /* valid bytes in the window */ 83 unsigned write; /* window write index */ 84 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local 93 /* window position, window bytes to copy */ 111 window = state->window; [all...] |
| H A D | inflate.h | 87 /* sliding window */ 88 unsigned wbits; /* log base 2 of requested window size */ 89 unsigned wsize; /* window size or zero if not using window */ 90 unsigned whave; /* valid bytes in the window */ 91 unsigned write; /* window write index */ 92 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
|
| H A D | deflate.h | 90 /* A Pos is an index in the character window. We use short instead of int to 109 uInt w_size; /* LZ77 window size (32K by default) */ 113 Bytef *window; member in struct:internal_state 114 /* Sliding window. Input bytes are read into the second half of the window, 119 * the window size to 64K, which is quite useful on ZLIB_MSDOS. 120 * To do: use the user input buffer as sliding window. 124 /* Actual size of window: 2*wSize, except when the user input buffer 125 * is directly used as sliding window. 131 * An index in this array is thus a window inde [all...] |
| /ast/src/cmd/pzip/ |
| H A D | r2c.c | 50 size_t window; member in struct:State_s 82 state.cache = state.window; 113 if (n > state.window) 115 error(2, "%s: input record larger than window size", file); 179 state.window = 4 * 1024 * 1024; 183 switch (optget(argv, "d:[delimiter]l#[compression-level]q:[quote]t:[terminator]vw#[window-size]T#[test-mask]")) 201 state.window = opt_info.num; 218 state.cache = state.window;
|
| H A D | pin.c | 61 " (e.g., 10 minutes on a 400Mhz Pentium with \b--high 80 --window 4M\b)." 85 "[o:sort?Sort the window data by row before inducing the partition.]" 107 "[w:window?Limit the number of training data rows used to induce the" 108 " partition. The window size may be decreased to accomodate an" 109 " integral number of complete rows.]#[window-size:=4M]" 117 "[S:size?Ignore \b--row\b, determine the fixed record size based on a window" 132 "[V:verify?Verify \b--size\b by reading all data instead of the window sample.]" 220 int window; member in struct:__anon193 611 while ((r = sfread(ip, s = buf, state.window)) > 0) 963 cst[i] = state.window; [all...] |
| /ast/src/lib/libvdelta/vd01/ |
| H A D | vdupdate01.c | 42 long s_org; /* start of window in source */ 43 long t_org; /* start of window in target */ 268 reg long t, p, window, n_src, n_tar; local 310 /* get window size */ 311 if((window = (long)(*_Vdgetu)(&tab.io,0)) < 0) 320 if(n_tar > 0 && !target->data && window < (long)MAXINT) 321 n = (int)window; 326 if(n_src > 0 && !source->data && window < (long)MAXINT) 327 n = (int)window; 328 else if(n_src == 0 && window < n_ta [all...] |
| H A D | vddelta01.c | 312 long _vddelta_01(Vddisc_t* source, Vddisc_t* target, Vddisc_t* delta, long window) argument 314 long _vddelta_01(source, target, delta, window) 318 long window; /* amount to process each time */ 344 if(window <= 0) 345 window = DFLTWINDOW; 346 else if(window > MAXWINDOW) 347 window = MAXWINDOW; 348 if(window > n_tar) 349 window = n_tar; 350 if(n_src > 0 && window > n_sr [all...] |
| /ast/src/lib/libvdelta/ |
| H A D | vdupdate.c | 44 long s_org; /* start of window in source */ 45 long t_org; /* start of window in target */ 270 reg long t, p, window, n_src, n_tar; local 322 /* get window size */ 323 if((window = (long)(*_Vdgetu)(&tab.io,0)) < 0) 332 n = (!target->data && window < (long)MAXINT) ? (int)window : 0; 339 { if(target->data || window >= (long)MAXINT || window >= n_tar) 341 else n = (int)HEADER(window); [all...] |
| H A D | vddelta.c | 377 reg long p, n_src, n_tar, window; local 400 window = DFLTWINDOW; 401 while(window > 0) 403 if((long)(size = (int)window) > n_tar) 411 { if((long)window >= n_tar) 416 { size = (int)HEADER(window); 421 { if((long)(size = (int)window) > n_src) 454 if((window >>= 1) <= 0) 466 (*_Vdputu)(&tab.io,(ulong)window) <= 0 ) 469 /* do one window a [all...] |
| /ast/src/cmd/vczip/ |
| H A D | vczip.c | 80 "[w:window?Set the data partition window size to \awindow\a. " 81 "\amethod\a specifies an optional window matching " 82 "method. The window methods are:]:[window[,method]]]" 222 /* vcodex window methods */ 454 vcodexdisc.window = opt_info.arg; 511 " On encoding, it defines the window processing for a large input file.\n", 512 " 'size' is the window size, i.e., the size to break the input file into\n", 603 char *window local [all...] |
| /ast/src/lib/libpz/ |
| H A D | pzsplit.c | 80 size_t window; member in struct:__anon367 127 * flush the current partition window 147 (*dp->pz->disc->errorf)(dp->pz, dp->pz->disc, 0, "window %I*u %I*u", sizeof(dp->pz->count.windows), dp->pz->count.windows, sizeof(w), w); 150 * write the actual window size 156 * count the number of active partitions for this window 186 * write the number of partitions for this window 267 * done with this window 349 * loop on the records and deflate a window at a time 441 * a 0 actual window size marks the end of data 517 * w is the actual window siz 717 size_t window; local [all...] |
| H A D | pzip.h | 48 #define PZ_WINDOW (4*1024*1024) /* default window size */ 83 #define PZ_SORT 0x00400000 /* sort window before deflate */ 148 size_t window; /* max window size */ member in struct:Pzdisc_s 172 size_t loq; /* lo frequency window size */ 218 size_t win; /* window size */ 227 unsigned char* buf; /* window buffer */ 228 unsigned char* wrk; /* window buffer */ 231 unsigned char* val; /* lo frequency window buffer */
|
| /ast/src/lib/libtk/generic/ |
| H A D | tkCmds.c | 54 ClientData clientData; /* Main window associated with interpreter. */ 64 " ?-displayof window?\"", (char *) NULL); 106 ClientData clientData; /* Main window associated with interpreter. */ 117 " window ?pattern? ?command?\"", (char *) NULL); 185 TkWindow *winPtr; /* Pointer to info about window. */ 203 * Make a copy of the tags for the window, replacing window names 204 * with pointers to the pathName from the appropriate window. 270 ClientData clientData; /* Main window associated with interpreter. */ 282 " window 406 Tk_Window window; local 640 Tk_Window window; local 667 Tk_Window window; local 843 Tk_Window window; local [all...] |
| H A D | tkOption.c | 20 * The option database is stored as one tree for each main window. 120 * terms of levels in the window hierarchy. All the elements relevant 135 * for options relevant in a particular window, the entire wildcard 137 * pertain to the window's parent. Lastly, name and class stacks are 144 static TkWindow *cachedWindow = NULL; /* Lowest-level window currently 234 * with main window for this window. */ 310 * apply to this main window, then just skip it. Otherwise, 377 * window. If there is nothing specified in the database 390 Tk_Window tkwin; /* Token for window tha 518 Tk_Window window; local [all...] |
| H A D | tkInt.h | 56 * containing a window managed by Tk: 117 * application name on each comm window. */ 187 * last window for which we've gotten an 189 * the last window known to have contained 215 /* First in list of chunks of window 250 /* If the focus arrived at a toplevel window 253 * to the toplevel window. Otherwise it is 256 /* This points to a toplevel window that is 260 * unmapped window). NULL means no delayed 294 Tcl_HashTable winTable; /* Maps from X window id 425 Window window; /* X's id for window. NULL means window member in struct:TkWindow [all...] |
| H A D | tkBind.c | 810 * what events to select for in a window, for example. 1186 * a window and its children to visible to bindings on the parent: 1541 Window window; 1553 window = eventPtr->xany.window; 1610 if (eventPtr->xany.window != window) { 2070 eventPtr->xany.window); 2085 eventPtr->xany.window); 2099 eventPtr->xany.window); 1530 Window window; local [all...] |
| H A D | tk.h | 396 Window root; /* root window that the event occured on */ 397 Window subwindow; /* child window */ 399 int x, y; /* pointer x, y coordinates in event window */ 411 Window window; /* Window in which event occurred. */ member in struct:__anon377 432 #define Tk_WindowId(tkwin) (((Tk_FakeWin *) (tkwin))->window) 471 Window window; 504 * TK_MAPPED: 1 means window is currently mapped, 506 * TK_TOP_LEVEL: 1 means this is a top-level window (it 508 * a root window). 509 * TK_ALREADY_DEAD: 1 means the window i 470 Window window; member in struct:Tk_FakeWin [all...] |
| /ast/src/cmd/ie/ |
| H A D | vi.c | 74 #define WINDOW MAXWINDOW /* max char in window of which */ 76 /* actual window size may be smaller */ 121 #define first_wind editb.e_globals[0] /* first column of window */ 127 #define last_wind editb.e_globals[1] /* last column in window */ 130 #define long_char editb.e_globals[3] /* line bigger than window */ 131 #define long_line editb.e_globals[4] /* line bigger than window */ 138 #define ofirst_wind editb.e_globals[7] /* old window first col */ 155 #define window editb.e_window /* window buffer */ macro 156 #define w_size editb.e_wsize /* window siz [all...] |
| /ast/src/cmd/ksh93/edit/ |
| H A D | vi.c | 109 int first_wind; /* first column of window */ 110 int last_wind; /* last column in window */ 112 int long_char; /* line bigger than window */ 113 int long_line; /* line bigger than window */ 116 int ofirst_wind; /* old window first col */ 162 #define window editb.e_window /* window buffer */ macro 163 #define w_size editb.e_wsize /* window size */ 222 genchar Window[MAXLINE]; /* window image */ 383 window [all...] |
| /ast/src/cmd/codexlib/lzh/ |
| H A D | lzh.c | 65 ui4 window; member in struct:State_s 751 if ((state->nextcount += 64) >= state->window) 856 if (state->window <= (14 * 1024)) 1126 (*p->disc->errorf)(NiL, p->disc, 2, "%s: window size must be in [%d..%d]", args[0], WINDOW_MIN, WINDOW_MAX); 1143 state->window = w; 1182 if (state->loc >= state->window) 1184 if (state->cpy >= state->window) 1199 if (state->loc >= state->window) 1209 i += state->window; 1214 if (i >= state->window) [all...] |
| /ast/src/cmd/INIT/ |
| H A D | ratz.c | 280 # define MAX_WBITS 15 /* 32K LZ77 window */ 1300 /* A Pos is an index in the character window. We use short instead of int to 1319 uInt w_size; /* LZ77 window size (32K by default) */ 1323 Bytef *window; member in struct:internal_state 1324 /* Sliding window. Input bytes are read into the second half of the window, 1329 * the window size to 64K, which is quite useful on MSDOS. 1330 * To do: use the user input buffer as sliding window. 1334 /* Actual size of window: 2*wSize, except when the user input buffer 1335 * is directly used as sliding window 1653 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state 2080 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local [all...] |