| /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
|
| canvas.cc | 92 /* This cell is just a placeholder for the 93 2nd column of a double width cell; skip it. */ 96 const cell_t cell = m_cells.get (coord_t (x, y)); local 97 if (cell.get_style_id () != curr_style_id) 101 cell.get_style_id ()); 102 curr_style_id = cell.get_style_id (); 104 pp_unicode_character (&line_pp, cell.get_code ()); 105 if (cell.emoji_variant_p ()) 142 /* Find right-most non-default cell in this row, 150 cell_t cell = m_cells.get (coord_t (x, y)) local [all...] |
| /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;
|
| /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;
|
| /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;
|
| /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;
|
| /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);
|
| 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 */
|
| /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]),
|
| /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...] |
| /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...] |
| /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];
|
| /src/external/mit/isl/dist/ |
| isl_pw_union_opt.c | 81 isl_set_list *cell; local 88 isl_set_list_free(data->cell); 99 * Let A be the cell data_i->cell[i] and B the cell data_j->cell[j]. 113 * (kept track of in data_i->cell[i] and data_j->cell[j]), while A' and B' refer 127 set_i = isl_set_list_get_set(data_i->cell, i); 130 data_i->cell = isl_set_list_set_set(data_i->cell, i, set_i) [all...] |
| /src/lib/libc/citrus/modules/ |
| citrus_big5.c | 105 int cell[0x100]; member in struct:__anon244 169 return (ei->cell[c & 0xFF] & 0x1) ? 2 : 1; 177 return (ei->cell[c & 0xFF] & 0x2) ? 1 : 0; 210 ei->cell[n & 0xFF] |= i;
|
| /src/crypto/external/bsd/heimdal/dist/kuser/ |
| klist.c | 397 unsigned char *cell; local 426 cell = r; 440 printf(N_("User's (AFS ID %d) tokens for %s", ""), ct.ViceId, cell); local 442 printf(N_("Tokens for %s", ""), cell);
|
| /src/crypto/external/bsd/heimdal/dist/lib/kafs/ |
| common.c | 72 kafs_settoken_rxkad(const char *cell, struct ClearToken *ct, 98 * do *not* mark as primary cell 104 * follow with cell name 106 sizeof_x = strlen(cell) + 1; 107 memcpy(t, cell, sizeof_x); 144 /* Try to get a db-server for an AFS cell from a AFSDB record */ 147 dns_find_cell(const char *cell, char *dbserver, size_t len) 151 r = rk_dns_lookup(cell, "afsdb"); 177 char cell[64]; local 184 while (fgets(cell, sizeof(cell), f)) [all...] |
| /src/external/bsd/jemalloc/dist/src/ |
| ckh.c | 58 * Search bucket for key and return the cell number if found; SIZE_T_MAX 63 ckhc_t *cell; local 67 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; 68 if (cell->key != NULL && ckh->keycomp(key, cell->key)) { 77 * Search table for key and return cell number if found; SIZE_T_MAX otherwise. 81 size_t hashes[2], bucket, cell; local 89 cell = ckh_bucket_search(ckh, bucket, key); 90 if (cell != SIZE_T_MAX) { 91 return cell; 103 ckhc_t *cell; local 136 ckhc_t *cell; local 491 size_t cell; local 523 size_t cell; local [all...] |
| /src/external/bsd/tmux/dist/ |
| screen.c | 39 struct grid_cell cell; member in struct:screen_sel 450 memcpy(&s->sel->cell, gc, sizeof s->sel->cell); 477 /* Check if cell in selection. */ 583 /* Get selected grid cell. */ 591 memcpy(dst, &s->sel->cell, sizeof *dst); 675 * Restore the cursor position and cell. This happens even if not
|
| /src/external/gpl2/dtc/dist/ |
| util.c | 394 const fdt32_t *cell = (const fdt32_t *)data; local 398 printf("0x%08x%s", fdt32_to_cpu(cell[i]),
|
| /src/external/gpl3/gcc/dist/libobjc/ |
| init.c | 491 struct objc_list **cell = &uninitialized_statics; local 496 while (*cell) 500 for (statics_in_module = (*cell)->head; 551 struct objc_list *this = *cell; 552 *cell = this->tail; 556 cell = &(*cell)->tail; 585 struct objc_list **cell; local 713 for (cell = &unclaimed_categories; *cell; ) [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| init.c | 491 struct objc_list **cell = &uninitialized_statics; local 496 while (*cell) 500 for (statics_in_module = (*cell)->head; 551 struct objc_list *this = *cell; 552 *cell = this->tail; 556 cell = &(*cell)->tail; 585 struct objc_list **cell; local 713 for (cell = &unclaimed_categories; *cell; ) [all...] |
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| hw-properties.c | 506 signed_cell *cell; local 521 cell = ((signed_cell*)node->array) + index; 522 *integer = BE2H_cell (*cell); 530 unsigned_cell *cell, 537 *cell = H2BE_cell (unit->cells[i]); 538 cell += 1; 540 return cell; 545 cells_to_unit_address (const unsigned_cell *cell, 554 unit->cells[i] = BE2H_cell (*cell); 555 cell += 1 580 unsigned_cell *cell; local 673 unsigned_cell *cell; local [all...] |