Searched defs:c1 (Results 76 - 94 of 94) sorted by relevance

1234

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Dfinger.c1141 char c1, c2; local
1146 c1 = *name1++;
1147 if (isalpha(c1))
1149 if (isdigit(c1))
1151 if (isupper(c1))
1152 c1 = tolower(c1);
1158 if (c1 != c2)
1160 if (c1 == '\0')
1163 if (!c1) {
[all...]
/illumos-gate/usr/src/cmd/geniconvtbl/
H A Ditm_util.c1910 uchar_t *c1; local
1917 c1 = (uchar_t *)(NSPTR(&((ml->data_pair).data0))) +
1924 for (len = 0; len < j; len++, c1--, c2--, c3--) {
1925 if (len < ml->data_pair.data0.size) m -= *c1;
1984 uchar_t *c1; local
1991 c1 = ((uchar_t *)(NSPTR(&(pair->data0)))) + pair->data0.size - 1;
1994 for (i = 0; i < j; i++, c1--, c2--) {
1996 if (i < pair->data0.size) num2 -= *c1;
1998 *c2 - *c1, *c2, *c1));
2527 uchar_t *c1; local
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_subr.c153 const char *c1, *c2; local
159 for (c1 = fh4p1->nfs_fh4_val, c2 = fh4p2->nfs_fh4_val;
160 c1 < fh4p1->nfs_fh4_val + fh4p1->nfs_fh4_len;
161 c1++, c2++) {
162 if (*c1 < *c2)
164 if (*c1 > *c2)
H A Dnfs4_vfsops.c1335 char *c1, *c2; local
1339 c1 = pnp->pn_path + 1;
1342 if (*c1 == '.' && (*c2 == '/' || *c2 == '\0')) {
/illumos-gate/usr/src/uts/common/rpc/
H A Dib.h290 caddr_t c1; member in struct:send_wid
/illumos-gate/usr/src/uts/sun/io/
H A Dzs_async.c1960 register uchar_t c1; local
1999 c1 = c & 0x3f;
2003 c1 = c & 0x7f;
2007 c1 = c & 0xff;
2013 c1 = 0xff;
2016 c1 = 0xff;
2018 c1 = c;
2025 if ((s1 & ZSRR1_FE) && c1 == 0) {
/illumos-gate/usr/src/uts/sun4u/io/
H A Dsbd.c4000 int c1 = c + MAX_CMP_UNITS_PER_BOARD; local
4010 (sbp->sb_devlist[NIX(SBD_COMP_CMP)][c1] == NULL))
/illumos-gate/usr/src/cmd/svc/configd/
H A Dbackend.c875 int c1, c2; local
901 c1 = getc(f_rep);
903 if (c1 != c2)
905 } while (c1 != EOF);
/illumos-gate/usr/src/lib/storage/libg_fc/common/
H A Dmap.c3327 AL_rls *rls, *c1 = NULL, *c2 = NULL; local
3477 c1 = rls = c2;
3479 for (c1 = rls; c1->next; c1 = c1->next) {};
3480 c1 = c1->next = c2;
3482 (void) strcpy(c1->driver_path, nexus_path);
3484 c1
4182 char c, c1; local
4216 char c, c1; local
[all...]
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_dhchap.c8068 uint32_t c1; local
8081 c1 = *s++;
8082 if ((c1 >= '0') && (c1 <= '9')) {
8083 sum = ((c1 - '0') << 4);
8084 } else if ((c1 >= 'a') && (c1 <= 'f')) {
8085 sum = ((c1 - 'a' + 10) << 4);
8086 } else if ((c1 >= 'A') && (c1 <
8720 uint32_t c1; local
[all...]
H A Demlxs_solaris.c11522 uint32_t c1; local
11559 c1 = *s++;
11560 if ((c1 >= '0') && (c1 <= '9')) {
11561 sum = ((c1 - '0') << 4);
11562 } else if ((c1 >= 'a') && (c1 <= 'f')) {
11563 sum = ((c1 - 'a' + 10) << 4);
11564 } else if ((c1 >= 'A') && (c1 <
[all...]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_print.c368 char c1 = buf[prefix]; local
373 buf[prefix] = c1;
/illumos-gate/usr/src/cmd/ls/
H A Dls.c3063 const ls_color_t *c1 = (const ls_color_t *)p1; local
3066 int ret = c1->ftype - c2->ftype;
3071 if (c1->ftype != LS_PAT)
3074 return (strcmp(c1->sfx, c2->sfx));
/illumos-gate/usr/src/lib/fm/topo/modules/common/ses/
H A Dses.c809 char *c1, *c2; local
829 nvlist_lookup_string(a1, FM_FMRI_AUTH_CHASSIS, &c1) == 0 &&
831 if (strcmp(c1, c2) != 0)
/illumos-gate/usr/src/uts/common/fs/
H A Dvfs.c2153 int c1 = 0; local
2164 for (; mop1->mo_cancel[c1] != NULL; c1++)
2168 if (c1 == 0)
2184 * array has "c1+c2+1" entries and in the end we might shrink
2186 * Result now has a copy of the c1 entries from mop1; we'll
2195 dp = &result[c1];
2211 if (dp != &result[c1+c2]) {
2216 kmem_free(result, (c1 + c2 + 1) * sizeof (char *));
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSCommon.c1232 mDNSu8 c1 = string[max]; // First byte after cut point local
1240 mDNSBool continuation = ((c1 & 0xC0) == 0x80);
1241 mDNSBool secondsurrogate = (c1 == 0xED && (c2 & 0xF0) == 0xB0);
1243 c2 = c1;
1244 c1 = string[--length];
H A DuDNS.c4272 int c1, c2; local
4323 c1 = CountLabels(newRR->resrec.name);
4325 if (c2 > c1)
4332 newRR->zone = SkipLeadingLabels(newRR->resrec.name, c1-c2);
H A DmDNS.c3095 mDNSlocal const CacheRecord *FindSPSInCache1(mDNS *const m, const DNSQuestion *const q, const CacheRecord *const c0, const CacheRecord *const c1) argument
3103 if (cr != c0 && cr != c1) // that's not one we've seen before,
3115 (void) c1;
3116 (void) c1;
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c1077 uint8_t c1, c2; local
1087 c1 = '\0';
1089 c1 = dtrace_load8((uintptr_t)s1++);
1098 if (c1 != c2)
1099 return (c1 - c2);
1100 } while (--limit && c1 != '\0' && !(*flags & CPU_DTRACE_FAULT));

Completed in 325 milliseconds

1234