Home
last modified time | relevance | path

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

12345678910>>...14

/freebsd/lib/libc/iconv/
H A Dcitrus_stdenc.c55 struct _citrus_stdenc *ce; in _citrus_stdenc_open() local
64 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()
70 ce->ce_closure = NULL; in _citrus_stdenc_open()
71 ce->ce_module = NULL; in _citrus_stdenc_open()
72 ce->ce_traits = NULL; in _citrus_stdenc_open()
78 ce->ce_module = handle; in _citrus_stdenc_open()
80 getops = (_citrus_stdenc_getops_t)_citrus_find_getops(ce->ce_module, in _citrus_stdenc_open()
87 ce->ce_ops = (struct _citrus_stdenc_ops *)malloc(sizeof(*ce->ce_ops)); in _citrus_stdenc_open()
[all …]
H A Dcitrus_stdenc.h63 _citrus_stdenc_init_state(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_init_state() argument
67 return ((*ce->ce_ops->eo_init_state)(ce, ps)); in _citrus_stdenc_init_state()
71 _citrus_stdenc_mbtocs(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_mbtocs() argument
77 return ((*ce->ce_ops->eo_mbtocs)(ce, csid, idx, s, n, ps, nresult, in _citrus_stdenc_mbtocs()
82 _citrus_stdenc_cstomb(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_cstomb() argument
88 return ((*ce->ce_ops->eo_cstomb)(ce, s, n, csid, idx, ps, nresult, in _citrus_stdenc_cstomb()
93 _citrus_stdenc_wctomb(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_wctomb() argument
98 return ((*ce->ce_ops->eo_wctomb)(ce, s, n, wc, ps, nresult, hooks)); in _citrus_stdenc_wctomb()
102 _citrus_stdenc_put_state_reset(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_put_state_reset() argument
107 return ((*ce->ce_ops->eo_put_state_reset)(ce, s, n, ps, nresult)); in _citrus_stdenc_put_state_reset()
[all …]
H A Dcitrus_stdenc_template.h71 _FUNCNAME(stdenc_init)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME()
91 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()
100 _FUNCNAME(stdenc_uninit)(struct _citrus_stdenc * __restrict 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()
110 _FUNCNAME(stdenc_init_state)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME()
114 _FUNCNAME(init_state)(_CE_TO_EI(ce), _TO_STATE(ps)); 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/sys/dev/cxgbe/
H A Dt4_clip.c138 struct clip_entry *ce; in alloc_clip_entry() local
142 ce = malloc(sizeof(*ce), M_CXGBE, M_NOWAIT | M_ZERO); in alloc_clip_entry()
143 if (__predict_true(ce != NULL)) { in alloc_clip_entry()
144 ce->cde = cde; in alloc_clip_entry()
146 ce->clip_idx = -1; in alloc_clip_entry()
149 return (ce); in alloc_clip_entry()
187 struct clip_entry *ce; in lookup_clip_entry() local
196 LIST_FOREACH(ce, &sc->clip_table[bucket], link) { in lookup_clip_entry()
197 if (ce->cde == cde) in lookup_clip_entry()
198 return (ce); in lookup_clip_entry()
[all …]
/freebsd/sys/kern/
H A Dsubr_kobj.c180 kobj_method_t *ce; in kobj_lookup_method_class() local
182 for (ce = methods; ce && ce->desc; ce++) { in kobj_lookup_method_class()
183 if (ce->desc == desc) { in kobj_lookup_method_class()
184 return ce; in kobj_lookup_method_class()
195 kobj_method_t *ce; in kobj_lookup_method_mi() local
198 ce = kobj_lookup_method_class(cls, desc); in kobj_lookup_method_mi()
199 if (ce) in kobj_lookup_method_mi()
200 return ce; in kobj_lookup_method_mi()
205 ce = kobj_lookup_method_mi(*basep, desc); in kobj_lookup_method_mi()
206 if (ce) in kobj_lookup_method_mi()
[all …]
/freebsd/contrib/unbound/validator/
H A Dval_nsec3.c93 uint8_t* ce; member
938 struct ce_response* ce, int* calculations) in nsec3_find_closest_encloser() argument
958 &ce->ce_rrset, &ce->ce_rr, calculations)) { in nsec3_find_closest_encloser()
959 ce->ce = nm; in nsec3_find_closest_encloser()
960 ce->ce_len = nmlen; in nsec3_find_closest_encloser()
980 next_closer(uint8_t* qname, size_t qnamelen, uint8_t* ce, in next_closer() argument
983 int strip = dname_count_labels(qname) - dname_count_labels(ce) -1; in next_closer()
1012 int prove_does_not_exist, struct ce_response* ce, int* calculations) in nsec3_prove_closest_encloser() argument
1017 memset(ce, 0, sizeof(*ce)); in nsec3_prove_closest_encloser()
1019 if(!nsec3_find_closest_encloser(env, flt, ct, qinfo, ce, calculations)) { in nsec3_prove_closest_encloser()
[all …]
H A Dval_nsec.c213 uint8_t* wc = NULL, *ce = NULL; in val_nsec_prove_nodata_dsreply() local
271 ce = nsec_closest_encloser(qinfo->qname, in val_nsec_prove_nodata_dsreply()
275 if(wc && !ce) in val_nsec_prove_nodata_dsreply()
277 else if(wc && ce) { in val_nsec_prove_nodata_dsreply()
279 if(query_dname_compare(wc, ce) != 0) 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()
337 if(dname_strict_subdomain_c(qinfo->qname, ce)) { in nsec_proves_nodata()
352 *wc = ce; in nsec_proves_nodata()
368 uint8_t* ce = nm; in nsec_proves_nodata() local
[all …]
/freebsd/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/crypto/heimdal/lib/asn1/
H A Drfc2459.asn1145 id-x509-ce OBJECT IDENTIFIER ::= {joint-iso-ccitt(2) ds(5) 29}
280 id-x509-ce-keyUsage OBJECT IDENTIFIER ::= { id-x509-ce 15 }
294 id-x509-ce-authorityKeyIdentifier OBJECT IDENTIFIER ::= { id-x509-ce 35 }
305 id-x509-ce-subjectKeyIdentifier OBJECT IDENTIFIER ::= { id-x509-ce 14 }
309 id-x509-ce-basicConstraints OBJECT IDENTIFIER ::= { id-x509-ce 19 }
316 id-x509-ce-nameConstraints OBJECT IDENTIFIER ::= { id-x509-ce 30 }
333 id-x509-ce-privateKeyUsagePeriod OBJECT IDENTIFIER ::= { id-x509-ce 16 }
334 id-x509-ce-certificatePolicies OBJECT IDENTIFIER ::= { id-x509-ce 32 }
335 id-x509-ce-policyMappings OBJECT IDENTIFIER ::= { id-x509-ce 33 }
336 id-x509-ce-subjectAltName OBJECT IDENTIFIER ::= { id-x509-ce 17 }
[all …]
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dce.c89 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_read32() local
91 return ce->bus_ops->read32(ar, offset); in ath10k_ce_read32()
96 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_write32() local
98 ce->bus_ops->write32(ar, offset, value); in ath10k_ce_write32()
134 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_src_ring_read_index_from_ddr() local
136 return ce->vaddr_rri[ce_id] & CE_DDR_RRI_MASK; in ath10k_ce_src_ring_read_index_from_ddr()
142 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_src_ring_read_index_get() local
144 struct ath10k_ce_pipe *ce_state = &ce->ce_states[ce_id]; in ath10k_ce_src_ring_read_index_get()
169 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_src_ring_base_addr_set() local
170 struct ath10k_ce_pipe *ce_state = &ce->ce_states[ce_id]; in ath10k_ce_src_ring_base_addr_set()
[all …]
/freebsd/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
74 if ( ce.new) exp = add(expa, #1)
75 if (!ce.new) exp = add(expb, #1)
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
[all …]
H A Dfastmath2_dlib_asm.S73 #define ce P0 macro
82 ce = CMP.GT(expa, expb); define
83 if ( ce.new) exp = add(expa, #1)
84 if (!ce.new) exp = add(expb, #1)
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
[all …]
H A Dfastmath_dlib_asm.S81 #define ce P0 macro
90 ce = CMP.GT(expa, expb); define
91 if ( ce.new) exp = add(expa, #1)
92 if (!ce.new) exp = add(expb, #1)
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
[all …]
/freebsd/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/contrib/tcsh/
H A Dsh.err.c395 struct cleanup_entry *ce; in cleanup_push_internal() local
405 ce = cleanup_stack + cleanup_sp; in cleanup_push_internal()
406 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()
424 struct cleanup_entry *ce; in cleanup_ignore() local
426 ce = cleanup_stack + cleanup_sp; in cleanup_ignore()
427 while (ce != cleanup_stack) { in cleanup_ignore()
428 ce--; in cleanup_ignore()
[all …]
/freebsd/sys/contrib/dev/athk/ath11k/
H A Dce.c268 ath11k_dp_shadow_stop_timer(ab, &ab->ce.hp_timer[i]); in ath11k_ce_stop_shadow_timers()
282 lockdep_assert_held(&ab->ce.ce_lock); in ath11k_ce_rx_buf_enqueue_pipe()
330 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()
495 spin_unlock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_send_next()
606 ath11k_dp_shadow_init_timer(ab, &ab->ce.hp_timer[ce_id], in ath11k_ce_init_ring()
652 struct ath11k_ce_pipe *pipe = &ab->ce.ce_pipe[ce_id]; in ath11k_ce_alloc_pipe()
[all …]
/freebsd/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/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/sys/contrib/dev/athk/ath12k/
H A Dce.c233 lockdep_assert_held(&ab->ce.ce_lock); in ath12k_ce_rx_buf_enqueue_pipe()
281 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()
445 spin_unlock_bh(&ab->ce.ce_lock); in ath12k_ce_completed_send_next()
582 struct ath12k_ce_pipe *pipe = &ab->ce.ce_pipe[ce_id]; in ath12k_ce_alloc_pipe()
621 struct ath12k_ce_pipe *pipe = &ab->ce.ce_pipe[ce_id]; in ath12k_ce_per_engine_service()
632 struct ath12k_ce_pipe *pipe = &ab->ce.ce_pipe[pipe_id]; in ath12k_ce_poll_send_completed()
[all …]
/freebsd/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/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/usr.bin/vgrind/
H A Dvgrindefs.src31 :bb={:be=}:cb=/*:ce=*/:sb=":se=\e":lb=':\
41 :cb=\$:ce=\$|$:sb=":se=":lb=':le=\a|$:\
54 :cb={:ce=}:\
62 :cb=!:ce=!|$:oc:\
67 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
74 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
84 :pb=^\p\::bb=\::be=;:cb=/*:ce=*/:sb=":se=\e":\
95 :cb=#:ce=$:\
106 :cb=#:ce=$:\
116 :cb={:ce=}:\
[all …]
/freebsd/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:
H A DCertum_Root_CA.pem26 00:ce:b1:c1:2e:d3:4f:7c:cd:25:ce:18:3e:4f:c4:
35 ed:26:5f:10:26:0f:08:4f:f0:a4:57:28:ce:8f:b8:
42 14:54:b6:eb:d9:6f:ce:cd:88:d6:ab:1b:da:96:3b:
50 b8:8d:ce:ef:e7:14:ba:cf:ee:b0:44:92:6c:b4:39:3e:a2:84:
57 43:a9:1d:e5:80:90:ce:03:54:28:3e:f7:3f:d3:f8:4d:ed:6a:
62 18:db:bc:70:dd:9b:b1:69:ed:80:ce:89:40:48:6a:0e:35:ca:

12345678910>>...14