Home
last modified time | relevance | path

Searched refs:ce (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/freebsd-14.2/lib/libc/iconv/
H A Dcitrus_stdenc.c64 ce = malloc(sizeof(*ce)); in _citrus_stdenc_open()
65 if (ce == NULL) { in _citrus_stdenc_open()
69 ce->ce_ops = NULL; in _citrus_stdenc_open()
93 ret = (*getops)(ce->ce_ops, sizeof(*ce->ce_ops)); in _citrus_stdenc_open()
111 ce->ce_traits = malloc(sizeof(*ce->ce_traits)); in _citrus_stdenc_open()
117 ret = (*ce->ce_ops->eo_init)(ce, variable, lenvar, ce->ce_traits); in _citrus_stdenc_open()
121 *rce = ce; in _citrus_stdenc_open()
138 if (ce->ce_ops) { in _citrus_stdenc_close()
139 if (ce->ce_closure && ce->ce_ops->eo_uninit) in _citrus_stdenc_close()
140 (*ce->ce_ops->eo_uninit)(ce); in _citrus_stdenc_close()
[all …]
H A Dcitrus_stdenc.h67 return ((*ce->ce_ops->eo_init_state)(ce, ps)); in _citrus_stdenc_init_state()
77 return ((*ce->ce_ops->eo_mbtocs)(ce, csid, idx, s, n, ps, nresult, in _citrus_stdenc_mbtocs()
88 return ((*ce->ce_ops->eo_cstomb)(ce, s, n, csid, idx, ps, nresult, in _citrus_stdenc_cstomb()
98 return ((*ce->ce_ops->eo_wctomb)(ce, s, n, wc, ps, nresult, hooks)); in _citrus_stdenc_wctomb()
107 return ((*ce->ce_ops->eo_put_state_reset)(ce, s, n, ps, nresult)); in _citrus_stdenc_put_state_reset()
111 _citrus_stdenc_get_state_size(struct _citrus_stdenc *ce) in _citrus_stdenc_get_state_size() argument
114 return (ce->ce_traits->et_state_size); in _citrus_stdenc_get_state_size()
118 _citrus_stdenc_get_mb_cur_min(struct _citrus_stdenc *ce) in _citrus_stdenc_get_mb_cur_min() argument
121 return (ce->ce_traits->et_mb_cur_min); in _citrus_stdenc_get_mb_cur_min()
128 return (ce->ce_traits->et_mb_cur_max); in _citrus_stdenc_get_mb_cur_max()
[all …]
H A Dcitrus_stdenc_template.h91 ce->ce_closure = ei; in _FUNCNAME()
93 et->et_mb_cur_max = _ENCODING_MB_CUR_MAX(_CE_TO_EI(ce)); in _FUNCNAME()
94 et->et_mb_cur_min = _ENCODING_MB_CUR_MIN(_CE_TO_EI(ce)); in _FUNCNAME()
103 if (ce) { in _FUNCNAME()
104 _FUNCNAME(encoding_module_uninit)(_CE_TO_EI(ce)); in _FUNCNAME()
105 free(ce->ce_closure); in _FUNCNAME()
114 _FUNCNAME(init_state)(_CE_TO_EI(ce), _TO_STATE(ps)); in _FUNCNAME()
128 ret = _FUNCNAME(mbrtowc_priv)(_CE_TO_EI(ce), &wc, s, n, in _FUNCNAME()
154 ret = _FUNCNAME(wcrtomb_priv)(_CE_TO_EI(ce), s, n, wc, in _FUNCNAME()
167 ret = _FUNCNAME(mbrtowc_priv)(_CE_TO_EI(ce), wc, s, n, in _FUNCNAME()
[all …]
H A Dcitrus_none.c57 _citrus_NONE_stdenc_init(struct _citrus_stdenc * __restrict ce, in _citrus_NONE_stdenc_init() argument
65 ce->ce_closure = NULL; in _citrus_NONE_stdenc_init()
71 _citrus_NONE_stdenc_uninit(struct _citrus_stdenc *ce __unused) in _citrus_NONE_stdenc_uninit()
77 _citrus_NONE_stdenc_init_state(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_init_state()
85 _citrus_NONE_stdenc_mbtocs(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_mbtocs()
106 _citrus_NONE_stdenc_cstomb(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_cstomb()
161 _citrus_NONE_stdenc_mbtowc(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_mbtowc()
188 _citrus_NONE_stdenc_wctomb(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_wctomb()
211 _citrus_NONE_stdenc_put_state_reset(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_put_state_reset()
222 _citrus_NONE_stdenc_get_state_desc(struct _stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_get_state_desc()
/freebsd-14.2/sys/dev/cxgbe/
H A Dt4_clip.c142 ce = malloc(sizeof(*ce), M_CXGBE, M_NOWAIT | M_ZERO); in alloc_clip_entry()
144 ce->cde = cde; in alloc_clip_entry()
149 return (ce); in alloc_clip_entry()
198 return (ce); in lookup_clip_entry()
211 return (ce); in lookup_clip_entry()
264 if (++ce->refcount == 1 && ce->pending && ce->clip_idx != -1) { in t4_get_clip_entry()
279 return (ce); in t4_get_clip_entry()
294 ce->refcount++; in t4_hold_clip_entry()
307 cde = ce->cde; in release_clip_entry_locked()
361 if (ce == NULL) in t4_release_clip_addr()
[all …]
/freebsd-14.2/sys/kern/
H A Dsubr_kobj.c181 kobj_method_t *ce; in kobj_lookup_method_class() local
183 for (ce = methods; ce && ce->desc; ce++) { in kobj_lookup_method_class()
185 return ce; in kobj_lookup_method_class()
196 kobj_method_t *ce; in kobj_lookup_method_mi() local
200 if (ce) in kobj_lookup_method_mi()
201 return ce; in kobj_lookup_method_mi()
207 if (ce) in kobj_lookup_method_mi()
208 return ce; in kobj_lookup_method_mi()
223 if (!ce) in kobj_lookup_method()
226 *cep = ce; in kobj_lookup_method()
[all …]
/freebsd-14.2/contrib/unbound/validator/
H A Dval_nsec3.c959 ce->ce = nm; in nsec3_find_closest_encloser()
1017 memset(ce, 0, sizeof(*ce)); in nsec3_prove_closest_encloser()
1148 log_assert(ce.ce); in nsec3_do_prove_nameerror()
1149 wc = nsec3_ce_wildcard(ct->region, ce.ce, ce.ce_len, &wclen); in nsec3_do_prove_nameerror()
1175 if(ce.nc_rrset && nsec3_has_optout(ce.nc_rrset, ce.nc_rr)) { in nsec3_do_prove_nameerror()
1297 log_assert(ce.ce); in nsec3_do_prove_nodata()
1298 wc = nsec3_ce_wildcard(ct->region, ce.ce, ce.ce_len, &wclen); in nsec3_do_prove_nodata()
1324 if(ce.nc_rrset && nsec3_has_optout(ce.nc_rrset, ce.nc_rr)) { in nsec3_do_prove_nodata()
1411 memset(&ce, 0, sizeof(ce)); in nsec3_prove_wildcard()
1412 ce.ce = wc; in nsec3_prove_wildcard()
[all …]
H A Dval_nsec.c213 uint8_t* wc = NULL, *ce = NULL; in val_nsec_prove_nodata_dsreply() local
275 if(wc && !ce) in val_nsec_prove_nodata_dsreply()
277 else if(wc && ce) { in val_nsec_prove_nodata_dsreply()
330 uint8_t* ce = nsec->rk.dname; in nsec_proves_nodata() local
332 dname_remove_label(&ce, &ce_len); in nsec_proves_nodata()
352 *wc = ce; in nsec_proves_nodata()
368 uint8_t* ce = nm; in nsec_proves_nodata() local
371 *wc = ce; in nsec_proves_nodata()
502 uint8_t* ce; in val_nsec_proves_positive_wildcard() local
510 if(!ce) in val_nsec_proves_positive_wildcard()
[all …]
/freebsd-14.2/sys/contrib/openzfs/lib/libspl/include/sys/
H A Dcmn_err.h32 #define cmn_err_once(ce, ...) \ argument
36 cmn_err(ce, __VA_ARGS__); \
40 #define vcmn_err_once(ce, fmt, ap) \ argument
44 vcmn_err(ce, fmt, ap); \
48 #define zcmn_err_once(zone, ce, ...) \ argument
52 zcmn_err(zone, ce, __VA_ARGS__); \
56 #define vzcmn_err_once(zone, ce, fmt, ap) \ argument
60 vzcmn_err(zone, ce, fmt, ap); \
/freebsd-14.2/crypto/heimdal/lib/asn1/
H A Drfc2459.asn1280 id-x509-ce-keyUsage OBJECT IDENTIFIER ::= { id-x509-ce 15 }
309 id-x509-ce-basicConstraints OBJECT IDENTIFIER ::= { id-x509-ce 19 }
316 id-x509-ce-nameConstraints OBJECT IDENTIFIER ::= { id-x509-ce 30 }
335 id-x509-ce-policyMappings OBJECT IDENTIFIER ::= { id-x509-ce 33 }
336 id-x509-ce-subjectAltName OBJECT IDENTIFIER ::= { id-x509-ce 17 }
337 id-x509-ce-issuerAltName OBJECT IDENTIFIER ::= { id-x509-ce 18 }
341 id-x509-ce-extKeyUsage OBJECT IDENTIFIER ::= { id-x509-ce 37}
349 id-x509-ce-invalidityDate OBJECT IDENTIFIER ::= { id-x509-ce 24 }
477 id-x509-ce-cRLNumber OBJECT IDENTIFIER ::= { id-x509-ce 20 }
478 id-x509-ce-freshestCRL OBJECT IDENTIFIER ::= { id-x509-ce 46 }
[all …]
/freebsd-14.2/sys/contrib/dev/athk/ath10k/
H A Dce.c610 spin_lock_bh(&ce->ce_lock); in ath10k_ce_send()
625 spin_lock_bh(&ce->ce_lock); in ath10k_ce_num_free_src_entries()
891 struct ath10k_ce *ce; in _ath10k_ce_revoke_recv_next() local
899 ce = ath10k_ce_priv(ar); in _ath10k_ce_revoke_recv_next()
944 struct ath10k_ce *ce; in _ath10k_ce_revoke_recv_next_64() local
952 ce = ath10k_ce_priv(ar); in _ath10k_ce_revoke_recv_next_64()
1164 struct ath10k_ce *ce; in ath10k_ce_cancel_send_next() local
1172 ce = ath10k_ce_priv(ar); in ath10k_ce_cancel_send_next()
1945 if (!ce->vaddr_rri) in ath10k_ce_alloc_rri()
1969 ce->vaddr_rri, in ath10k_ce_free_rri()
[all …]
/freebsd-14.2/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dcmn_err.h77 #define cmn_err_once(ce, ...) \ argument
81 cmn_err(ce, __VA_ARGS__); \
85 #define vcmn_err_once(ce, fmt, ap) \ argument
89 vcmn_err(ce, fmt, ap); \
93 #define zcmn_err_once(zone, ce, ...) \ argument
97 zcmn_err(zone, ce, __VA_ARGS__); \
101 #define vzcmn_err_once(zone, ce, fmt, ap) \ argument
105 vzcmn_err(zone, ce, fmt, ap); \
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Dfastmath2_ldlib_asm.S63 #define ce P0 macro
73 ce = CMP.GT(expa, expb); define
78 if ( ce) expa = #1
79 if (!ce) expb = #1
86 if (!ce) expa = add(expd, #1)
87 if ( ce) expb = add(expd, #1)
162 #define ce P0 macro
172 ce = CMP.GT(expa, expb); define
177 if ( ce) expa = #1
178 if (!ce) expb = #1
[all …]
H A Dfastmath_dlib_asm.S81 #define ce P0 macro
90 ce = CMP.GT(expa, expb); define
94 if ( ce) expa = #1
95 if (!ce) expb = #1
99 if (!ce) expa = add(expd, #1)
100 if ( ce) expb = add(expd, #1)
216 #define ce P0 macro
225 ce = CMP.GT(expa, expb); define
229 if ( ce) expa = #1
230 if (!ce) expb = #1
[all …]
H A Dfastmath2_dlib_asm.S73 #define ce P0 macro
82 ce = CMP.GT(expa, expb); define
86 if ( ce) expa = #1
87 if (!ce) expb = #1
91 if (!ce) expa = add(expd, #1)
92 if ( ce) expb = add(expd, #1)
174 #define ce P0 macro
183 ce = CMP.GT(expa, expb); define
187 if ( ce) expa = #1
188 if (!ce) expb = #1
[all …]
/freebsd-14.2/contrib/tcsh/
H A Dsh.err.c406 ce->var = var; in cleanup_push_internal()
407 ce->fn = fn; in cleanup_push_internal()
409 ce->file = file; in cleanup_push_internal()
410 ce->line = line; in cleanup_push_internal()
428 ce--; in cleanup_ignore()
429 if (ce->var == var) { in cleanup_ignore()
441 struct cleanup_entry ce; in cleanup_until() local
445 ce.fn(ce.var); in cleanup_until()
446 if (ce.var == last_var) in cleanup_until()
462 struct cleanup_entry ce; in cleanup_until_mark() local
[all …]
/freebsd-14.2/sys/contrib/dev/athk/ath11k/
H A Dce.c330 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_rx_post_pipe()
365 spin_unlock_bh(&ab->ce.ce_lock); in ath11k_ce_rx_post_pipe()
379 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_recv_next()
414 spin_unlock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_recv_next()
468 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_send_next()
728 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_send()
748 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_send()
892 pipe = &ab->ce.ce_pipe[i]; in ath11k_ce_rx_post_buf()
923 pipe = &ab->ce.ce_pipe[i]; in ath11k_ce_init_pipes()
982 pipe = &ab->ce.ce_pipe[i]; in ath11k_ce_free_pipes()
[all …]
/freebsd-14.2/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dcmn_err.h49 #define cmn_err_once(ce, ...) \ argument
53 cmn_err(ce, __VA_ARGS__); \
57 #define vcmn_err_once(ce, fmt, ap) \ argument
61 vcmn_err(ce, fmt, ap); \
/freebsd-14.2/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_cmn_err.c34 vcmn_err(int ce, const char *fmt, va_list adx) in vcmn_err() argument
40 switch (ce) { in vcmn_err()
58 if (ce == CE_PANIC) { in vcmn_err()
62 if (ce != CE_IGNORE) { in vcmn_err()
/freebsd-14.2/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_cmn_err.c30 vcmn_err(int ce, const char *fmt, va_list adx) in vcmn_err() argument
36 switch (ce) { in vcmn_err()
54 if (ce == CE_PANIC) { in vcmn_err()
58 if (ce != CE_IGNORE) { in vcmn_err()
/freebsd-14.2/sys/contrib/dev/athk/ath12k/
H A Dce.c281 spin_lock_bh(&ab->ce.ce_lock); in ath12k_ce_rx_post_pipe()
315 spin_unlock_bh(&ab->ce.ce_lock); in ath12k_ce_rx_post_pipe()
329 spin_lock_bh(&ab->ce.ce_lock); in ath12k_ce_completed_recv_next()
364 spin_unlock_bh(&ab->ce.ce_lock); in ath12k_ce_completed_recv_next()
418 spin_lock_bh(&ab->ce.ce_lock); in ath12k_ce_completed_send_next()
655 spin_lock_bh(&ab->ce.ce_lock); in ath12k_ce_send()
675 spin_lock_bh(&ab->ce.ce_lock); in ath12k_ce_send()
764 pipe = &ab->ce.ce_pipe[i]; in ath12k_ce_rx_post_buf()
835 pipe = &ab->ce.ce_pipe[i]; in ath12k_ce_init_pipes()
893 pipe = &ab->ce.ce_pipe[i]; in ath12k_ce_free_pipes()
[all …]
/freebsd-14.2/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-err.c82 vcmn_err(int ce, const char *fmt, va_list ap) in vcmn_err() argument
88 switch (ce) { in vcmn_err()
116 cmn_err(int ce, const char *fmt, ...) in cmn_err() argument
121 vcmn_err(ce, fmt, ap); in cmn_err()
/freebsd-14.2/usr.bin/vgrind/
H A Dvgrindefs.src34 :bb={:be=}:cb=/*:ce=*/:sb=":se=\e":lb=':\
44 :cb=\$:ce=\$|$:sb=":se=":lb=':le=\a|$:\
57 :cb={:ce=}:\
65 :cb=!:ce=!|$:oc:\
70 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
77 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
98 :cb=#:ce=$:\
109 :cb=#:ce=$:\
119 :cb={:ce=}:\
130 :cb=/*:ce=*/:sb=":se=\e":lb=':le=\e':tl:\
[all …]
/freebsd-14.2/secure/caroot/untrusted/
H A DLuxTrust_Global_Root_2.pem29 53:6a:37:0b:f2:0f:3c:87:ce:6f:dc:26:29:bd:c5:
35 df:4e:a9:14:6c:53:e0:61:ce:f6:17:2f:1d:3c:bd:
56 65:2f:64:ce:5f:14:b9:b1:bf:31:bd:87:78:5a:59:
61 d7:70:fc:c5:38:8e:64:25:e1:4d:39:90:ce:c9:87:
79 04:4e:c4:b1:ce:93:70:fe:b0:54:c0:32:cd:99:30:64:17:bf:
82 c9:85:f5:d4:c7:17:99:07:e6:9b:55:e4:0c:e8:a9:b4:ce:8c:
84 ce:54:f3:d0:6f:a2:56:d6:ec:c3:37:2c:65:58:be:57:00:1a:
89 7f:1d:75:f1:33:d8:ed:ce:b8:75:6d:3e:5b:b9:98:1d:31:0d:
96 a6:4a:24:aa:de:ce:b9:ca:f9:3f:93:6f:f9:a3:ba:ea:a5:3e:
98 84:a9:84:c1:e8:ce:ce:75:93:63:1a:bc:3c:ea:d5:64:1f:2d:
/freebsd-14.2/secure/caroot/trusted/
H A DTWCA_CYBER_Root_CA.pem29 00:c6:f8:ca:1e:d9:09:20:7e:1d:6c:4e:ce:8f:e3:
32 fe:ea:cd:ed:f7:29:ce:f0:6f:7f:ac:cd:3d:ef:b3:
34 de:d4:b5:cb:19:ca:80:b9:75:ce:29:ce:d2:85:22:
38 73:91:c5:ce:73:6f:ce:ee:10:1f:1a:06:cf:e9:27:
39 60:c5:4f:19:e4:eb:ce:22:26:45:d7:60:99:dd:ce:
95 6e:a9:52:5b:ec:70:6d:b5:87:8f:37:5e:3c:8c:9c:ce:e4:f0:
96 ce:0c:67:41:cc:ce:f6:80:ab:4e:cc:4c:56:f5:c1:61:59:93:

12345678910>>...14