Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd-13-stable/sys/dev/sound/
HDclone.c134 struct snd_clone_entry *ce; in snd_clone_busy() local
141 TAILQ_FOREACH(ce, &c->head, link) { in snd_clone_busy()
142 if ((ce->flags & SND_CLONE_BUSY) || in snd_clone_busy()
143 (ce->devt != NULL && ce->devt->si_threadcount != 0)) in snd_clone_busy()
255 struct snd_clone_entry *ce; in snd_clone_getdevflags() local
259 ce = dev->si_drv2; in snd_clone_getdevflags()
260 if (ce == NULL) in snd_clone_getdevflags()
263 SND_CLONE_ASSERT(ce->parent != NULL, ("NULL parent")); in snd_clone_getdevflags()
265 return (ce->flags); in snd_clone_getdevflags()
271 struct snd_clone_entry *ce; in snd_clone_setdevflags() local
[all …]
/freebsd-13-stable/lib/libc/iconv/
HDcitrus_stdenc.c56 struct _citrus_stdenc *ce; in _citrus_stdenc_open() local
65 ce = malloc(sizeof(*ce)); in _citrus_stdenc_open()
66 if (ce == NULL) { in _citrus_stdenc_open()
70 ce->ce_ops = NULL; in _citrus_stdenc_open()
71 ce->ce_closure = NULL; in _citrus_stdenc_open()
72 ce->ce_module = NULL; in _citrus_stdenc_open()
73 ce->ce_traits = NULL; in _citrus_stdenc_open()
79 ce->ce_module = handle; in _citrus_stdenc_open()
81 getops = (_citrus_stdenc_getops_t)_citrus_find_getops(ce->ce_module, in _citrus_stdenc_open()
88 ce->ce_ops = (struct _citrus_stdenc_ops *)malloc(sizeof(*ce->ce_ops)); in _citrus_stdenc_open()
[all …]
HDcitrus_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 …]
HDcitrus_stdenc_template.h66 _FUNCNAME(stdenc_init)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME()
86 ce->ce_closure = ei; in _FUNCNAME()
88 et->et_mb_cur_max = _ENCODING_MB_CUR_MAX(_CE_TO_EI(ce)); in _FUNCNAME()
94 _FUNCNAME(stdenc_uninit)(struct _citrus_stdenc * __restrict ce) in _FUNCNAME()
97 if (ce) { in _FUNCNAME()
98 _FUNCNAME(encoding_module_uninit)(_CE_TO_EI(ce)); in _FUNCNAME()
99 free(ce->ce_closure); in _FUNCNAME()
104 _FUNCNAME(stdenc_init_state)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME()
108 _FUNCNAME(init_state)(_CE_TO_EI(ce), _TO_STATE(ps)); in _FUNCNAME()
114 _FUNCNAME(stdenc_mbtocs)(struct _citrus_stdenc * __restrict ce, in _FUNCNAME()
[all …]
HDcitrus_none.c58 _citrus_NONE_stdenc_init(struct _citrus_stdenc * __restrict ce, in _citrus_NONE_stdenc_init() argument
66 ce->ce_closure = NULL; in _citrus_NONE_stdenc_init()
72 _citrus_NONE_stdenc_uninit(struct _citrus_stdenc *ce __unused) in _citrus_NONE_stdenc_uninit()
78 _citrus_NONE_stdenc_init_state(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_init_state()
86 _citrus_NONE_stdenc_mbtocs(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_mbtocs()
107 _citrus_NONE_stdenc_cstomb(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_cstomb()
162 _citrus_NONE_stdenc_mbtowc(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_mbtowc()
189 _citrus_NONE_stdenc_wctomb(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_wctomb()
212 _citrus_NONE_stdenc_put_state_reset(struct _citrus_stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_put_state_reset()
223 _citrus_NONE_stdenc_get_state_desc(struct _stdenc * __restrict ce __unused, in _citrus_NONE_stdenc_get_state_desc()
/freebsd-13-stable/sys/dev/cxgbe/
HDt4_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-13-stable/sys/kern/
HDsubr_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()
184 if (ce->desc == desc) { in kobj_lookup_method_class()
185 return ce; in kobj_lookup_method_class()
196 kobj_method_t *ce; in kobj_lookup_method_mi() local
199 ce = kobj_lookup_method_class(cls, desc); in kobj_lookup_method_mi()
200 if (ce) in kobj_lookup_method_mi()
201 return ce; in kobj_lookup_method_mi()
206 ce = kobj_lookup_method_mi(*basep, desc); in kobj_lookup_method_mi()
207 if (ce) in kobj_lookup_method_mi()
[all …]
/freebsd-13-stable/contrib/unbound/validator/
HDval_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 …]
HDval_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-13-stable/crypto/heimdal/lib/asn1/
HDrfc2459.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-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
HDfastmath2_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 …]
HDfastmath2_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 …]
HDfastmath_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-13-stable/contrib/tcsh/
HDsh.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-13-stable/sys/contrib/openzfs/module/os/freebsd/spl/
HDspl_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-13-stable/sys/cddl/compat/opensolaris/kern/
HDopensolaris_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-13-stable/sys/contrib/openzfs/module/os/linux/spl/
HDspl-err.c84 vcmn_err(int ce, const char *fmt, va_list ap) in vcmn_err() argument
90 switch (ce) { in vcmn_err()
115 cmn_err(int ce, const char *fmt, ...) in cmn_err() argument
120 vcmn_err(ce, fmt, ap); in cmn_err()
/freebsd-13-stable/usr.bin/vgrind/
HDvgrindefs.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=':\
87 :pb=^\p\::bb=\::be=;:cb=/*:ce=*/:sb=":se=\e":\
98 :cb=#:ce=$:\
109 :cb=#:ce=$:\
119 :cb={:ce=}:\
[all …]
/freebsd-13-stable/secure/caroot/blacklisted/
HDLuxTrust_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:
HDCertum_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:
/freebsd-13-stable/secure/caroot/trusted/
HDTWCA_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:
HDGTS_Root_R1.pem32 2b:f6:b1:f9:ce:84:1d:b1:f9:c5:97:de:ef:b9:f2:
51 d0:02:ce:aa:ce:49:b4:ea:9f:7c:83:b0:40:7b:e7:
53 c3:ce:4b:e0:b5:d8:b3:8e:45:cf:76:c0:ed:40:2b:
77 41:33:0b:37:3d:ce:89:70:15:ca:b5:24:a8:cf:6b:b5:d2:40:
79 35:24:ce:9b:3e:1a:54:1e:6e:db:b2:87:a7:fc:f3:fa:81:55:
84 ae:25:ff:7c:15:de:ce:8c:25:3f:ca:62:70:0a:f7:2f:09:66:
87 8d:7b:7a:4a:3c:71:d2:e2:03:a1:1f:32:07:dd:1b:e4:42:ce:
92 c3:61:15:10:1b:77:4d:ce:22:8c:d4:85:f2:45:7d:b7:53:ea:
93 ef:40:5a:94:0a:5c:20:5f:4e:40:5d:62:22:76:df:ff:ce:61:
HDGTS_Root_R2.pem29 00:ce:de:fd:a6:fb:ec:ec:14:34:3c:07:06:5a:6c:
36 73:bc:ff:83:e2:cb:7d:c1:d2:ce:4a:b3:8d:05:9e:
60 30:aa:81:ce:dd:1a:dc:51:73:0d:4f:70:e9:e5:b6:
74 1f:ca:ce:dd:c7:be:a1:9f:d9:27:4c:0b:dc:17:98:11:6a:88:
77 62:61:c1:04:ed:ce:e0:c5:c9:c8:13:13:55:e7:a8:63:ad:8c:
78 7b:01:fe:77:30:e1:ce:68:9b:05:f8:12:ee:79:31:a0:41:45:
81 26:6b:1d:83:52:55:ce:b5:2f:00:ca:80:40:e0:e1:74:ac:60:
85 02:ce:5a:be:d9:ea:fd:b2:4d:c4:2f:1b:df:5f:7a:f5:f8:8b:
94 77:82:6d:3f:8f:1d:5d:bc:49:27:bd:cc:4f:0f:e1:ce:76:86:
/freebsd-13-stable/sys/contrib/openzfs/lib/libzutil/
HDzutil_import.c283 config_entry_t *ce; in add_config() local
371 for (ce = ve->ve_configs; ce != NULL; ce = ce->ce_next) { in add_config()
372 if (ce->ce_txg == txg) in add_config()
376 if (ce == NULL) { in add_config()
377 if ((ce = zutil_alloc(hdl, sizeof (config_entry_t))) == NULL) { in add_config()
380 ce->ce_txg = txg; in add_config()
381 ce->ce_config = fnvlist_dup(config); in add_config()
382 ce->ce_next = ve->ve_configs; in add_config()
383 ve->ve_configs = ce; in add_config()
460 config_entry_t *ce; in get_configs() local
[all …]
/freebsd-13-stable/contrib/netbsd-tests/bin/sh/
HDt_option.sh125 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'

12345678910>>...13