Home
last modified time | relevance | path

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

12345678910>>...93

/freebsd-src/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-src/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-src/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-src/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-src/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-src/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;
35 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter()
36 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount),
41 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
90 size_t Amount, char Fill = ' ') {
91 return support::detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount,
29 size_t Amount; global() variable
33 AlignAdapter(T && Item,AlignStyle Where,size_t Amount,char Fill) AlignAdapter() argument
/freebsd-src/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-src/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-src/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-src/contrib/xz/src/liblzma/api/lzma/
H A Dhardware.h13 * is only a function to find out the amount of RAM, but in the future there
36 * \brief Get the total amount of physical memory (RAM) in bytes
42 * \return On success, the total amount of physical memory in bytes
43 * is returned. If the amount of RAM cannot be determined,
45 * or if there is no code in liblzma to detect the amount
/freebsd-src/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()
471 validImmediate(unsigned Opcode,unsigned Reg,int64_t Amount) validImmediate() argument
[all...]
/freebsd-src/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 o
[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 o
[all...]
/freebsd-src/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.h137 /// Extra amount of data to keep available before the "actual"
144 /// Extra amount of data to keep available after the "actual"
188 // amount of extra buffer needed after dict_size becomes
291 mf_skip(lzma_mf *mf, uint32_t amount) in mf_skip() argument
293 if (amount != 0) { in mf_skip()
294 mf->skip(mf, amount); in mf_skip()
295 mf->read_ahead += amount; in mf_skip()
338 extern void lzma_mf_hc3_skip(lzma_mf *dict, uint32_t amount);
341 extern void lzma_mf_hc4_skip(lzma_mf *dict, uint32_t amount);
344 extern void lzma_mf_bt2_skip(lzma_mf *dict, uint32_t amount);
[all …]
/freebsd-src/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-src/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-src/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-src/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.nameval1 { if (amount[$2] == "")
3 amount[$2] += $1
6 print name[i], amount[name[i]]
H A Dt.a1 {if (amount[$2] "" == "") item[++num] = $2;
2 amount[$2] += $1
5 print item[i], amount[item[i]]
/freebsd-src/sys/contrib/openzfs/module/os/linux/zfs/
H A Darc_os.c67 * with 4K pages) limits the amount of time spent attempting to reclaim ARC
89 * Return a default max arc size based on the amount of physical memory. in arc_default_max()
105 * Return maximum amount of memory that we could possibly use. Reduced in arc_all_memory()
119 * Return the amount of memory that is considered free. In user space in arc_free_memory()
137 * Return the amount of memory that can be consumed before reclaim will be in arc_available_memory()
139 * the amount of memory that needs to be freed up. in arc_available_memory()
185 * Therefore, we limit the amount of data that we say is evictable, in arc_shrinker_count()
186 * which limits the amount that the shrinker will ask us to evict for in arc_shrinker_count()
220 * for the requested amount of data to be evicted. To avoid deadlock in arc_shrinker_scan()
314 * on the amount o in arc_set_sys_free()
[all...]
/freebsd-src/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-src/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

12345678910>>...93