Home
last modified time | relevance | path

Searched refs:limit (Results 126 – 150 of 966) sorted by relevance

12345678910>>...39

/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_support_format_ar.c591 uint64_t l, limit, last_digit_limit; in ar_atol8() local
595 limit = UINT64_MAX / base; in ar_atol8()
604 if (l>limit || (l == limit && digit > last_digit_limit)) { in ar_atol8()
617 uint64_t l, limit, last_digit_limit; in ar_atol10() local
621 limit = UINT64_MAX / base; in ar_atol10()
629 if (l > limit || (l == limit && digit > last_digit_limit)) { in ar_atol10()
/freebsd/sys/contrib/device-tree/Bindings/net/wireless/
H A Dmediatek,mt76.yaml73 ieee80211-freq-limit: true
174 4 half-dBm per-rate power limit values
181 8 half-dBm per-rate power limit values
186 Sets of per-rate power limit values for 802.11n/802.11ac
190 either 8 or 10 power limit values. The order of the
200 Sets of per-rate power limit values for 802.11ax rates
204 followed by 12 power limit values. The order of the
230 ieee80211-freq-limit = <5000000 6000000>;
/freebsd/contrib/netbsd-tests/lib/libc/regex/
H A Dt_exhaust.c187 struct rlimit limit; in ATF_TC_BODY() local
194 limit.rlim_cur = limit.rlim_max = 256 * 1024 * 1024; in ATF_TC_BODY()
195 ATF_REQUIRE(setrlimit(RLIMIT_VMEM, &limit) != -1); in ATF_TC_BODY()
/freebsd/sys/kern/
H A Dsubr_counter.c127 counter_ratecheck(struct counter_rate *cr, int64_t limit) in counter_ratecheck() argument
151 if (val <= limit) in counter_ratecheck()
167 if (counter_u64_fetch(cr->cr_rate) > limit) in counter_ratecheck()
/freebsd/usr.bin/cmp/
H A Dspecial.c43 int fd2, const char *file2, off_t skip2, off_t limit) in c_special() argument
72 for (byte = line = 1; limit == 0 || byte <= limit; ++byte) { in c_special()
/freebsd/tools/build/cross-build/include/mac/sys/
H A Dlinker_set.h92 __CONCAT(__typeof_set_,set) **limit; \
95 .limit = (__CONCAT(__typeof_set_,set) **)(__set_data + \
119 (__SET_RANGE(set).limit)
/freebsd/sbin/pfctl/tests/files/
H A Dpf0022.in4 set limit states 500
5 set limit {states 1000,frags 1000}
/freebsd/usr.sbin/lpr/filters/
H A Dlpf.c70 char *limit; in main() local
181 for (cp = buf[i], limit = cp+maxcol[i]; cp <= limit;) { in main()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DJSONBackend.cpp53 for (unsigned i = 0, limit = Bits->getNumBits(); i < limit; i++) in translateInit() local
96 for (unsigned i = 0, limit = Dag->getNumArgs(); i < limit; ++i) { in translateInit() local
/freebsd/sys/contrib/device-tree/src/arm/qcom/
H A Dqcom-msm8974-sony-xperia-rhine-amami.dts12 qcom,fast-charge-current-limit = <1300000>;
13 qcom,dc-current-limit = <1300000>;
/freebsd/contrib/ntp/ntpd/
H A Dntp_leapsec.c168 vint64 ttime, limit; in leapsec_load() local
178 limit = ntpcal_date_to_ntp64(&build); in leapsec_load()
180 memset(&limit, 0, sizeof(limit)); in leapsec_load()
208 if (ucmpv64(&ttime, &limit) >= 0) { in leapsec_load()
561 vint64 limit; in leapsec_expired() local
564 limit = ntpcal_ntp_to_ntp(when, tpiv); in leapsec_expired()
565 return ucmpv64(&limit, &pt->head.expire) >= 0; in leapsec_expired()
575 vint64 limit; in leapsec_daystolive() local
578 limit = ntpcal_ntp_to_ntp(when, tpiv); in leapsec_daystolive()
579 limit = subv64(&pt->head.expire, &limit); in leapsec_daystolive()
[all …]
/freebsd/usr.sbin/bhyve/amd64/
H A Dtask_switch.c126 seg_desc.limit = (u_int)(USD_GETLIMIT(usd) << 12) | 0xfff; in usd_to_seg_desc()
128 seg_desc.limit = (u_int)USD_GETLIMIT(usd); in usd_to_seg_desc()
176 uint32_t limit, access; in desc_table_limit_check() local
180 error = vm_get_desc(vcpu, reg, &base, &limit, &access); in desc_table_limit_check()
188 if (limit < SEL_LIMIT(sel)) in desc_table_limit_check()
209 uint32_t limit, access; in desc_table_rw() local
213 error = vm_get_desc(vcpu, reg, &base, &limit, &access); in desc_table_rw()
215 assert(limit >= SEL_LIMIT(sel)); in desc_table_rw()
362 seg_desc->limit = 0; in validate_seg_desc()
640 &seg_desc.limit, &seg_desc.access); in push_errcode()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap3-n950.dts197 st,min-limit-x = <(-32)>;
198 st,min-limit-y = <3>;
199 st,min-limit-z = <3>;
201 st,max-limit-x = <(-3)>;
202 st,max-limit-y = <32>;
203 st,max-limit-z = <32>;
/freebsd/contrib/ntp/libntp/lib/isc/include/isc/
H A Dhash.h85 isc_hash_ctxcreate(isc_mem_t *mctx, isc_entropy_t *entropy, unsigned int limit,
88 isc_hash_create(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit);
/freebsd/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp270 struct rlimit limit; in __safestack_init() local
271 if (getrlimit(RLIMIT_STACK, &limit) == 0 && limit.rlim_cur != RLIM_INFINITY) in __safestack_init()
272 size = limit.rlim_cur; in __safestack_init()
/freebsd/contrib/bzip2/
H A Dhuffman.c170 void BZ2_hbCreateDecodeTables ( Int32 *limit, in BZ2_hbCreateDecodeTables() argument
190 for (i = 0; i < BZ_MAX_CODE_LEN; i++) limit[i] = 0; in BZ2_hbCreateDecodeTables()
195 limit[i] = vec-1; in BZ2_hbCreateDecodeTables()
199 base[i] = ((limit[i-1] + 1) << 1) - base[i]; in BZ2_hbCreateDecodeTables()
/freebsd/contrib/elftoolchain/libelftc/
H A Dlibelftc_dem_gnu3.c247 limit = 0; in cpp_demangle_gnu3()
1385 limit = 0; in cpp_demangle_read_function()
1654 size_t limit; in cpp_demangle_read_local_name() local
1676 limit = 0; in cpp_demangle_read_local_name()
1877 limit = 0; in cpp_demangle_read_nested_name()
2423 limit = 0; in cpp_demangle_read_tmpl_args()
3560 limit = 0; in decode_fp_to_double()
3603 limit = 0; in decode_fp_to_float()
3659 limit = 0; in decode_fp_to_float128()
3719 limit = 0; in decode_fp_to_float80()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_flags.inc31 "The limit of origin chain length. Non-positive values mean unlimited.")
34 "The limit of origin node's references count. "
37 "The depth limit of origin tracking stack traces.")
/freebsd/contrib/diff/src/
H A Dutil.c516 char const *base = line[0], *limit = line[1]; /* Help the compiler. */ in print_1_line() local
530 output_1_line (base, limit, flag_format, line_flag); in print_1_line()
532 if ((!line_flag || line_flag[0]) && limit[-1] != '\n') in print_1_line()
542 output_1_line (char const *base, char const *limit, char const *flag_format, in output_1_line() argument
546 fwrite (base, sizeof (char), limit - base, outfile); in output_1_line()
555 while (t < limit) in output_1_line()
570 if (flag_format && t < limit && *t != '\n') in output_1_line()
/freebsd/contrib/llvm-project/lld/ELF/
H A DARMErrataFix.cpp256 uint64_t limit) { in scanCortexA8Errata657417() argument
262 if (off >= limit || limit - off < 8) { in scanCortexA8Errata657417()
264 off = limit; in scanCortexA8Errata657417()
500 uint64_t limit = nonThumbSym == mapSyms.end() ? isec->content().size() in patchInputSectionDescription() local
503 while (off < limit) { in patchInputSectionDescription()
504 ScanResult sr = scanCortexA8Errata657417(isec, off, limit); in patchInputSectionDescription()
/freebsd/contrib/ncurses/ncurses/trace/
H A Dvisbuf.c60 #define VisChar(tp, chr, limit) _nc_vischar(tp, chr, limit) argument
61 #define LIMIT_ARG ,size_t limit
63 #define VisChar(tp, chr, limit) _nc_vischar(tp, chr) argument
99 _nc_SPRINTF(tp, _nc_SLIMIT(limit) in _nc_vischar()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua164 limit = 5000
167 for i=1,limit do
178 for i=1,limit do
189 for i=1,limit do a[i] = false end
192 for i,v in pairs(a) do assert(not v or i=='n' and v==limit) end
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ve/
H A Dgrow_stack.S24 shm.l %sl, 0x8(%s63) # old limit at addr:8
25 shm.l %sp, 0x10(%s63) # new limit at addr:16
H A Dgrow_stack_align.S24 shm.l %sl, 0x8(%s63) # old limit at addr:8
25 shm.l %sp, 0x10(%s63) # new limit at addr:16
/freebsd/contrib/lua/src/
H A Dlmem.h66 #define luaM_growvector(L,v,nelems,size,t,limit,e) \ argument
68 luaM_limitN(limit,t),e)))
86 int *size, int size_elem, int limit,

12345678910>>...39