Searched defs:lg (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/lib/libc/port/gen/
H A Da64l.c49 int lg = 0; local
56 lg |= (c - ('0' - 2)) << i;
58 return ((long)lg);
H A Dl64a.c61 int lg = (int)value; local
68 while (lg != 0) {
70 int c = (lg & CHARMASK) + ('0' - 2);
79 lg = ((lg < 0) ? (lg >> BITSPERCHAR) | SIGN :
80 lg >> BITSPERCHAR) & WORDMASK;
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dcompress.c170 u16 lg, pt, length, max_non_overlap; local
200 lg = 0;
202 lg++;
207 * the destination using the fact that p = (pt >> (12 - lg)) + 1
210 dest_back_addr = dest - (pt >> (12 - lg)) - 1;
214 length = (pt & (0xfff >> lg)) + 3;
/osnet-11/usr/src/lib/libpkg/common/
H A Dverify.c84 uint32_t lg; member in union:hilo
262 uint32_t lg; /* running checksum value */ local
290 lg = 0;
307 lg += ((((*p)>>24)&0xFF) & WDMSK);
308 lg += ((((*p)>>16)&0xFF) & WDMSK);
309 lg += ((((*p)>>8)&0xFF) & WDMSK);
310 lg += (((*p)&0xFF) & WDMSK);
316 lg += (((uint32_t)(*s++)) & WDMSK);
323 suma.lg = lg;
[all...]
/osnet-11/usr/src/lib/libnsl/dial/
H A Dconn.c787 * notin(sh, lg) check for occurrence of substring "sh"
788 * char *sh, *lg;
796 notin(char *sh, char *lg) argument
798 while (*lg != NULLCHAR) {
799 if (PREFIX(sh, lg))
802 lg++;

Completed in 45 milliseconds