Home
last modified time | relevance | path

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

12345

/dragonfly/sys/dev/sound/
H A Dclone.c461 ce = tmp; in snd_clone_destroy()
631 ce = NULL; in snd_clone_alloc()
690 cce = ce; in snd_clone_alloc()
693 nce = ce; in snd_clone_alloc()
695 tce = ce; in snd_clone_alloc()
701 ce = cce; in snd_clone_alloc()
710 ce = nce; in snd_clone_alloc()
721 ce = tce; in snd_clone_alloc()
724 ce = bce; in snd_clone_alloc()
751 ce = nce; in snd_clone_alloc()
[all …]
/dragonfly/lib/libc/citrus/
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.h66 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()
106 return ((*ce->ce_ops->eo_put_state_reset)(ce, s, n, ps, nresult)); in _citrus_stdenc_put_state_reset()
110 _citrus_stdenc_get_state_size(struct _citrus_stdenc *ce) in _citrus_stdenc_get_state_size() argument
113 return (ce->ce_traits->et_state_size); in _citrus_stdenc_get_state_size()
[all …]
H A Dcitrus_stdenc_template.h65 _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()
96 if (ce) { in _FUNCNAME()
97 _FUNCNAME(encoding_module_uninit)(_CE_TO_EI(ce)); in _FUNCNAME()
98 free(ce->ce_closure); in _FUNCNAME()
107 _FUNCNAME(init_state)(_CE_TO_EI(ce), _TO_STATE(ps)); in _FUNCNAME()
121 ret = _FUNCNAME(mbrtowc_priv)(_CE_TO_EI(ce), &wc, s, n, in _FUNCNAME()
147 ret = _FUNCNAME(wcrtomb_priv)(_CE_TO_EI(ce), s, n, wc, in _FUNCNAME()
160 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()
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()
/dragonfly/sys/kern/
H A Dsubr_kobj.c130 for (ce = methods; ce && ce->desc; ce++) in kobj_lookup_method_class()
132 return(ce); in kobj_lookup_method_class()
144 if (ce) in kobj_lookup_method_mi()
145 return(ce); in kobj_lookup_method_mi()
151 if (ce) in kobj_lookup_method_mi()
152 return(ce); in kobj_lookup_method_mi()
167 if (!ce) in kobj_lookup_method()
169 *cep = ce; in kobj_lookup_method()
170 return(ce); in kobj_lookup_method()
185 ce = *cep; in kobj_lookup_method_cache()
[all …]
/dragonfly/usr.bin/top/
H A Dcolor.c128 color_entry *ce; in color_env_parse() local
150 ce->tag[len] = '\0'; in color_env_parse()
154 ce->next = entries; in color_env_parse()
155 entries = ce; in color_env_parse()
250 color_entry *ce; in color_test() local
258 ce = bytag[tagidx]; in color_test()
260 while (ce != NULL) in color_test()
262 if ((!ce->min || ce->min <= value) && in color_test()
263 (!ce->max || ce->max >= value)) in color_test()
265 return ce->color; in color_test()
[all …]
/dragonfly/contrib/tcsh-6/
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 …]
/dragonfly/sys/dev/drm/i915/
H A Dintel_lrc.c286 ce->lrc_desc = desc; in intel_lr_context_descriptor_update()
429 return ce->lrc_desc; in execlists_update_context()
507 memset(ce->ring->vaddr + ce->ring->tail, 0, WA_TAIL_BYTES); in inject_preempt_context()
509 ce->ring->tail &= (ce->ring->size - 1); in inject_preempt_context()
510 ce->lrc_reg_state[CTX_RING_TAIL+1] = ce->ring->tail; in inject_preempt_context()
1090 if (!ce->state) { in execlists_context_pin()
1126 return ce->ring; in execlists_context_pin()
1133 ce->pin_count = 0; in execlists_context_pin()
2272 ce->ring = ring; in execlists_context_deferred_alloc()
2273 ce->state = vma; in execlists_context_deferred_alloc()
[all …]
H A Dintel_ringbuffer.c609 if (ce->state) { in reset_ring_common()
1423 if (likely(ce->pin_count++)) in intel_ring_context_pin()
1436 ce->state = vma; in intel_ring_context_pin()
1439 if (ce->state) { in intel_ring_context_pin()
1445 ce->state->obj->pin_global++; in intel_ring_context_pin()
1456 ce->initialised = true; in intel_ring_context_pin()
1465 ce->pin_count = 0; in intel_ring_context_pin()
1477 if (--ce->pin_count) in intel_ring_context_unpin()
1480 if (ce->state) { in intel_ring_context_unpin()
1481 ce->state->obj->pin_global--; in intel_ring_context_unpin()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dtypeck2.c1322 ce->value in process_init_constructor_array()
1426 if (ce->index) in process_init_constructor_record()
1433 if (ce->index == field || ce->index == DECL_NAME (field)) in process_init_constructor_record()
1434 next = ce->value; in process_init_constructor_record()
1447 ce->index, ce->value); in process_init_constructor_record()
1450 ce = NULL; in process_init_constructor_record()
1461 if (ce) in process_init_constructor_record()
1579 if (ce->index == field || ce->index == DECL_NAME (field)) in process_init_constructor_record()
1655 if (ce->index) in process_init_constructor_union()
1701 if (ce->value && ce->value != error_mark_node) in process_init_constructor_union()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Dtypeck2.c1050 constructor_elt *ce; in process_init_constructor_array() local
1081 if (ce->index) in process_init_constructor_array()
1093 ce->value = digest_init_r (TREE_TYPE (type), ce->value, true, in process_init_constructor_array()
1181 if (ce->index) in process_init_constructor_record()
1290 constructor_elt *ce; in process_init_constructor_union() local
1309 if (ce->index) in process_init_constructor_union()
1316 tree name = ce->index; in process_init_constructor_union()
1328 ce->index = field; in process_init_constructor_union()
1352 ce->index = field; in process_init_constructor_union()
1355 if (ce->value && ce->value != error_mark_node) in process_init_constructor_union()
[all …]
/dragonfly/contrib/mpfr/src/
H A Dcmp_abs.c31 mpfr_exp_t be, ce; in mpfr_cmpabs() local
63 ce = MPFR_EXP (c); in mpfr_cmpabs()
64 if (be > ce) in mpfr_cmpabs()
66 if (be < ce) in mpfr_cmpabs()
H A Dcmp.c34 mpfr_exp_t be, ce; in mpfr_cmp3() local
68 ce = MPFR_GET_EXP (c); in mpfr_cmp3()
69 if (be > ce) in mpfr_cmp3()
71 if (be < ce) in mpfr_cmp3()
/dragonfly/sys/bus/cam/scsi/
H A Dscsi_ch.c197 struct changer_exchange *ce);
859 if ((ce->ce_srctype > CHET_DT) || (ce->ce_fdsttype > CHET_DT) || in chexchange()
860 (ce->ce_sdsttype > CHET_DT)) in chexchange()
862 if ((ce->ce_srcunit > (softc->sc_counts[ce->ce_srctype] - 1)) || in chexchange()
863 (ce->ce_fdstunit > (softc->sc_counts[ce->ce_fdsttype] - 1)) || in chexchange()
864 (ce->ce_sdstunit > (softc->sc_counts[ce->ce_sdsttype] - 1))) in chexchange()
871 (1 << ce->ce_fdsttype)) == 0) || in chexchange()
873 (1 << ce->ce_sdsttype)) == 0)) in chexchange()
879 src = softc->sc_firsts[ce->ce_srctype] + ce->ce_srcunit; in chexchange()
880 dst1 = softc->sc_firsts[ce->ce_fdsttype] + ce->ce_fdstunit; in chexchange()
[all …]
/dragonfly/share/termcap/
H A Dtermcap.src488 :gn:ce=\r:cl=\r\n:ho=\r:
889 :up=^W:ce=^K:co#80:li#24:
1724 :ce=\E[K:\
1930 :ce=^]dch 80;:ch=\r^]rig %d;:\
2668 :bs:cd=\EJ:ce=\EK:cl=\EH\EJ:\
3270 :kh=^^:kl=^H:ko=cl,ho,ce,bt,ta,im,ei,ce,cd:kr=^L:ku=^K:le=^H:li#24:\
3445 :cd=\EY:ce=\ET:kb=^H:kh=^^:\
3525 :up=^N:ho=^B:ll=^K:ce=^A:cd=^E:
4234 :cd=^K:ce=^D:cm=2%r^B%+ %+ :\
4349 :ce=\E[K:\
[all …]
/dragonfly/contrib/gcc-8.0/gcc/lto/
H A Dlto-symtab.c910 cgraph_node *ce = dyn_cast <cgraph_node *> (e); in lto_symtab_merge_symbols_1() local
915 if (ce) in lto_symtab_merge_symbols_1()
922 if (ce) in lto_symtab_merge_symbols_1()
923 lto_cgraph_replace_node (ce, dyn_cast<cgraph_node *> (to)); in lto_symtab_merge_symbols_1()
934 if (ce) in lto_symtab_merge_symbols_1()
936 lto_free_function_in_decl_state_for_node (ce); in lto_symtab_merge_symbols_1()
937 if (!ce->weakref) in lto_symtab_merge_symbols_1()
938 ce->release_body (); in lto_symtab_merge_symbols_1()
939 ce->reset (); in lto_symtab_merge_symbols_1()
940 symtab->call_cgraph_removal_hooks (ce); in lto_symtab_merge_symbols_1()
/dragonfly/contrib/gdtoa/
H A Dsmisc.c140 ULong *ce, *x, *xe; local
145 ce = c + ((n-1) >> kshift) + 1;
159 while(c < ce)
/dragonfly/sys/dev/raid/ciss/
H A Dciss.c2215 struct ciss_error_info *ce; in _ciss_report_request() local
2251 *scsi_status = ce->scsi_status; in _ciss_report_request()
2258 ce->command_status, ciss_name_command_status(ce->command_status), in _ciss_report_request()
2259 ce->scsi_status); in _ciss_report_request()
2541 struct ciss_error_info *ce; in ciss_user_command() local
2590 bzero(ce, sizeof(*ce)); in ciss_user_command()
2595 bcopy(ce, &ioc->error_info, sizeof(*ce)); in ciss_user_command()
3210 struct ciss_error_info *ce; in ciss_cam_complete() local
3247 ce->sense_length, ce->residual_count); in ciss_cam_complete()
3249 bcopy(&ce->sense_info[0], &csio->sense_data, ce->sense_length); in ciss_cam_complete()
[all …]
/dragonfly/sys/dev/disk/mpt/
H A Dmpt_debug.c783 SGE_CHAIN32 *ce = (SGE_CHAIN32 *) se; in mpt_dump_sgl() local
785 " Flgs=0x%x Len=0x%0x\n", ce, ce->Address, in mpt_dump_sgl()
786 ce->NextChainOffset, ce->Flags, ce->Length); in mpt_dump_sgl()
/dragonfly/bin/dd/
H A Dref.parodd6 00000040 40 c1 c2 43 c4 45 46 c7 c8 49 4a cb 4c cd ce 4f |@..C.EF..IJ.L..O|
14 000000c0 40 c1 c2 43 c4 45 46 c7 c8 49 4a cb 4c cd ce 4f |@..C.EF..IJ.L..O|
H A Dref.parset6 00000040 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf |................|
14 000000c0 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf |................|
/dragonfly/contrib/tcsh-6/nls/french/
H A Dset125 23 Pas de limite de ce type
35 33 Pas de gestion des travaux dans ce shell
48 46 Pas de travail de ce type
138 136 Pas de travail de ce type
/dragonfly/contrib/file/src/
H A Dcdf.c1184 ce[i].f = CAST(t, CDF_TOLE(cep->f))
1194 cdf_catalog_entry_t *ce; in cdf_unpack_catalog() local
1211 CDF_MALLOC(sizeof(cdf_catalog_t) + nr * sizeof(*ce))); in cdf_unpack_catalog()
1214 ce = (*cat)->cat_e; in cdf_unpack_catalog()
1215 memset(ce, 0, nr * sizeof(*ce)); in cdf_unpack_catalog()
1218 cdf_catalog_entry_t *cep = &ce[j]; in cdf_unpack_catalog()
1580 const cdf_catalog_entry_t *ce = cat->cat_e; in cdf_dump_catalog() local
1587 cdf_timestamp_to_timespec(&ts, ce[i].ce_timestamp); in cdf_dump_catalog()
1588 printf("\t%d %s %s", ce[i].ce_num, in cdf_dump_catalog()
1589 cdf_u16tos8(sbuf, ce[i].ce_namlen, ce[i].ce_name), in cdf_dump_catalog()
H A Dreadcdf.c272 cdf_catalog_entry_t *ce; in cdf_file_catalog() local
279 ce = cat->cat_e; in cdf_file_catalog()
283 cdf_u16tos8(buf, ce[i].ce_namlen, ce[i].ce_name), in cdf_file_catalog()

12345