HomeSort by: relevance | last modified time | path
    Searched defs:cell (Results 1 - 25 of 118) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gcc/dist/gcc/text-art/
theme.cc 64 const canvas::cell_t cell = (len > 1) ? tail : head; local
65 canvas.paint (canvas::coord_t (canvas_x, canvas_y), cell); local
theme.cc 64 const canvas::cell_t cell = (len > 1) ? tail : head; local
65 canvas.paint (canvas::coord_t (canvas_x, canvas_y), cell); local
  /src/external/gpl3/gcc/dist/libobjc/objc-private/
objc-list.h 35 /* Return a cons cell produced from (head . tail). */
39 struct objc_list* cell; local
41 cell = (struct objc_list*)objc_malloc (sizeof (struct objc_list));
42 cell->head = head;
43 cell->tail = tail;
44 return cell;
objc-list.h 35 /* Return a cons cell produced from (head . tail). */
39 struct objc_list* cell; local
41 cell = (struct objc_list*)objc_malloc (sizeof (struct objc_list));
42 cell->head = head;
43 cell->tail = tail;
44 return cell;
  /src/external/gpl3/gcc.old/dist/libobjc/objc-private/
objc-list.h 35 /* Return a cons cell produced from (head . tail). */
39 struct objc_list* cell; local
41 cell = (struct objc_list*)objc_malloc (sizeof (struct objc_list));
42 cell->head = head;
43 cell->tail = tail;
44 return cell;
objc-list.h 35 /* Return a cons cell produced from (head . tail). */
39 struct objc_list* cell; local
41 cell = (struct objc_list*)objc_malloc (sizeof (struct objc_list));
42 cell->head = head;
43 cell->tail = tail;
44 return cell;
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
stringify.c 37 char *cell = get_print_cell (); local
38 xsnprintf (cell, PRINT_CELL_SIZE, "DW_%s_<unknown: %u>", str, v);
39 return cell;
stringify.c 37 char *cell = get_print_cell (); local
38 xsnprintf (cell, PRINT_CELL_SIZE, "DW_%s_<unknown: %u>", str, v);
39 return cell;
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
stringify.c 37 char *cell = get_print_cell (); local
38 xsnprintf (cell, PRINT_CELL_SIZE, "DW_%s_<unknown: %u>", str, v);
39 return cell;
stringify.c 37 char *cell = get_print_cell (); local
38 xsnprintf (cell, PRINT_CELL_SIZE, "DW_%s_<unknown: %u>", str, v);
39 return cell;
  /src/external/bsd/mdocml/dist/
eqn_html.c 37 struct tag *post, *row, *cell, *t; local
80 cell = print_otag(p, TAG_MTD, "");
83 * particular cell, then print a
88 print_tagq(p, cell);
eqn_html.c 37 struct tag *post, *row, *cell, *t; local
80 cell = print_otag(p, TAG_MTD, "");
83 * particular cell, then print a
88 print_tagq(p, cell);
tbl_layout.c 58 static void cell(struct tbl_node *, struct tbl_row *,
78 /* Row delimiters and cell specifiers end modifier lists. */
207 cell(struct tbl_node *tbl, struct tbl_row *rp, function
260 /* Allocate cell then parse its modifiers. */
272 /* Skip whitespace before and after each cell. */
330 default: /* Cell. */
335 * If the last line had at least one cell,
351 cell(tbl, rp, ln, p, &pos);
tbl_layout.c 58 static void cell(struct tbl_node *, struct tbl_row *,
78 /* Row delimiters and cell specifiers end modifier lists. */
207 cell(struct tbl_node *tbl, struct tbl_row *rp, function
260 /* Allocate cell then parse its modifiers. */
272 /* Skip whitespace before and after each cell. */
330 default: /* Cell. */
335 * If the last line had at least one cell,
351 cell(tbl, rp, ln, p, &pos);
  /src/games/tetris/
tetris.h 58 typedef unsigned char cell; typedef
59 extern cell board[B_SIZE]; /* 1 => occupied, 0 => empty */
tetris.h 58 typedef unsigned char cell; typedef
59 extern cell board[B_SIZE]; /* 1 => occupied, 0 => empty */
  /src/sys/dev/fdt/
fdt_ddb.c 99 const uint32_t *cell = (const uint32_t *)prop->data; local
104 pr("%#" PRIx32 "%s", fdt32_to_cpu(cell[j]),
fdt_ddb.c 99 const uint32_t *cell = (const uint32_t *)prop->data; local
104 pr("%#" PRIx32 "%s", fdt32_to_cpu(cell[j]),
  /src/sys/dev/wscons/
wsdisplay_glyphcache.c 184 DPRINTF("%s: cell size %d x %d, stride %d\n", __func__,
242 int cell; local
247 cell = atomic_add_int_nv(&b->gb_usedcells, 1) - 1;
248 cell += b->gb_firstcell;
250 (cell / gc->gc_cellsperline) * gc->gc_cellheight;
252 (cell % gc->gc_cellsperline) * gc->gc_cellstride;
281 int cell, cx, cy, idx, bi; local
341 cell = b->gb_map[c - 33];
342 if (cell == -1) {
349 cy = cell & 0xffff
    [all...]
wsdisplay_glyphcache.c 184 DPRINTF("%s: cell size %d x %d, stride %d\n", __func__,
242 int cell; local
247 cell = atomic_add_int_nv(&b->gb_usedcells, 1) - 1;
248 cell += b->gb_firstcell;
250 (cell / gc->gc_cellsperline) * gc->gc_cellheight;
252 (cell % gc->gc_cellsperline) * gc->gc_cellstride;
281 int cell, cx, cy, idx, bi; local
341 cell = b->gb_map[c - 33];
342 if (cell == -1) {
349 cy = cell & 0xffff
    [all...]
  /src/crypto/external/bsd/heimdal/dist/kdc/
string2key.c 43 char *cell; variable
55 { "cell", 'c', arg_string, &cell, "AFS cell to use", "cell" },
152 if(afs && cell == NULL){
153 printf("AFS cell: ");
157 cell = estrdup(buf);
186 salt.saltvalue.length = strlen(cell);
187 salt.saltvalue.data = cell;
    [all...]
string2key.c 43 char *cell; variable
55 { "cell", 'c', arg_string, &cell, "AFS cell to use", "cell" },
152 if(afs && cell == NULL){
153 printf("AFS cell: ");
157 cell = estrdup(buf);
186 salt.saltvalue.length = strlen(cell);
187 salt.saltvalue.data = cell;
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
keytab_keyfile.c 59 char *cell; member in struct:akf_data
64 * set `d->cell' and `d->realm'
86 N_("No cell in ThisCell file %s", ""),
93 d->cell = strdup (buf);
94 if (d->cell == NULL)
100 free (d->cell);
101 d->cell = NULL;
117 free (d->cell);
118 d->cell = NULL;
145 free (d->cell);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
print-utils.cc 0 /* Cell-based print utility routines for GDB, the GNU debugger.
32 static int cell = 0; local
34 if (++cell >= NUMCELLS)
35 cell = 0;
36 return buf[cell];
  /src/external/gpl3/gdb/dist/gdbsupport/
print-utils.cc 0 /* Cell-based print utility routines for GDB, the GNU debugger.
32 static int cell = 0; local
34 if (++cell >= NUMCELLS)
35 cell = 0;
36 return buf[cell];

Completed in 40 milliseconds

1 2 3 4 5