Searched defs:row (Results 1 - 10 of 10) sorted by relevance

/ast/src/lib/libpz/
H A Dpzinflate.c29 restore(register Pz_t* pz, Pzpart_t* pp, register Sfio_t* ip, Sfio_t* op, register unsigned char* pat, register unsigned char* buf, size_t row, size_t m, register size_t* map, register unsigned char** mix, register size_t* inc) argument
41 memcpy(buf, pat, row);
52 else if (sfwrite(op, buf, row) != row)
98 n = pz->part->row;
201 if (m < pp->row || sfread(pz->io, pat, pp->row) != pp->row)
207 m -= pp->row;
219 if (restore(pz, pp, pz->io, op, pat, pz->wrk, pp->row,
[all...]
H A Dpzlib.h47 typedef struct Pzelt_s /* window row order element */
50 unsigned char buf[1]; /* row data */
64 unsigned char* pb; /* partial row buffer */
68 size_t pc; /* partial row count */
70 size_t row; /* lo freq row count */ member in struct:Pzws_s
97 size_t mrow; /* max row size */ \
161 #define PZ_UNKNOWN 0x04000000 /* unknown input row size */
163 #define PZ_ROWONLY 0x10000000 /* grab row size from prt file */
H A Dpzsplit.c43 int row; member in struct:Id_s
165 if (n >= use && (!ip->row || (n / ip->row) > 16))
194 sfputu(op, ip->row);
199 (*dp->pz->disc->errorf)(dp->pz, dp->pz->disc, 0, "%8d %12s %2d %4d %4I*u %12I*u%s", ip->seq, ip->name, !!ip->part, ip->use, sizeof(ip->row), ip->row, sizeof(n), n, ip->windows == 1 ? " NEW" : "");
393 ip->row = rp->size;
401 if ((ip->part = pzpartget(def.pz, ip->name)) && pz->disc->errorf && ip->row && ip->part->row != ip->row)
494 int row; local
[all...]
H A Dpzip.h74 #define PZ_OVERSIZE 0x00002000 /* row elts for Pzpart_t vectors*/
84 #define PZ_VARIABLE 0x00800000 /* variable row size */
86 #define PZ_VAR_OFF(r) ((r)&0x3fff) /* row => offset */
87 #define PZ_VAR_LEN(r) (1<<(((r)>>14)&0x3)) /* row => size len */
128 size_t row; /* PZ_FORCE row size match */ member in struct:Pzformat_s
136 Pzconvert_f convertf; /* row conversion function */
152 Pzread_f readf; /* partition row read function */
153 Pzwrite_f writef; /* partition row write function */
170 size_t row; /* # char member in struct:Pzpart_s
217 size_t row; /* default input row size */ member in struct:Pz_s
[all...]
/ast/src/lib/libast/disc/
H A Dsfdcmore.c46 int row; /* current row */ member in struct:__anon257
71 more->row = 2;
163 if (!more->row)
200 if (++more->row < more->rows)
229 more->row = 1;
238 more->row--;
242 more->row = 2;
246 more->row = 0;
289 more->row
[all...]
/ast/src/lib/libz/
H A Dcrc32.c376 unsigned long row; local
386 row = 1;
388 odd[n] = row;
389 row <<= 1;
/ast/src/cmd/pzip/
H A Dpop.c29 "[+NAME?pop - operate on partioned fixed row and column data]"
30 "[+DESCRIPTION?\bpop\b operates on partitioned fixed row and column data files."
37 "[e:endiff?Copy the row-by-row difference to the standard output.]"
50 "[m:map?List the partition file with the row size equal to the number of"
54 "[n:newline?Append a newline to each cut output row.]"
62 "[p:partition?Specifies the data row size and the high frequency column"
66 " in \"...\". The next non-comment line specifies the row size."
80 "[r:row?Specifies the input row siz
400 diff(int op, const char* path, size_t row) argument
472 size_t row = 0; local
[all...]
H A Dpin.c27 * induce a column partition on fixed row data
74 " sub-optimal solutions.]#[columns:=row-size]"
85 "[o:sort?Sort the window data by row before inducing the partition.]"
86 "[p:partition?Specifies the data row size and the high frequency column"
90 " in \"...\". The next non-comment line specifies the row size."
104 "[r:row?Specifies the input row size (number of byte columns). The row size"
105 " is determined by sampling the input if not specified.]#[row-size]"
117 "[S:size?Ignore \b--row\
413 field(unsigned char* t, register unsigned char* s, int i, int j, register int row, size_t tot) argument
436 pair(unsigned char* t, register unsigned char* s, int i, register int j, size_t row, size_t tot) argument
457 part(unsigned char* t, register unsigned char* s, register Part_t* pp, size_t row, size_t tot) argument
478 merge(unsigned char* t, unsigned char* s, int i, Part_t* pp, register Part_t* np, size_t** siz, size_t row, size_t tot) argument
527 filter(Sfio_t* ip, unsigned char** bufp, unsigned char** datp, Pz_t* pz, int high, int maxhigh, size_t row, size_t tot) argument
729 permute(unsigned char* buf, unsigned char* dat, size_t* ord, size_t row, size_t tot) argument
771 list(Sfio_t* sp, int* lab, size_t row) argument
803 reorder_heuristic(Reorder_method_t* method, unsigned char* buf, unsigned char* dat, int* lab, size_t row, size_t tot) argument
1123 reorder_tsp(Reorder_method_t* method, unsigned char* buf, unsigned char* dat, int* lab, size_t row, size_t tot) argument
1257 optimize_dynamic(Optimize_method_t* method, unsigned char* buf, unsigned char* dat, size_t** val, size_t* cst, size_t* sol, size_t row, size_t tot, size_t grp) argument
1307 optimize_greedy(Optimize_method_t* method, unsigned char* buf, unsigned char* dat, size_t** val, size_t* cst, size_t* sol, size_t row, size_t tot, size_t grp) argument
1338 optimize_transitive(Optimize_method_t* method, unsigned char* buf, unsigned char* dat, size_t** val, size_t* cst, size_t* sol, size_t row, size_t tot, size_t grp) argument
1464 size_t row = 0; local
[all...]
/ast/src/lib/libtk/generic/
H A DtkGrid.c30 #define ROW (2) /* working on row offsets */
36 * Pre-allocate enough row and column slots for "typical" sized tables
39 * information for either a row or column, depending upon the context.]
60 #define REL_VERT '^' /* Extend widget from row above. */
64 * a row or column.
122 SlotInfo *rowPtr; /* Pointer to array of row constraints. */
127 int rowEnd; /* The last row occupied by any slave. */
130 * for row constraints. */
159 int column, row; /* Location in the grid (starting member in struct:Gridder
311 int row, colum
310 int row, column; /* origin for bounding box */ local
616 int row = -1, column = -1; local
1250 int row = slavePtr->row; local
[all...]
/ast/src/cmd/mailx/
H A Dmailx.h146 #define moretop() (state.more.match=0,state.more.row=state.more.col=1)
736 int row; member in struct:__anon136::more

Completed in 31 milliseconds