HomeSort by: relevance | last modified time | path
    Searched refs:cl (Results 1 - 25 of 163) sorted by relevancy

1 2 3 4 5 6 7

  /src/lib/libc/citrus/
citrus_lookup.c 90 seq_get_num_entries_db(struct _citrus_lookup *cl)
92 return cl->cl_dbnum;
96 seq_next_db(struct _citrus_lookup *cl,
100 if (cl->cl_key) {
102 _region_init(key, cl->cl_key, cl->cl_keylen);
103 return _db_lookup_by_s(cl->cl_db, cl->cl_key, data,
104 &cl->cl_dblocator);
107 if (cl->cl_rewind)
275 struct _citrus_lookup *cl; local
337 struct _citrus_lookup *cl; local
    [all...]
citrus_ctype_template.h 515 _FUNCNAME(ctype_init)(void ** __restrict cl,
520 _DIAGASSERT(cl != NULL);
530 *cl = (void *)cei;
536 _FUNCNAME(ctype_uninit)(void *cl)
538 if (cl) {
539 _FUNCNAME(encoding_module_uninit)(_CEI_TO_EI(_TO_CEI(cl)));
540 free(cl);
546 _FUNCNAME(ctype_get_mb_cur_max)(void *cl)
548 return _ENCODING_MB_CUR_MAX(_CEI_TO_EI(_TO_CEI(cl)));
552 _FUNCNAME(ctype_mblen)(void * __restrict cl,
663 void *cl = cc->cc_closure; local
798 void *cl = cc->cc_closure; local
    [all...]
  /src/sys/arch/mvme68k/stand/sboot/
clock.c 104 struct clockreg *cl = clockreg; local
107 cl->cl_csr |= CLK_READ; /* enable read (stop time) */
108 sec = cl->cl_sec;
109 min = cl->cl_min;
110 hour = cl->cl_hour;
111 day = cl->cl_mday;
112 mon = cl->cl_month;
113 year = cl->cl_year;
114 cl->cl_csr &= ~CLK_READ; /* time wears on */
  /src/sys/altq/
altq_hfsc.c 167 #define is_a_parent_class(cl) ((cl)->cl_children != NULL)
244 struct hfsc_class *cl, *parent; local
275 cl = hfsc_class_create(hif, &rtsc, &lssc, &ulsc,
277 if (cl == NULL)
287 struct hfsc_class *cl; local
292 if ((cl = clh_to_clp(hif, a->qid)) == NULL)
295 return (hfsc_class_destroy(cl));
302 struct hfsc_class *cl; local
309 if ((cl = clh_to_clp(hif, a->qid)) == NULL
332 struct hfsc_class *cl; local
374 struct hfsc_class *cl; local
388 struct hfsc_class *cl, *p; local
673 struct hfsc_class *cl; local
738 struct hfsc_class *cl; local
1260 struct hfsc_class *p, *cl = NULL; local
1692 struct hfsc_class *cl; local
2047 struct hfsc_class *cl, *parent; local
2080 struct hfsc_class *cl; local
2095 struct hfsc_class *cl; local
2120 struct hfsc_class *cl; local
2155 struct hfsc_class *cl; local
    [all...]
altq_rmclass.c 203 struct rm_class *cl; local
226 cl = malloc(sizeof(struct rm_class), M_DEVBUF, M_WAITOK|M_ZERO);
227 if (cl == NULL)
229 CALLOUT_INIT(&cl->callout_);
231 cl->q_ = malloc(sizeof(class_queue_t), M_DEVBUF, M_WAITOK|M_ZERO);
232 if (cl->q_ == NULL) {
233 free(cl, M_DEVBUF);
240 cl->children_ = NULL;
241 cl->parent_ = parent;
242 cl->borrow_ = borrow
412 struct rm_class *cl, *clh; local
965 struct rm_class *cl = NULL, *first = NULL; local
1123 struct rm_class *cl, *first = NULL; local
1264 rm_class_t *cl, *cl0, *borrowed; local
    [all...]
altq_jobs.c 215 struct jobs_class *cl; local
223 if ((cl = jif->jif_classes[pri]) != NULL)
224 jobs_class_destroy(cl);
246 struct jobs_class *cl; local
250 if ((cl = jif->jif_classes[pri]) != NULL && !qempty(cl->cl_q))
251 jobs_purgeq(cl);
261 struct jobs_class *cl, *scan1, *scan2; local
268 if ((cl = jif->jif_classes[pri]) != NULL) {
271 if (!qempty(cl->cl_q)
496 struct jobs_class *cl, *scan; local
658 struct jobs_class *cl; local
1024 struct jobs_class *cl; local
1082 struct jobs_class *cl; local
1271 struct jobs_class *cl; local
1555 struct jobs_class *cl; local
1617 struct jobs_class *cl; local
1664 struct jobs_class *cl; local
1692 struct jobs_class *cl; local
1994 struct jobs_class *cl; local
2017 struct jobs_class *cl; local
2032 struct jobs_class *cl; local
2067 struct jobs_class *cl; local
2094 struct jobs_class *cl; local
2162 struct jobs_class *cl; local
    [all...]
altq_priq.c 167 struct priq_class *cl; local
182 cl = priq_class_create(pif, a->priority, a->qlimit,
184 if (cl == NULL)
194 struct priq_class *cl; local
199 if ((cl = clh_to_clp(pif, a->qid)) == NULL)
202 return priq_class_destroy(cl);
209 struct priq_class *cl; local
216 if ((cl = clh_to_clp(pif, a->qid)) == NULL)
223 get_class_stats(&stats, cl);
239 struct priq_class *cl; local
272 struct priq_class *cl; local
286 struct priq_class *cl; local
432 struct priq_class *cl; local
493 struct priq_class *cl; local
609 struct priq_class *cl; local
843 struct priq_class *cl; local
869 struct priq_class *cl; local
884 struct priq_class *cl; local
917 struct priq_class *cl; local
945 struct priq_class *cl; local
    [all...]
altq_cbq.c 113 cbq_class_destroy(cbq_state_t *cbqp, struct rm_class *cl)
118 rmc_delete_class(&cbqp->ifnp, cl);
124 if (cbqp->cbq_class_tbl[i] == cl)
127 if (cl == cbqp->ifnp.root_)
129 if (cl == cbqp->ifnp.default_)
132 if (cl == cbqp->ifnp.ctl_)
143 struct rm_class *cl; local
152 if ((cl = cbqp->cbq_class_tbl[i]) != NULL &&
153 cl->stats_.handle == chandle)
154 return (cl);
166 struct rm_class *cl; local
317 struct rm_class *cl; local
422 struct rm_class *cl; local
459 struct rm_class *cl; local
502 struct rm_class *cl; local
600 struct rm_class *cl; local
652 struct rm_class *cl; local
676 struct rm_class *cl; local
709 struct rm_class *cl; local
768 struct rm_class *cl; local
861 struct rm_class *cl; local
    [all...]
  /src/lib/libc/rpc/
clnt_generic.c 232 CLIENT *cl = NULL; /* client handle */ local
246 &cl)) == NULL) {
250 if (cl == NULL) {
251 cl = clnt_tli_create(RPC_ANYFD, nconf, svcaddr,
255 if (CLNT_CONTROL(cl, CLSET_SVC_ADDR, (void *)svcaddr) == TRUE) {
256 if (cl->cl_netid == NULL) {
257 cl->cl_netid = strdup(nconf->nc_netid);
258 if (cl->cl_netid == NULL)
261 if (cl->cl_tp == NULL) {
262 cl->cl_tp = strdup(nconf->nc_device)
300 CLIENT *cl; \/* client handle *\/ local
    [all...]
  /src/sys/arch/i386/stand/lib/
biosmemps2.S 55 setc %cl
63 /* set %cl to indicate failure, and exit */
64 movb $2,%cl
80 setc %cl /* save carry */
87 movb %cl,28(%esp)
  /src/sbin/fsck_msdos/
fat.c 52 checkclnum(struct bootblock *boot, u_int fat, cl_t cl, cl_t *next)
67 cl, fat,
123 cl_t cl; local
200 for (cl = CLUST_FIRST; cl < boot->NumClusters;) {
203 fat[cl].next = p[0] + (p[1] << 8)
205 fat[cl].next &= boot->ClustMask;
206 ret |= checkclnum(boot, no, cl, &fat[cl].next);
207 cl++
328 cl_t cl; local
480 cl_t cl; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_timeline.c 129 static void __idle_cacheline_free(struct intel_timeline_cacheline *cl)
131 GEM_BUG_ON(!i915_active_is_idle(&cl->active));
133 i915_gem_object_unpin_map(cl->hwsp->vma->obj);
134 i915_vma_put(cl->hwsp->vma);
135 __idle_hwsp_free(cl->hwsp, ptr_unmask_bits(cl->vaddr, CACHELINE_BITS));
137 i915_active_fini(&cl->active);
138 kfree_rcu(cl, rcu);
144 struct intel_timeline_cacheline *cl = local
145 container_of(active, typeof(*cl), active)
154 struct intel_timeline_cacheline *cl = local
164 struct intel_timeline_cacheline *cl; local
224 struct intel_timeline_cacheline *cl; local
412 struct intel_timeline_cacheline *cl; local
520 struct intel_timeline_cacheline *cl; local
    [all...]
  /src/common/lib/libc/arch/x86_64/string/
strrchr.S 26 cmpb %cl,%dl
35 movb %cl,%ch
66 cmpb %cl,%dl /* 1st byte == ch? */
73 cmpb %cl,%dl /* 2nd byte == ch? */
80 cmpb %cl,%dl /* 3rd byte == ch? */
87 cmpb %cl,%dl /* 4th byte == ch? */
94 cmpb %cl,%dl /* 5th byte == ch? */
101 cmpb %cl,%dl /* 6th byte == ch? */
108 cmpb %cl,%dl /* 7th byte == ch? */
115 cmpb %cl,%dl /* 8th byte == ch? *
    [all...]
memchr.S 87 mov %dil,%cl /* misalignment amount 1..7 (+high bits )*/
92 neg %cl /* 7..1 (+high bits) */
95 and $7,%cl /* 7..1 */
98 shl $3,%cl /* 56..8 */
102 shr %cl,%r11 /* non-zero in unwanted bytes */
strlen.S 154 mov %al,%cl
156 and $7,%cl /* offset into word 1..7 */
158 shl $3,%cl /* bit count 8, 16 .. 56 */
160 shl %cl,%rsi
  /src/common/lib/libc/arch/i386/string/
memchr.S 27 cmpb (%eax),%cl
36 movb %cl,%ch
68 cmpb -4(%eax),%cl /* 1st byte == ch? */
75 1: cmpb %dl,%cl /* 2nd byte == ch? */
82 1: cmpb %dl,%cl /* 3rd byte == ch? */
89 1: cmpb %dl,%cl /* 4th byte == ch? */
98 cmpb (%eax),%cl
strchr.S 26 cmpb %cl,%bl
35 movb %cl,%ch
65 cmpb %cl,%bl /* 1st byte == ch? */
72 cmpb %cl,%bh /* 2nd byte == ch? */
80 cmpb %cl,%bl /* 3rd byte == ch? */
87 cmpb %cl,%bh /* 4th byte == ch? */
strrchr.S 30 cmpb %cl,%bl
40 movb %cl,%ch
65 cmpb %cl,%bl /* 1st byte == ch? */
71 cmpb %cl,%bh /* 2nd byte == ch? */
78 cmpb %cl,%bl /* 3rd byte == ch? */
84 cmpb %cl,%bh /* 4th byte == ch? */
strlen.S 119 testb %cl,%cl /* 1st byte == 0? */
130 testb %cl,%cl /* 3rd byte == 0? */
  /src/usr.sbin/spray/
spray.c 66 CLIENT *cl; local
127 cl = clnt_create(*argv, SPRAYPROG, SPRAYVERS, "udp");
128 if (cl == NULL) {
141 clnt_control(cl, CLSET_TIMEOUT, (caddr_t)&NO_DEFAULT);
145 if (clnt_call(cl, SPRAYPROC_CLEAR, xdr_void, NULL, xdr_void, NULL, TIMEOUT) != RPC_SUCCESS) {
146 clnt_perror(cl, progname);
156 clnt_call(cl, SPRAYPROC_SPRAY, xdr_sprayarr, &host_array, xdr_void, NULL, ONE_WAY);
165 if (clnt_call(cl, SPRAYPROC_GET, xdr_void, NULL, xdr_spraycumul, &host_stats, TIMEOUT) != RPC_SUCCESS) {
166 clnt_perror(cl, progname);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/i386/
ashldi3.S 47 shldl %cl, %eax, %edx // left shift high by count
48 shll %cl, %eax // left shift low by count
53 shll %cl, %edx // shift high by count - 32
lshrdi3.S 48 shrdl %cl, %edx, %eax // right shift low by count
49 shrl %cl, %edx // right shift high by count
54 shrl %cl, %eax // shift low by count - 32
  /src/games/wargames/
wargames.sh 43 tput cl
  /src/lib/libc/arch/i386/gen/
flt_rounds.S 19 sarl %cl, %eax /* 0,1,2,3 -> 1,3,2,0 */
  /src/lib/libc/arch/x86_64/gen/
flt_rounds.S 19 sarl %cl, %eax /* 0,1,2,3 -> 1,3,2,0 */

Completed in 1165 milliseconds

1 2 3 4 5 6 7