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

12

/haiku-fatelf/src/system/libroot/posix/locale/
H A Dsetlocale.cpp48 for (int lc = from; lc <= to; lc++) {
50 locale = getenv(categoryNames[lc]);
55 locales[lc] = locale;
88 for (int lc = 0; lc <= LC_LAST; lc++)
89 locales[lc] = NULL;
100 for (int lc
[all...]
/haiku-fatelf/src/libs/util/
H A Dlogin_cap.c151 login_close(login_cap_t * lc) argument
153 if (lc) {
154 free(lc->lc_style);
155 free(lc->lc_class);
156 free(lc->lc_cap);
157 free(lc);
186 login_cap_t *lc; local
188 if ((lc = malloc(sizeof(login_cap_t))) != NULL) {
223 memset(lc, 0, sizeof(login_cap_t));
224 lc
349 login_getcapstr(login_cap_t *lc, const char *cap, const char *def, const char *error) argument
371 login_getcaplist(login_cap_t *lc, const char *cap, const char *chars) argument
392 login_getpath(login_cap_t *lc, const char *cap, const char *error) argument
524 login_getcaptime(login_cap_t *lc, const char *cap, rlim_t def, rlim_t error) argument
615 login_getcapnum(login_cap_t *lc, const char *cap, rlim_t def, rlim_t error) argument
667 login_getcapsize(login_cap_t *lc, const char *cap, rlim_t def, rlim_t error) argument
740 login_getcapbool(login_cap_t *lc, const char *cap, int def) argument
769 login_getstyle(login_cap_t *lc, const char *style, const char *auth) argument
[all...]
H A Dlogin_class.c67 setclassresources(login_cap_t *lc) argument
71 if (lc == NULL)
100 rcur = (*lr->who)(lc, lr->what, rcur, rcur);
101 rmax = (*lr->who)(lc, lr->what, rmax, rmax);
102 rlim.rlim_cur = (*lr->who)(lc, name_cur, rcur, rcur);
103 rlim.rlim_max = (*lr->who)(lc, name_max, rmax, rmax);
106 syslog(LOG_WARNING, "set class '%s' resource limit %s: %m", lc->lc_class, lr->what);
190 setclassenvironment(login_cap_t *lc, const struct passwd * pwd, int paths) argument
201 const char * var = paths ? login_getpath(lc, vars->tag, NULL)
202 : login_getcapstr(lc, var
257 login_cap_t *lc; local
276 setlogincontext(login_cap_t *lc, const struct passwd *pwd, mode_t mymask, unsigned long flags) argument
313 setusercontext(login_cap_t *lc, const struct passwd *pwd, uid_t uid, unsigned int flags) argument
[all...]
H A Dlogin_ok.c91 login_timelist(login_cap_t *lc, char const *cap, int *ltno, argument
98 if ((tl = login_getcaplist(lc, cap, NULL)) != NULL) {
128 login_ttyok(login_cap_t *lc, const char *tty, const char *allowcap, argument
133 if (lc != NULL && tty != NULL && *tty != '\0') {
140 ttl = login_getcaplist(lc, allowcap, NULL);
146 ttl = login_getcaplist(lc, denycap, NULL);
163 auth_ttyok(login_cap_t *lc, const char * tty) argument
165 return login_ttyok(lc, tty, "ttys.allow", "ttys.deny");
177 login_hostok(login_cap_t *lc, const char *host, const char *ip, argument
182 if (lc !
207 auth_hostok(login_cap_t *lc, const char *host, const char *ip) argument
219 auth_timeok(login_cap_t *lc, time_t t) argument
[all...]
H A Dlogin_crypt.c38 login_setcryptfmt(login_cap_t *lc, const char *def, const char *error) { argument
41 cipher = login_getcapstr(lc, "passwd_format", def, NULL);
H A Dlogin_auth.c59 * capability <lc>. If there isn't one specified, then it checks
66 auth_checknologin(login_cap_t *lc) argument
71 if (login_getcapbool(lc, "ignorenologin", 0))
75 if ((file = login_getcapstr(lc, "nologin", "", NULL)) == NULL)
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dlogging.c176 log_close_debug_channels(log_context lc) { argument
180 for (i = 0; i < lc->num_categories; i++)
181 for (lcl = lc->categories[i]; lcl != NULL; lcl = lcl->next)
207 log_check_channel(log_context lc, int level, log_channel chan) { argument
210 REQUIRE(lc != NULL);
212 debugging = ((lc->flags & LOG_OPTION_DEBUG) != 0);
229 chan_level = lc->level;
240 log_check(log_context lc, int category, int level) { argument
244 REQUIRE(lc != NULL);
246 debugging = ((lc
270 log_vwrite(log_context lc, int category, int level, const char *format, va_list args) argument
430 log_write(log_context lc, int category, int level, const char *format, ...) argument
443 log_new_context(int num_categories, char **category_names, log_context *lc) argument
468 log_free_context(log_context lc) argument
488 log_add_channel(log_context lc, int category, log_channel chan) argument
509 log_remove_channel(log_context lc, int category, log_channel chan) argument
545 log_option(log_context lc, int option, int value) argument
568 log_category_is_active(log_context lc, int category) argument
[all...]
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfHuf.cpp160 outputBits (int nBits, Int64 bits, Int64 &c, int &lc, char *&out) argument
163 lc += nBits;
167 while (lc >= 8)
168 *out++ = (c >> (lc -= 8));
173 getBits (int nBits, Int64 &c, int &lc, const char *&in) argument
175 while (lc < nBits)
178 lc += 8;
181 lc -= nBits;
182 return (c >> lc) & ((1 << nBits) - 1);
474 int lc local
533 int lc = 0; local
707 outputCode(Int64 code, Int64 &c, int &lc, char *&out) argument
709 outputBits (hufLength (code), hufCode (code), c, lc, out); local
714 sendCode(Int64 sCode, int runCount, Int64 runCode, Int64 &c, int &lc, char *&out) argument
747 int lc = 0; // number of valid bits in c (LSB) local
849 int lc = 0; local
[all...]
/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Dstrfmon.c104 struct lconv *lc; /* pointer to lconv structure */ local
127 lc = localeconv();
234 currency_symbol = strdup(lc->int_curr_symbol);
240 currency_symbol = strdup(lc->currency_symbol);
411 struct lconv *lc = localeconv(); local
414 *cs_precedes = lc->int_n_cs_precedes;
415 *sep_by_space = lc->int_n_sep_by_space;
416 *sign_posn = (flags & PARENTH_POSN) ? 0 : lc->int_n_sign_posn;
417 *signstr = (lc->negative_sign == '\0') ? "-" : lc
511 struct lconv *lc = localeconv(); local
[all...]
/haiku-fatelf/src/bin/diffutils/po/
H A DMakefile176 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
177 if test -n "$$lc"; then \
178 if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
179 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
180 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
181 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
182 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
185 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
188 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc
[all...]
/haiku-fatelf/src/tests/system/benchmarks/libMicro/
H A DMakefile.SunOS58 UCBLIB= -lc -L/usr/ucblib -lucb -R/usr/ucblib
/haiku-fatelf/src/apps/icon-o-matic/gui/
H A DIconView.cpp51 rgb_color lc = LowColor(); local
52 fRenderer->SetBackground(agg::rgba8(lc.red, lc.green, lc.blue, 255));
/haiku-fatelf/src/libs/ncurses/misc/
H A Dtdlint49 IRIX) set - $* -n -lc
56 set - $* -n -lc
/haiku-fatelf/headers/libs/agg/
H A Dagg_vcgen_contour.h46 void line_cap(line_cap_e lc) { m_stroker.line_cap(lc); } argument
H A Dagg_renderer_markers.h677 void markers(int n, const T* x, const T* y, const T* r, const color_type* fc, const color_type* lc, marker_e type) argument
682 case marker_square: do { base_type::fill_color(*fc); base_type::line_color(*lc); square (int(*x), int(*y), int(*r)); ++x; ++y; ++r; ++fc; ++lc; } while(--n); break;
683 case marker_diamond: do { base_type::fill_color(*fc); base_type::line_color(*lc); diamond (int(*x), int(*y), int(*r)); ++x; ++y; ++r; ++fc; ++lc; } while(--n); break;
684 case marker_circle: do { base_type::fill_color(*fc); base_type::line_color(*lc); circle (int(*x), int(*y), int(*r)); ++x; ++y; ++r; ++fc; ++lc; } while(--n); break;
685 case marker_crossed_circle: do { base_type::fill_color(*fc); base_type::line_color(*lc); crossed_circle (int(*x), int(*y), int(*r)); ++x; ++y; ++r; ++fc; ++lc; } while(--n); break;
686 case marker_semiellipse_left: do { base_type::fill_color(*fc); base_type::line_color(*lc); semiellipse_lef
[all...]
H A Dagg_conv_stroke.h42 void line_cap(line_cap_e lc) { base_type::generator().line_cap(lc); } argument
H A Dagg_vcgen_stroke.h54 void line_cap(line_cap_e lc) { m_stroker.line_cap(lc); } argument
/haiku-fatelf/src/bin/less/
H A Doption.c50 int lc; local
151 lc = ASCII_IS_LOWER(optc);
156 lc = ASCII_IS_LOWER(optname[0]);
215 *(o->ovar) = flip_triple(o->odefault, lc);
457 flip_triple(val, lc)
459 int lc;
461 if (lc)
/haiku-fatelf/src/add-ons/input_server/methods/canna/rk/
H A Dfq.c92 unsigned long wmin, wtick, frst, lc; local
98 for (lc = 0; lc < HN; lc++) {
99 for (wd = *(ruc->dp+lc) ; wd; wd = wd->next) {
503 unsigned long lc; local
505 for (lc = 0; lc < HN; lc++) {
506 for (wd = *(ruc->dp+lc); w
520 unsigned long lc, csn, tick; local
559 unsigned long lc, count; local
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/
H A Dlocale_test.cpp125 struct lconv* lc = localeconv(); local
126 if (!lc)
129 if (strcmp(lc->decimal_point, localeConv->decimal_point) != 0) {
130 printf("\tPROBLEM: lc.decimal_point = \"%s\" (expected \"%s\")\n",
131 lc->decimal_point, localeConv->decimal_point);
134 if (strcmp(lc->thousands_sep, localeConv->thousands_sep) != 0) {
135 printf("\tPROBLEM: lc.thousands_sep = \"%s\" (expected \"%s\")\n",
136 lc->thousands_sep, localeConv->thousands_sep);
139 if (strcmp(lc->grouping, localeConv->grouping) != 0) {
141 dumpGrouping(lc
[all...]
/haiku-fatelf/src/bin/gzip/
H A Dtrees.c46 * void ct_tally (int dist, int lc);
958 int ct_tally (dist, lc)
960 int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
962 l_buf[last_lit++] = (uch)lc;
964 /* lc is the unmatched char */
965 dyn_ltree[lc].Freq++;
967 /* Here, lc is the match length - MIN_MATCH */
970 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
973 dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
1016 int lc; /* matc local
1029 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/haiku-fatelf/src/bin/zip/
H A Dtrees.c79 * void ct_tally (int dist, int lc);
1128 int ct_tally (dist, lc)
1130 int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
1132 l_buf[last_lit++] = (uch)lc;
1134 /* lc is the unmatched char */
1135 dyn_ltree[lc].Freq++;
1137 /* Here, lc is the match length - MIN_MATCH */
1140 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1143 dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
1186 int lc; /* matc local
1199 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Dtrees.c1025 unsigned lc) /* match length-MIN_MATCH or unmatched char (if dist==0) */
1028 s->l_buf[s->last_lit++] = (uch)lc;
1030 /* lc is the unmatched char */
1031 s->dyn_ltree[lc].Freq++;
1034 /* Here, lc is the match length - MIN_MATCH */
1037 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1040 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
1078 int lc; /* match length or unmatched char (if dist == 0) */ local
1085 lc = s->l_buf[lx++];
1087 send_code(s, lc, ltre
1022 _tr_tally( deflate_state *s, unsigned dist, unsigned lc) argument
1088 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/haiku-fatelf/src/libs/ncurses/tack/
H A Dansi.c217 int i, j, k, tc, vcr, lc; local
221 lc = 5;
223 for (i = 0; report_list[i].text; i++, lc++) {
233 lc = 1;
234 } else if (lc + 2 >= lines) {
238 lc = 1;
269 lc++;
/haiku-fatelf/src/libs/zlib/
H A Dtrees.c1026 int ZLIB_INTERNAL _tr_tally (s, dist, lc)
1029 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
1032 s->l_buf[s->last_lit++] = (uch)lc;
1034 /* lc is the unmatched char */
1035 s->dyn_ltree[lc].Freq++;
1038 /* Here, lc is the match length - MIN_MATCH */
1041 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1044 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
1082 int lc; /* match length or unmatched char (if dist == 0) */ local
1089 lc
1092 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]

Completed in 229 milliseconds

12