Home
last modified time | relevance | path

Searched refs:nest (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/less/
H A Dbrac.c29 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 Ddriver_macsec_linux.c127 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 Dkmp_lock.h915 #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 Dtiming.cpp25 : Timer(Manager.nest(Nest, Name)) { in ScopedTimer()
H A Dtiming.h129 Timer nest(const Timer &T, const char *Name) EXCLUDES(Mutex) { in nest() function
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCallingConv.td71 /// The 'nest' parameter, if any, is passed in A1.
86 /// The 'nest' parameter, if any, is passed in A1.
/freebsd/sys/netinet6/
H A Dip6_input.c476 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 DXCoreCallingConv.td30 // The 'nest' parameter, if any, is passed in R11.
/freebsd/sys/netipsec/
H A Dipsec_input.c604 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 Dhidbus.c82 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 Dunifdef.c248 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 DX86CallingConv.td540 // 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 DCheckerBase.td78 /// used to nest packages in one another. One may, for example, create the
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetCallingConv.td82 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64CallingConvention.td121 // 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 DARMCallingConv.td164 // The 'nest' parameter, if any, is passed in R12.
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.td146 def Nest : EnumAttr<"nest", [ParamAttr]>;
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCCallingConv.td219 // The 'nest' parameter, if any, is passed in R11.
/freebsd/crypto/openssl/include/openssl/
H A Dx509v3.h.in933 * Check whether RFC 3779 extensions nest properly in chains.
/freebsd/contrib/llvm-project/openmp/runtime/src/include/
H A Domp-tools.h.var148 …macro (ompt_callback_nest_lock, ompt_callback_nest_lock_t, 28) /* nest lock …
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def272 LANGOPT(OpenMPOptimisticCollapse , 1, 0, "Use at most 32 bits to represent the collapsed loop nest
/freebsd/usr.sbin/services_mkdb/
H A Dservices838 nest-protocol 489/tcp
839 nest-protocol 489/udp
/freebsd/share/dict/
H A Dweb2a5773 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 DChangeLog2188 * [Bug 2036] gcc 2.95.3 preprocessor can't nest #ifdef in macro args.
/freebsd/contrib/one-true-awk/testdir/
H A Dbib4468 …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 …]

12