| /src/games/trek/ |
| getpar.h | 39 const char *full; member in struct:cvntab
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/ |
| assign.c | 27 struct special_type full = { 1, 23 }; variable in typeref:struct:special_type 32 struct special_type value = full;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/ |
| assign.c | 27 struct special_type full = { 1, 23 }; variable in typeref:struct:special_type 32 struct special_type value = full;
|
| /src/games/sail/ |
| pl_4.c | 49 int rig, full; local 52 full = mf->FS; 56 if (!full) { 57 if (sgetch("Increase to Full sails? ",
|
| dr_3.c | 335 int rig, full; local 348 full = 1; 350 full = 0; 352 full = 0; 355 full = 0; 357 if ((sp->file->FS != 0) != full) 358 send_fs(sp, full);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| libgcov-merge.c | 118 unsigned full = all < 0; local 120 *total += full ? -all : all; 128 full |= gcov_topn_add_value (counters + GCOV_TOPN_MEM_COUNTERS * i, 132 if (full)
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| libgcov-merge.c | 113 unsigned full = all < 0; local 115 *total += full ? -all : all; 123 full |= gcov_topn_add_value (counters + GCOV_TOPN_MEM_COUNTERS * i, 127 if (full)
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| XRayInstr.h | 63 bool full() const { return Mask == XRayInstrKind::All; } function in struct:clang::XRayInstrSet
|
| /src/external/bsd/zstd/dist/contrib/pzstd/utils/ |
| WorkQueue.h | 38 bool full() const { function in class:pzstd::WorkQueue 66 while (full() && !done_) {
|
| /src/games/dab/ |
| board.cc | 146 // Return true if the board is full 147 int BOARD::full(void) const function in class:BOARD
|
| /src/sys/arch/powerpc/powerpc/ |
| db_trace.c | 151 bool full = false; local 164 full = true; 342 if (full)
|
| /src/sys/dev/rasops/ |
| rasops1-4_putchar.h | 91 int height, width, full, cnt, bit; local 205 full = width / 32; 206 width -= full * 32; 220 for (cnt = full; cnt; cnt--) 227 memcpy(hp, rp, ((lmask != -1) + full + 254 for (cnt = full; cnt; cnt--) { 269 memcpy(hp, rp, ((lmask != -1) + full + 291 for (cnt = full; cnt; cnt--) 297 memcpy(hp, rp, ((lmask != -1) + full +
|
| rasops24.c | 214 int bytes, full, slop, cnt; local 265 full = bytes / (4 * 3); 266 slop = (bytes - full * (4 * 3)) / 4; 271 for (cnt = full; cnt; cnt--) { 297 int height, slop1, slop2, full, cnt; local 357 full = (num - slop1 /* - slop2 */) / 12; 370 for (cnt = full; cnt; cnt--) {
|
| rasops_bitops.h | 222 int height, width, lnum, rnum, sb, db, full, cnt, sboff; local 297 full = (num - lnum) >> 5; 299 full = num >> 5; 310 hp -= (lmask != 0) + full; 330 for (cnt = full; cnt; cnt--) { 346 memcpy(hp, dp, ((lmask != 0) + full + 380 for (cnt = full; cnt; cnt--, sp++) { 391 memcpy(hp, drp, ((lmask != 0) + full +
|
| /src/usr.sbin/fssconfig/ |
| fssconfig.c | 114 char full[64], path[MAXPATHLEN]; local 183 fd = opendisk1(argv[0], O_RDWR, full, sizeof(full), 0, prog_open); 197 err(1, "%s: FSSIOCSET", full); 208 char full[64]; local 216 fd = opendisk1(argv[0], O_RDWR, full, sizeof(full), 0, prog_open); 221 err(1, "%s: FSSIOCCLR", full); 228 char *dev, path[64], full[64]; local 244 fd = opendisk1(dev, O_RDONLY, full, sizeof(full), 0, prog_open) [all...] |
| /src/crypto/external/cpl/trousers/dist/src/include/ |
| auth_mgr.h | 16 TSS_BOOL full; member in struct:auth_map
|
| /src/external/mit/isl/dist/ |
| isl_tab_lexopt_templ.c | 203 int max, full; local 209 full = ISL_FL_ISSET(flags, ISL_OPT_FULL); 210 if (full) 224 if (!full)
|
| /src/sys/ddb/ |
| db_xxx.c | 165 bool full = false; local 175 full = true; 191 vfs_vnode_print(vp, full, db_printf);
|
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| drm_fixed.h | 33 u32 full; member in union:dfixed 41 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12) 42 #define dfixed_init(A) { .full = dfixed_const((A)) } 43 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) } 44 #define dfixed_trunc(A) ((A).full >> 12) 45 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1)) 58 if (A.full > dfixed_const(non_frac)) 66 u64 tmp = ((u64)A.full << 13); 68 do_div(tmp, B.full); [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/lz/ |
| lz_decoder.h | 89 /// Indicates how full the dictionary is. This is used by 92 size_t full; member in struct:__anon386 99 /// how the value for "full" is set; it can be at most 103 /// True once the dictionary has become full and the writing position 189 return dict->full == 0; 197 return dict->full > distance; 261 // Update how full the dictionary is. 263 dict->full = dict->pos - LZ_DICT_INIT_POS; 275 dict->full = dict->pos - LZ_DICT_INIT_POS; 280 /// already full and the byte couldn't be added [all...] |
| /src/common/dist/zlib/examples/ |
| gzappend.c | 261 int ret, lastbit, left, full; local 296 have = full = 0; 322 full = 1; 362 if (full) {
|
| /src/lib/libc/db/btree/ |
| bt_split.c | 622 indx_t full, half, nxt, off, skip, top, used; local 637 full = (indx_t)temp; 638 half = full / 2; 677 if ((skip <= off && used + nbytes + sizeof(indx_t) >= full) ||
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| nouveau_connector.h | 88 bool full; member in struct:nouveau_conn_atom::__anon5232
|
| /src/sys/external/mit/xen-include-public/dist/xen/include/public/hvm/ |
| ioreq.h | 94 uint64_t full; member in union:buffered_iopage::bufioreq_pointers
|
| /src/sys/rump/librump/rumpvfs/ |
| rump_vfs.c | 482 int *full = cl; local 486 vfs_vnode_print(vp, *full, (void *)rumpuser_dprintf); 491 rump_vfs_mount_print(const char *path, int full) 503 vfs_mount_print(mvp->v_mount, full, (void *)rumpuser_dprintf); 504 if (full) { 507 vfs_vnode_iterator_next(marker, rump_print_selector, &full);
|