| /src/lib/libc/iconv/ ! |
| H A D | citrus_stdenc.c | 55 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 D | citrus_stdenc.h | 63 _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 D | citrus_stdenc_template.h | 71 _FUNCNAME(stdenc_init)(struct _citrus_stdenc * __restrict ce, in stdenc_init() argument 91 ce->ce_closure = ei; in stdenc_init() 93 et->et_mb_cur_max = _ENCODING_MB_CUR_MAX(_CE_TO_EI(ce)); in stdenc_init() 94 et->et_mb_cur_min = _ENCODING_MB_CUR_MIN(_CE_TO_EI(ce)); in stdenc_init() 100 _FUNCNAME(stdenc_uninit)(struct _citrus_stdenc * __restrict ce) in stdenc_uninit() argument 103 if (ce) { in stdenc_uninit() 104 _FUNCNAME(encoding_module_uninit)(_CE_TO_EI(ce)); in stdenc_uninit() 105 free(ce->ce_closure); in stdenc_uninit() 110 _FUNCNAME(stdenc_init_state)(struct _citrus_stdenc * __restrict ce, in stdenc_init_state() argument 114 _FUNCNAME(init_state)(_CE_TO_EI(ce), _TO_STATE(ps)); in stdenc_init_state() [all …]
|
| H A D | citrus_none.c | 57 _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()
|
| /src/sys/dev/cxgbe/ ! |
| H A D | t4_clip.c | 138 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 …]
|
| /src/sys/kern/ ! |
| H A D | subr_kobj.c | 180 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 …]
|
| /src/contrib/unbound/validator/ ! |
| H A D | val_nsec3.c | 93 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 D | val_nsec.c | 213 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 …]
|
| /src/crypto/heimdal/lib/asn1/ ! |
| H A D | rfc2459.asn1 | 145 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 …]
|
| /src/sys/contrib/dev/athk/ath10k/ ! |
| H A D | ce.c | 92 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_read32() local 94 return ce->bus_ops->read32(ar, offset); in ath10k_ce_read32() 99 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_write32() local 101 ce->bus_ops->write32(ar, offset, value); in ath10k_ce_write32() 137 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_src_ring_read_index_from_ddr() local 139 return ce->vaddr_rri[ce_id] & CE_DDR_RRI_MASK; in ath10k_ce_src_ring_read_index_from_ddr() 145 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_src_ring_read_index_get() local 147 struct ath10k_ce_pipe *ce_state = &ce->ce_states[ce_id]; in ath10k_ce_src_ring_read_index_get() 172 struct ath10k_ce *ce = ath10k_ce_priv(ar); in ath10k_ce_src_ring_base_addr_set() local 173 struct ath10k_ce_pipe *ce_state = &ce->ce_states[ce_id]; in ath10k_ce_src_ring_base_addr_set() [all …]
|
| /src/sys/contrib/openzfs/lib/libspl/include/sys/ ! |
| H A D | cmn_err.h | 33 #define cmn_err_once(ce, ...) \ argument 37 cmn_err(ce, __VA_ARGS__); \ 41 #define vcmn_err_once(ce, fmt, ap) \ argument 45 vcmn_err(ce, fmt, ap); \ 49 #define zcmn_err_once(zone, ce, ...) \ argument 53 zcmn_err(zone, ce, __VA_ARGS__); \ 57 #define vzcmn_err_once(zone, ce, fmt, ap) \ argument 61 vzcmn_err(zone, ce, fmt, ap); \
|
| /src/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/ ! |
| H A D | fastmath2_ldlib_asm.S | 63 #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 D | fastmath_dlib_asm.S | 81 #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 …]
|
| H A D | fastmath2_dlib_asm.S | 73 #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 …]
|
| /src/sys/contrib/openzfs/include/os/freebsd/spl/sys/ ! |
| H A D | cmn_err.h | 78 #define cmn_err_once(ce, ...) \ argument 82 cmn_err(ce, __VA_ARGS__); \ 86 #define vcmn_err_once(ce, fmt, ap) \ argument 90 vcmn_err(ce, fmt, ap); \ 94 #define zcmn_err_once(zone, ce, ...) \ argument 98 zcmn_err(zone, ce, __VA_ARGS__); \ 102 #define vzcmn_err_once(zone, ce, fmt, ap) \ argument 106 vzcmn_err(zone, ce, fmt, ap); \
|
| /src/contrib/tcsh/ ! |
| H A D | sh.err.c | 395 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 …]
|
| /src/crypto/krb5/src/util/support/ ! |
| H A D | fake-addrinfo.c | 652 struct face *ce; in fai_add_hosts_by_name() local 660 if (!find_face(name, &ce)) { in fai_add_hosts_by_name() 709 ce = malloc(sizeof(struct face)); in fai_add_hosts_by_name() 710 memset(ce, 0, sizeof(*ce)); in fai_add_hosts_by_name() 711 ce->expiration = time(0) + 30; in fai_add_hosts_by_name() 718 ce->naddrs4++; in fai_add_hosts_by_name() 721 ce->naddrs6++; in fai_add_hosts_by_name() 727 ce->addrs4 = calloc(ce->naddrs4, sizeof(*ce->addrs4)); in fai_add_hosts_by_name() 728 if (ce->addrs4 == NULL && ce->naddrs4 != 0) { in fai_add_hosts_by_name() 733 ce->addrs6 = calloc(ce->naddrs6, sizeof(*ce->addrs6)); in fai_add_hosts_by_name() [all …]
|
| /src/sys/contrib/dev/athk/ath11k/ ! |
| H A D | ce.c | 270 ath11k_dp_shadow_stop_timer(ab, &ab->ce.hp_timer[i]); in ath11k_ce_stop_shadow_timers() 284 lockdep_assert_held(&ab->ce.ce_lock); in ath11k_ce_rx_buf_enqueue_pipe() 332 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_rx_post_pipe() 368 spin_unlock_bh(&ab->ce.ce_lock); in ath11k_ce_rx_post_pipe() 382 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_recv_next() 413 spin_unlock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_recv_next() 467 spin_lock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_send_next() 494 spin_unlock_bh(&ab->ce.ce_lock); in ath11k_ce_completed_send_next() 605 ath11k_dp_shadow_init_timer(ab, &ab->ce.hp_timer[ce_id], in ath11k_ce_init_ring() 651 struct ath11k_ce_pipe *pipe = &ab->ce.ce_pipe[ce_id]; in ath11k_ce_alloc_pipe() [all …]
|
| /src/sys/contrib/openzfs/include/os/linux/spl/sys/ ! |
| H A D | cmn_err.h | 50 #define cmn_err_once(ce, ...) \ argument 54 cmn_err(ce, __VA_ARGS__); \ 58 #define vcmn_err_once(ce, fmt, ap) \ argument 62 vcmn_err(ce, fmt, ap); \
|
| /src/sys/contrib/openzfs/module/os/freebsd/spl/ ! |
| H A D | spl_cmn_err.c | 35 vcmn_err(int ce, const char *fmt, va_list adx) in vcmn_err() argument 41 switch (ce) { in vcmn_err() 59 if (ce == CE_PANIC) { in vcmn_err() 63 if (ce != CE_IGNORE) { in vcmn_err()
|
| /src/sys/contrib/dev/athk/ath12k/ ! |
| H A D | ce.c | 233 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 …]
|
| /src/sys/cddl/compat/opensolaris/kern/ ! |
| H A D | opensolaris_cmn_err.c | 30 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()
|
| /src/sys/dev/qcom_gcc/ ! |
| H A D | qcom_gcc_main.c | 105 const struct qcom_gcc_chipset_list_entry *ce; in qcom_gcc_probe() local 107 ce = &qcom_gcc_chipset_list[i]; in qcom_gcc_probe() 108 if (ofw_bus_is_compatible(dev, ce->ofw) == 0) in qcom_gcc_probe() 110 device_set_desc(dev, ce->desc); in qcom_gcc_probe() 111 sc->sc_chipset = ce->chipset; in qcom_gcc_probe()
|
| /src/sys/contrib/openzfs/module/os/linux/spl/ ! |
| H A D | spl-err.c | 82 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()
|
| /src/usr.bin/vgrind/ ! |
| H A D | vgrindefs.src | 31 :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 …]
|