Home
last modified time | relevance | path

Searched refs:calc (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/contrib/unbound/validator/
H A Dval_nsec3.c1119 struct nsec3_cache_table* ct, struct query_info* qinfo, int* calc) in nsec3_do_prove_nameerror() argument
1131 sec = nsec3_prove_closest_encloser(env, flt, ct, qinfo, 1, &ce, calc); in nsec3_do_prove_nameerror()
1155 if(!find_covering_nsec3(env, flt, ct, wc, wclen, &wc_rrset, &wc_rr, calc)) { in nsec3_do_prove_nameerror()
1156 if(*calc == MAX_NSEC3_ERRORS) { in nsec3_do_prove_nameerror()
1162 } else if(*calc >= MAX_NSEC3_CALCULATIONS) { in nsec3_do_prove_nameerror()
1186 struct nsec3_cache_table* ct, int* calc) in nsec3_prove_nameerror() argument
1199 return nsec3_do_prove_nameerror(env, &flt, ct, qinfo, calc); in nsec3_prove_nameerror()
1211 int* calc) in nsec3_do_prove_nodata() argument
1221 &rrset, &rr, calc)) { in nsec3_do_prove_nodata()
1265 if(*calc == MAX_NSEC3_ERRORS) { in nsec3_do_prove_nodata()
[all …]
H A Dval_nsec3.h133 struct nsec3_cache_table* ct, int* calc);
171 struct nsec3_cache_table* ct, int* calc);
196 struct nsec3_cache_table* ct, int* calc);
251 struct nsec3_cache_table* ct, int* calc);
/freebsd/usr.bin/yacc/tests/
H A DMakefile30 FILEStest+= calc.y
110 FILEStest_yacc+= calc.error
111 FILEStest_yacc+= calc.output
112 FILEStest_yacc+= calc.tab.c
113 FILEStest_yacc+= calc.tab.h
136 FILEStest_yacc+= defines1.calc.c
137 FILEStest_yacc+= defines1.calc.h
140 FILEStest_yacc+= defines2.calc.c
141 FILEStest_yacc+= defines2.calc.h
144 FILEStest_yacc+= defines3.calc.c
[all …]
/freebsd/contrib/byacc/test/
H A Drun_test.sh199 test_stdin stdin1 - ${TEST_DIR}/calc.y
200 test_stdin stdin2 -- ${TEST_DIR}/calc.y
202 test_defines defines1 ${TEST_DIR}/calc.y
203 test_defines defines2 -d ${TEST_DIR}/calc.y
204 test_defines defines3 -b prefix ${TEST_DIR}/calc.y
/freebsd/sys/dev/gpio/
H A Dgpioths.c161 uint8_t crc, calc; in gpioths_dht_readbytes() local
213 calc = 0; in gpioths_dht_readbytes()
215 calc += (value >> (8*i)) & GPIOTHS_DHT_ONEBYTEMASK; in gpioths_dht_readbytes()
224 calc); in gpioths_dht_readbytes()
228 if (calc != crc) { in gpioths_dht_readbytes()
/freebsd/contrib/byacc/
H A DCHANGES549 test/btyacc/btyacc_destroy3.tab.c, test/btyacc/calc.tab.c,
557 test/btyacc/defines1.calc.c, test/btyacc/defines2.calc.c,
558 test/btyacc/defines3.calc.c, test/btyacc/empty.tab.c,
571 test/btyacc/rename_debug.c, test/btyacc/stdin1.calc.c,
572 test/btyacc/stdin2.calc.c, test/btyacc/varsyntax_calc1.tab.c,
573 test/yacc/calc.tab.c, test/yacc/calc1.tab.c, test/yacc/calc2.tab.c,
579 test/yacc/defines1.calc.c, test/yacc/defines2.calc.c,
580 test/yacc/defines3.calc.c, test/yacc/empty.tab.c,
591 test/yacc/stdin1.calc.c, test/yacc/stdin2.calc.c,
668 test/yacc/grammar.tab.c, test/yacc/calc.tab.c, test/yacc/calc1.tab.c,
[all …]
H A DMANIFEST93 test/btyacc/calc.error reference output for testing
94 test/btyacc/calc.output reference output for testing
95 test/btyacc/calc.tab.c reference output for testing
96 test/btyacc/calc.tab.h reference output for testing
143 test/btyacc/defines1.calc.c reference output for testing
144 test/btyacc/defines1.calc.h reference output for testing
147 test/btyacc/defines2.calc.c reference output for testing
148 test/btyacc/defines2.calc.h reference output for testing
151 test/btyacc/defines3.calc.c reference output for testing
152 test/btyacc/defines3.calc.h reference output for testing
[all …]
/freebsd/crypto/openssl/crypto/perlasm/
H A DREADME.md56 int calc(int len, int *data)
81 &function_begin("calc");
101 &function_end("calc");
/freebsd/sys/netinet/
H A Dsctp_indata.c78 uint32_t calc = 0; in sctp_calc_rwnd() local
87 return (calc); in sctp_calc_rwnd()
98 calc = max(SCTP_SB_LIMIT_RCV(stcb->sctp_socket), SCTP_MINIMAL_RWND); in sctp_calc_rwnd()
99 return (calc); in sctp_calc_rwnd()
102 calc = (uint32_t)sctp_sbspace(&stcb->asoc, &stcb->sctp_socket->so_rcv); in sctp_calc_rwnd()
107 calc = sctp_sbspace_sub(calc, (uint32_t)(asoc->size_on_reasm_queue + in sctp_calc_rwnd()
109 calc = sctp_sbspace_sub(calc, (uint32_t)(asoc->size_on_all_streams + in sctp_calc_rwnd()
111 if (calc == 0) { in sctp_calc_rwnd()
113 return (calc); in sctp_calc_rwnd()
117 calc = sctp_sbspace_sub(calc, stcb->asoc.my_rwnd_control_len); in sctp_calc_rwnd()
[all …]
H A Dtcp_hpts.c1510 uint32_t cts, time_since_ran, calc; in tcp_choose_hpts_to_run() local
1533 calc = cts - tcp_pace.cts_last_ran[i]; in tcp_choose_hpts_to_run()
1535 calc = 0; in tcp_choose_hpts_to_run()
1536 if (calc > time_since_ran) { in tcp_choose_hpts_to_run()
1538 time_since_ran = calc; in tcp_choose_hpts_to_run()
/freebsd/contrib/googletest/docs/_sass/
H A Dmain.scss109 width: calc(100% - #{$sidebar-width});
/freebsd/contrib/expat/doc/
H A Dok.min.css2calc(2.5rem - 2px);content:""}input[type=date]:disabled:before,input[type=datetime-local]:disabled…
/freebsd/sys/netipsec/
H A Dxform_ah.c694 unsigned char calc[AH_ALEN_MAX]; in ah_input_cb() local
753 m_copydata(m, skip + rplen, authsize, calc); in ah_input_cb()
757 if (timingsafe_bcmp(ptr + skip + rplen, calc, authsize)) { in ah_input_cb()
/freebsd/contrib/file/magic/Magdir/
H A Dmsvc86 # or title like "87INIT" in FP87.LIB or "ACOSASIN" in MATHC.LIB or "Copyright" in calc-bcc.lib
160 # like: \0 (calc-bcc.lib) DllGetVersion (libtiff-bcc.lib) UTF8ToHtml (libxml2-bcc.lib) xslAddCall (…
H A Darchive1918 >>>62 string calc Calc
1920 !:mime application/vnd.sun.xml.calc
1923 !:mime application/vnd.sun.xml.calc.template
H A Dwindows740 # like: "%windir%\system32\calc.exe"
/freebsd/sys/netinet/tcp_stacks/
H A Drack.c3820 int32_t calc, logged, plus; in rack_increase_bw_mul() local
3856 calc = rack->r_ctl.rack_per_of_gp_rec + plus; in rack_increase_bw_mul()
3857 if (calc > 0xffff) in rack_increase_bw_mul()
3858 calc = 0xffff; in rack_increase_bw_mul()
3860 rack->r_ctl.rack_per_of_gp_rec = (uint16_t)calc; in rack_increase_bw_mul()
3871 calc = rack->r_ctl.rack_per_of_gp_ca + plus; in rack_increase_bw_mul()
3872 if (calc > 0xffff) in rack_increase_bw_mul()
3873 calc = 0xffff; in rack_increase_bw_mul()
3875 rack->r_ctl.rack_per_of_gp_ca = (uint16_t)calc; in rack_increase_bw_mul()
3885 calc = rack->r_ctl.rack_per_of_gp_ss + plus; in rack_increase_bw_mul()
[all …]
H A Dbbr.c10197 uint32_t calc; in bbr_fini() local
10226 calc = bbr->r_ctl.rc_high_rwnd - bbr->r_ctl.rc_init_rwnd; in bbr_fini()
10227 if (calc > (bbr->r_ctl.rc_init_rwnd / 10)) in bbr_fini()
/freebsd/contrib/ntp/
H A DCommitLog-4.1.0960 * ntpd/ntp_proto.c (transmit): hpoll calc logic cleanup.
1150 (clock_select): New sdisp calc.
1151 (root_distance): New return value calc.
1392 (refclock_sample): Fix the jitter calc.
H A DNEWS1617 * [Bug 3053] ntp_loopfilter.c frequency calc precedence error. Sarah White.
5383 * [Bug 3053] ntp_loopfilter.c frequency calc precedence error. Sarah White.
H A DChangeLog689 * [Bug 3053] ntp_loopfilter.c frequency calc precedence error. Sarah White.
/freebsd/contrib/tzdata/
H A Dafrica838 # the calc. These 2 days fall in a Sunday/Monday, so it's not acceptable by
/freebsd/tools/build/mk/
H A DOptionalObsoleteFiles.inc8211 OLD_FILES+=usr/tests/usr.bin/yacc/calc.y
8272 OLD_FILES+=usr/tests/usr.bin/yacc/yacc/calc.error
8273 OLD_FILES+=usr/tests/usr.bin/yacc/yacc/calc.output
8274 OLD_FILES+=usr/tests/usr.bin/yacc/yacc/calc.tab.c
8275 OLD_FILES+=usr/tests/usr.bin/yacc/yacc/calc.tab.h
/freebsd/contrib/unbound/doc/
H A DChangelog3340 - Fix python examples/calc.py for eval, reported by X41 D-Sec.
12012 - if type is not known, size calc will skip DNAME decompression.
/freebsd/share/dict/
H A Dweb2a9250 calc-aphanite
9274 calc-sinter
9275 calc-spar
9276 calc-tufa

12