Home
last modified time | relevance | path

Searched refs:lc (Results 1 – 25 of 599) sorted by relevance

12345678910>>...24

/netbsd-src/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) in log_set_bit() argument
128 lc->touched = 1; in log_set_bit()
131 static void log_clear_bit(struct log_c *lc, dm_bitset_t bs, int bit) in log_clear_bit() argument
134 lc->touched = 1; in log_clear_bit()
164 struct log_c *lc; in get_log() local
166 dm_list_iterate_items(lc, &log_list) in get_log()
167 if (!strcmp(lc->uuid, uuid) && in get_log()
[all …]
H A Dlink_mon.c37 struct link_callback *lc; in links_register() local
46 lc = malloc(sizeof(*lc)); in links_register()
47 if (!lc) in links_register()
50 lc->fd = fd; in links_register()
51 lc->name = name; in links_register()
52 lc->data = data; in links_register()
53 lc->callback = callback; in links_register()
59 free(lc); in links_register()
73 lc->next = callbacks; in links_register()
74 callbacks = lc; in links_register()
[all …]
/netbsd-src/external/mpl/dhcp/dist/server/
H A Dleasechain.c92 lc_not_empty( struct leasechain *lc ) { in lc_not_empty() argument
95 INSIST(lc != NULL); in lc_not_empty()
98 return (lc->nelem > 0 ? 1 : 0); in lc_not_empty()
110 lc_get_first_lease(struct leasechain *lc) { in lc_get_first_lease() argument
113 INSIST(lc != NULL); in lc_get_first_lease()
114 INSIST(lc->total >= lc->nelem); in lc_get_first_lease()
117 if (lc->nelem > 0) { in lc_get_first_lease()
118 return (lc->list)[0]; in lc_get_first_lease()
133 lc_get_next(struct leasechain *lc, struct lease *lp) { in lc_get_next() argument
136 INSIST(lc != NULL); in lc_get_next()
[all …]
/netbsd-src/external/bsd/tmux/dist/
H A Dlayout.c53 struct layout_cell *lc; in layout_create_cell() local
55 lc = xmalloc(sizeof *lc); in layout_create_cell()
56 lc->type = LAYOUT_WINDOWPANE; in layout_create_cell()
57 lc->parent = lcparent; in layout_create_cell()
59 TAILQ_INIT(&lc->cells); in layout_create_cell()
61 lc->sx = UINT_MAX; in layout_create_cell()
62 lc->sy = UINT_MAX; in layout_create_cell()
64 lc->xoff = UINT_MAX; in layout_create_cell()
65 lc->yoff = UINT_MAX; in layout_create_cell()
67 lc->wp = NULL; in layout_create_cell()
[all …]
/netbsd-src/sys/arch/sparc64/dev/
H A Dldc.c47 ldc_rx_ctrl(struct ldc_conn *lc, struct ldc_pkt *lp) in ldc_rx_ctrl() argument
51 ldc_rx_ctrl_vers(lc, lp); in ldc_rx_ctrl()
55 ldc_rx_ctrl_rts(lc, lp); in ldc_rx_ctrl()
59 ldc_rx_ctrl_rtr(lc, lp); in ldc_rx_ctrl()
63 ldc_rx_ctrl_rdx(lc, lp); in ldc_rx_ctrl()
68 ldc_reset(lc); in ldc_rx_ctrl()
74 ldc_rx_ctrl_vers(struct ldc_conn *lc, struct ldc_pkt *lp) in ldc_rx_ctrl_vers() argument
81 ldc_send_ack(lc); in ldc_rx_ctrl_vers()
90 if (lc->lc_state != LDC_SND_VERS) { in ldc_rx_ctrl_vers()
92 lc->lc_state, lp->major, lp->minor)); in ldc_rx_ctrl_vers()
[all …]
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-ldap/
H A Dback-ldap.h63 #define LDAP_BACK_CONN2PRIV(lc) ((unsigned long)(lc)->lc_conn) argument
64 #define LDAP_BACK_PCONN_ISPRIV(lc) (((void *)(lc)->lc_conn) >= ((void *)LDAP_BACK_PCONN_FIRST) \ argument
65 && ((void *)(lc)->lc_conn) < ((void *)LDAP_BACK_PCONN_LAST))
66 #define LDAP_BACK_PCONN_ISROOTDN(lc) (LDAP_BACK_PCONN_ISPRIV((lc)) \ argument
67 && (LDAP_BACK_CONN2PRIV((lc)) < LDAP_BACK_PCONN_ANON))
68 #define LDAP_BACK_PCONN_ISANON(lc) (LDAP_BACK_PCONN_ISPRIV((lc)) \ argument
69 && (LDAP_BACK_CONN2PRIV((lc)) < LDAP_BACK_PCONN_BIND) \
70 && (LDAP_BACK_CONN2PRIV((lc)) >= LDAP_BACK_PCONN_ANON))
71 #define LDAP_BACK_PCONN_ISBIND(lc) (LDAP_BACK_PCONN_ISPRIV((lc)) \ argument
72 && (LDAP_BACK_CONN2PRIV((lc)) >= LDAP_BACK_PCONN_BIND))
[all …]
H A Dbind.c69 ldap_back_conn_print( ldapconn_t *lc ) in ldap_back_conn_print() argument
75 ldap_back_conn2str( &lc->lc_base, buf, sizeof( buf ) ); in ldap_back_conn_print()
77 if ( lc->lc_lcflags & flagsmap[i].f ) { in ldap_back_conn_print()
87 (void *)lc, buf, lc->lc_lcflags, fbuf ); in ldap_back_conn_print()
110 ldapconn_t *lc; in ldap_back_print_conntree() local
114 LDAP_TAILQ_FOREACH( lc, &li->li_conn_priv[ c ].lic_priv, lc_q ) in ldap_back_print_conntree()
117 ldap_back_conn_print( lc ); in ldap_back_print_conntree()
138 ldap_back_freeconn( ldapinfo_t *li, ldapconn_t *lc, int dolock );
149 ldap_back_proxy_authz_bind( ldapconn_t *lc, Operation *op, SlapReply *rs,
153 ldap_back_prepare_conn( ldapconn_t *lc, Operation *op, SlapReply *rs,
[all …]
H A Ddistproc.c238 #define LDAP_DISTPROC_CHAINING( lc ) ( ( (lc)->lc_flags & LDAP_DISTPROC_F_CHAINING ) == LDAP_DISTPR… argument
239 #define LDAP_DISTPROC_CACHE_URI( lc ) ( ( (lc)->lc_flags & LDAP_DISTPROC_F_CACHE_URI ) == LDAP_DIST… argument
370 ldap_distproc_t *lc; in distproc_ldadd() local
388 lc = (ldap_distproc_t *)on->on_bi.bi_private; in distproc_ldadd()
399 if ( lc->lc_common_li == NULL && at != NULL ) { in distproc_ldadd()
409 } else if ( lc->lc_common_li != NULL && at == NULL ) { in distproc_ldadd()
420 if ( lc->lc_common_li == NULL ) { in distproc_ldadd()
430 lc->lc_common_li == NULL ? "common " : "", e->e_name.bv_val ); in distproc_ldadd()
437 if ( lc->lc_common_li == NULL ) { in distproc_ldadd()
438 lc->lc_common_li = li; in distproc_ldadd()
[all …]
/netbsd-src/sys/kern/
H A Dsubr_localcount.c64 * localcount_init(lc)
70 * when done with lc.
73 localcount_init(struct localcount *lc) in localcount_init() argument
76 lc->lc_totalp = NULL; in localcount_init()
77 lc->lc_percpu = percpu_alloc(sizeof(int64_t)); in localcount_init()
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) localcount_fini() argument
161 struct localcount *lc = cookie0; localcount_xc() local
180 localcount_adjust(struct localcount * lc,int delta) localcount_adjust() argument
210 localcount_acquire(struct localcount * lc) localcount_acquire() argument
234 localcount_release(struct localcount * lc,kcondvar_t * cv,kmutex_t * interlock) localcount_release() argument
277 localcount_debug_refcnt(const struct localcount * lc) localcount_debug_refcnt() argument
[all...]
/netbsd-src/lib/libutil/
H A Dlogin_cap.c75 login_cap_t *lc; in login_getclass() local
87 if ((lc = malloc(sizeof(login_cap_t))) == NULL) { in login_getclass()
92 lc->lc_cap = 0; in login_getclass()
93 lc->lc_style = 0; in login_getclass()
98 if ((lc->lc_class = strdup(class)) == NULL) { in login_getclass()
100 free(lc); in login_getclass()
110 return(lc); in login_getclass()
112 if ((res = cgetent(&lc->lc_cap, classfiles, lc->lc_class)) != 0) { in login_getclass()
113 lc->lc_cap = 0; in login_getclass()
117 lc->lc_class); in login_getclass()
[all …]
/netbsd-src/external/bsd/openldap/dist/libraries/libldap/
H A Drequest.c85 static void use_connection LDAP_P(( LDAP *ld, LDAPConn *lc ));
187 LDAPConn *lc = lr->lr_conn; in ldap_int_flush_request() local
190 if ( ber_flush2( lc->lconn_sb, lr->lr_ber, LBER_FLUSH_FREE_NEVER ) != 0 ) { in ldap_int_flush_request()
195 ldap_mark_select_write( ld, lc->lconn_sb ); in ldap_int_flush_request()
201 ldap_free_connection( ld, lc, 0, 0 ); in ldap_int_flush_request()
212 ldap_mark_select_read( ld, lc->lconn_sb ); in ldap_int_flush_request()
213 ldap_clear_select_write( ld, lc->lconn_sb ); in ldap_int_flush_request()
232 LDAPConn *lc, in ldap_send_server_request() argument
247 if ( lc == NULL ) { in ldap_send_server_request()
249 lc = ld->ld_defconn; in ldap_send_server_request()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/dragonfly/
H A Dmonetary_members.cc245 lconv* lc = localeconv_l((locale_t) __cloc); in _M_initialize_moneypunct() local
248 if (lc->mon_decimal_point == NULL || in _M_initialize_moneypunct()
249 lc->mon_decimal_point[0] == '\0') in _M_initialize_moneypunct()
257 _M_data->_M_decimal_point = lc->mon_decimal_point[0]; in _M_initialize_moneypunct()
258 _M_data->_M_frac_digits = lc->int_frac_digits; in _M_initialize_moneypunct()
261 const char* __cgroup = lc->mon_grouping; in _M_initialize_moneypunct()
262 const char* __cpossign = lc->positive_sign; in _M_initialize_moneypunct()
263 const char* __cnegsign = lc->negative_sign; in _M_initialize_moneypunct()
265 const char* __ccurr = lc->int_curr_symbol; in _M_initialize_moneypunct()
270 const char __nposn = lc->int_n_sign_posn; in _M_initialize_moneypunct()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/
H A Dmonetary_members.cc245 lconv* lc = localeconv_l((locale_t) __cloc); in _M_initialize_moneypunct() local
248 if (lc->mon_decimal_point == NULL || in _M_initialize_moneypunct()
249 lc->mon_decimal_point[0] == '\0') in _M_initialize_moneypunct()
257 _M_data->_M_decimal_point = lc->mon_decimal_point[0]; in _M_initialize_moneypunct()
258 _M_data->_M_frac_digits = lc->int_frac_digits; in _M_initialize_moneypunct()
261 const char* __cgroup = lc->mon_grouping; in _M_initialize_moneypunct()
262 const char* __cpossign = lc->positive_sign; in _M_initialize_moneypunct()
263 const char* __cnegsign = lc->negative_sign; in _M_initialize_moneypunct()
265 const char* __ccurr = lc->int_curr_symbol; in _M_initialize_moneypunct()
270 const char __nposn = lc->int_n_sign_posn; in _M_initialize_moneypunct()
[all …]
/netbsd-src/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) \ argument
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 static void * alg##kbits##lc##_dupctx(void *src) \
28 return alg##_##lc##_dupctx(src); \
30 const OSSL_DISPATCH ossl_##alg##kbits##lc##_functions[] = { \
31 { OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))alg##kbits##lc##_newctx }, \
[all …]
/netbsd-src/external/bsd/libbind/dist/isc/
H A Dlogging.c178 log_close_debug_channels(log_context lc) { in log_close_debug_channels() argument
182 for (i = 0; i < lc->num_categories; i++) in log_close_debug_channels()
183 for (lcl = lc->categories[i]; lcl != NULL; lcl = lcl->next) in log_close_debug_channels()
209 log_check_channel(log_context lc, int level, log_channel chan) { in log_check_channel() argument
212 REQUIRE(lc != NULL); in log_check_channel()
214 debugging = ((lc->flags & LOG_OPTION_DEBUG) != 0); in log_check_channel()
231 chan_level = lc->level; in log_check_channel()
242 log_check(log_context lc, int category, int level) { in log_check() argument
246 REQUIRE(lc != NULL); in log_check()
248 debugging = ((lc->flags & LOG_OPTION_DEBUG) != 0); in log_check()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
H A Dcipher_aes_siv.c255 #define IMPLEMENT_cipher(alg, lc, UCMODE, flags, kbits, blkbits, ivbits) \ argument
256 static OSSL_FUNC_cipher_newctx_fn alg##kbits##lc##_newctx; \
257 static OSSL_FUNC_cipher_freectx_fn alg##_##lc##_freectx; \
258 static OSSL_FUNC_cipher_dupctx_fn lc##_dupctx; \
259 static OSSL_FUNC_cipher_encrypt_init_fn lc##_einit; \
260 static OSSL_FUNC_cipher_decrypt_init_fn lc##_dinit; \
261 static OSSL_FUNC_cipher_update_fn lc##_stream_update; \
262 static OSSL_FUNC_cipher_final_fn lc##_stream_final; \
263 static OSSL_FUNC_cipher_cipher_fn lc##_cipher; \
264 static OSSL_FUNC_cipher_get_params_fn alg##_##kbits##_##lc##_get_params; \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-sh/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-python/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-librep/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-gawk/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-php/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-ycp/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-smalltalk/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-pascal/po/
H A DMakefile.am178 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
179 if test -n "$$lc"; then \
180 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu…
181 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
182 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
183 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
184 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
187 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
190 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
192 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
[all …]
/netbsd-src/lib/libc/stdlib/
H A Dstrfmon.c118 struct lconv *lc; /* pointer to lconv structure */ in vstrfmon_l() local
139 lc = localeconv_l(loc); in vstrfmon_l()
249 currency_symbol = strdup(lc->int_curr_symbol); in vstrfmon_l()
256 currency_symbol = strdup(lc->currency_symbol); in vstrfmon_l()
273 currency_symbol, lc) - in vstrfmon_l()
274 __calc_left_pad(flags, currency_symbol, lc); in vstrfmon_l()
282 left_prec, right_prec, pad_char, lc, loc); in vstrfmon_l()
289 &sign_posn, &signstr, lc); in vstrfmon_l()
434 char *sign_posn, const char **signstr, struct lconv *lc) in __setup_vars() argument
438 *cs_precedes = lc->int_n_cs_precedes; in __setup_vars()
[all …]

12345678910>>...24