Home
last modified time | relevance | path

Searched refs:classes (Results 1 – 25 of 676) sorted by relevance

12345678910>>...28

/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tools/
H A Dcompute_size_class_config.cpp22 const std::vector<size_t> &classes, size_t pageSize, in measureWastage() argument
28 for (auto c : classes) in measureWastage()
104 std::vector<size_t> classes; in main() local
105 classes.push_back(largestClass); in main()
117 classes.push_back(newClass); in main()
118 size_t newWastage = measureWastage(allocs, classes, pageSize, headerSize); in main()
119 classes.pop_back(); in main()
125 classes.push_back(minWastageClass); in main()
128 std::sort(classes.begin(), classes.end()); in main()
131 while (classes[midSizeIndex + 1] - classes[midSizeIndex] == (1 << minSizeLog)) in main()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dfriend.c201 tree classes; local
268 classes = CLASSTYPE_FRIEND_CLASSES (type);
269 while (classes
271 && !(TREE_CODE (TREE_VALUE (classes)) == TEMPLATE_DECL ?
272 friend_type == TREE_VALUE (classes) :
273 same_type_p (TREE_VALUE (classes), friend_type)))
274 classes = TREE_CHAIN (classes);
275 if (classes)
277 TREE_VALUE (classes), type);
/openbsd-src/gnu/llvm/lldb/docs/design/
H A Doverview.rst19 API and allow people to link to our classes, we have certain rules that we must
22 - Classes can't inherit from any other classes.
32 make changes to the API as any additional methods added to these classes will
39 A collection of classes that implement our breakpoint classes. Breakpoints are
76 wide variety of classes are implemented:
81 - Communication classes that use Connection objects
89 A collection of classes that implement the data formatters subsystem.
95 spectrum, backed by classes implementing individual formatters, matching rules,
139 It also includes the base classes of the NativeProcess/Thread hierarchy, which
145 The interpreter classes are the classes responsible for being the base classes
[all …]
H A Dsbapi.rst10 The classes in the SB API's are all called SB<SomeName>, where SomeName is in
14 All the SB API classes are non-virtual, single inheritance classes. They should
23 unique_ptr to the object in the lldb_private API. All the lldb_private classes
24 that get used this way are declared as opaque classes in lldb_forward.h, which
27 opaque declaration in the SB classes .h file.
40 all the SB objects. Since the ivars of the classes are all pointers of one sort
44 classes to report whether the object is empty or not.
48 and documentation to classes, but to do that you have to use a Swig interface
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Perldoc/t/
H A D00_load.t6 my @classes = ('Pod::Perldoc', map { "Pod::Perldoc::$_" } qw(
12 if( eval { require Tk; require Tk::Pod; 1 } ) { push @classes, 'Pod::Perldoc::ToTk' }
17 plan tests => scalar @classes;
19 foreach my $class ( @classes ) {
/openbsd-src/gnu/llvm/clang/docs/
H A DLTOVisibility.rst13 classes the whole-program devirtualization (``-fwhole-program-vtables``) and
23 control flow integrity features can only be applied to classes with hidden LTO
31 targeting non-Windows platforms, classes with a visibility other than hidden
32 visibility receive public LTO visibility. When targeting Windows, classes
34 other classes receive hidden LTO visibility. Classes with internal linkage
35 (e.g. classes declared in unnamed namespaces) also receive hidden LTO
38 During the LTO link, all classes with public LTO visibility but not marked with
42 used to defer specifying whether classes have hidden LTO visibility until link
44 implementation limitation, symbols associated with classes with hidden LTO
64 to derived classes in other linkage units work correctly. One example of
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegisterInfo.td10 /// This file describes the WebAssembly register classes and some nominal
35 // The register allocation framework requires register classes have at least
37 // classes since we otherwise don't need a physical register in those classes.
59 // Register classes
/openbsd-src/gnu/gcc/gcc/cp/
H A Dfriend.c204 tree classes; in make_friend_class() local
358 for (classes = CLASSTYPE_FRIEND_CLASSES (type); in make_friend_class()
359 classes; in make_friend_class()
360 classes = TREE_CHAIN (classes)) in make_friend_class()
362 tree probe = TREE_VALUE (classes); in make_friend_class()
384 if (!classes) in make_friend_class()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dregclass.c1427 enum reg_class classes[MAX_RECOG_OPERANDS]; local
1441 classes[i] = NO_REGS;
1469 classes[i] = classes[j];
1483 else if (classes[j] != NO_REGS)
1484 alt_cost += copy_cost (op, mode, classes[j], 1), win = 1;
1494 if (classes[j] == NO_REGS)
1502 alt_cost += copy_cost (ops[j], mode, classes[j], 1);
1516 ? may_move_in_cost[mode][class][(int) classes[i]]
1519 ? may_move_out_cost[mode][(int) classes[i]][class]
1528 ? MEMORY_MOVE_COST (mode, classes[i], 0)
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dregclass.c1417 enum reg_class classes[MAX_RECOG_OPERANDS]; in record_reg_classes() local
1431 classes[i] = NO_REGS; in record_reg_classes()
1459 classes[i] = classes[j]; in record_reg_classes()
1473 else if (classes[j] != NO_REGS) in record_reg_classes()
1475 alt_cost += copy_cost (op, mode, classes[j], 1, NULL); in record_reg_classes()
1487 if (classes[j] == NO_REGS) in record_reg_classes()
1495 alt_cost += copy_cost (ops[j], mode, classes[j], 1, NULL); in record_reg_classes()
1509 ? may_move_in_cost[mode][class][(int) classes[i]] in record_reg_classes()
1512 ? may_move_out_cost[mode][(int) classes[i]][class] in record_reg_classes()
1521 ? MEMORY_MOVE_COST (mode, classes[i], 0) in record_reg_classes()
[all …]
/openbsd-src/gnu/usr.bin/perl/lib/Class/
H A DStruct.pm111 my %classes = ();
173 $classes{$name} = $type;
219 elsif( defined $classes{$name} ){
220 … croak '$name argument is wrong class' if \@_ && ! UNIVERSAL::isa(\$_[0], '$classes{$name}');\n";
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbols.def9 // The list of symbols (SymExpr sub-classes) used in the Static Analyzer.
13 // SYMBOL(Id, Parent) - for specific SymExpr sub-classes, reserving the
16 // ABSTRACT_SYMBOL(Id, Parent) - for abstract symbol classes,
H A DSVals.def16 // neither in loc:: nor in nonloc:: namespace; these classes occupy
19 // ABSTRACT_SVAL(Id, Parent) - for abstract SVal classes which are
22 // ABSTRACT_SVAL_WITH_KIND(Id, Parent) - for SVal classes which are also
H A DRegions.def9 // The list of regions (MemRegion sub-classes) used in the Static Analyzer.
13 // REGION(Id, Parent) - for specific MemRegion sub-classes, reserving
16 // ABSTRACT_REGION(Id, Parent) - for abstract region classes,
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/GlobalISel/
H A DRegisterBank.td12 class RegisterBank<string name, list<RegisterClass> classes> {
14 list<RegisterClass> RegisterClasses = classes;
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc/execute/
H A Droot_methods.m4 /* Test that instance methods of root classes are available as class
5 methods to other classes as well */
/openbsd-src/gnu/usr.bin/perl/dist/base/
H A DChanges30 - push all classes at once in @ISA
56 - Better explain how base goes about loading classes.
57 - State explicitly that non-file classes can be based on.
71 * Fixing inheritance from classes which have only private fields
/openbsd-src/sbin/pfctl/
H A Dpfctl_osfp.c61 struct name_list classes = LIST_HEAD_INITIALIZER(&classes); variable
98 pfctl_flush_my_fingerprints(&classes); in pfctl_file_fingerprints()
288 pfctl_flush_my_fingerprints(&classes); in pfctl_load_fingerprints()
308 if (LIST_FIRST(&classes) != NULL) { in pfctl_show_fingerprints()
315 sort_name_list(opts, &classes); in pfctl_show_fingerprints()
316 print_name_list(opts, &classes, ""); in pfctl_show_fingerprints()
336 if ((nm = lookup_name_list(&classes, name))) { in pfctl_get_fingerprint()
354 if ((class_nm = lookup_name_list(&classes, wr_name)) == NULL) { in pfctl_get_fingerprint()
470 LIST_FOREACH(nm, &classes, nm_entry) { in pfctl_lookup_fingerprint()
596 nm_class = fingerprint_name_entry(&classes, fp->fp_os.fp_class_nm); in add_fingerprint()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Math-BigRat/t/
H A Dbitwise.t
/openbsd-src/gnu/llvm/llvm/docs/TableGen/
H A DBackGuide.rst16 information is coded in a declarative style involving classes and records,
36 The following sections describe the data structures that contain the classes
41 Unless otherwise noted, functions associated with classes are instance
48 classes and records parsed and collected by TableGen. The ``RecordKeeper``
52 There are two maps in the recordkeeper, one for classes and one for records
69 * Functions to get a subset of the records based on their parent classes.
71 * Functions to get individual classes, records, and globals, by name.
81 classes and one for the records. The primary data members of a record are
190 Some of these classes have additional members that
193 *All* of the classes derived from ``RecTy`` provide the ``get()`` function.
[all …]
H A DProgRef.rst16 information is coded in a declarative style involving classes and records,
58 are called *classes.* (These classes are different from C++ classes and do
60 records, although sometimes the term *record* refers to both classes and
65 is a list of *fields* with values and an optional list of *parent classes*
66 (sometimes called base or super classes). The fields are the primary data that
75 nonstandard use of the term arises because TableGen treats classes and
87 In order to reduce the complexity of TableGen files, classes are used to
88 abstract out groups of record fields. For example, a few classes may
89 abstract the concept of a machine register file, while other classes may
91 individual instructions. TableGen allows an arbitrary hierarchy of classes,
[all …]
/openbsd-src/usr.sbin/tcpdump/
H A Dpfctl_osfp.c61 struct name_list classes = LIST_HEAD_INITIALIZER(&classes); variable
98 pfctl_flush_my_fingerprints(&classes); in pfctl_file_fingerprints()
292 pfctl_flush_my_fingerprints(&classes); in pfctl_load_fingerprints()
315 sort_name_list(opts, &classes); in pfctl_show_fingerprints()
316 print_name_list(opts, &classes, "\t"); in pfctl_show_fingerprints()
334 if ((nm = lookup_name_list(&classes, name))) { in pfctl_get_fingerprint()
352 if ((class_nm = lookup_name_list(&classes, wr_name)) == NULL) { in pfctl_get_fingerprint()
468 LIST_FOREACH(nm, &classes, nm_entry) { in pfctl_lookup_fingerprint()
593 nm_class = fingerprint_name_entry(&classes, fp->fp_os.fp_class_nm); in add_fingerprint()
649 nm_class = fingerprint_name_entry(&classes, fp->fp_os.fp_class_nm); in import_fingerprint()
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-pdbutil.rst112 padding, accounting for padding in base classes and aggregate field members.
117 padding, ignoring padding in base classes and aggregate field members.
155 Displays classes in the specified order.
160 =name - Sort classes by name
161 =size - Sort classes by size
162 =padding - Sort classes by amount of padding
163 =padding-pct - Sort classes by percentage of space consumed by padding
164 =padding-imm - Sort classes by amount of immediate padding
165 =padding-pct-imm - Sort classes by percentage of space consumed by immediate padding
172 .. option:: -classes
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Syntax/
H A DSyntax.td21 // This file defines TableGen classes modelling these archetypes.
22 // The concrete nodes are defined in terms of these classes in Nodes.td.
24 // The C++ classes for the archetypes themselves are written by hand, and the
25 // concrete node classes will be generated. Migration to TableGen is not
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A DPROBLEMS50 gdb/1516: [regression] local classes, gcc 2.95.3, dwarf-2
52 With gcc 2.95.3 and the dwarf-2 debugging format, classes which are
58 This applies only to classes where the class type is defined inside a
87 implement virtual base classes. gcc 2.x generated just one object code

12345678910>>...28