Home
last modified time | relevance | path

Searched full:amount (Results 1 – 25 of 2283) sorted by relevance

12345678910>>...92

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DARMUtils.h91 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 Dzfs_list_005_pos.ksh41 # 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 Dkern_racct.c96 uint64_t amount);
98 uint64_t amount);
498 * Increase consumption of 'resource' by 'amount' for 'racct', in racct_destroy()
499 * but not its parents. Differently from other cases, 'amount' here in racct_destroy()
504 int64_t amount)
511 racct->r_resources[resource] += amount; in racct_adjust_resource()
533 racct_add_locked(struct proc *p, int resource, uint64_t amount, int force) in racct_adjust_resource()
547 error = rctl_enforce(p, resource, amount); in racct_add_locked()
549 SDT_PROBE3(racct, , rusage, add__failure, p, resource, amount); in racct_add_locked()
553 racct_adjust_resource(p->p_racct, resource, amount); in racct_add_locked()
510 racct_adjust_resource(struct racct * racct,int resource,int64_t amount) racct_adjust_resource() argument
539 racct_add_locked(struct proc * p,int resource,uint64_t amount,int force) racct_add_locked() argument
570 racct_add(struct proc * p,int resource,uint64_t amount) racct_add() argument
590 racct_add_force(struct proc * p,int resource,uint64_t amount) racct_add_force() argument
604 racct_add_cred_locked(struct ucred * cred,int resource,uint64_t amount) racct_add_cred_locked() argument
622 racct_add_cred(struct ucred * cred,int resource,uint64_t amount) racct_add_cred() argument
660 racct_set_locked(struct proc * p,int resource,uint64_t amount,int force) racct_set_locked() argument
722 racct_set_unlocked(struct proc * p,int resource,uint64_t amount) racct_set_unlocked() argument
734 racct_set(struct proc * p,int resource,uint64_t amount) racct_set() argument
750 racct_set_force(struct proc * p,int resource,uint64_t amount) racct_set_force() argument
843 racct_sub(struct proc * p,int resource,uint64_t amount) racct_sub() argument
870 racct_sub_cred_locked(struct ucred * cred,int resource,uint64_t amount) racct_sub_cred_locked() argument
887 racct_sub_cred(struct ucred * cred,int resource,uint64_t amount) racct_sub_cred() argument
[all...]
/freebsd/sys/sys/
H A Dracct.h96 * 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 DX86DynAllocaExpander.cpp52 /// 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 DFormatCommon.h22 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 DFormatAdapters.h31 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 Dbio_prefix_text.c39 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 DLinePrinter.h57 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 Dmemory.cpp134 /// 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 DMips16InstrInfo.h81 /// 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 DMips16InstrInfo.cpp271 // 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 Dcriov.c334 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 Dzfsprops.7100 The amount of space available to the dataset and all its children, assuming that
203 The amount of space that is
213 properties, giving a quantity closer to the amount of data that applications
220 The amount of space that is
230 properties, giving a quantity closer to the amount of data that applications
271 The amount of data that is accessible by this dataset, which may or may not be
273 When a snapshot or clone is created, it initially references the same amount of
300 The amount of space consumed by this dataset and all its descendents.
304 The amount of space that a dataset consumes from its parent, as well as the
305 amount of space that is freed if this dataset is recursively destroyed, is the
[all …]
H A Dzpoolprops.753 Amount of storage used within the pool.
60 The ratio of the total amount of storage that would be required to store all
68 The amount of additional storage that would be required if block cloning
71 The amount of storage used by cloned blocks.
83 Amount of uninitialized space within the pool or device that can be used to
95 The amount of fragmentation in the pool.
96 As the amount of space
104 The amount of free space available in the pool.
126 is the amount of space remaining to be reclaimed.
175 The physical space can be different from the total amount of space that any
[all …]
/freebsd/usr.bin/rctl/
H A Drctl.c113 const char *subject, *subject_id, *resource, *action, *amount, *per; in expand_amount() local
127 amount = strsep(&copy, "/"); 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(&copy, "/"); 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 Dc.t45 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 DBlockFrequencyInfoImpl.cpp145 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 Dlastcomm.158 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 Dciphercommon_block.c37 * 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 Dtt0695 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 Dt.in11 { if (amount[$2] == "")
3 amount[$2] += $1
6 print i, name[i], amount[name[i]] | "sort"
H A Dt.a1 {if (amount[$2] "" == "") item[++num] = $2;
2 amount[$2] += $1
5 print item[i], amount[item[i]]
H A Dt.nameval1 { if (amount[$2] == "")
3 amount[$2] += $1
6 print name[i], amount[name[i]]
/freebsd/lib/libsys/
H A Dgetrusage.286 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

12345678910>>...92