Home
last modified time | relevance | path

Searched full:ex (Results 1 – 25 of 739) sorted by relevance

12345678910>>...30

/freebsd/sys/sys/
H A Dimgact_aout.h35 #define N_GETMAGIC(ex) \ argument
36 ( le32toh((ex).a_midmag) & 0xffff )
37 #define N_GETMID(ex) \ argument
38 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETMID_NET(ex) : \
39 ((ex).a_midmag >> 16) & 0x03ff )
40 #define N_GETFLAG(ex) \ argument
41 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETFLAG_NET(ex) : \
42 ((ex).a_midmag >> 26) & 0x3f )
43 #define N_SETMAGIC(ex,mag,mid,flag) \ argument
44 ( (ex).a_midmag = htole32((((flag) & 0x3f) <<26) | \
[all …]
H A Dsmr_types.h69 * external mechanism. 'ex' should contain an assert that the
72 #define smr_serialized_load(p, ex) ({ \ argument
73 SMR_ASSERT(ex, "smr_serialized_load"); \
80 * external mechanism. 'ex' should contain an assert that the
86 #define smr_serialized_store(p, v, ex) do { \ argument
87 SMR_ASSERT(ex, "smr_serialized_store"); \
94 * while serialized by an external mechanism. 'ex' should contain
99 #define smr_serialized_swap(p, v, ex) ({ \ argument
100 SMR_ASSERT(ex, "smr_serialized_swap"); \
113 #define smr_unserialized_load(p, ex) ({ \ argument
[all …]
/freebsd/crypto/openssl/ssl/quic/
H A Dquic_txpim.c94 QUIC_TXPIM_PKT_EX *ex = txpim->free_list.head; in txpim_get_free() local
96 if (ex != NULL) in txpim_get_free()
97 return ex; in txpim_get_free()
99 ex = OPENSSL_zalloc(sizeof(*ex)); in txpim_get_free()
100 if (ex == NULL) in txpim_get_free()
103 list_insert_tail(&txpim->free_list, ex); in txpim_get_free()
104 return ex; in txpim_get_free()
107 static void txpim_clear(QUIC_TXPIM_PKT_EX *ex) in txpim_clear() argument
109 memset(&ex->public.ackm_pkt, 0, sizeof(ex->public.ackm_pkt)); in txpim_clear()
110 ossl_quic_txpim_pkt_clear_chunks(&ex->public); in txpim_clear()
[all …]
H A Dquic_cfq.c29 QUIC_CFQ_ITEM_EX *ex = (QUIC_CFQ_ITEM_EX *)item; in ossl_quic_cfq_item_get_frame_type() local
31 return ex->frame_type; in ossl_quic_cfq_item_get_frame_type()
36 QUIC_CFQ_ITEM_EX *ex = (QUIC_CFQ_ITEM_EX *)item; in ossl_quic_cfq_item_get_encoded() local
38 return ex->encoded; in ossl_quic_cfq_item_get_encoded()
43 QUIC_CFQ_ITEM_EX *ex = (QUIC_CFQ_ITEM_EX *)item; in ossl_quic_cfq_item_get_encoded_len() local
45 return ex->encoded_len; in ossl_quic_cfq_item_get_encoded_len()
50 QUIC_CFQ_ITEM_EX *ex = (QUIC_CFQ_ITEM_EX *)item; in ossl_quic_cfq_item_get_state() local
52 return ex->state; in ossl_quic_cfq_item_get_state()
57 QUIC_CFQ_ITEM_EX *ex = (QUIC_CFQ_ITEM_EX *)item; in ossl_quic_cfq_item_get_pn_space() local
59 return ex->pn_space; in ossl_quic_cfq_item_get_pn_space()
[all …]
/freebsd/contrib/nvi/
H A DCMakeLists.txt46 cl/extern.h common/extern.h ex/extern.h vi/extern.h
47 common/options_def.h ex/ex_def.h ex/version.h)
60 ex/ex.c ex/ex_abbrev.c ex/ex_append.c ex/ex_args.c ex/ex_argv.c ex/ex_at.c
61 ex/ex_bang.c ex/ex_cd.c ex/ex_cmd.c ex/ex_cscope.c ex/ex_delete.c
62 ex/ex_display.c ex/ex_edit.c ex/ex_equal.c ex/ex_file.c ex/ex_filter.c
63 ex/ex_global.c ex/ex_init.c ex/ex_join.c ex/ex_map.c ex/ex_mark.c
64 ex/ex_mkexrc.c ex/ex_move.c ex/ex_open.c ex/ex_preserve.c ex/ex_print.c
65 ex/ex_put.c ex/ex_quit.c ex/ex_read.c ex/ex_screen.c ex/ex_script.c
66 ex/ex_set.c ex/ex_shell.c ex/ex_shift.c ex/ex_source.c ex/ex_stop.c
67 ex/ex_subst.c ex/ex_tag.c ex/ex_txt.c ex/ex_undo.c ex/ex_usage.c
[all …]
/freebsd/crypto/openssl/crypto/x509/
H A Dx509_v3.c45 X509_EXTENSION *ex; in X509v3_get_ext_by_OBJ() local
54 ex = sk_X509_EXTENSION_value(sk, lastpos); in X509v3_get_ext_by_OBJ()
55 if (OBJ_cmp(ex->object, obj) == 0) in X509v3_get_ext_by_OBJ()
65 X509_EXTENSION *ex; in X509v3_get_ext_by_critical() local
74 ex = sk_X509_EXTENSION_value(sk, lastpos); in X509v3_get_ext_by_critical()
75 c = X509_EXTENSION_get_critical(ex); in X509v3_get_ext_by_critical()
102 X509_EXTENSION *ex, int loc) in STACK_OF()
127 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL) { in STACK_OF()
175 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid, in X509_EXTENSION_create_by_NID() argument
187 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data); in X509_EXTENSION_create_by_NID()
[all …]
/freebsd/contrib/libcxxrt/
H A Dexception.cc71 struct __cxa_exception *ex, in saveLandingPad() argument
83 if (ex) in saveLandingPad()
85 ex->handlerSwitchValue = selector; in saveLandingPad()
86 ex->catchTemp = landingPad; in saveLandingPad()
95 struct __cxa_exception *ex, in loadLandingPad() argument
104 if (ex) in loadLandingPad()
106 *selector = ex->handlerSwitchValue; in loadLandingPad()
107 *landingPad = reinterpret_cast<dw_eh_ptr_t>(ex->catchTemp); in loadLandingPad()
114 static inline _Unwind_Reason_Code continueUnwinding(struct _Unwind_Exception *ex, in continueUnwinding() argument
118 if (__gnu_unwind_frame(ex, context) != _URC_OK) { return _URC_FAILURE; } in continueUnwinding()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Drenesas,irqc.yaml27 - renesas,intc-ex-r8a774a1 # RZ/G2M
28 - renesas,intc-ex-r8a774b1 # RZ/G2N
29 - renesas,intc-ex-r8a774c0 # RZ/G2E
30 - renesas,intc-ex-r8a774e1 # RZ/G2H
31 - renesas,intc-ex-r8a7795 # R-Car H3
32 - renesas,intc-ex-r8a7796 # R-Car M3-W
33 - renesas,intc-ex-r8a77961 # R-Car M3-W+
34 - renesas,intc-ex-r8a77965 # R-Car M3-N
35 - renesas,intc-ex-r8a77970 # R-Car V3M
36 - renesas,intc-ex-r8a77980 # R-Car V3H
[all …]
/freebsd/share/doc/usd/13.viref/
H A Dvi.ref16 Vi/Ex Reference Manual
38 .EV ex vi
69 .EV ex vi
75 .EV ex vi
111 .oh 'Vi/Ex Reference''USD:13-%'
112 .eh 'USD:13-%''Vi/Ex Reference'
118 .CO Ex
120 .CO Ex
134 .EV ex vi
139 .EV ex vi
[all …]
H A Dset.opt.roff23 .EV ex vi .
31 .CO ex
53 .QB "Ex Commands" .
85 .CO ex
147 .CO Ex
150 .CO ex
179 .CO ex
196 .CO ex
212 .CO ex
267 .CO ex
[all …]
/freebsd/contrib/sendmail/libsm/
H A Dstrexit.c22 ** ex -- EX_* value
29 sm_strexit(ex)
30 int ex;
35 msg = sm_sysexitmsg(ex);
39 ex);
49 ** ex -- EX_* value
52 ** If ex is a known exit value, then a pointer to a static
57 sm_sysexitmsg(ex) in sm_sysexitmsg() argument
58 int ex; in sm_sysexitmsg()
62 msg = sm_sysexmsg(ex);
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DX509_EXTENSION_set_object.pod13 int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj);
14 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
15 int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
17 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
20 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
24 ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
25 int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
30 X509_EXTENSION_set_object() sets the extension type of B<ex> to B<obj>. The
33 X509_EXTENSION_set_critical() sets the criticality of B<ex> to B<crit>. If
36 X509_EXTENSION_set_data() sets the data in extension B<ex> to B<data>. The
[all …]
/freebsd/contrib/diff/lib/
H A Dexclude.c102 free_exclude (struct exclude *ex) in free_exclude() argument
104 free (ex->exclude); in free_exclude()
105 free (ex); in free_exclude()
134 /* Return true if EX excludes F. */
137 excluded_filename (struct exclude const *ex, char const *f) in excluded_filename() argument
139 size_t exclude_count = ex->exclude_count; in excluded_filename()
146 struct patopts const *exclude = ex->exclude; in excluded_filename()
180 /* Append to EX the exclusion PATTERN with OPTIONS. */
183 add_exclude (struct exclude *ex, char const *pattern, int options) in add_exclude() argument
187 if (ex->exclude_count == ex->exclude_alloc) in add_exclude()
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DX509_EXTENSION_set_object.372 \& int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj);
73 \& int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
74 \& int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
76 \& X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
79 \& X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
83 \& ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
84 \& int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
89 \&\fBX509_EXTENSION_set_object()\fR sets the extension type of \fBex\fR to \fBobj\fR. The
92 \&\fBX509_EXTENSION_set_critical()\fR sets the criticality of \fBex\fR to \fBcrit\fR. If
95 \&\fBX509_EXTENSION_set_data()\fR sets the data in extension \fBex\fR to \fBdata\fR. The
[all …]
/freebsd/contrib/nvi/man/
H A Dvi.119 .Nm ex ,
24 .Nm ex
45 .Nm ex
47 .Nm ex
62 .Nm ex Ns / Ns Nm vi
68 .Nm ex
76 .Nm ex Ns / Ns Nm vi .
79 .Nm ex Ns / Ns Nm vi .
103 Start editing in ex mode, as if the command name were
104 .Nm ex .
[all …]
/freebsd/contrib/netbsd-tests/kernel/
H A Dt_extent.c47 static struct extent *ex; variable
50 ATF_REQUIRE((ex = extent_create(name, \
54 ATF_REQUIRE_EQ_MSG(ret = extent_alloc_region(ex, \
58 ATF_REQUIRE_EQ_MSG(ret = extent_free(ex, \
68 atf_tc_fail("extent_alloc_subregion1(ex, %#lx, %#lx, %#lx, %#lx, 0, " \ in h_alloc_subregion()
72 ret = extent_alloc_subregion1(ex, substart, subend, size, in h_alloc_subregion()
91 ATF_REQUIRE_STREQ_MSG(ex->ex_name, name, in h_require()
92 "expected: \"%s\", got: \"%s\"", name, ex->ex_name); in h_require()
93 ATF_REQUIRE_EQ_MSG(ex->ex_start, start, in h_require()
94 "expected: %#lx, got: %#lx", start, ex->ex_start); in h_require()
[all …]
/freebsd/contrib/arm-optimized-routines/math/test/rtest/
H A Dsemi.c16 int ex = (in[0] >> 20) & 0x7FF; /* exponent */ in test_rint() local
19 if ((ex > 0x3ff + 52 - 1) || /* things this big can't be fractional */ in test_rint()
28 * Special case: ex < 0x3ff, ie our number is in (0,1). Return in test_rint()
31 if (ex < 0x3ff) { in test_rint()
45 for (i = ex; i < 0x3ff + 52; i++) { in test_rint()
56 for (i = ex; i < 0x3ff + 52; i++) { in test_rint()
79 int ex = (*in >> 23) & 0xFF; /* exponent */ in test_rintf() local
82 if ((ex > 0x7f + 23 - 1) || /* things this big can't be fractional */ in test_rintf()
90 * Special case: ex < 0x7f, ie our number is in (0,1). Return in test_rintf()
93 if (ex < 0x7f) { in test_rintf()
[all …]
/freebsd/contrib/nvi/common/
H A Dscreen.h72 recno_t rptlchange; /* Ex/vi: last L_CHANGED lno. */
73 recno_t rptlines[L_YANKED + 1];/* Ex/vi: lines changed by last op. */
75 TEXTH tiq[1]; /* Ex/vi: text input queue. */
90 void *ex_private; /* Ex private area. */
98 char *alt_name; /* Ex/vi: alternate file name. */
100 CHAR_T at_lbuf; /* Ex/vi: Last executed at buffer. */
102 /* Ex/vi: re_compile flags. */
109 #define RE_WSTART L("[[:<:]]") /* Ex/vi: not-in-word search pattern. */
113 /* Ex/vi: flags to search routines. */
124 /* Ex/vi: RE information. */
[all …]
/freebsd/usr.bin/vi/
H A DMakefile13 EX= nex macro
20 LINKS= ${BINDIR}/${VI} ${BINDIR}/${EX} ${BINDIR}/${VI} ${BINDIR}/${VIEW}
21 LINKS+= ${BINDIR}/${VI} ${BINDIR}/vi ${BINDIR}/${EX} ${BINDIR}/ex
25 MLINKS+=vi.1 ex.1 vi.1 view.1
29 .PATH: ${SRCDIR}/ex
35 -I${.CURDIR}/ex
43 CLEANFILES+=${EX}
52 # Ex source.
53 SRCS+= ex.c ex_abbrev.c ex_append.c ex_args.c ex_argv.c ex_at.c ex_bang.c \
/freebsd/usr.sbin/pmcstudy/
H A Deval_expr.c38 struct expression *ex, *at; in alloc_and_hook_expr() local
40 ex = malloc(sizeof(struct expression)); in alloc_and_hook_expr()
41 if (ex == NULL) { in alloc_and_hook_expr()
45 memset(ex, 0, sizeof(struct expression)); in alloc_and_hook_expr()
47 *exp_p = ex; in alloc_and_hook_expr()
52 *last_p = ex; in alloc_and_hook_expr()
55 at->next = ex; in alloc_and_hook_expr()
56 ex->prev = at; in alloc_and_hook_expr()
57 *last_p = ex; in alloc_and_hook_expr()
59 return (ex); in alloc_and_hook_expr()
[all …]
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dcanyonlands.dts2 * Device Tree Source for AMCC Canyonlands (460EX)
33 model = "PowerPC,460EX";
53 compatible = "ibm,uic-460ex","ibm,uic";
63 compatible = "ibm,uic-460ex","ibm,uic";
75 compatible = "ibm,uic-460ex","ibm,uic";
87 compatible = "ibm,uic-460ex","ibm,uic";
99 compatible = "ibm,sdr-460ex";
104 compatible = "ibm,cpr-460ex";
118 compatible = "ibm,l2-cache-460ex", "ibm,l2-cache";
128 compatible = "ibm,plb-460ex", "ibm,plb4";
[all …]
H A Dobs600.dts2 * Device Tree Source for PlatHome OpenBlockS 600 (405EX)
37 model = "PowerPC,405EX";
56 compatible = "ibm,uic-405ex", "ibm,uic";
66 compatible = "ibm,uic-405ex","ibm,uic";
78 compatible = "ibm,uic-405ex","ibm,uic";
99 compatible = "ibm,plb-405ex", "ibm,plb4";
106 compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2";
121 compatible = "ibm,mcmal-405ex", "ibm,mcmal2";
139 compatible = "ibm,opb-405ex", "ibm,opb";
149 compatible = "ibm,ebc-405ex", "ibm,ebc";
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp255 ProgramStateRef state, const Expr* Ex, const LocationContext* LCtx, in handleLValueBitCast() argument
266 SVal OrigV = state->getSVal(Ex, LCtx); in handleLValueBitCast()
282 void ExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex, in VisitCast() argument
293 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx)); in VisitCast()
300 QualType ExTy = Ex->getType(); in VisitCast()
335 // Copy the SVal of Ex to CastE. in VisitCast()
338 SVal V = state->getSVal(Ex, LCtx); in VisitCast()
345 SVal V = state->getSVal(Ex, LCtx); in VisitCast()
356 handleLValueBitCast(state, Ex, LCtx, T, ExTy, CastE, Bldr, Pred); in VisitCast()
366 SVal V = state->getSVal(Ex, LCtx); in VisitCast()
[all …]
/freebsd/sbin/ggate/ggated/
H A Dggated.c199 struct ggd_export *ex; in line_parse() local
253 ex = malloc(sizeof(*ex)); in line_parse()
254 if (ex == NULL) in line_parse()
256 ex->e_path = strdup(path); in line_parse()
257 if (ex->e_path == NULL) in line_parse()
261 ex->e_ip = (ip & mask); in line_parse()
262 ex->e_mask = mask; in line_parse()
263 ex->e_flags = flags; in line_parse()
265 SLIST_INSERT_HEAD(&exports, ex, e_next); in line_parse()
268 ip2str(ex->e_ip), vmask, path, sflags); in line_parse()
[all …]
/freebsd/sys/fs/ext2fs/
H A Dext2_extents.c83 ext4_ext_walk_index(struct inode *ip, struct ext4_extent_index *ex, int depth, in ext4_ext_walk_index() argument
94 printf(" index %p => (blk %u pblk %ju)\n", ex, in ext4_ext_walk_index()
95 le32toh(ex->ei_blk), in ext4_ext_walk_index()
96 (uint64_t)le16toh(ex->ei_leaf_hi) << 32 | in ext4_ext_walk_index()
97 le32toh(ex->ei_leaf_lo)); in ext4_ext_walk_index()
102 blk = ext4_ext_index_pblock(ex); in ext4_ext_walk_index()
260 ext4_ext_store_pblock(struct ext4_extent *ex, e4fs_daddr_t pb) in ext4_ext_store_pblock() argument
263 ex->e_start_lo = htole32(pb & 0xffffffff); in ext4_ext_store_pblock()
264 ex->e_start_hi = htole16((pb >> 32) & 0xffff); in ext4_ext_store_pblock()
741 struct ext4_extent *ex; in ext4_ext_blkpref() local
932 struct ext4_extent *ex; ext4_ext_split() local
1200 struct ext4_extent *ex; ext4_ext_correct_indexes() local
1239 struct ext4_extent *ex, *nex, *nearex; ext4_ext_insert_extent() local
1401 struct ext4_extent newex, *ex; ext4_ext_get_blocks() local
1513 ext4_remove_blocks(struct inode * ip,struct ext4_extent * ex,unsigned long from,unsigned long to) ext4_remove_blocks() argument
1552 struct ext4_extent *ex; ext4_ext_rm_leaf() local
[all...]

12345678910>>...30