| /freebsd/contrib/libucl/tests/basic/ |
| H A D | 9.in | 1 .include "$CURDIR/9.inc" 2 .include "$CURDIR/9-comment.inc" 3 #.include "$CURDIR/9.inc" 4 .include "$CURDIR/9.inc" 7 .include "$CURDIR/9.inc" 9 #.try_include "$CURDIR/9.incorrect.inc" 10 # 9.incorrect.inc contains '{}}' 17 .include(prefix=true; key="prefix") "$CURDIR/9.inc" 18 .include(prefix=true; key="prefix2"; target="array"; glob=true) "$CURDIR/9.inc" 19 .include(prefix=true; key="prefix3"; target="array"; glob=true) "$CURDIR/9.inc" [all …]
|
| H A D | load.in | 4 …line=false, trim=false, escape=false, key="key1", target="string", priority=1) "${CURDIR}/load.inc" 5 …iline=true, trim=false, escape=false, key="key2", target="string", priority=1) "${CURDIR}/load.inc" 6 …tiline=true, trim=true, escape=false, key="key3", target="string", priority=1) "${CURDIR}/load.inc" 7 …ltiline=true, trim=true, escape=true, key="key4", target="string", priority=1) "${CURDIR}/load.inc" 8 …iline=false, trim=true, escape=false, key="key5", target="string", priority=1) "${CURDIR}/load.inc" 9 …iline=false, trim=false, escape=true, key="key6", target="string", priority=1) "${CURDIR}/load.inc" 10 …tiline=false, trim=true, escape=true, key="key7", target="string", priority=1) "${CURDIR}/load.inc" 11 …ltiline=false, trim=false, escape=false, key="key8", target="int", priority=1) "${CURDIR}/load.inc" 12 …ltiline=false, trim=false, escape=false, key="key9", target="int", priority=4) "${CURDIR}/load.inc" 13 …multiline=false, trim=false, escape=false, key="key10", target="string", priority=1) "load_bad.inc"
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/ |
| H A D | tst.include.ksh | 41 cfile=${TMPDIR:-/tmp}/inc.$$.$file.c 42 cofile=${TMPDIR:-/tmp}/inc.$$.$file 59 echo $inc failed: `cat $errfile | head -1` > $ofile 61 echo $inc succeeded > $ofile 88 for inc in $files; do 89 file=`basename $inc` 96 ofile=${TMPDIR:-/tmp}/inc.$file.$$.out 97 errfile=${TMPDIR:-/tmp}/inc.$file.$$.err 114 bigofile=${TMPDIR:-/tmp}/inc.$$.out 116 for inc in $files; do [all …]
|
| /freebsd/contrib/bc/src/ |
| H A D | rand.c | 161 r->inc |= (BcRandState) 1UL; in bc_rand_setModified() 163 r->inc.lo |= (uint_fast64_t) 1UL; in bc_rand_setModified() 176 r->inc &= ~((BcRandState) 1UL); in bc_rand_clearModified() 178 r->inc.lo &= ~(1UL); in bc_rand_clearModified() 284 BcRandState inc; in bc_rand_inc() local 287 inc = r->inc | 1; in bc_rand_inc() 289 inc.lo = r->inc.lo | 1; in bc_rand_inc() 290 inc.hi = r->inc.hi; in bc_rand_inc() 293 return inc; in bc_rand_inc() 304 r->inc <<= 1UL; in bc_rand_setupInc() [all …]
|
| /freebsd/lib/clang/libclang/ |
| H A D | Makefile | 892 clang/AST/AbstractBasicReader.inc: \ 897 TGHDRS+= clang/AST/AbstractBasicReader.inc 899 clang/AST/AbstractBasicWriter.inc: \ 904 TGHDRS+= clang/AST/AbstractBasicWriter.inc 906 clang/AST/AbstractTypeReader.inc: \ 911 TGHDRS+= clang/AST/AbstractTypeReader.inc 913 clang/AST/AbstractTypeWriter.inc: \ 918 TGHDRS+= clang/AST/AbstractTypeWriter.inc 920 clang/AST/AttrImpl.inc: ${CLANG_SRCS}/include/clang/Basic/Attr.td 924 TGHDRS+= clang/AST/AttrImpl.inc [all...] |
| /freebsd/contrib/kyua/ |
| H A D | Makefile.am | 55 include admin/Makefile.am.inc 56 include bootstrap/Makefile.am.inc 57 include cli/Makefile.am.inc 58 include doc/Makefile.am.inc 59 include drivers/Makefile.am.inc 60 include engine/Makefile.am.inc 61 include examples/Makefile.am.inc 62 include integration/Makefile.am.inc 63 include misc/Makefile.am.inc 64 include model/Makefile.am.inc [all …]
|
| /freebsd/sys/netinet/ |
| H A D | tcp_hostcache.c | 211 #define HOSTCACHE_HASH(inc) \ argument 212 ((inc)->inc_flags & INC_ISIPV6) ? \ 213 (jenkins_hash32((inc)->inc6_faddr.s6_addr32, 4, \ 216 (jenkins_hash32(&(inc)->inc_faddr.s_addr, 1, \ 314 tcp_hc_cmp(struct hc_metrics *hc_entry, const struct in_conninfo *inc) in tcp_hc_cmp() argument 317 if (inc->inc_flags & INC_ISIPV6) { in tcp_hc_cmp() 319 if (memcmp(&inc->inc6_faddr, &hc_entry->ip6, in tcp_hc_cmp() 320 sizeof(inc->inc6_faddr)) == 0) in tcp_hc_cmp() 323 if (memcmp(&inc->inc_faddr, &hc_entry->ip4, in tcp_hc_cmp() 324 sizeof(inc->inc_faddr)) == 0) in tcp_hc_cmp() [all …]
|
| H A D | tcp_fastopen.c | 533 tcp_fastopen_make_cookie(uint8_t key[SIPHASH_KEY_LENGTH], struct in_conninfo *inc) in tcp_fastopen_make_cookie() argument 540 switch (inc->inc_flags & INC_ISIPV6) { in tcp_fastopen_make_cookie() 543 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr)); in tcp_fastopen_make_cookie() 548 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr)); in tcp_fastopen_make_cookie() 608 tcp_fastopen_check_cookie(struct in_conninfo *inc, uint8_t *cookie, in tcp_fastopen_check_cookie() argument 627 inc); in tcp_fastopen_check_cookie() 641 inc); in tcp_fastopen_check_cookie() 955 struct in_conninfo *inc = &tptoinpcb(tp)->inp_inc; in tcp_fastopen_disable_path() local 959 cce = tcp_fastopen_ccache_lookup(inc, &ccb); in tcp_fastopen_disable_path() 970 tcp_fastopen_ccache_create(ccb, inc, 0, in tcp_fastopen_disable_path() [all …]
|
| H A D | tcp_syncache.c | 570 syncache_hashbucket(struct in_conninfo *inc) in syncache_hashbucket() argument 581 hash = jenkins_hash32((uint32_t *)&inc->inc_ie, 5, in syncache_hashbucket() 592 syncache_lookup(struct in_conninfo *inc, struct syncache_head **schp) in syncache_lookup() argument 597 *schp = sch = syncache_hashbucket(inc); in syncache_lookup() 602 if (bcmp(&inc->inc_ie, &sc->sc_inc.inc_ie, in syncache_lookup() 616 syncache_chkrst(struct in_conninfo *inc, struct tcphdr *th, uint16_t port) in syncache_chkrst() argument 624 sc = syncache_lookup(inc, &sch); /* returns locked sch */ in syncache_chkrst() 636 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) in syncache_chkrst() 646 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) in syncache_chkrst() 686 if ((s = tcp_log_addrs(inc, t in syncache_chkrst() 720 syncache_unreach(struct in_conninfo * inc,tcp_seq th_seq,uint16_t port) syncache_unreach() argument 1068 syncache_expand(struct in_conninfo * inc,struct tcpopt * to,struct tcphdr * th,struct socket ** lsop,struct mbuf * m,uint16_t port) syncache_expand() argument 1398 syncache_add(struct in_conninfo * inc,struct tcpopt * to,struct tcphdr * th,struct inpcb * inp,struct socket * so,struct mbuf * m,void * tod,void * todctx,uint8_t iptos,uint16_t port) syncache_add() argument 2232 syncookie_mac(struct in_conninfo * inc,tcp_seq irs,uint8_t flags,uint8_t * secbits,uintptr_t secmod) syncookie_mac() argument 2320 syncookie_expand(struct in_conninfo * inc,const struct syncache_head * sch,struct syncache * sc,struct tcphdr * th,struct tcpopt * to,struct socket * lso,uint16_t port) syncookie_expand() argument 2417 syncookie_cmp(struct in_conninfo * inc,const struct syncache_head * sch,struct syncache * sc,struct tcphdr * th,struct tcpopt * to,struct socket * lso,uint16_t port) syncookie_cmp() argument 2484 syncache_pause(struct in_conninfo * inc) syncache_pause() argument [all...] |
| H A D | toecore.c | 355 toe_syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, in toe_syncache_add() argument 361 (void )syncache_add(inc, to, th, inp, inp->inp_socket, NULL, tod, in toe_syncache_add() 366 toe_syncache_expand(struct in_conninfo *inc, struct tcpopt *to, in toe_syncache_expand() argument 372 return (syncache_expand(inc, to, th, lsop, NULL, htons(0))); in toe_syncache_expand() 384 toe_4tuple_check(struct in_conninfo *inc, struct tcphdr *th, struct ifnet *ifp) in toe_4tuple_check() argument 389 if (inc->inc_flags & INC_ISIPV6) { in toe_4tuple_check() 390 inp = in6_pcblookup(&V_tcbinfo, &inc->inc6_faddr, in toe_4tuple_check() 391 inc->inc_fport, &inc->inc6_laddr, inc->inc_lport, in toe_4tuple_check() 394 inp = in_pcblookup(&V_tcbinfo, inc->inc_faddr, inc->inc_fport, in toe_4tuple_check() 395 inc->inc_laddr, inc->inc_lport, INPLOOKUP_RLOCKPCB, ifp); in toe_4tuple_check()
|
| /freebsd/contrib/llvm-project/llvm/include/ |
| H A D | module.install.modulemap | 3 textual header "llvm/CodeGen/GenVT.inc" 16 textual header "llvm/IR/Attributes.inc" 21 textual header "llvm/IR/Intrinsics.inc" 25 textual header "llvm/IR/IntrinsicEnums.inc" 34 textual header "llvm/TargetParser/ARMTargetParserDef.inc" 35 textual header "llvm/TargetParser/AArch64TargetParserDef.inc" 36 textual header "llvm/TargetParser/RISCVTargetParserDef.inc"
|
| /freebsd/sys/i386/include/ |
| H A D | counter.h | 53 counter_64_inc_8b(uint64_t *p, int64_t inc) in counter_64_inc_8b() argument 67 : "S" ((char *)p - (char *)&__pcpu[0]), "D" (&inc) in counter_64_inc_8b() 177 #define counter_u64_add_protected(c, inc) do { \ argument 180 *(uint64_t *)zpcpu_get(c) += (inc); \ 182 counter_64_inc_8b((c), (inc)); \ 186 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add() argument 191 *(uint64_t *)zpcpu_get(c) += inc; in counter_u64_add() 194 counter_64_inc_8b(c, inc); in counter_u64_add()
|
| /freebsd/sys/netpfil/ipfilter/netinet/ |
| H A D | ip_ftp_pxy.c | 283 int inc, off; in ipf_p_ftp_port() local 391 inc = nlen - olen; in ipf_p_ftp_port() 392 if ((inc + fin->fin_plen) > 65535) { in ipf_p_ftp_port() 394 int, inc); in ipf_p_ftp_port() 397 inc); in ipf_p_ftp_port() 402 M_ADJ(m, inc); in ipf_p_ftp_port() 409 if (inc < 0) in ipf_p_ftp_port() 410 M_ADJ(m, inc); in ipf_p_ftp_port() 415 if (inc != 0) { in ipf_p_ftp_port() 416 fin->fin_plen += inc; in ipf_p_ftp_port() [all …]
|
| H A D | ip_irc_pxy.c | 248 int off, inc = 0, i, dlen; in ipf_p_irc_send() local 305 inc = nlen - olen; in ipf_p_irc_send() 307 if ((inc + fin->fin_plen) > 65535) in ipf_p_irc_send() 313 if ((inc > 0) && (m1->b_datap->db_lim - m1->b_wptr < inc)) { in ipf_p_irc_send() 331 m1->b_datap->db_struiolim += inc; in ipf_p_irc_send() 334 m1->b_wptr += inc; in ipf_p_irc_send() 337 if (inc < 0) in ipf_p_irc_send() 338 m_adj(m, inc); in ipf_p_irc_send() 344 if (inc != 0) { in ipf_p_irc_send() 349 sum2 = fin->fin_plen + inc; in ipf_p_irc_send() [all …]
|
| /freebsd/sys/powerpc/conf/dpaa/ |
| H A D | config.dpaa | 9 -I$S/contrib/ncsw/inc \ 10 -I$S/contrib/ncsw/inc/cores \ 11 -I$S/contrib/ncsw/inc/etc \ 12 -I$S/contrib/ncsw/inc/Peripherals \ 17 -I$S/contrib/ncsw/Peripherals/FM/inc \ 23 -I$S/contrib/ncsw/inc/flib \ 24 -I$S/contrib/ncsw/inc/integrations"
|
| /freebsd/crypto/openssl/crypto/aes/asm/ |
| H A D | aesfx-sparcv9.pl | 233 my ($inp,$bits,$out,$tmp,$inc) = map("%o$_",(0..5)); 239 mov -1, $inc 248 mov 1, $inc 280 and $inc, `14*16`, $tmp 283 sllx $inc, 4, $inc ! 16 or -16 290 add $out, $inc, $out 295 add $out, $inc, $out 303 add $out, $inc, $out 307 add $out, $inc, $out 325 and $inc, `12*16`, $tmp [all …]
|
| /freebsd/tools/tools/switch_tls/ |
| H A D | switch_tls.c | 325 tcpswitchconn(const struct in_conninfo *inc, int mode) in tcpswitchconn() argument 331 if ((inc->inc_flags & INC_ISIPV6) != 0) { in tcpswitchconn() 336 sin6[TCPDROP_LOCAL].sin6_port = inc->inc_lport; in tcpswitchconn() 337 memcpy(&sin6[TCPDROP_LOCAL].sin6_addr, &inc->inc6_laddr, in tcpswitchconn() 338 sizeof inc->inc6_laddr); in tcpswitchconn() 343 sin6[TCPDROP_FOREIGN].sin6_port = inc->inc_fport; in tcpswitchconn() 344 memcpy(&sin6[TCPDROP_FOREIGN].sin6_addr, &inc->inc6_faddr, in tcpswitchconn() 345 sizeof inc->inc6_faddr); in tcpswitchconn() 352 sin4[TCPDROP_LOCAL].sin_port = inc->inc_lport; in tcpswitchconn() 353 memcpy(&sin4[TCPDROP_LOCAL].sin_addr, &inc->inc_laddr, in tcpswitchconn() [all …]
|
| /freebsd/usr.sbin/tcpdrop/ |
| H A D | tcpdrop.c | 343 tcpdropconn(const struct in_conninfo *inc) in tcpdropconn() argument 349 if ((inc->inc_flags & INC_ISIPV6) != 0) { in tcpdropconn() 354 sin6[TCPDROP_LOCAL].sin6_port = inc->inc_lport; in tcpdropconn() 355 memcpy(&sin6[TCPDROP_LOCAL].sin6_addr, &inc->inc6_laddr, in tcpdropconn() 356 sizeof inc->inc6_laddr); in tcpdropconn() 361 sin6[TCPDROP_FOREIGN].sin6_port = inc->inc_fport; in tcpdropconn() 362 memcpy(&sin6[TCPDROP_FOREIGN].sin6_addr, &inc->inc6_faddr, in tcpdropconn() 363 sizeof inc->inc6_faddr); in tcpdropconn() 370 sin4[TCPDROP_LOCAL].sin_port = inc->inc_lport; in tcpdropconn() 371 memcpy(&sin4[TCPDROP_LOCAL].sin_addr, &inc->inc_laddr, in tcpdropconn() [all …]
|
| /freebsd/sys/contrib/ck/src/ |
| H A D | ck_ec_timeutil.h | 79 const struct timespec inc) in timespec_add() argument 90 if (inc.tv_sec < 0 || inc.tv_nsec < 0 || inc.tv_nsec > NSEC_MAX) { in timespec_add() 95 if (inc.tv_sec > TIME_MAX - ts.tv_sec) { in timespec_add() 99 sec = ts.tv_sec + inc.tv_sec; in timespec_add() 101 nsec = (unsigned long)ts.tv_nsec + inc.tv_nsec; in timespec_add()
|
| /freebsd/contrib/ntp/sntp/unity/auto/ |
| H A D | generate_test_runner.rb | 153 :system => source.scan(/^\s*#include\s+<\s*(.+)\s*>/).flatten.map { |inc| "<#{inc}>" } 176 @options[:includes].flatten.uniq.compact.each do |inc| 177 output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h','')}.h\""}") 182 testfile_includes.delete_if{|inc| inc =~ /(unity|cmock)/} 184 testrunner_includes.each do |inc| 185 output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h','')}.h\""}")
|
| /freebsd/crypto/openssh/ |
| H A D | .skipped-commit-ids | 16 4bd5551b306df55379afe17d841207990eb773bf Makefile.inc 17 14806a59353152f843eb349e618abbf6f4dd3ada Makefile.inc 18 8ea4455a2d9364a0a04f9e4a2cbfa4c9fcefe77e Makefile.inc 19 d9b910e412d139141b072a905e66714870c38ac0 Makefile.inc 24 07b5031e9f49f2b69ac5e85b8da4fc9e393992a0 Makefile.inc 41 6d07e4606997e36b860621a14dd41975f2902f8f Makefile.inc 61 fe5b31f69a60d47171836911f144acff77810217 Makefile.inc bits 63 ea80f445e819719ccdcb237022cacfac990fdc5c Makefile.inc warning flags
|
| /freebsd/sys/netpfil/ipfw/ |
| H A D | dn_sched_fq_codel.h | 94 int inc = 0; in fq_update_stats() local 97 inc = -1; in fq_update_stats() 99 inc = 1; in fq_update_stats() 110 si->main_q.ni.length += inc; in fq_update_stats() 114 q->stats.length += inc; in fq_update_stats() 118 si->_si.ni.length += inc; in fq_update_stats() 122 if (inc > 0) { in fq_update_stats()
|
| /freebsd/sys/powerpc/include/ |
| H A D | counter.h | 85 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add() argument 97 : "r" ((char *)c - (char *)&__pcpu[0]), "r" (inc) in counter_u64_add() 148 #define counter_u64_add_protected(c, inc) do { \ argument 150 *(uint64_t *)zpcpu_get(c) += (inc); \ 154 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add() argument 158 counter_u64_add_protected(c, inc); in counter_u64_add()
|
| /freebsd/crypto/krb5/src/lib/rpc/ |
| H A D | dyn.c | 54 DynCreate(int el_size, int inc) in DynCreate() argument 72 obj->inc = (inc) ? inc : default_increment; in DynCreate() 90 obj1->inc = obj->inc; in DynCopy() 394 else if (obj->inc > 0) in _DynResize() 395 return _DynRealloc(obj, (req - obj->size) / obj->inc + 1); in _DynResize() 398 size = -obj->inc; in _DynResize() 425 if (obj->inc > 0) in _DynRealloc() 426 new_size_in_bytes = obj->el_size*(obj->size + obj->inc*num_incs); in _DynRealloc() 444 if (obj->inc > 0) in _DynRealloc() 445 obj->size += obj->inc*num_incs; in _DynRealloc()
|
| /freebsd/sys/contrib/ck/include/ |
| H A D | ck_pr.h | 663 CK_PR_UNARY_S(inc, add, char, char) 668 CK_PR_UNARY_Z_S(inc, char, char, +, -1) 670 CK_PR_UNARY_Z_STUB(inc, char, char) 691 CK_PR_UNARY_S(inc, add, int, int) 696 CK_PR_UNARY_Z_S(inc, int, int, +, -1) 698 CK_PR_UNARY_Z_STUB(inc, int, int) 720 CK_PR_UNARY_S(inc, add, double, double) 734 CK_PR_UNARY_S(inc, add, uint, unsigned int) 739 CK_PR_UNARY_Z_S(inc, uint, unsigned int, +, UINT_MAX) 741 CK_PR_UNARY_Z_STUB(inc, uint, unsigned int) [all …]
|