| /src/sys/external/bsd/sljit/dist/doc/tutorial/ |
| 99bottles.bf | 19 > 0 in the zeroth cell 20 +++++++>++++++++++[<+++++>-] 57 in the first cell or "9" 21 +++++++>++++++++++[<+++++>-] 57 in second cell or "9" 22 ++++++++++ 10 in third cell 23 >+++++++++ 9 in fourth cell 93 [<]>>>> go back to fourth cell 100 < back to cell 3 102 [>]<< go to last cell and back to LF 104 [<]> go to first cell 114 #[<]> go to first cell [all...] |
| /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/games/tetris/ |
| tetris.h | 58 typedef unsigned char cell; typedef 59 extern cell board[B_SIZE]; /* 1 => occupied, 0 => empty */
|
| tetris.c | 62 cell board[B_SIZE]; /* 1 => occupied, 0 => empty */ 93 cell *p; 107 cell *p;
|
| screen.c | 60 static cell curscreen[B_SIZE]; /* 1 => standout (or otherwise marked) */ 286 typedef cell regcell; 295 cell *bp, *sp; 388 * we will be redrawing the cell after the next. 392 * the next cell is a different color.
|
| /src/games/larn/ |
| savelev.c | 21 pcel = &cell[level * MAXX * MAXY]; /* pointer to this level's 50 pcel = &cell[level * MAXX * MAXY]; /* pointer to this level's
|
| diag.c | 147 if (cell[p * MAXX * MAXY + i * MAXY + j].item == l) 199 lwrite((char *) &cell[k * MAXX * MAXY], sizeof(struct cel) * MAXY * MAXX); 263 lrfill((char *) &cell[k * MAXX * MAXY], sizeof(struct cel) * MAXY * MAXX);
|
| data.c | 119 struct cel *cell; /* pointer to the dungeon storage */ variable in typeref:struct:cel
|
| main.c | 129 cell = (struct cel *) malloc(sizeof(struct cel) * (MAXLEVEL + MAXVLEVEL) * MAXX * MAXY); 130 if (cell == 0)
|
| header.h | 370 extern struct cel *cell;
|
| /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/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/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/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/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/ |
| sun8i-h3.dtsi | 239 nvmem-cell-names = "calibration";
|
| sun8i-a83t.dtsi | 1202 nvmem-cell-names = "calibration";
|
| /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));
|
| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/mediatek/ |
| mt7622.dtsi | 519 nvmem-cell-names = "calibration-data";
|
| /src/sys/arch/mips/mips/ |
| locore_mips1.S | 1417 beq a2, ta2, 3f # is the desired cell loaded? 1425 move ta2, a2 # remember the new cell's addr 1437 beqz ta2, 5f # do we have a cell to write?
|
| mipsX_subr.S | 2591 beq a2, ta2, 3f # is the desired cell loaded? 2598 move ta2, a2 # remember the new cell's addr 2611 beqz ta2, 5f # do we have a cell to write?
|