Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/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.h71 #define smr_serialized_load(p, ex) ({ \ argument
72 SMR_ASSERT(ex, "smr_serialized_load"); \
84 #define smr_serialized_store(p, v, ex) do { \ argument
85 SMR_ASSERT(ex, "smr_serialized_store"); \
97 #define smr_serialized_swap(p, v, ex) ({ \ argument
98 SMR_ASSERT(ex, "smr_serialized_swap"); \
111 #define smr_unserialized_load(p, ex) ({ \ argument
112 SMR_ASSERT(ex, "smr_unserialized_load"); \
121 #define smr_unserialized_store(p, v, ex) do { \ argument
122 SMR_ASSERT(ex, "smr_unserialized_store"); \
H A Dkassert.h160 #define MPASS(ex) MPASS4(ex, #ex, __FILE__, __LINE__) argument
161 #define MPASS2(ex, what) MPASS4(ex, what, __FILE__, __LINE__) argument
162 #define MPASS3(ex, file, line) MPASS4(ex, #ex, file, line) argument
163 #define MPASS4(ex, what, file, line) \ argument
164 KASSERT((ex), ("Assertion %s failed at %s:%d", what, file, line))
/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/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 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit)) in X509v3_get_ext_by_critical()
100 X509_EXTENSION *ex, int loc) in STACK_OF()
123 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL) in STACK_OF()
139 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid, in X509_EXTENSION_create_by_NID() argument
151 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data); in X509_EXTENSION_create_by_NID()
[all …]
/freebsd/contrib/nvi/
H A DCMakeLists.txt47 cl/extern.h common/extern.h ex/extern.h vi/extern.h
48 common/options_def.h ex/ex_def.h ex/version.h)
61 ex/ex.c ex/ex_abbrev.c ex/ex_append.c ex/ex_args.c ex/ex_argv.c ex/ex_at.c
62 ex/ex_bang.c ex/ex_cd.c ex/ex_cmd.c ex/ex_cscope.c ex/ex_delete.c
63 ex/ex_display.c ex/ex_edit.c ex/ex_equal.c ex/ex_file.c ex/ex_filter.c
64 ex/ex_global.c ex/ex_init.c ex/ex_join.c ex/ex_map.c ex/ex_mark.c
65 ex/ex_mkexrc.c ex/ex_move.c ex/ex_open.c ex/ex_preserve.c ex/ex_print.c
66 ex/ex_put.c ex/ex_quit.c ex/ex_read.c ex/ex_screen.c ex/ex_script.c
67 ex/ex_set.c ex/ex_shell.c ex/ex_shift.c ex/ex_source.c ex/ex_stop.c
68 ex/ex_subst.c ex/ex_tag.c ex/ex_txt.c ex/ex_undo.c ex/ex_usage.c
[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()
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()
93 if (ex < 0x7f) { in test_rintf()
105 for (i = ex; i < 0x7F + 23; i++) { in test_rintf()
114 for (i = ex; i < 0x7F + 23; i++) { in test_rintf()
[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, \
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()
95 ATF_REQUIRE_EQ_MSG(ex->ex_end, end, in h_require()
[all …]
/freebsd/contrib/sendmail/libsm/
H A Dstrexit.c29 sm_strexit(ex)
30 int ex;
35 msg = sm_sysexitmsg(ex);
39 ex);
57 sm_sysexitmsg(ex) in sm_sysexitmsg() argument
58 int ex; in sm_sysexitmsg()
62 msg = sm_sysexmsg(ex);
89 sm_sysexmsg(ex) in sm_sysexmsg() argument
90 int ex; in sm_sysexmsg()
92 switch (ex)
/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()
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()
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()
188 ex->exclude = x2nrealloc (ex->exclude, &ex->exclude_alloc, in add_exclude()
189 sizeof *ex->exclude); in add_exclude()
[all …]
/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/usr.bin/find/
H A Dfind.h132 } ex; member
153 #define e_argv p_un.ex._e_argv
154 #define e_orig p_un.ex._e_orig
155 #define e_len p_un.ex._e_len
156 #define e_pbnum p_un.ex._e_pbnum
157 #define e_ppos p_un.ex._e_ppos
158 #define e_pnummax p_un.ex._e_pnummax
159 #define e_psize p_un.ex._e_psize
160 #define e_pbsize p_un.ex._e_pbsize
161 #define e_psizemax p_un.ex._e_psizemax
[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/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/usr.bin/vi/catalog/
H A Dru_RU.UTF-8.base75 082 "%s: команда не доступна в режиме ex"
85 092 "Команда ex не удалась: последующие команды забыты"
86 093 "Команда ex не удалась: назначенные клавиши забыты"
199 207 "Команда Q требует ex интерфейс терминала"
260 270 "Нажмите любую клавишу чтобы продолжить [: чтобы ввести еще ex команды]: "
262 272 "Эта форма %s требует ex интерфейс терминала"
263 273 "Вход в режим ввода ex."
273 283 "Команда %s требует ex интерфейс терминала"
295 307 "Нет ex команды для выполнения"
H A Duk_UA.UTF-8.base75 082 "%s: команда не доступна в режимі ex"
85 092 "Команда ex не вдалась: наступні команди з'ігноровано"
86 093 "Команда ex не вдалась: відображені клавіші з'ігноровано"
199 207 "Команда Q вимагає інтерфейсу ex"
262 272 "Tака форма %s вимагає інтерфейсу ex"
263 273 "Входим в режим введення ex"
273 283 "Команда %s вимагає інтерфейсу ex"
296 307 "Немає команди ex для виконання"
/freebsd/contrib/elftoolchain/libelf/
H A Delf_update.c351 struct _Elf_Extent *ex; in _libelf_release_extents() local
353 while ((ex = SLIST_FIRST(extents)) != NULL) { in _libelf_release_extents()
355 free(ex); in _libelf_release_extents()
411 struct _Elf_Extent *ex, *prevt; in _libelf_insert_extent() local
427 if ((ex = malloc(sizeof(struct _Elf_Extent))) == NULL) { in _libelf_insert_extent()
431 ex->ex_start = start; in _libelf_insert_extent()
432 ex->ex_size = size; in _libelf_insert_extent()
433 ex->ex_desc = desc; in _libelf_insert_extent()
434 ex->ex_type = type; in _libelf_insert_extent()
438 SLIST_INSERT_AFTER(prevt, ex, ex_next); in _libelf_insert_extent()
[all …]
/freebsd/lib/msun/ld128/
H A De_rem_pio2l.h64 int e0,ex,i,j,nx; in __ieee754_rem_pio2l() local
69 ex = expsign & 0x7fff; in __ieee754_rem_pio2l()
70 if (ex < BIAS + 45 || ex == BIAS + 45 && in __ieee754_rem_pio2l()
81 j = ex; in __ieee754_rem_pio2l()
110 if(ex==0x7fff) { /* x is inf or NaN */ in __ieee754_rem_pio2l()
115 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */ in __ieee754_rem_pio2l()
116 u1.xbits.expsign = ex - e0; in __ieee754_rem_pio2l()
/freebsd/lib/msun/tests/
H A Dnext_test.c44 #define test(exp, ans, ex) do { \ argument
47 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
49 #define testf(exp, ans, ex) do { \ argument
52 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
54 #define testl(exp, ans, ex) do { \ argument
57 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
59 #define testboth(arg1, arg2, ans, ex, prec) do { \ argument
60 test##prec(nextafter##prec((arg1), (arg2)), (ans), (ex)); \
61 test##prec(nexttoward##prec((arg1), (arg2)), (ans), (ex)); \
63 #define testall(arg1, arg2, ans, ex) do { \ argument
[all …]
/freebsd/usr.sbin/btxld/
H A Dbtxld.c323 const struct exec *ex; in gethdr() local
343 ex = p; in gethdr()
344 if (hdr->size >= sizeof(struct exec) && !N_BADMAG(*ex)) { in gethdr()
346 x = N_GETMAGIC(*ex); in gethdr()
353 hdr->text = le32toh(ex->a_text); in gethdr()
354 hdr->data = le32toh(ex->a_data); in gethdr()
355 hdr->bss = le32toh(ex->a_bss); in gethdr()
356 hdr->entry = le32toh(ex->a_entry); in gethdr()
357 if (le32toh(ex->a_entry) >= BTX_PGSIZE) in gethdr()
400 struct exec ex; in puthdr() local
[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...]
/freebsd/lib/msun/ld80/
H A De_rem_pio2l.h75 int e0,ex,i,j,nx,n; in __ieee754_rem_pio2l() local
80 ex = expsign & 0x7fff; in __ieee754_rem_pio2l()
81 if (ex < BIAS + 25 || (ex == BIAS + 25 && u.bits.manh < 0xc90fdaa2)) { in __ieee754_rem_pio2l()
90 j = ex; in __ieee754_rem_pio2l()
119 if(ex==0x7fff) { /* x is inf or NaN */ in __ieee754_rem_pio2l()
124 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */ in __ieee754_rem_pio2l()
125 u1.xbits.expsign = ex - e0; in __ieee754_rem_pio2l()
/freebsd/crypto/heimdal/lib/sl/
H A Dslc-gram.y113 ex(struct assignment *a, const char *fmt, ...) in ex() function
154 ex(a, "unknown name %s", a->name); in check_option()
159 ex(as, "neither long nor short option"); in check_option()
163 ex(as, "either of long or name option must be used"); in check_option()
167 ex(as, "multiple long options"); in check_option()
171 ex(as, "multiple short options"); in check_option()
175 ex(as, "multiple types"); in check_option()
179 ex(as, "multiple arguments"); in check_option()
183 ex(as, "multiple help strings"); in check_option()
187 ex(as, "multiple default values"); in check_option()
[all …]
/freebsd/lib/msun/src/
H A Ds_rintl.c58 int ex, sign; in rintl() local
62 ex = expsign & 0x7fff; in rintl()
64 if (ex >= BIAS + LDBL_MANT_DIG - 1) { in rintl()
65 if (ex == BIAS + LDBL_MAX_EXP) in rintl()
85 if (ex < BIAS && x == 0.0L) in rintl()
/freebsd/contrib/arm-optimized-routines/math/test/
H A Dulp.h112 RT(float) * y, int *ex) in T()
118 *ex = fetestexcept (FE_ALL_EXCEPT); in T()
124 int r, RT(float) * y, int *ex) in T()
129 *ex = 0; in T()
147 p->ex = fetestexcept (FE_ALL_EXCEPT); in T()
151 if (RT(isok) (ygot, exgot, p->y, p->ex, p->ex_may)) in T()
162 if (p->y != 0 || (p->ex & FE_INEXACT)) in T()
163 p->ex |= FE_UNDERFLOW | FE_INEXACT; in T()
221 p->ex = t ? FE_INEXACT : 0; in T()
223 if (mpfr_underflow_p () && (p->ex & FE_INEXACT)) in T()
[all …]

12345678910>>...13