Home
last modified time | relevance | path

Searched refs:specs (Results 1 – 25 of 210) sorted by relevance

123456789

/openbsd-src/games/sail/
H A Dglobals.c46 { "Ranger", specs+0, N_A, 7, 20, 4, 0 },
47 { "Drake", specs+1, N_B, 7, 31, 5, 0 }
52 { "Bonhomme Rich", specs+2, N_A, 13, 40, 2, 0 },
53 { "Serapis", specs+3, N_B, 2, 42, 2, 0 }
58 { "America", specs+4, N_B, 7, 37, 4, 0 },
59 { "Befford", specs+5, N_B, 5, 35, 4, 0 },
60 { "Adamant", specs+6, N_B, 3, 33, 4, 0 },
61 { "London", specs+7, N_B, 1, 31, 4, 0 },
62 { "Royal Oak", specs+8, N_B, -1, 29, 4, 0 },
63 { "Neptune", specs+9, N_F, 6, 44, 4, 0 },
[all …]
H A Dgame.c40 turns = ship->specs->ta; in maxturns()
54 Move = ship->specs->bs; in maxmove()
55 if (!ship->specs->rig1) in maxmove()
57 if (!ship->specs->rig2) in maxmove()
59 if (!ship->specs->rig3) in maxmove()
61 if (!ship->specs->rig4) in maxmove()
65 Move = ship->specs->fs; in maxmove()
68 Move -= 1 + WET[windspeed][ship->specs->class-1].B; in maxmove()
70 Move -= 1 + WET[windspeed][ship->specs->class-1].C; in maxmove()
72 Move = (flank ? 2 : 1) - WET[windspeed][ship->specs->class-1].D; in maxmove()
[all …]
H A Ddr_1.c79 crew[0] = sp->specs->crew1 != 0; in boardcomp()
80 crew[1] = sp->specs->crew2 != 0; in boardcomp()
81 crew[2] = sp->specs->crew3 != 0; in boardcomp()
90 switch (sp->specs->class - sq->specs->class) { in boardcomp()
149 menfrom = from->specs->crew1 in fightitout()
150 + from->specs->crew2 in fightitout()
151 + from->specs->crew3; in fightitout()
158 fromstrength = menfrom * fromcap->specs->qual; in fightitout()
159 strengthto = mento * tocap->specs->qual; in fightitout()
176 fromstrength = menfrom * fromcap->specs->qual; in fightitout()
[all …]
H A Dassorted.c54 hull = on->specs->hull; in table()
55 crew[0] = on->specs->crew1; in table()
56 crew[1] = on->specs->crew2; in table()
57 crew[2] = on->specs->crew3; in table()
58 rigg[0] = on->specs->rig1; in table()
59 rigg[1] = on->specs->rig2; in table()
60 rigg[2] = on->specs->rig3; in table()
61 rigg[3] = on->specs->rig4; in table()
106 guns = on->specs->gunR; in table()
107 car = on->specs->carR; in table()
[all …]
H A Ddr_3.c61 && sp->specs->crew3) { in moveall()
209 sb = to->specs->guns; in push()
210 bs = from->specs->guns; in push()
247 ((sp->specs->class >= 3 && !snagged(sp)) in step()
285 qual = ship->specs->qual; in is_toughmelee()
290 ? ship->specs->crew1 * qual : 0; in is_toughmelee()
292 ? ship->specs->crew2 * qual : 0; in is_toughmelee()
294 ? ship->specs->crew3 * qual : 0; in is_toughmelee()
328 rig = sp->specs->rig1; in checksails()
329 if (windspeed == 6 || (windspeed == 5 && sp->specs->class > 4)) in checksails()
[all …]
H A Dsync.c372 struct shipspecs *s = ship->specs; in sync_update()
389 ship->specs->class = a; in sync_update()
402 struct shipspecs *s = ship->specs; in sync_update()
408 struct shipspecs *s = ship->specs; in sync_update()
414 ship->specs->hull = a; in sync_update()
427 ship->specs->qual = a; in sync_update()
430 struct shipspecs *s = ship->specs; in sync_update()
438 ship->specs->rig1 = a; in sync_update()
441 ship->specs->rig2 = a; in sync_update()
444 ship->specs->rig3 = a; in sync_update()
[all …]
H A Ddr_2.c40 #define couldwin(f,t) (f->specs->crew2 > t->specs->crew2 * 1.5)
97 table(RIGGING, L_EXPLODE, sp->specs->guns/13, sq, sp, 6); in checkup()
114 if (sp->specs->crew1 + sp->specs->crew2 + sp->specs->crew3 > sp->file->pcrew * 6) { in prizecheck()
116 …Write(W_POINTS, sp->file->captured, sp->file->captured->file->points - 2 * sp->specs->pts, 0, 0, 0… in prizecheck()
210 if ((ship->specs->class >= 3 && !snagged(ship)) in move_ship()
H A Ddr_5.c71 crew[0] = from->specs->crew1; in mensent()
72 crew[1] = from->specs->crew2; in mensent()
73 crew[2] = from->specs->crew3; in mensent()
/openbsd-src/gnu/gcc/gcc/
H A Dc-decl.c3022 quals_from_declspecs (const struct c_declspecs *specs) in quals_from_declspecs() argument
3024 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0) in quals_from_declspecs()
3025 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0) in quals_from_declspecs()
3026 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)); in quals_from_declspecs()
3027 gcc_assert (!specs->type in quals_from_declspecs()
3028 && !specs->decl_attr in quals_from_declspecs()
3029 && specs->typespec_word == cts_none in quals_from_declspecs()
3030 && specs->storage_class == csc_none in quals_from_declspecs()
3031 && !specs->typedef_p in quals_from_declspecs()
3032 && !specs->explicit_signed_p in quals_from_declspecs()
[all …]
H A Dc-parser.c1260 struct c_declspecs *specs; in c_parser_declaration_or_fndef() local
1265 specs = build_null_declspecs (); in c_parser_declaration_or_fndef()
1266 c_parser_declspecs (parser, specs, true, true, start_attr_ok); in c_parser_declaration_or_fndef()
1272 if (nested && !specs->declspecs_seen_p) in c_parser_declaration_or_fndef()
1278 finish_declspecs (specs); in c_parser_declaration_or_fndef()
1282 shadow_tag (specs); in c_parser_declaration_or_fndef()
1285 shadow_tag_warned (specs, 1); in c_parser_declaration_or_fndef()
1292 prefix_attrs = specs->attrs; in c_parser_declaration_or_fndef()
1294 specs->attrs = NULL_TREE; in c_parser_declaration_or_fndef()
1304 declarator = c_parser_declarator (parser, specs->type_seen_p, in c_parser_declaration_or_fndef()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.cpp89 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in ExtractContextAndIdentifier() local
91 std::size_t count = specs.size(); in ExtractContextAndIdentifier()
92 identifier = count > 0 ? specs[count - 1].GetBaseName() : ""; in ExtractContextAndIdentifier()
93 context = count > 1 ? specs[count - 2].GetFullName() : ""; in ExtractContextAndIdentifier()
100 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in DropScope() local
101 if (specs.empty()) in DropScope()
104 return specs[specs.size() - 1].GetBaseName(); in DropScope()
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dintdoc.c83 const ffeintrinSpec specs[2]; member
148 static const struct _ffeintrin_spec_ specs[] = { variable
306 for (i = 0; i < ARRAY_SIZE (gens[gen].specs); ++i) in dumpgen()
308 if (gens[gen].specs[i] != FFEINTRIN_specNONE) in dumpgen()
313 for (i = 0; i < ARRAY_SIZE (gens[gen].specs); ++i) in dumpgen()
318 if ((spec = gens[gen].specs[i]) == FFEINTRIN_specNONE) in dumpgen()
321 dumpif (specs[spec].family); in dumpgen()
322 dumpimp (menu, name, name_uc, i, specs[spec].family, specs[spec].implementation, in dumpgen()
336 for (j = 0; j < ARRAY_SIZE (gens[gen].specs); ++j) in dumpgen()
340 if ((spec = gens[gen].specs[j]) == FFEINTRIN_specNONE) in dumpgen()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-ia64.c7487 specify_resource (dep, idesc, type, specs, note, path) in specify_resource() argument
7491 struct rsrc specs[MAX_SPECS]; /* returned specific resources */
7535 specs[count] = tmpl;
7536 specs[count++].index = regno;
7544 specs[count] = tmpl;
7545 specs[count++].index = i;
7561 specs[count++] = tmpl;
7573 specs[count] = tmpl;
7580 specs[count].index = (md.mem_offset.offset >> 3) & 0x3F;
7581 specs[count].mem_offset.hint = 1;
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp109 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
110 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
135 specs.Append(module_spec); in GetModuleSpecifications()
139 specs.Append(module_spec); in GetModuleSpecifications()
143 specs.Append(module_spec); in GetModuleSpecifications()
147 specs.Append(module_spec); in GetModuleSpecifications()
153 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-ia64.c8357 specify_resource (dep, idesc, type, specs, note, path) in specify_resource() argument
8361 struct rsrc specs[MAX_SPECS]; /* returned specific resources */
8411 specs[count] = tmpl;
8412 specs[count++].index = regno;
8420 specs[count] = tmpl;
8421 specs[count++].index = i;
8437 specs[count++] = tmpl;
8449 specs[count] = tmpl;
8456 specs[count].index = (md.mem_offset.offset >> 3) & 0x3F;
8457 specs[count].mem_offset.hint = 1;
[all …]
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBModuleSpec.cpp170 SBModuleSpecList specs; in GetModuleSpecifications() local
174 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, *specs.m_opaque_up); in GetModuleSpecifications()
175 return specs; in GetModuleSpecifications()
218 SBModuleSpecList specs; in FindMatchingSpecs() local
220 *specs.m_opaque_up); in FindMatchingSpecs()
221 return specs; in FindMatchingSpecs()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dattribs.c322 tree t, s, a, next, specs, attrs; local
344 specs = s = NULL_TREE;
352 if (specs == NULL_TREE)
353 specs = s = t;
384 *declspecs = specs;
398 tree specs, attrs; local
400 split_specs_attrs (specs_attrs, &specs, &attrs);
409 return specs;
/openbsd-src/gnu/usr.bin/cc/cc/
H A DMakefile30 ${.OBJDIR}/cc -dumpspecs > ${DESTDIR}${SPECDIR}/specs
31 chown ${BINOWN}:${BINGRP} ${DESTDIR}${SPECDIR}/specs
32 chmod ${NONBINMODE} ${DESTDIR}${SPECDIR}/specs
/openbsd-src/share/man/man7/
H A DMakefile7 library-specs.7 \
9 operator.7 packages.7 packages-specs.7 pkgpath.7 ports.7 roff.7 \
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20000211-1.c89 printf_spec_dynarr *specs = 0; in emacs_doprnt_1() local
92 specs = parse_doprnt_spec (format_nonreloc, format_length); in emacs_doprnt_1()
93 for (i = 0; i < (( specs )->cur) ; i++) in emacs_doprnt_1()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.cpp223 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
224 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
235 file, entry_offset, file_size - entry_offset, specs)) { in GetModuleSpecifications()
236 ModuleSpec &spec = specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
242 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp563 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
574 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
601 specs)) { in GetModuleSpecifications()
603 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
618 specs)) { in GetModuleSpecifications()
620 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
632 const size_t end_count = specs.GetSize(); in GetModuleSpecifications()
639 if (specs.GetModuleSpecAtIndex(i, module_spec)) { in GetModuleSpecifications()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
H A DObjectContainerUniversalMachO.cpp179 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
180 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
193 file, slice_file_offset, file_size - slice_file_offset, specs); in GetModuleSpecifications()
198 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/openbsd-src/gnu/llvm/clang/docs/
H A DSYCLSupport.rst23 `memory model <https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/sycl-2020.html#_sycl_devi…
24 section 4.7.7 - `address space classes <https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/…
25 and section 5.9 covers `address space deduction <https://www.khronos.org/registry/SYCL/specs/sycl-2…
33 `OpenCL C v3.0 6.7.8 <https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_C.html#…
59 `common address space deduction rules <https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/s…
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DLocateSymbolFile.cpp365 lldb_private::ModuleSpecList specs; in LocateExecutableSymbolFile() local
367 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, specs); in LocateExecutableSymbolFile()
373 if (specs.GetModuleSpecAtIndex(0, mspec) && in LocateExecutableSymbolFile()
374 specs.GetModuleSpecAtIndex(1, mspec2) && in LocateExecutableSymbolFile()
384 if (specs.GetModuleSpecAtIndex(0, mspec)) { in LocateExecutableSymbolFile()

123456789