| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | CharUnits.h | 24 /// Instances of this type represent a quantity as a multiple of the size 31 /// the same quantity of storage. However, we use the term 'character unit' 43 QuantityType Quantity = 0; 45 explicit CharUnits(QuantityType C) : Quantity(C) {} in CharUnits() 52 /// Zero - Construct a CharUnits quantity of zero. 57 /// One - Construct a CharUnits quantity of one. 62 /// fromQuantity - Construct a CharUnits quantity from a raw integer type. 63 static CharUnits fromQuantity(QuantityType Quantity) { in fromQuantity() argument 64 return CharUnits(Quantity); in fromQuantity() 67 /// fromQuantity - Construct a CharUnits quantity from an llvm::Align [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Support/ |
| D | TypeSize.h | 96 ScalarTy Quantity = 0; 100 constexpr FixedOrScalableQuantity(ScalarTy Quantity, bool Scalable) in FixedOrScalableQuantity() argument 101 : Quantity(Quantity), Scalable(Scalable) {} in FixedOrScalableQuantity() 105 LHS.Quantity += RHS.Quantity; 111 LHS.Quantity -= RHS.Quantity; 116 LHS.Quantity *= RHS; 144 return Quantity == RHS.Quantity && Scalable == RHS.Scalable; 148 return Quantity != RHS.Quantity || Scalable != RHS.Scalable; 151 constexpr bool isZero() const { return Quantity == 0; } in isZero() 153 constexpr bool isNonZero() const { return Quantity != 0; } in isNonZero() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-world/ |
| D | yaml_org.tml | 19 quantity : 4 23 quantity : 1 50 quantity => '4', 56 quantity => '1',
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/ |
| D | RetireControlUnit.h | 65 unsigned normalizeQuantity(unsigned Quantity) const { in normalizeQuantity() 69 Quantity = std::min(Quantity, NumROBEntries); in normalizeQuantity() 74 return std::max(Quantity, 1U); in normalizeQuantity() 84 bool isAvailable(unsigned Quantity = 1) const { 85 return AvailableEntries >= normalizeQuantity(Quantity);
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/ |
| D | yamlish-output.t | 28 " quantity: 4", 33 " quantity: 1", 56 'quantity' => '4', 61 'quantity' => '1',
|
| D | yamlish-writer.t | 180 'quantity' => '4', 185 'quantity' => '1', 211 " quantity: 4", 216 " quantity: 1",
|
| D | yamlish.t | 230 ' quantity : 4', 234 ' quantity : 1', 261 'quantity' => '4', 266 'quantity' => '1',
|
| /openbsd/src/lib/libelf/ |
| D | gelf.3 | 55 An unsigned 16 bit quantity. 70 A signed 32 bit quantity. 72 A signed 64 bit quantity. 76 An unsigned 32 bit quantity. 78 An unsigned 64 bit quantity.
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/ |
| D | local-alloc.c | 48 Tying is represented with "quantity numbers". 49 A non-tied register is given a new quantity number. 50 Tied registers have the same quantity number. 79 /* Next quantity number available for allocation. */ 83 /* Information we maintain about each quantity. */ 86 /* The number of refs to quantity Q. */ 90 /* The frequency of uses of quantity Q. */ 95 where quantity Q was born. -1 if birth has not been recorded. */ 100 where given quantity died. Due to the way tying is done, 102 a quantity can die only once. Each quantity's life span [all …]
|
| D | gcov-io.h | 91 /* Retrieve a quantity containing BYTES*8-1 bits from SOURCE and store 141 /* Write a BYTES*8-bit quantity to FILE, portably. Returns a nonzero 178 /* Read a quantity containing BYTES bytes from FILE, portably. Return
|
| D | cse.c | 59 a hash table for most expressions, and a vector of "quantity 71 Registers and "quantity numbers": 74 registers used in the function are given distinct quantity 76 copies one register into another, we copy the quantity number. 78 quantity number to describe the value generated by this operation. 79 `reg_qty' records what quantity a register is currently thought 82 All real quantity numbers are greater than or equal to `max_reg'. 83 If register N has not been assigned a quantity, reg_qty[N] will equal N. 85 Quantity numbers below `max_reg' do not exist and none of the `qty_table' 89 quantity number. The `qty_table` members `first_reg' and `last_reg', [all …]
|
| D | dwarf2asm.c | 282 /* Return the size of an unsigned LEB128 quantity. */ 301 /* Return the size of a signed LEB128 quantity. */ 505 /* Output an unsigned LEB128 quantity. */ 567 /* Output a signed LEB128 quantity. */
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | local-alloc.c | 49 Tying is represented with "quantity numbers". 50 A non-tied register is given a new quantity number. 51 Tied registers have the same quantity number. 85 /* Next quantity number available for allocation. */ 89 /* Information we maintain about each quantity. */ 92 /* The number of refs to quantity Q. */ 96 /* The frequency of uses of quantity Q. */ 101 where quantity Q was born. -1 if birth has not been recorded. */ 106 where given quantity died. Due to the way tying is done, 108 a quantity can die only once. Each quantity's life span [all …]
|
| D | dwarf2asm.c | 289 /* Return the size of an unsigned LEB128 quantity. */ 306 /* Return the size of a signed LEB128 quantity. */ 508 /* Output an unsigned LEB128 quantity. */ 569 /* Output a signed LEB128 quantity. */
|
| D | cse.c | 64 a hash table for most expressions, and a vector of "quantity 76 Registers and "quantity numbers": 79 registers used in the function are given distinct quantity 81 copies one register into another, we copy the quantity number. 83 quantity number to describe the value generated by this operation. 84 `REG_QTY (N)' records what quantity register N is currently thought 87 All real quantity numbers are greater than or equal to zero. 88 If register N has not been assigned a quantity, `REG_QTY (N)' will 91 Quantity numbers below zero do not exist and none of the `qty_table' 95 quantity number. The `qty_table` members `first_reg' and `last_reg', [all …]
|
| /openbsd/src/lib/libc/net/ |
| D | htobe64.3 | 106 the given quantity; the others convert either from/to the native 114 of the given quantity, while the names containing 117 of the given quantity.
|
| D | inet_addr.3 | 114 integer quantity on a system that uses little-endian 122 part is interpreted as a 16-bit quantity and placed 129 is interpreted as a 24-bit quantity and placed in
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/data/ |
| D | sample.yml | 16 quantity : 4 20 quantity : 1
|
| /openbsd/src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/data/ |
| D | latin1.yml | 16 quantity : 4 20 quantity : 1
|
| /openbsd/src/gnu/llvm/libcxx/benchmarks/ |
| D | algorithms.partition_point.bench.cpp | 94 size_t Quantity; member 98 TestType::Name + '/' + std::to_string(Quantity); in name() 102 auto Data = TestType::generateInput(Quantity); in run()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| D | SystemZOperands.td | 223 // Truncate an immediate to a 8-bit signed quantity. 229 // Truncate an immediate to a 8-bit unsigned quantity. 235 // Truncate an immediate to a 8-bit unsigned quantity and mask off low bit. 241 // Truncate an immediate to a 12-bit unsigned quantity. 247 // Truncate an immediate to a 16-bit signed quantity. 253 // Negate and then truncate an immediate to a 16-bit signed quantity. 259 // Truncate an immediate to a 16-bit unsigned quantity. 265 // Truncate an immediate to a 32-bit signed quantity. 271 // Negate and then truncate an immediate to a 32-bit unsigned quantity. 277 // Truncate an immediate to a 32-bit unsigned quantity. [all …]
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-exegesis/lib/ |
| D | ProgressMeter.h | 38 inline void step(NumTy Quantity) { in step() argument 39 Accumulated += Quantity; in step()
|
| D | BenchmarkResult.h | 62 // This is the per-instruction value, i.e. measured quantity scaled per 65 // This is the per-snippet value, i.e. measured quantity for one repetition of
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| D | ScheduleHazardRecognizer.h | 120 virtual void EmitNoops(unsigned Quantity) { in EmitNoops() argument 122 for (unsigned i = 0; i < Quantity; ++i) in EmitNoops()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/ |
| D | cvt7.C | 35 // I get a "switch quantity not an integer" error for this statement. in run()
|