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

1 2

  /src/usr.bin/vgrind/
regexp.c 187 char *acs; /* pointer to last alternate */ local
191 acs = NULL;
216 if (acs != NULL && acs != cs) {
218 temp = OCNT(acs);
219 OCNT(acs) = tocc(ccre - acs);
220 acs -= temp;
222 acs = NULL;
235 if (acs != NULL && acs != cs)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-warn-restrict.cc 968 access (strncpy and similar) ACS overlaps. */
973 builtin_access &acs = *this; local
974 const builtin_memref *dstref = acs.dstref;
975 const builtin_memref *srcref = acs.srcref;
979 const offset_int maxobjsize = acs.dstref->maxobjsize;
987 gcc_assert (wi::les_p (acs.dstoff[0], acs.dstoff[1]));
989 if (maxsize < acs.dstoff[1] + acs.dstsiz[0])
990 acs.dstoff[1] = maxsize - acs.dstsiz[0]
1163 builtin_access &acs = *this; local
1326 builtin_access &acs = *this; local
    [all...]
attribs.cc 2584 for (tree acs = attrs; (acs = lookup_attribute ("access", acs));
2585 acs = TREE_CHAIN (acs))
2587 tree vblist = TREE_VALUE (acs);
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-warn-restrict.cc 965 access (strncpy and similar) ACS overlaps. */
970 builtin_access &acs = *this; local
971 const builtin_memref *dstref = acs.dstref;
972 const builtin_memref *srcref = acs.srcref;
976 const offset_int maxobjsize = acs.dstref->maxobjsize;
984 gcc_assert (wi::les_p (acs.dstoff[0], acs.dstoff[1]));
986 if (maxsize < acs.dstoff[1] + acs.dstsiz[0])
987 acs.dstoff[1] = maxsize - acs.dstsiz[0]
1160 builtin_access &acs = *this; local
1323 builtin_access &acs = *this; local
    [all...]
attribs.cc 2446 for (tree acs = attrs; (acs = lookup_attribute ("access", acs));
2447 acs = TREE_CHAIN (acs))
2449 tree vblist = TREE_VALUE (acs);
  /src/lib/libcurses/
acs.c 1 /* $NetBSD: acs.c,v 1.22 2021/09/06 07:03:49 rin Exp $ */
34 __RCSID("$NetBSD: acs.c,v 1.22 2021/09/06 07:03:49 rin Exp $");
52 * Fill in the ACS characters. The 'acs_chars' terminfo entry is a list of
53 * character pairs - ACS definition then terminal representation.
60 unsigned char acs, term; local
62 /* Default value '+' for all ACS characters */
107 if ((acs = *aofac) == '\0')
112 if (acs < NUM_ACS)
113 _acs_char[acs] = term | __ALTCHARSET;
115 __CTRACE(__CTRACE_INIT, "__init_acs: %c = %c\n", acs, term)
147 unsigned char acs, term; local
    [all...]
Makefile 19 SRCS= acs.c addbytes.c addch.c addchnstr.c addnstr.c attributes.c \
  /src/games/dab/
main.cc 107 int acs = 1; local
112 acs = 0;
172 sc = TTYSCRN::create(acs, &ny, &nx);
ttyscrn.h 44 static TTYSCRN* create(int acs, size_t *y, size_t *x);
71 int _acs; // do we want acs?
ttyscrn.cc 194 TTYSCRN* TTYSCRN::create(int acs, size_t *y, size_t *x)
223 that->_acs = acs;
  /src/external/bsd/tmux/dist/
tty-acs.c 26 /* Table mapping ACS entries to UTF-8. */
70 /* Table mapping UTF-8 to ACS entries. */
203 /* Should this terminal use ACS instead of UTF-8 line drawing? */
212 * UTF-8 and ACS together.
214 * If it is present and zero, we force ACS - this gives users a way to
229 /* Retrieve ACS to output as UTF-8. */
235 /* Use the ACS set instead of UTF-8 if needed. */
237 if (tty->term->acs[ch][0] == '\0')
239 return (&tty->term->acs[ch][0]);
250 /* Reverse UTF-8 into ACS. *
    [all...]
tty-term.c 443 const char *s, *acs; local
513 /* Generate ACS table. If none is present, use nearest ASCII. */
514 memset(term->acs, 0, sizeof term->acs);
516 acs = tty_term_string(term, TTYC_ACSC);
518 acs = "a#j+k+l+m+n+o-p-q-r-s-t+u+v+w+x|y<z>~.";
519 for (; acs[0] != '\0' && acs[1] != '\0'; acs += 2)
520 term->acs[(u_char) acs[0]][0] = acs[1]
    [all...]
tty.c 363 log_debug("%s: using capabilities for ACS", c->name);
366 log_debug("%s: using UTF-8 for ACS", c->name);
655 const char *acs; local
664 acs = tty_acs_get(tty, ch);
665 if (acs != NULL)
666 tty_add(tty, acs, strlen(acs));
1410 /* See if this can be mapped to an ACS character. */
2385 /* If it is a single character, write with putc to handle ACS. */
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_mtree.c 145 struct attr_counter_set acs; member in struct:mtree_writer
441 struct attr_counter_set *acs; local
449 acs = &mtree->acs;
455 if (acs->uid_list == NULL)
458 if (acs->uid_list->count < 2 ||
459 mtree->set.uid == acs->uid_list->m_entry->uid)
462 if (acs->gid_list == NULL)
465 if (acs->gid_list->count < 2 ||
466 mtree->set.gid == acs->gid_list->m_entry->gid
642 struct attr_counter_set *acs = &mtree->acs; local
718 struct attr_counter_set *acs = &mtree->acs; local
    [all...]
  /src/sbin/nvmectl/
nvme.h 137 uint32_t acs[256]; member in struct:nvme_command_effeects_page
  /src/external/bsd/wpa/dist/wpa_supplicant/
config_ssid.h 551 * ACS - Automatic Channel Selection for AP mode
556 * force the channel to be set to 0, thus enabling ACS.
558 int acs; member in struct:wpa_ssid
ap.c 498 if (ssid->acs) {
499 /* Setting channel to 0 in order to enable ACS */
949 int acs = 0; local
952 acs = wpa_s->current_ssid->acs;
954 if (acs || (wpa_s->assoc_freq && wpa_s->ap_iface->freq &&
1174 ssid->acs = 1;
  /src/external/bsd/tmux/usr.bin/tmux/
Makefile 132 tty-acs.c \
  /src/external/bsd/wpa/dist/src/ap/
ap_config.h 1045 u8 acs; member in struct:hostapd_config
hostapd.c 55 #include "acs.h"
315 hapd->iconf->acs = oldconf->acs;
1937 if (!iface->conf->acs) {
1950 /* If the last operating channel is NO_IR, trigger ACS.
1957 "NO_IR: Could not start ACS");
2153 if (iface->conf->acs && !iface->is_ch_switch_dfs) {
2178 wpa_printf(MSG_DEBUG, "Interface initialization will be completed in a callback (ACS)");
2835 * If interface setup requires more time, e.g., to perform HT co-ex scans, ACS,
4087 return "ACS";
    [all...]
hw_features.c 22 #include "acs.h"
610 * Driver ACS chosen channel may not be HT40 due to internal driver
613 if (!iface->conf->acs && (conf & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET) &&
1122 wpa_printf(MSG_ERROR, "ACS/CSA: Cannot decide mode");
1148 * which is used to trigger ACS.
1201 wpa_printf(MSG_ERROR, "ACS error - reported complete, but no result available");
1210 wpa_printf(MSG_ERROR, "ACS picked unusable channels");
1293 "Using offloaded hw_mode=any ACS");
1297 "Using internal ACS for hw_mode=any");
1314 case HOSTAPD_CHAN_ACS: /* ACS will run and later complete *
    [all...]
ap_config.c 270 conf->acs = 0;
  /src/share/terminfo/
terminfo 414 klone+acs|alternate character set for ansi.sys displays,
422 # about \E[11m as klone+acs. True ANSI/ECMA-48 would have <rmso=\E[27m>,
430 use=klone+acs,
441 # work; uses \E[12m instead, which is pretty bulletproof but loses you the ACS
449 use=klone+acs,
451 # KOI8-R (RFC1489) acs (alternate character set)
689 # doesn't fit the <pfkey> model well). The klone+acs sequences were valid
1276 # bterm only supports acs using wide-characters, has case for these: qjxamlkut
1750 pccon+sgr+acs|sgr and default ASCII pseudographics for OpenBSD PC console,
1782 use=pccon+base, use=pccon+sgr+acs, use=pccon+keys
    [all...]
  /src/external/bsd/wpa/dist/hostapd/
Android.mk 1104 OBJS += src/ap/acs.c
  /src/external/gpl3/gcc.old/dist/gcc/cp/
constraint.cc 2257 deferring_access_check_sentinel acs (dk_no_deferred);
3048 deferring_access_check_sentinel acs (dk_no_deferred);

Completed in 88 milliseconds

1 2