Searched refs:lc (Results 1 - 25 of 516) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl2/lvm2/dist/daemons/cmirrord/
H A Dfunctions.c51 lc->idx++; \
52 lc->idx = lc->idx % RESYNC_HISTORY; \
53 sprintf(lc->resync_history[lc->idx], f, ## arg); \
125 static void log_set_bit(struct log_c *lc, dm_bitset_t bs, int bit) argument
128 lc->touched = 1;
131 static void log_clear_bit(struct log_c *lc, dm_bitset_t bs, int bit) argument
134 lc->touched = 1;
164 struct log_c *lc; local
184 struct log_c *lc; local
204 rw_log(struct log_c *lc, int do_write) argument
246 read_log(struct log_c *lc) argument
276 write_log(struct log_c *lc) argument
377 struct log_c *lc = NULL; local
623 struct log_c *lc = get_log(rq->uuid, rq->luid); local
659 struct log_c *lc = get_log(rq->uuid, rq->luid); local
679 struct log_c *lc = get_log(rq->uuid, rq->luid); local
702 struct log_c *lc = get_log(uuid, luid); local
727 struct log_c *lc = get_log(rq->uuid, rq->luid); local
853 struct log_c *lc = get_log(rq->uuid, rq->luid); local
919 struct log_c *lc = get_log(rq->uuid, rq->luid); local
940 struct log_c *lc = get_log(rq->uuid, rq->luid); local
965 struct log_c *lc = get_log(rq->uuid, rq->luid); local
994 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1031 mark_region(struct log_c *lc, uint64_t region, uint32_t who) argument
1078 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1102 clear_region(struct log_c *lc, uint64_t region, uint32_t who) argument
1141 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1176 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1268 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1347 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1381 core_status_info(struct log_c *lc, struct dm_ulog_request *rq) argument
1390 disk_status_info(struct log_c *lc, struct dm_ulog_request *rq) argument
1415 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1431 core_status_table(struct log_c *lc, struct dm_ulog_request *rq) argument
1443 disk_status_table(struct log_c *lc, struct dm_ulog_request *rq) argument
1470 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1498 struct log_c *lc = get_log(rq->uuid, rq->luid); local
1683 struct log_c *lc; local
1743 struct log_c *lc; local
1795 struct log_c *lc; local
1819 struct log_c *lc; local
[all...]
H A Dlink_mon.c37 struct link_callback *lc; local
46 lc = malloc(sizeof(*lc));
47 if (!lc)
50 lc->fd = fd;
51 lc->name = name;
52 lc->data = data;
53 lc->callback = callback;
59 free(lc);
73 lc
139 struct link_callback *lc; local
[all...]
/netbsd-current/external/mpl/dhcp/dist/server/
H A Dleasechain.c87 * \param lc The leasechain to check
92 lc_not_empty( struct leasechain *lc ) {
95 INSIST(lc != NULL);
98 return (lc->nelem > 0 ? 1 : 0);
105 * \param lc The leasechain to check
110 lc_get_first_lease(struct leasechain *lc) { argument
113 INSIST(lc != NULL);
114 INSIST(lc->total >= lc->nelem);
117 if (lc
133 lc_get_next(struct leasechain *lc, struct lease *lp) argument
159 lc_binary_search_insert_point(struct leasechain *lc, struct lease *lp, size_t min, size_t max) argument
208 lc_binary_search_lease(struct leasechain *lc, struct lease *lp, size_t min, size_t max) argument
304 lc_grow_chain(struct leasechain *lc) argument
348 lc_link_lcp(struct leasechain *lc, struct lease *lp, size_t n) argument
400 lc_add_lease_pos(struct leasechain *lc, struct lease *lp, size_t pos) argument
452 lc_check_lc_sort_order(struct leasechain *lc) argument
502 lc_add_sorted_lease(struct leasechain *lc, struct lease *lp) argument
561 lc_unlink_lcp(struct leasechain *lc, size_t n) argument
592 lc_unlink_lease_pos(struct leasechain *lc, size_t pos) argument
631 lc_unlink_lease(struct leasechain *lc, struct lease *lp) argument
664 lc_delete_all(struct leasechain *lc) argument
696 lc_init_growth(struct leasechain *lc, size_t growth) argument
[all...]
/netbsd-current/external/bsd/tmux/dist/
H A Dlayout-custom.c37 layout_find_bottomright(struct layout_cell *lc) argument
39 if (lc->type == LAYOUT_WINDOWPANE)
40 return (lc);
41 lc = TAILQ_LAST(&lc->cells, layout_cells);
42 return (layout_find_bottomright(lc));
75 layout_append(struct layout_cell *lc, char *buf, size_t len) argument
85 if (lc->wp != NULL) {
87 lc->sx, lc
121 layout_check(struct layout_cell *lc) argument
159 struct layout_cell *lc, *lcchild; local
263 layout_assign(struct window_pane **wp, struct layout_cell *lc) argument
284 struct layout_cell *lc, *lcchild; local
[all...]
H A Dlayout.c53 struct layout_cell *lc; local
55 lc = xmalloc(sizeof *lc);
56 lc->type = LAYOUT_WINDOWPANE;
57 lc->parent = lcparent;
59 TAILQ_INIT(&lc->cells);
61 lc->sx = UINT_MAX;
62 lc->sy = UINT_MAX;
64 lc->xoff = UINT_MAX;
65 lc
73 layout_free_cell(struct layout_cell *lc) argument
96 layout_print_cell(struct layout_cell *lc, const char *hdr, u_int n) argument
130 layout_search_by_border(struct layout_cell *lc, u_int x, u_int y) argument
166 layout_set_size(struct layout_cell *lc, u_int sx, u_int sy, u_int xoff, u_int yoff) argument
177 layout_make_leaf(struct layout_cell *lc, struct window_pane *wp) argument
188 layout_make_node(struct layout_cell *lc, enum layout_type type) argument
203 layout_fix_offsets1(struct layout_cell *lc) argument
233 struct layout_cell *lc = w->layout_root; local
243 layout_cell_is_top(struct window *w, struct layout_cell *lc) argument
259 layout_cell_is_bottom(struct window *w, struct layout_cell *lc) argument
278 layout_add_border(struct window *w, struct layout_cell *lc, int status) argument
292 struct layout_cell *lc; local
314 layout_count_cells(struct layout_cell *lc) argument
335 layout_resize_check(struct window *w, struct layout_cell *lc, enum layout_type type) argument
383 layout_resize_adjust(struct window *w, struct layout_cell *lc, enum layout_type type, int change) argument
428 layout_destroy_cell(struct window *w, struct layout_cell *lc, struct layout_cell **lcroot) argument
480 struct layout_cell *lc; local
498 struct layout_cell *lc = w->layout_root; local
551 struct layout_cell *lc, *lcparent; local
580 layout_resize_layout(struct window *w, struct layout_cell *lc, enum layout_type type, int change, int opposite) argument
612 struct layout_cell *lc, *lcparent; local
634 layout_resize_pane_grow(struct window *w, struct layout_cell *lc, enum layout_type type, int needed, int opposite) argument
675 layout_resize_pane_shrink(struct window *w, struct layout_cell *lc, enum layout_type type, int needed) argument
707 layout_assign_pane(struct layout_cell *lc, struct window_pane *wp, int do_not_resize) argument
719 layout_new_pane_size(struct window *w, u_int previous, struct layout_cell *lc, enum layout_type type, u_int size, u_int count_left, u_int size_left) argument
757 layout_set_size_check(struct window *w, struct layout_cell *lc, enum layout_type type, int size) argument
814 layout_resize_child_cells(struct window *w, struct layout_cell *lc) argument
872 struct layout_cell *lc, *lcparent, *lcnew, *lc1, *lc2; local
1055 struct layout_cell *lc; local
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/
H A Dciphercommon_aead.h14 #define IMPLEMENT_aead_cipher(alg, lc, UCMODE, flags, kbits, blkbits, ivbits) \
15 static OSSL_FUNC_cipher_get_params_fn alg##_##kbits##_##lc##_get_params; \
16 static int alg##_##kbits##_##lc##_get_params(OSSL_PARAM params[]) \
21 static OSSL_FUNC_cipher_newctx_fn alg##kbits##lc##_newctx; \
22 static void * alg##kbits##lc##_newctx(void *provctx) \
24 return alg##_##lc##_newctx(provctx, kbits); \
26 const OSSL_DISPATCH ossl_##alg##kbits##lc##_functions[] = { \
27 { OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))alg##kbits##lc##_newctx }, \
28 { OSSL_FUNC_CIPHER_FREECTX, (void (*)(void))alg##_##lc##_freectx }, \
29 { OSSL_FUNC_CIPHER_ENCRYPT_INIT, (void (*)(void))ossl_##lc##_eini
[all...]
/netbsd-current/sys/kern/
H A Dsubr_localcount.c64 * localcount_init(lc)
70 * when done with lc.
73 localcount_init(struct localcount *lc) argument
76 lc->lc_totalp = NULL;
77 lc->lc_percpu = percpu_alloc(sizeof(int64_t));
81 * localcount_drain(lc, cv, interlock)
83 * Wait for all acquired references to lc to drain. Caller must
86 * same as are passed to localcount_release for this lc.
93 * The localcount object lc may be used only with localcount_fini
98 localcount_drain(struct localcount *lc, kcondvar_ argument
143 localcount_fini(struct localcount *lc) argument
161 struct localcount *lc = cookie0; local
180 localcount_adjust(struct localcount *lc, int delta) argument
210 localcount_acquire(struct localcount *lc) argument
234 localcount_release(struct localcount *lc, kcondvar_t *cv, kmutex_t *interlock) argument
277 localcount_debug_refcnt(const struct localcount *lc) argument
[all...]
H A Dkern_module_hook.c66 module_hook_set(bool *hooked, struct localcount *lc) argument
72 localcount_init(lc);
82 module_hook_unset(bool *hooked, struct localcount *lc) argument
98 localcount_drain(lc, &module_hook.cv, &module_hook.mtx);
102 localcount_fini(lc);
106 module_hook_tryenter(bool *hooked, struct localcount *lc) argument
114 localcount_acquire(lc);
121 module_hook_exit(struct localcount *lc) argument
124 localcount_release(lc, &module_hook.cv, &module_hook.mtx);
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-ldap/
H A Dunbind.c47 ldapconn_t *lc = NULL, lc_curr; local
59 while ( ( lc = ldap_tavl_delete( &li->li_conninfo.lai_tree, (caddr_t)&lc_curr, ldap_back_conn_cmp ) ) != NULL )
61 assert( !LDAP_BACK_PCONN_ISPRIV( lc ) );
65 lc->lc_conn->c_connid, lc->lc_refcnt, lc->lc_lcflags );
67 if ( lc->lc_refcnt > 0 ) {
70 LDAP_BACK_CONN_CACHED_CLEAR( lc );
71 LDAP_BACK_CONN_TAINTED_SET( lc );
74 ldap_back_conn_free( lc );
[all...]
H A Dback-ldap.h63 #define LDAP_BACK_CONN2PRIV(lc) ((unsigned long)(lc)->lc_conn)
64 #define LDAP_BACK_PCONN_ISPRIV(lc) (((void *)(lc)->lc_conn) >= ((void *)LDAP_BACK_PCONN_FIRST) \
65 && ((void *)(lc)->lc_conn) < ((void *)LDAP_BACK_PCONN_LAST))
66 #define LDAP_BACK_PCONN_ISROOTDN(lc) (LDAP_BACK_PCONN_ISPRIV((lc)) \
67 && (LDAP_BACK_CONN2PRIV((lc)) < LDAP_BACK_PCONN_ANON))
68 #define LDAP_BACK_PCONN_ISANON(lc) (LDAP_BACK_PCONN_ISPRIV((lc)) \
[all...]
H A Dcompare.c46 ldapconn_t *lc = NULL; local
52 if ( !ldap_back_dobind( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
53 lc = NULL;
59 rc = ldap_back_controls_add( op, rs, lc, &ctrls );
65 rs->sr_err = ldap_compare_ext( lc->lc_ld, op->o_req_dn.bv_val,
69 rc = ldap_back_op_result( lc, op, rs, msgid,
74 if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
88 if ( lc != NULL ) {
89 ldap_back_release_conn( li, lc );
H A Ddelete.c46 ldapconn_t *lc = NULL; local
52 if ( !ldap_back_dobind( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
58 rc = ldap_back_controls_add( op, rs, lc, &ctrls );
64 rs->sr_err = ldap_delete_ext( lc->lc_ld, op->o_req_dn.bv_val,
66 rc = ldap_back_op_result( lc, op, rs, msgid,
71 if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
85 if ( lc != NULL ) {
86 ldap_back_release_conn( li, lc );
/netbsd-current/sys/arch/sparc64/dev/
H A Dldc.c47 ldc_rx_ctrl(struct ldc_conn *lc, struct ldc_pkt *lp) argument
51 ldc_rx_ctrl_vers(lc, lp);
55 ldc_rx_ctrl_rts(lc, lp);
59 ldc_rx_ctrl_rtr(lc, lp);
63 ldc_rx_ctrl_rdx(lc, lp);
68 ldc_reset(lc);
74 ldc_rx_ctrl_vers(struct ldc_conn *lc, struct ldc_pkt *lp) argument
81 ldc_send_ack(lc);
90 if (lc->lc_state != LDC_SND_VERS) {
92 lc
112 ldc_rx_ctrl_rts(struct ldc_conn *lc, struct ldc_pkt *lp) argument
144 ldc_rx_ctrl_rtr(struct ldc_conn *lc, struct ldc_pkt *lp) argument
177 ldc_rx_ctrl_rdx(struct ldc_conn *lc, struct ldc_pkt *lp) argument
209 ldc_rx_data(struct ldc_conn *lc, struct ldc_pkt *lp) argument
246 ldc_send_vers(struct ldc_conn *lc) argument
283 ldc_send_ack(struct ldc_conn *lc) argument
319 ldc_send_rts(struct ldc_conn *lc) argument
355 ldc_send_rtr(struct ldc_conn *lc) argument
391 ldc_send_rdx(struct ldc_conn *lc) argument
427 ldc_send_unreliable(struct ldc_conn *lc, void *msg, size_t len) argument
480 ldc_reset(struct ldc_conn *lc) argument
[all...]
/netbsd-current/external/bsd/flex/dist/examples/fastwc/
H A Dwc1.l8 int cc = 0, wc = 0, lc = 0;
14 \n ++lc; ++cc;
17 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dwc2.l9 int cc = 0, wc = 0, lc = 0;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
16 \n+ cc += yyleng; lc += yyleng;
19 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dmywc.c8 int c, cc = 0, wc = 0, lc = 0; local
23 ++lc;
25 done: printf( "%8d%8d%8d\n", lc, wc, cc );
H A Dwc3.l10 int cc = 0, wc = 0, lc = 0;
13 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
20 \n+ cc += yyleng; lc += yyleng;
23 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dwc5.l10 int cc = 0, wc = 0, lc = 0;
13 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
20 \n+ cc += yyleng; lc += yyleng;
23 printf( "%8d %8d %8d\n", lc, wc, cc );
/netbsd-current/external/bsd/atf/dist/atf-c/
H A Dconfig_test.c43 const char *lc; member in struct:varnames
72 for (v = all_vars; v->lc != NULL; v++)
84 for (v = all_vars; v->lc != NULL; v++) {
85 if (strcmp(v->lc, var) == 0)
86 ATF_CHECK_STREQ(atf_config_get(v->lc), test_value);
88 ATF_CHECK(strcmp(atf_config_get(v->lc), test_value) != 0);
109 for (v = all_vars; v->lc != NULL; v++)
110 ATF_CHECK(strcmp(atf_config_get(v->lc), test_value) != 0);
113 for (v = all_vars; v->lc != NULL; v++) {
115 if (strcmp(atf_config_get(v->lc), "") !
[all...]
/netbsd-current/external/amdgpu-firmware/radeon/
H A DMakefile8 SUBDIR= lc
/netbsd-current/external/gpl2/gettext/dist/autoconf-lib-link/tests/rpathx/
H A DMakefile.am4 librpathx_la_LDFLAGS = -lc -no-undefined
/netbsd-current/external/gpl2/gettext/dist/autoconf-lib-link/tests/rpathy/
H A DMakefile.am4 librpathy_la_LDFLAGS = @LTLIBRPATHX@ -lc -no-undefined
/netbsd-current/external/gpl2/gettext/dist/autoconf-lib-link/tests/rpathz/
H A DMakefile.am4 librpathz_la_LDFLAGS = @LTLIBRPATHX@ @LTLIBRPATHY@ -lc -no-undefined
/netbsd-current/external/bsd/openldap/dist/contrib/ldapc++/examples/
H A Dmain.cpp26 LDAPConnection *lc=new LDAPConnection("localhost",9009); local
27 lc->setConstraints(cons);
30 lc->bind("cn=Manager,o=Organisation,c=DE" , "secret",cons);
31 std::cout << lc->getHost() << std::endl;
32 bool result = lc->compare("cn=Manager,o=Organisation,c=DE",
46 // lc->add(entry);
48 // lc->del("ou=Groups,o=Organisation,c=DE");
50 LDAPSearchResults* entries = lc->search("o=Organisation,c=DE",
70 lc->unbind();
71 delete lc;
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/ia64/
H A Dbundling.s8 .save ar.lc, r31
9 mov r31 = ar.lc

Completed in 158 milliseconds

1234567891011>>