| /freebsd-10-stable/lib/libc/iconv/ |
| 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 …]
|
| D | citrus_stdenc.h | 62 _citrus_stdenc_init_state(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_init_state() argument 66 return ((*ce->ce_ops->eo_init_state)(ce, ps)); in _citrus_stdenc_init_state() 70 _citrus_stdenc_mbtocs(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_mbtocs() argument 76 return ((*ce->ce_ops->eo_mbtocs)(ce, csid, idx, s, n, ps, nresult, in _citrus_stdenc_mbtocs() 81 _citrus_stdenc_cstomb(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_cstomb() argument 87 return ((*ce->ce_ops->eo_cstomb)(ce, s, n, csid, idx, ps, nresult, in _citrus_stdenc_cstomb() 92 _citrus_stdenc_wctomb(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_wctomb() argument 97 return ((*ce->ce_ops->eo_wctomb)(ce, s, n, wc, ps, nresult, hooks)); in _citrus_stdenc_wctomb() 101 _citrus_stdenc_put_state_reset(struct _citrus_stdenc * __restrict ce, in _citrus_stdenc_put_state_reset() argument 106 return ((*ce->ce_ops->eo_put_state_reset)(ce, s, n, ps, nresult)); in _citrus_stdenc_put_state_reset() [all …]
|
| D | citrus_stdenc_template.h | 65 _FUNCNAME(stdenc_init)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME() 85 ce->ce_closure = ei; in _FUNCNAME() 87 et->et_mb_cur_max = _ENCODING_MB_CUR_MAX(_CE_TO_EI(ce)); in _FUNCNAME() 93 _FUNCNAME(stdenc_uninit)(struct _citrus_stdenc * __restrict ce) in _FUNCNAME() 96 if (ce) { in _FUNCNAME() 97 _FUNCNAME(encoding_module_uninit)(_CE_TO_EI(ce)); in _FUNCNAME() 98 free(ce->ce_closure); in _FUNCNAME() 103 _FUNCNAME(stdenc_init_state)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME() 107 _FUNCNAME(init_state)(_CE_TO_EI(ce), _TO_STATE(ps)); in _FUNCNAME() 113 _FUNCNAME(stdenc_mbtocs)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME() [all …]
|
| 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()
|
| /freebsd-10-stable/sys/dev/sound/ |
| D | clone.c | 198 struct snd_clone_entry *ce; in snd_clone_busy() local 205 TAILQ_FOREACH(ce, &c->head, link) { in snd_clone_busy() 206 if ((ce->flags & SND_CLONE_BUSY) || in snd_clone_busy() 207 (ce->devt != NULL && ce->devt->si_threadcount != 0)) in snd_clone_busy() 330 struct snd_clone_entry *ce; in snd_clone_getdevtime() local 335 ce = dev->si_drv2; in snd_clone_getdevtime() 336 if (ce == NULL) in snd_clone_getdevtime() 339 SND_CLONE_ASSERT(ce->parent != NULL, ("NULL parent")); in snd_clone_getdevtime() 341 *tsp = ce->tsp; in snd_clone_getdevtime() 349 struct snd_clone_entry *ce; in snd_clone_getdevflags() local [all …]
|
| /freebsd-10-stable/sys/kern/ |
| D | subr_kobj.c | 175 kobj_method_t *ce; in kobj_lookup_method_class() local 177 for (ce = methods; ce && ce->desc; ce++) { in kobj_lookup_method_class() 178 if (ce->desc == desc) { in kobj_lookup_method_class() 179 return ce; in kobj_lookup_method_class() 190 kobj_method_t *ce; in kobj_lookup_method_mi() local 193 ce = kobj_lookup_method_class(cls, desc); in kobj_lookup_method_mi() 194 if (ce) in kobj_lookup_method_mi() 195 return ce; in kobj_lookup_method_mi() 200 ce = kobj_lookup_method_mi(*basep, desc); in kobj_lookup_method_mi() 201 if (ce) in kobj_lookup_method_mi() [all …]
|
| /freebsd-10-stable/contrib/unbound/validator/ |
| D | val_nsec3.c | 80 uint8_t* ce; member 872 rbtree_t* ct, struct query_info* qinfo, struct ce_response* ce) in nsec3_find_closest_encloser() argument 888 &ce->ce_rrset, &ce->ce_rr)) { in nsec3_find_closest_encloser() 889 ce->ce = nm; in nsec3_find_closest_encloser() 890 ce->ce_len = nmlen; in nsec3_find_closest_encloser() 910 next_closer(uint8_t* qname, size_t qnamelen, uint8_t* ce, in next_closer() argument 913 int strip = dname_count_labels(qname) - dname_count_labels(ce) -1; in next_closer() 940 struct ce_response* ce) in nsec3_prove_closest_encloser() argument 945 memset(ce, 0, sizeof(*ce)); in nsec3_prove_closest_encloser() 947 if(!nsec3_find_closest_encloser(env, flt, ct, qinfo, ce)) { in nsec3_prove_closest_encloser() [all …]
|
| D | val_nsec.c | 206 uint8_t* wc = NULL, *ce = NULL; in val_nsec_prove_nodata_dsreply() local 259 ce = nsec_closest_encloser(qinfo->qname, in val_nsec_prove_nodata_dsreply() 263 if(wc && !ce) in val_nsec_prove_nodata_dsreply() 265 else if(wc && ce) { in val_nsec_prove_nodata_dsreply() 267 if(query_dname_compare(wc, ce) != 0) in val_nsec_prove_nodata_dsreply() 318 uint8_t* ce = nsec->rk.dname; in nsec_proves_nodata() local 320 dname_remove_label(&ce, &ce_len); in nsec_proves_nodata() 325 if(dname_strict_subdomain_c(qinfo->qname, ce)) { in nsec_proves_nodata() 340 *wc = ce; in nsec_proves_nodata() 356 uint8_t* ce = nm; in nsec_proves_nodata() local [all …]
|
| /freebsd-10-stable/crypto/heimdal/lib/asn1/ |
| 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 …]
|
| /freebsd-10-stable/sys/dev/cxgbe/tom/ |
| D | t4_tom.c | 308 __func__, toep, tid, toep->l2te, toep->ce); in release_offload_resources() 325 remove_tid(sc, tid, toep->ce ? 2 : 1); in release_offload_resources() 329 if (toep->ce) in release_offload_resources() 330 release_lip(td, toep->ce); in release_offload_resources() 734 struct clip_entry *ce; in search_lip() local 738 TAILQ_FOREACH(ce, &td->clip_table, link) { in search_lip() 739 if (IN6_ARE_ADDR_EQUAL(&ce->lip, lip)) in search_lip() 740 return (ce); in search_lip() 747 hold_lip(struct tom_data *td, struct in6_addr *lip, struct clip_entry *ce) in hold_lip() argument 751 if (ce == NULL) in hold_lip() [all …]
|
| /freebsd-10-stable/contrib/tcsh/ |
| D | sh.err.c | 397 struct cleanup_entry *ce; in cleanup_push_internal() local 407 ce = cleanup_stack + cleanup_sp; in cleanup_push_internal() 408 ce->var = var; in cleanup_push_internal() 409 ce->fn = fn; in cleanup_push_internal() 411 ce->file = file; in cleanup_push_internal() 412 ce->line = line; in cleanup_push_internal() 426 struct cleanup_entry *ce; in cleanup_ignore() local 428 ce = cleanup_stack + cleanup_sp; in cleanup_ignore() 429 while (ce != cleanup_stack) { in cleanup_ignore() 430 ce--; in cleanup_ignore() [all …]
|
| /freebsd-10-stable/contrib/gcc/cp/ |
| D | typeck2.c | 784 constructor_elt *ce; in process_init_constructor_array() local 809 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i) in process_init_constructor_array() 811 if (ce->index) in process_init_constructor_array() 813 gcc_assert (TREE_CODE (ce->index) == INTEGER_CST); in process_init_constructor_array() 814 if (compare_tree_int (ce->index, i) != 0) in process_init_constructor_array() 816 ce->value = error_mark_node; in process_init_constructor_array() 821 ce->index = size_int (i); in process_init_constructor_array() 822 gcc_assert (ce->value); in process_init_constructor_array() 823 ce->value = digest_init (TREE_TYPE (type), ce->value); in process_init_constructor_array() 825 if (ce->value != error_mark_node) in process_init_constructor_array() [all …]
|
| /freebsd-10-stable/sys/cddl/compat/opensolaris/kern/ |
| D | opensolaris_cmn_err.c | 32 vcmn_err(int ce, const char *fmt, va_list adx) in vcmn_err() argument 38 switch (ce) { in vcmn_err() 56 if (ce == CE_PANIC) { in vcmn_err() 60 if (ce != CE_IGNORE) { in vcmn_err()
|
| /freebsd-10-stable/cddl/contrib/opensolaris/lib/libzfs/common/ |
| D | libzfs_import.c | 223 config_entry_t *ce; in add_config() local 311 for (ce = ve->ve_configs; ce != NULL; ce = ce->ce_next) { in add_config() 312 if (ce->ce_txg == txg) in add_config() 316 if (ce == NULL) { in add_config() 317 if ((ce = zfs_alloc(hdl, sizeof (config_entry_t))) == NULL) { in add_config() 321 ce->ce_txg = txg; in add_config() 322 ce->ce_config = config; in add_config() 323 ce->ce_next = ve->ve_configs; in add_config() 324 ve->ve_configs = ce; in add_config() 442 config_entry_t *ce; in get_configs() local [all …]
|
| /freebsd-10-stable/usr.bin/vgrind/ |
| D | vgrindefs.src | 35 :bb={:be=}:cb=/*:ce=*/:sb=":se=\e":lb=':\ 45 :cb=\$:ce=\$|$:sb=":se=":lb=':le=\a|$:\ 58 :cb={:ce=}:\ 66 :cb=!:ce=!|$:oc:\ 71 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\ 78 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\ 88 :pb=^\p\::bb=\::be=;:cb=/*:ce=*/:sb=":se=\e":\ 99 :cb=#:ce=$:\ 110 :cb=#:ce=$:\ 120 :cb={:ce=}:\ [all …]
|
| /freebsd-10-stable/contrib/netbsd-tests/bin/sh/ |
| D | t_option.sh | 125 atf_check -s exit:1 -o empty -e empty ${TEST_SH} -ce \ 129 atf_check -s exit:0 -o match:VAR=value -e empty ${TEST_SH} -ce \ 360 atf_check -s exit:0 -o match:OK -e empty ${TEST_SH} -ce \ 367 atf_check -s exit:0 -o match:OK -e empty ${TEST_SH} -ce \ 370 atf_check -s exit:0 -o match:OKOK -e empty ${TEST_SH} -ce \ 382 atf_check -s exit:0 -o match:OK -e empty ${TEST_SH} -ce \ 384 atf_check -s exit:0 -o match:OK -e empty ${TEST_SH} -ce \ 387 ${TEST_SH} -ce 'unset X; set -u; echo ${X+ERR}; echo OK'
|
| /freebsd-10-stable/crypto/openssl/crypto/des/ |
| D | speed.c | 180 long ca, cb, cc, cd, ce; in main() local 209 ce = count / 20 + 1; in main() 281 printf("Doing crypt %ld times\n", ce); in main() 284 for (count = 0, run = 1; COND(ce); count++) in main() 288 e = ((double)COUNT(ce)) / e; in main()
|
| /freebsd-10-stable/sys/cam/scsi/ |
| D | scsi_ch.c | 198 struct changer_exchange *ce); 931 chexchange(struct cam_periph *periph, struct changer_exchange *ce) in chexchange() argument 943 if ((ce->ce_srctype > CHET_DT) || (ce->ce_fdsttype > CHET_DT) || in chexchange() 944 (ce->ce_sdsttype > CHET_DT)) in chexchange() 946 if ((ce->ce_srcunit > (softc->sc_counts[ce->ce_srctype] - 1)) || in chexchange() 947 (ce->ce_fdstunit > (softc->sc_counts[ce->ce_fdsttype] - 1)) || in chexchange() 948 (ce->ce_sdstunit > (softc->sc_counts[ce->ce_sdsttype] - 1))) in chexchange() 954 if (((softc->sc_exchangemask[ce->ce_srctype] & in chexchange() 955 (1 << ce->ce_fdsttype)) == 0) || in chexchange() 956 ((softc->sc_exchangemask[ce->ce_fdsttype] & in chexchange() [all …]
|
| /freebsd-10-stable/sys/geom/ |
| D | geom_fox.c | 67 int cr, cw, ce; member 97 g_access(sc->opath, -sc->cr, -sc->cw, -(sc->ce + 1)); in g_fox_select_path() 136 error = g_access(cp1, sc->cr, sc->cw, sc->ce); in g_fox_select_path() 303 if (sc->cr == 0 && sc->cw == 0 && sc->ce == 0) { in g_fox_access() 333 sc->ce += de; in g_fox_access() 334 if (sc->cr == 0 && sc->cw == 0 && sc->ce == 0) { in g_fox_access()
|
| /freebsd-10-stable/contrib/netbsd-tests/ipf/input/ |
| D | f12 | 37 4500 001c 0000 2000 3f11 56ce 0101 0101 0201 0101 42 4500 001c 0000 2000 3f11 56ce 0101 0101 0201 0101
|
| /freebsd-10-stable/share/termcap/ |
| D | termcap | 134 # DTC 382 with VDU. Has no cd so we fake it with ce. Standout works but 148 :bs:co#80:ce=^P^U:cl=20^P^]:cm=%r^P^Q%.%.:dc=^X:\ 163 :ip=.1*:so=\E"I:us=\E"U:cd=\E'P:ce=\E'L:cl=^L:cm=\E#%+ %+ :\ 177 :cd=\EY:ce=\ET:cl=^Z:cm=\E=%+ %+ :co#80:ct=\E3:\ 192 :al=\EE:am:bt=\EI:ce=\Et:cl=\E*:dc=\EW:\ 212 :al=\E[L:am:bs:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\ 226 :mr=\E[7m:mh=\E[2m:mb=\E[5m:me=\E[m:ce=\E[K:cd=\E[J:cl=\E[H\E[J:\ 243 :al=\E[L:am:bs:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\ 265 :al=\E[1L:am:bs:cd=\E[0J:ce=\E[0K:cl=\E[2J\E[H:cm=\E[%i%2;%2H:co#80:\ 288 :ae=\E[10m:al=\E[1L:as=\E[12m:bl=^G:cd=\E[J:ce=\E[K:\ [all …]
|
| /freebsd-10-stable/contrib/gdtoa/ |
| D | smisc.c | 140 ULong *ce, *x, *xe; local 145 ce = c + ((n-1) >> kshift) + 1; 159 while(c < ce)
|
| /freebsd-10-stable/crypto/openssl/crypto/objects/ |
| D | objects.txt | 726 X500 29 : id-ce 728 id-ce 9 : subjectDirectoryAttributes : X509v3 Subject Directory Attributes 730 id-ce 14 : subjectKeyIdentifier : X509v3 Subject Key Identifier 732 id-ce 15 : keyUsage : X509v3 Key Usage 734 id-ce 16 : privateKeyUsagePeriod : X509v3 Private Key Usage Period 736 id-ce 17 : subjectAltName : X509v3 Subject Alternative Name 738 id-ce 18 : issuerAltName : X509v3 Issuer Alternative Name 740 id-ce 19 : basicConstraints : X509v3 Basic Constraints 742 id-ce 20 : crlNumber : X509v3 CRL Number 744 id-ce 21 : CRLReason : X509v3 CRL Reason Code [all …]
|
| /freebsd-10-stable/sys/dev/ciss/ |
| D | ciss.c | 2293 struct ciss_error_info *ce; in _ciss_report_request() local 2298 ce = (struct ciss_error_info *)&(cc->sg[0]); in _ciss_report_request() 2305 ((ce->command_status == CISS_CMD_STATUS_DATA_OVERRUN) || in _ciss_report_request() 2306 (ce->command_status == CISS_CMD_STATUS_DATA_UNDERRUN)) && in _ciss_report_request() 2326 *command_status = ce->command_status; in _ciss_report_request() 2328 if (ce->command_status == CISS_CMD_STATUS_TARGET_STATUS) { in _ciss_report_request() 2329 *scsi_status = ce->scsi_status; in _ciss_report_request() 2336 ce->command_status, ciss_name_command_status(ce->command_status), in _ciss_report_request() 2337 ce->scsi_status); in _ciss_report_request() 2338 if (ce->command_status == CISS_CMD_STATUS_INVALID_COMMAND) { in _ciss_report_request() [all …]
|
| /freebsd-10-stable/sys/dev/mpt/ |
| D | mpt_debug.c | 785 SGE_CHAIN32 *ce = (SGE_CHAIN32 *) se; in mpt_dump_sgl() local 787 " Flgs=0x%x Len=0x%0x\n", ce, ce->Address, in mpt_dump_sgl() 788 ce->NextChainOffset, ce->Flags, ce->Length); in mpt_dump_sgl()
|