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

  /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/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;
citrus_utf7.c 56 uint16_t cell[0x80]; member in struct:__anon294
163 (SHIFT7BIT((c)) ? -1 : (((ei)->cell[(c)] & EI_MASK) - 1))
166 ei->cell[(c)] & (EI_DIRECT | EI_OPTION | EI_SPACE)))
169 (c < 0x80 && ei->cell[(c)] & (EI_DIRECT | EI_SPACE))))
546 ei->cell[*s & 0x7f] |= flag; \
  /src/games/larn/
data.c 119 struct cel *cell; /* pointer to the dungeon storage */ variable in typeref:struct:cel
  /src/tests/modules/
t_ufetchstore.c 352 #define read_test_cell(cell) (cell)->test_cell
353 #define write_test_cell(cell, v) (cell)->test_cell = (v)
363 memory_cell_check_guard(const struct memory_cell * const cell)
365 return cell->guard0 == ULONG_MAX &&
366 cell->guard1 == ULONG_MAX;
377 struct memory_cell cell = memory_cell_initializer; local
382 write_test_cell(&cell, test_cell_val8);
383 ATF_REQUIRE_EQ(do_ufetch_8(&cell.val8[index8], &res), 0)
400 struct memory_cell cell = memory_cell_initializer; local
423 struct memory_cell cell = memory_cell_initializer; local
447 struct memory_cell cell = memory_cell_initializer; local
708 struct memory_cell cell = memory_cell_initializer; local
729 struct memory_cell cell = memory_cell_initializer; local
750 struct memory_cell cell = memory_cell_initializer; local
772 struct memory_cell cell = memory_cell_initializer; local
1009 uint32_t cell = 0xdeadbeef; local
1032 uint64_t cell = 0xdeadbeef; local
1055 uint32_t cell = 0xa5a5a5a5; local
1078 uint64_t cell = 0xa5a5a5a5; local
    [all...]
  /src/tests/modules/ufetchstore/
t_ufetchstore.c 352 #define read_test_cell(cell) (cell)->test_cell
353 #define write_test_cell(cell, v) (cell)->test_cell = (v)
363 memory_cell_check_guard(const struct memory_cell * const cell)
365 return cell->guard0 == ULONG_MAX &&
366 cell->guard1 == ULONG_MAX;
377 struct memory_cell cell = memory_cell_initializer; local
382 write_test_cell(&cell, test_cell_val8);
383 ATF_REQUIRE_EQ(do_ufetch_8(&cell.val8[index8], &res), 0)
400 struct memory_cell cell = memory_cell_initializer; local
423 struct memory_cell cell = memory_cell_initializer; local
447 struct memory_cell cell = memory_cell_initializer; local
708 struct memory_cell cell = memory_cell_initializer; local
729 struct memory_cell cell = memory_cell_initializer; local
750 struct memory_cell cell = memory_cell_initializer; local
772 struct memory_cell cell = memory_cell_initializer; local
1009 uint32_t cell = 0xdeadbeef; local
1032 uint64_t cell = 0xdeadbeef; local
1055 uint32_t cell = 0xa5a5a5a5; local
1078 uint64_t cell = 0xa5a5a5a5; local
    [all...]
  /src/sys/dev/wsfb/
genfb.c 1121 int i, idx, bi, cell; local
1180 cell = b->gb_map[c - 33];
1181 if (cell == -1) {
1184 cell = atomic_add_int_nv(&b->gb_usedcells, 1) - 1;
1185 b->gb_map[c - 33] = cell;
1186 cell += b->gb_firstcell;
1187 scp->sc_putchar(&scp->sc_cache_ri, cell, 0, c, attr);
1189 cell += b->gb_firstcell;
1191 src = scp->sc_cache + cell * scp->sc_cache_ri.ri_yscale;
1199 src = scp->sc_cache + cell * scp->sc_cache_ri.ri_yscale
    [all...]
  /src/sys/kern/
subr_csan.c 62 csan_cell_t cell; member in struct:__anon6863
150 __builtin_memcpy(&old, &kcsan_cpus[i].cell, sizeof(old));
177 __builtin_memcpy(&cpu->cell, &new, sizeof(new));
179 __builtin_memset(&cpu->cell, 0, sizeof(new));

Completed in 27 milliseconds