/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | ARMUtils.h | 91 static inline uint32_t LSL_C(const uint32_t value, const uint32_t amount, in LSL_C() argument 93 if (amount == 0) { in LSL_C() 98 carry_out = amount <= 32 ? Bit32(value, 32 - amount) : 0; in LSL_C() 99 return value << amount; in LSL_C() 102 static inline uint32_t LSL(const uint32_t value, const uint32_t amount, in LSL() argument 105 if (amount == 0) in LSL() 108 uint32_t result = LSL_C(value, amount, dont_care, success); in LSL() 115 static inline uint32_t LSR_C(const uint32_t value, const uint32_t amount, in LSR_C() argument 117 if (amount == 0) { in LSR_C() 122 carry_out = amount <= 32 ? Bit32(value, amount - 1) : 0; in LSR_C() [all …]
|
/freebsd/tests/sys/cddl/zfs/tests/cli_user/zfs_list/ |
H A D | zfs_list_005_pos.ksh | 41 # 2. Setting user property f:amount for filesystem and volume. 61 AMOUNT="0217 812 0217 0781 7 1364 687" 74 amount=$($ECHO $AMOUNT | $AWK '{print $1}') 75 log_must $ZFS set f:amount=$amount $basefs/$ds 77 log_must $ZFS set f:amount=$amount $basefs/${ds}-vol 79 eval AMOUNT=\${AMOUNT#$amount } 127 # Sort by color,amount 129 "run_unprivileged $ZFS list -H -r -o name -s f:color -s f:amount -t filesystem $basefs" \ 130 "$fs_color_amount" "f:color,f:amount" 133 "run_unprivileged $ZFS list -H -r -o name -s f:color -s f:amount -t volume $basefs" \ [all …]
|
/freebsd/sys/kern/ |
H A D | kern_racct.c | 96 uint64_t amount); 98 uint64_t amount); 483 * Increase consumption of 'resource' by 'amount' for 'racct', 484 * but not its parents. Differently from other cases, 'amount' here 489 int64_t amount) in racct_adjust_resource() argument 496 racct->r_resources[resource] += amount; in racct_adjust_resource() 518 racct_add_locked(struct proc *p, int resource, uint64_t amount, int force) in racct_add_locked() argument 532 error = rctl_enforce(p, resource, amount); in racct_add_locked() 534 SDT_PROBE3(racct, , rusage, add__failure, p, resource, amount); in racct_add_locked() 538 racct_adjust_resource(p->p_racct, resource, amount); in racct_add_locked() [all …]
|
/freebsd/sys/sys/ |
H A D | racct.h | 96 * Amount stored in c_resources[] is 10**6 times bigger than what's 174 int racct_add(struct proc *p, int resource, uint64_t amount); 175 void racct_add_cred(struct ucred *cred, int resource, uint64_t amount); 176 void racct_add_force(struct proc *p, int resource, uint64_t amount); 178 int racct_set(struct proc *p, int resource, uint64_t amount); 179 int racct_set_unlocked(struct proc *p, int resource, uint64_t amount); 180 void racct_set_force(struct proc *p, int resource, uint64_t amount); 181 void racct_sub(struct proc *p, int resource, uint64_t amount); 182 void racct_sub_cred(struct ucred *cred, int resource, uint64_t amount); 204 racct_add(struct proc *p, int resource, uint64_t amount) in racct_add() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86DynAllocaExpander.cpp | 52 /// Get the appropriate lowering based on current offset and amount. 79 /// Return the allocation amount for a DynAlloca instruction, or -1 if unknown. 99 // For a non-constant amount or a large amount, we have to probe. in getLowering() 157 int64_t Amount = getDynAllocaAmount(&MI, MRI); in computeLowerings() local 158 Lowering L = getLowering(Offset, Amount); in computeLowerings() 162 Offset += Amount; in computeLowerings() 165 Offset = Amount; in computeLowerings() 201 int64_t Amount = getDynAllocaAmount(MI, MRI); in lower() local 202 if (Amount == 0) { in lower() 221 assert(Amount >= SlotSize); in lower() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | FormatCommon.h | 22 size_t Amount; member 26 size_t Amount, char Fill = ' ') 27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in Adapter() 35 if (Amount == 0) { in format() 43 if (Amount <= Item.size()) { in format() 48 size_t PadAmount = Amount - Item.size(); in format()
|
H A D | FormatAdapters.h | 31 size_t Amount; variable 35 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter() argument 36 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), in AlignAdapter() 41 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format() 90 size_t Amount, char Fill = ' ') { 91 return support::detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount,
|
/freebsd/crypto/openssl/test/ |
H A D | bio_prefix_text.c | 39 static size_t amount = 0; variable 51 { "n", OPT_AMOUNT, 'p', "Amount of BIO_f_prefix() filters" }, 86 if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes)) in run_pipe() 97 size_t n = amount; in setup_bio_chain() 129 BIO_free_all(chain[amount - 1]); in cleanup() 164 amount = strtoul(arg, &endptr, 10); in setup() 171 if (amount < 1) { in setup() 209 if (idx >= amount) { in setup() 211 progname, idx, amount - 1); in setup() 240 if (idx >= amount) { in setup() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | LinePrinter.h | 57 void Indent(uint32_t Amount = 0); 58 void Unindent(uint32_t Amount = 0); 133 explicit AutoIndent(LinePrinter &L, uint32_t Amount = 0) 134 : L(&L), Amount(Amount) { 135 L.Indent(Amount); 139 Amount = Scope.IndentLevel; in AutoIndent() 143 L->Unindent(Amount); in ~AutoIndent() 147 uint32_t Amount = 0; member
|
/freebsd/contrib/kyua/utils/ |
H A D | memory.cpp | 134 /// Queries the total amount of physical memory. 139 /// \return The amount of physical memory, in bytes. If the code does not know 144 static int64_t amount = -1; in physical_memory() local 145 if (amount == -1) { in physical_memory() 148 amount = 0; in physical_memory() 150 amount = query_sysctl(query_sysctl_mib); in physical_memory() 154 query_type % amount); in physical_memory() 156 POST(amount > -1); in physical_memory() 157 return units::bytes(amount); in physical_memory()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | Mips16InstrInfo.h | 81 /// Adjust SP by Amount bytes. 82 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB, 92 static bool validImmediate(unsigned Opcode, unsigned Reg, int64_t Amount); 118 // Adjust SP by Amount bytes where bytes can be up to 32bit number. 119 void adjustStackPtrBig(unsigned SP, int64_t Amount, MachineBasicBlock &MBB, 123 // Adjust SP by Amount bytes where bytes can be up to 32bit number. 124 void adjustStackPtrBigUnrestricted(unsigned SP, int64_t Amount,
|
H A D | Mips16InstrInfo.cpp | 271 // Adjust SP by Amount bytes where bytes can be up to 32bit number. 275 void Mips16InstrInfo::adjustStackPtrBig(unsigned SP, int64_t Amount, in adjustStackPtrBig() argument 288 MIB1.addImm(Amount).addImm(-1); in adjustStackPtrBig() 300 unsigned SP, int64_t Amount, MachineBasicBlock &MBB, in adjustStackPtrBigUnrestricted() argument 302 llvm_unreachable("adjust stack pointer amount exceeded"); in adjustStackPtrBigUnrestricted() 305 /// Adjust SP by Amount bytes. 306 void Mips16InstrInfo::adjustStackPtr(unsigned SP, int64_t Amount, in adjustStackPtr() argument 309 if (Amount == 0) in adjustStackPtr() 312 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16> in adjustStackPtr() 313 BuildAddiuSpImm(MBB, I, Amount); in adjustStackPtr() [all …]
|
/freebsd/sys/opencrypto/ |
H A D | criov.c | 334 crypto_cursor_advance(struct crypto_buffer_cursor *cc, size_t amount) in crypto_cursor_advance() argument 340 MPASS(cc->cc_buf_len >= amount); in crypto_cursor_advance() 341 cc->cc_buf += amount; in crypto_cursor_advance() 342 cc->cc_buf_len -= amount; in crypto_cursor_advance() 347 if (amount < remain) { in crypto_cursor_advance() 348 cc->cc_offset += amount; in crypto_cursor_advance() 351 amount -= remain; in crypto_cursor_advance() 354 if (amount == 0) in crypto_cursor_advance() 359 MPASS(cc->cc_mbuf->m_len >= cc->cc_offset + amount); in crypto_cursor_advance() 360 cc->cc_offset += amount; in crypto_cursor_advance() [all …]
|
/freebsd/sys/contrib/openzfs/man/man7/ |
H A D | zfsprops.7 | 101 The amount of space available to the dataset and all its children, assuming that 204 The amount of space that is 214 properties, giving a quantity closer to the amount of data that applications 221 The amount of space that is 231 properties, giving a quantity closer to the amount of data that applications 272 The amount of data that is accessible by this dataset, which may or may not be 274 When a snapshot or clone is created, it initially references the same amount of 301 The amount of space consumed by this dataset and all its descendants. 305 The amount of space that a dataset consumes from its parent, as well as the 306 amount of space that is freed if this dataset is recursively destroyed, is the [all …]
|
H A D | zpoolprops.7 | 54 Amount of storage used within the pool. 61 The ratio of the total amount of storage that would be required to store all 69 The amount of additional storage that would be required if block cloning 72 The amount of storage used by cloned blocks. 84 Amount of uninitialized space within the pool or device that can be used to 96 The amount of fragmentation in the pool. 97 As the amount of space 105 The amount of free space available in the pool. 127 is the amount of space remaining to be reclaimed. 176 The physical space can be different from the total amount of space that any [all …]
|
/freebsd/usr.bin/rctl/ |
H A D | rctl.c | 113 const char *subject, *subject_id, *resource, *action, *amount, *per; in expand_amount() local 127 amount = strsep(©, "/"); in expand_amount() 130 if (amount == NULL || strlen(amount) == 0) { in expand_amount() 148 if (expand_number(amount, &num)) { in expand_amount() 150 unexpanded_rule, amount); in expand_amount() 308 const char *subject, *subject_id, *resource, *action, *amount, *per; in humanize_amount() local 320 amount = strsep(©, "/"); in humanize_amount() 323 if (amount == NULL || strlen(amount) == 0 || in humanize_amount() 324 str2int64(amount, &num) != 0) { in humanize_amount() 461 const char *resource, *amount; in humanize_usage_amount() local [all …]
|
/freebsd/share/doc/smm/18.net/ |
H A D | c.t | 45 respect. At boot time a fixed amount of memory is allocated by 68 the size of which determines the maximum amount of memory 70 A small amount of memory is allocated at boot time 104 based on the amount of space in the associated socket queues. That 105 is, send windows are calculated based on the amount of free space 107 based on the amount of data awaiting transmission in the send queue.
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | BlockFrequencyInfoImpl.cpp | 145 void Distribution::add(const BlockNode &Node, uint64_t Amount, in add() argument 147 assert(Amount && "invalid weight of 0"); in add() 148 uint64_t NewTotal = Total + Amount; in add() 159 Weights.push_back(Weight(Type, Node, Amount)); in add() 164 if (!W.Amount) { in combineWeight() 170 assert(OtherW.Amount && "Expected non-zero weight"); in combineWeight() 171 if (W.Amount > W.Amount + OtherW.Amount) in combineWeight() 173 W.Amount = UINT64_MAX; in combineWeight() 175 W.Amount += OtherW.Amount; in combineWeight() 248 Weights.front().Amount = 1; in normalize() [all …]
|
/freebsd/usr.bin/lastcomm/ |
H A D | lastcomm.1 | 58 Print the amount of cpu time used by the process. 60 Print the amount of elapsed time used by the process. 62 Print the amount of system time used by the process. 64 Print the amount of user time used by the process. 124 The amount of
|
/freebsd/crypto/openssl/providers/implementations/ciphers/ |
H A D | ciphercommon_block.c | 37 * Fills a single block of buffered data from the input, and returns the amount 43 * buflen: contains the amount of data already in buf on entry. Updated with the 44 * amount of data in buf at the end. On entry *buflen must always be 48 * inlen: amount of input data available 51 * *buflen is updated containing the amount of data in buf. *in is updated to 53 * the remaining amount of data in *in. Returns the largest value <= *inlen
|
/freebsd/share/doc/usd/22.trofftut/ |
H A D | tt06 | 95 isn't the right amount. 98 command can be used to request an arbitrary amount of vertical motion. 101 \ev'(amount)' 103 causes motion up or down the page by the amount specified in 104 `(amount)'. 121 There are many other ways to specify the amount of motion _ 154 the same amount in the downward direction.
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | t.in1 | 1 { if (amount[$2] == "") 3 amount[$2] += $1 6 print i, name[i], amount[name[i]] | "sort"
|
H A D | t.a | 1 {if (amount[$2] "" == "") item[++num] = $2; 2 amount[$2] += $1 5 print item[i], amount[item[i]]
|
H A D | t.nameval | 1 { if (amount[$2] == "") 3 amount[$2] += $1 6 print name[i], amount[name[i]]
|
/freebsd/lib/libsys/ |
H A D | getrusage.2 | 86 the total amount of time spent executing in user mode. 88 the total amount of time spent in the system executing on behalf 95 value indicating the amount of memory used 105 an integral value of the amount of unshared memory residing in the 109 an integral value of the amount of unshared memory residing in the
|