Searched defs:Cell (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/awk/
H A Dawk.h96 /* Cell: all information about a variable or constant */
98 typedef struct Cell { struct
106 struct Cell *cnext; /* ptr to next if chained */
107 } Cell; typedef in typeref:struct:Cell
112 Cell **tab; /* hash table pointers */
117 extern Cell *setsymtab(uchar *, uchar *, Awkfloat, unsigned int, Array *);
118 extern Cell *lookup(uchar *, Array *);
120 extern Cell *recloc; /* location of input record */
121 extern Cell *nrloc; /* NR */
122 extern Cell *fnrlo
[all...]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.c50 ** entry and the preceding pointer are combined to form a "Cell". Each
100 typedef struct Cell Cell; typedef in typeref:struct:Cell
167 ** Data is stored in a linked list of Cell structures. PageHdr.firstCell
171 ** A Cell contains all information about a database entry and a pointer
173 ** other words, the i-th Cell contains both Ptr(i) and Key(i). The
183 ** Entries on a page of the database are called "Cells". Each Cell
188 ** A definition of the complete Cell structure is given below. The
211 ** The minimum size of a complete Cell. The Cell mus
251 struct Cell { struct
[all...]

Completed in 1727 milliseconds