/freebsd/contrib/less/ |
H A D | brac.c | 29 int nest; in match_brac() local 78 nest = 0; in match_brac() 83 if (nest == INT_MAX) in match_brac() 85 nest++; in match_brac() 87 else if (c == cbrac && --nest < 0) in match_brac()
|
/freebsd/contrib/wpa/src/drivers/ |
H A D | driver_macsec_linux.c | 127 struct nlattr *nest = nla_nest_start(msg, MACSEC_ATTR_RXSC_CONFIG); in nla_put_rxsc_config() local 129 if (!nest) in nla_put_rxsc_config() 134 nla_nest_end(msg, nest); in nla_put_rxsc_config() 761 struct nlattr *nest; in macsec_drv_set_receive_lowest_pn() local 775 nest = nla_nest_start(msg, MACSEC_ATTR_SA_CONFIG); in macsec_drv_set_receive_lowest_pn() 776 if (!nest) in macsec_drv_set_receive_lowest_pn() 782 nla_nest_end(msg, nest); in macsec_drv_set_receive_lowest_pn() 828 struct nlattr *nest; in macsec_drv_set_transmit_next_pn() local 837 nest = nla_nest_start(msg, MACSEC_ATTR_SA_CONFIG); in macsec_drv_set_transmit_next_pn() 838 if (!nest) in macsec_drv_set_transmit_next_pn() [all …]
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_lock.h | 915 #define KMP_BIND_USER_LOCK_TEMPLATE(nest, kind, suffix) \ 917 __kmp_acquire##nest##user_lock_with_checks_ = (int (*)( \ 918 kmp_user_lock_p, kmp_int32))__kmp_acquire##nest##kind##_##suffix; \ 919 __kmp_release##nest##user_lock_with_checks_ = (int (*)( \ 920 kmp_user_lock_p, kmp_int32))__kmp_release##nest##kind##_##suffix; \ 921 __kmp_test##nest##user_lock_with_checks_ = (int (*)( \ 922 kmp_user_lock_p, kmp_int32))__kmp_test##nest##kind##_##suffix; \ 923 __kmp_init##nest##user_lock_with_checks_ = \ 924 (void (*)(kmp_user_lock_p))__kmp_init##nest##kind##_##suffix; \ 925 __kmp_destroy##nest##user_lock_with_checks 907 KMP_BIND_USER_LOCK_TEMPLATE(nest,kind,suffix) global() argument [all...] |
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | timing.cpp | 25 : Timer(Manager.nest(Nest, Name)) { in ScopedTimer()
|
H A D | timing.h | 129 Timer nest(const Timer &T, const char *Name) EXCLUDES(Mutex) { in nest() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kCallingConv.td | 71 /// The 'nest' parameter, if any, is passed in A1. 86 /// The 'nest' parameter, if any, is passed in A1.
|
/freebsd/sys/netinet6/ |
H A D | ip6_input.c | 476 int nest; in ip6_direct_input() local 487 nest = 0; in ip6_direct_input() 492 if (V_ip6_hdrnestlimit && (++nest > V_ip6_hdrnestlimit)) { in ip6_direct_input() 531 int off = sizeof(struct ip6_hdr), nest; in ip6_input() local 916 nest = 0; in ip6_input() 919 if (V_ip6_hdrnestlimit && (++nest > V_ip6_hdrnestlimit)) { in ip6_input()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreCallingConv.td | 30 // The 'nest' parameter, if any, is passed in R11.
|
/freebsd/sys/netipsec/ |
H A D | ipsec_input.c | 604 int error, nest; in ipsec6_common_input_cb() 755 nest = 0; in ipsec6_common_input_cb() 758 if (V_ip6_hdrnestlimit && (++nest > V_ip6_hdrnestlimit)) { in ipsec6_common_input_cb() 593 int error, nest; ipsec6_common_input_cb() local
|
/freebsd/sys/dev/hid/ |
H A D | hidbus.c | 82 int nest; /* Child attach nesting lvl */ member 269 sc->nest++; in hidbus_attach_children() 271 sc->nest--; in hidbus_attach_children() 272 if (sc->nest != 0) in hidbus_attach_children()
|
/freebsd/contrib/unifdef/ |
H A D | unifdef.c | 248 static void nest(void); 579 static void Fdrop (void) { nest(); Dfalse(); } in Fdrop() 580 static void Fpass (void) { nest(); Pelif(); } in Fpass() 581 static void Ftrue (void) { nest(); Strue(); } in Ftrue() 582 static void Ffalse(void) { nest(); Sfalse(); } in Ffalse() 667 nest(void) in nest() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86CallingConv.td | 540 // The 'nest' parameter, if any, is passed in R10. 641 // The 'nest' parameter, if any, is passed in R10. 888 // The 'nest' parameter, if any, is passed in ECX. 924 // The 'nest' parameter, if any, is passed in EAX. 983 // The 'nest' parameter, if any, is passed in EAX. 1063 // - R10 'nest' parameter
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
H A D | CheckerBase.td | 78 /// used to nest packages in one another. One may, for example, create the
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetCallingConv.td | 82 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64CallingConvention.td | 121 // The 'nest' parameter, if any, is passed in X18. 122 // Darwin and Windows use X18 as the platform register and hence 'nest' isn't 231 // The 'nest' parameter, if any, is passed in R10 (X4).
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMCallingConv.td | 164 // The 'nest' parameter, if any, is passed in R12.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Attributes.td | 146 def Nest : EnumAttr<"nest", [ParamAttr]>;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCCallingConv.td | 219 // The 'nest' parameter, if any, is passed in R11.
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | x509v3.h.in | 933 * Check whether RFC 3779 extensions nest properly in chains.
|
/freebsd/contrib/llvm-project/openmp/runtime/src/include/ |
H A D | omp-tools.h.var | 148 …macro (ompt_callback_nest_lock, ompt_callback_nest_lock_t, 28) /* nest lock …
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | LangOptions.def | 272 LANGOPT(OpenMPOptimisticCollapse , 1, 0, "Use at most 32 bits to represent the collapsed loop nest…
|
/freebsd/usr.sbin/services_mkdb/ |
H A D | services | 838 nest-protocol 489/tcp 839 nest-protocol 489/udp
|
/freebsd/share/dict/ |
H A D | web2a | 5773 bird-nest 8222 brood nest 10666 cell nest 36759 nest box 36760 nest egg 36761 nest fungus 47948 roller nest 66421 trap nest 71041 wasp nest 75371 worm-nest
|
/freebsd/contrib/ntp/ |
H A D | ChangeLog | 2188 * [Bug 2036] gcc 2.95.3 preprocessor can't nest #ifdef in macro args.
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | bib | 4468 …nd took up his parable, and said, Strong is thy dwellingplace, and thou puttest thy nest in a rock. 5477 If a bird's nest chance to be before thee in the way in any tree, or on the ground, whether they be… 5770 As an eagle stirreth up her nest, fluttereth over her young, spreadeth abroad her wings, taketh the… 13551 Then I said, I shall die in my nest, and I shall multiply my days as the sand. 13862 Doth the eagle mount up at thy command, and make her nest on high? 15263 Yea, the sparrow hath found an house, and the swallow a nest for herself, where she may lay her you… 17178 As a bird that wandereth from her nest, so is a man that wandereth from his place. 17865 And my hand hath found as a nest the riches of the people: and as one gathereth eggs that are left,… 17972 For it shall be, that, as a wandering bird cast out of the nest, so the daughters of Moab shall be … 18319 There shall the great owl make her nest, and lay, and hatch, and gather under her shadow: there sha… [all …]
|