HomeSort by relevance Sort by last modified time
    Searched defs:chars (Results 1 - 25 of 35) sorted by null

1 2

  /onnv/onnv-gate/usr/src/common/net/wanboot/
bootconf_errmsg.c 43 int chars; local
61 if ((chars = snprintf(errmsg, sizeof (errmsg),
63 handle->bc_error_pos)) > 0 && chars < sizeof (errmsg)) {
68 if ((chars = snprintf(errmsg, sizeof (errmsg),
70 handle->bc_error_pos)) > 0 && chars < sizeof (errmsg)) {
75 if ((chars = snprintf(errmsg, sizeof (errmsg),
77 handle->bc_error_pos)) > 0 && chars < sizeof (errmsg)) {
134 if ((chars = snprintf(errmsg, sizeof (errmsg),
136 handle->bc_error_code)) > 0 && chars < sizeof (errmsg)) {
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
SrInfo.h 16 String<EquivCode> chars; member in struct:SP_NAMESPACE::SrInfo
SdText.cxx 74 const String<SyntaxChar> &chars = ptr_->chars_; local
76 ptr = chars.data() + charsIndex;
80 length = chars.size() - charsIndex;
Text.cxx 249 const Char *TextIter::chars(size_t &length) const function in class:SP_NAMESPACE::TextIter
256 const StringC &chars = text_->chars_; local
261 length = chars.size() - charsIndex;
262 return chars.data() + charsIndex;
279 const StringC &chars = text_->chars_; local
281 str = chars.data() + charsIndex;
285 length = chars.size() - charsIndex;
parseMode.cxx 178 ISet<Char> chars; local
182 chars.add(syntax().standardFunction(i));
187 chars.add(str[j]);
198 chars.add(delim[j]);
208 Partition partition(chars, csets, usedSets, *syntax().generalSubstTable());
246 p->chars += partition.charCode(delim[j]);
352 tb.recognizeB(p->chars, p->bSequenceLength,
358 tb.recognize(p->chars, tokenFirstShortref + j,
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/client/
DhcptabNameField.java 74 char [] chars = str.toCharArray(); local
75 for (int i = 0; i < chars.length; ++i) {
77 if (chars[i] < ' ' || chars[i] > '~' || chars[i] == '#') {
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/ui/
HostnameField.java 80 char [] chars = str.toCharArray(); local
81 if ((chars.length != 0) && (getLength() == 0)) {
83 if (!Character.isLetterOrDigit(chars[0])) {
88 for (int i = 0; i < chars.length; ++i) {
89 if (!Character.isLetterOrDigit(chars[i])
90 && chars[i] != '-') {
NoSpaceField.java 78 char [] chars = str.toCharArray(); local
79 for (int i = 0; i < chars.length; ++i) {
80 if (Character.isWhitespace(chars[i])) {
IPAddressField.java 112 char [] chars = str.toCharArray(); local
113 if ((getLength() + chars.length) > 15) {
117 for (int i = 0; i < chars.length; ++i) {
118 if (!Character.isDigit(chars[i]) && chars[i] != '.') {
IntegerField.java 129 char [] chars = str.toCharArray(); local
130 for (int i = 0; i < chars.length; ++i) {
131 if (!Character.isDigit(chars[i])) {
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
readdir_r.c 162 char chars[MAXNAMLEN]; member in struct:__anon3300
mktemp.c 92 chars[64] = { variable
199 if (c == chars[i])
230 *s++ = chars[num & 077];
  /onnv/onnv-gate/usr/src/lib/libcmd/common/
wc.h 47 Sfoff_t chars; member in struct:__anon171
uniq.c 55 "[s:skip-chars]#[chars?\achars\a is the number of characters to skip over "
60 "equivalent to \b--skip-chars\b=\anumber\a.]"
62 "[w:check-chars]#[chars?\achars\a is the number of characters to compare "
85 static int uniq(Sfio_t *fdin, Sfio_t *fdout, int fields, int chars, int width, int mode, int* all, Compare_f compare)
117 if(chars)
118 cp += chars;
230 int fields=0, chars=0, width=-1; local
271 chars = opt_info.num
    [all...]
  /onnv/onnv-gate/usr/src/cmd/tip/aculib/
biz31.c 199 #define chars(b) ((b).cp_nbytes) macro
204 #define chars(b) (b) macro
211 if (ioctl(fd, IOCTL, (caddr_t)&b) >= 0 && chars(b) > 0)
216 if (chars(b) != 10) {
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/support/
utf8_conv.c 123 ucs2len++; /* Count number of wide chars stored/required */
142 size_t chars; local
144 chars = krb5int_utf8_chars(utf8s);
145 *ucs2s = (krb5_ucs2 *)malloc((chars + 1) * sizeof(krb5_ucs2));
150 len = k5_utf8s_to_ucs2s(*ucs2s, utf8s, chars + 1, 0);
158 *ucs2chars = chars;
171 size_t chars; local
173 chars = krb5int_utf8c_chars(utf8s, utf8slen);
174 *ucs2s = (krb5_ucs2 *)malloc((chars + 1) * sizeof(krb5_ucs2));
179 len = k5_utf8s_to_ucs2s(*ucs2s, utf8s, chars + 1, 0)
199 size_t chars; local
229 size_t chars; local
    [all...]
utf8.c 71 size_t chars = 0; local
74 chars++;
76 return chars;
82 size_t chars = 0; local
86 chars++;
88 return chars;
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmplib/
impl.h 83 uchar_t *chars; member in struct:_String
121 extern int SSAStringInit(String *string, uchar_t *chars, int len,
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/
IPAddress.java 62 char [] chars = s.toCharArray(); local
64 for (int i = 0; i < chars.length; ++i) {
65 if (Character.isDigit(chars[i])) {
68 if ((chars[i] == '.')) {
  /onnv/onnv-gate/usr/src/cmd/sa/
timex.c 75 long chars = 0, bloks = 0; local
175 if (strcmp(fld[i], "CHARS")
183 chars += atol(fld[ichar]);
194 "BLOCKS READ = %ld\n", chars, bloks);
  /onnv/onnv-gate/usr/src/cmd/awk/
b.c 245 uchar *op, *chars, *ret; local
248 init_buf(&chars, &bsize, LINE_INCR);
275 } else if (c == '-' && i > 0 && chars[i-1] != 0) {
277 c = chars[i-1];
279 expand_buf(&chars, &bsize, i);
280 chars[i++] = ++c;
286 expand_buf(&chars, &bsize, i);
287 chars[i++] = c;
289 chars[i++] = '\0';
290 dprintf(("cclenter: in = |%s|, out = |%s|\n", op, chars));
    [all...]
  /onnv/onnv-gate/usr/src/cmd/pack/
pack.c 59 struct { char c0, c1, c2, c3; } chars; member in union:FOUR
93 char *maskshuff[4] = {&(mask.chars.c3),
94 &(mask.chars.c2),
95 &(mask.chars.c1),
96 &(mask.chars.c0)};
98 char *maskshuff[4] = {&(mask.chars.c0),
99 &(mask.chars.c1),
100 &(mask.chars.c2),
101 &(mask.chars.c3)};
254 /* put occurring chars in heap with their counts *
    [all...]
  /onnv/onnv-gate/usr/src/cmd/deroff/
deroff.c 91 static char chars[128]; /* SPECIAL, APOS, DIGIT, or LETTER */ variable
180 chars[i] = LETTER;
182 chars[i] = LETTER;
184 chars[i] = DIGIT;
185 chars['\''] = APOS;
186 chars['&'] = APOS;
407 if ((t > s + cnst) && (chars[s[0]] == LETTER) &&
408 (chars[s[1]] == LETTER)) {
432 while (chars[*p1] < DIGIT) {
437 for (p = p1; (i = chars[*p]) != SPECIAL; ++p)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/oawk/
b.c 186 ccl_chars_t chars[MAXLIN]; local
202 i = insert_table(chars, i, cn, pc, cn, c);
210 i = insert_table(chars, i, cn, c, cn, c);
218 (void) memcpy((char *)new, (char *)chars, i);
219 ddump_table(chars, i / 4);
  /onnv/onnv-gate/usr/src/cmd/pr/
pr.c 1033 int chars = 0; local
1044 lines++; nls++; chars = 0; skip = 0;
1049 if (chars) chars--;
1053 move = Itabn - ((chars + Itabn) % Itabn);
1054 move = (move < width-chars) ? move :
1055 width-chars;
1056 chars += move;
1061 chars++;
1063 chars += wcwidth(**s)
    [all...]

Completed in 1080 milliseconds

1 2