Searched refs:ll (Results 1 - 25 of 158) sorted by relevance

1234567

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.conv.d45 long long ll;
86 ll = i;
87 printf("i is %d ll is %x\n", i, ll);
91 ll = 8589934591;
92 i = ll;
93 printf("ll is %d i is %x\n", ll, i);
98 ll = c;
99 printf("c is %c ll i
[all...]
H A Dtst.complex.d48 long long ll;
58 long long ll;
/freebsd-10.0-release/crypto/openssl/crypto/des/
H A Decb3_enc.c67 DES_LONG ll[2]; local
73 ll[0]=l0;
74 ll[1]=l1;
76 DES_encrypt3(ll,ks1,ks2,ks3);
78 DES_decrypt3(ll,ks1,ks2,ks3);
79 l0=ll[0];
80 l1=ll[1];
H A Decb_enc.c112 DES_LONG ll[2]; local
116 c2l(in,l); ll[0]=l;
117 c2l(in,l); ll[1]=l;
118 DES_encrypt1(ll,ks,enc);
119 l=ll[0]; l2c(l,out);
120 l=ll[1]; l2c(l,out);
121 l=ll[0]=ll[1]=0;
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dstrtonum.c37 long long ll = 0; local
55 ll = strtoll(numstr, &ep, 10);
58 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
60 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
67 ll = 0;
69 return (ll);
/freebsd-10.0-release/lib/libc/stdlib/
H A Dstrtonum.c35 long long ll = 0; local
53 ll = strtoll(numstr, &ep, 10);
56 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
58 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
65 ll = 0;
67 return (ll);
/freebsd-10.0-release/sys/crypto/des/
H A Ddes_ecb.c104 DES_LONG ll[2]; local
108 c2l(in,l); ll[0]=l;
109 c2l(in,l); ll[1]=l;
110 des_encrypt1(ll,ks,enc);
111 l=ll[0]; l2c(l,out);
112 l=ll[1]; l2c(l,out);
113 l=ll[0]=ll[1]=0;
121 DES_LONG ll[2]; local
127 ll[
[all...]
/freebsd-10.0-release/tools/tools/netrate/tcpp/
H A Dtcpp.c94 long long ll; local
119 ll = strtoll(optarg, &dummy, 10);
120 if (*dummy != '\0' || ll <= 0)
122 bflag = ll;
142 ll = strtoll(optarg, &dummy, 10);
143 if (*dummy != '\0' || ll <= 0)
145 mflag = ll;
149 ll = strtoll(optarg, &dummy, 10);
150 if (*dummy != '\0' || ll <= 0)
152 pflag = ll;
[all...]
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Dt-types.c24 LONGLONG_T ll; local
60 ll = LLONG_MIN;
65 SM_TEST(lt > ll);
66 sm_snprintf(buf, sizeof(buf), "%llx", ll);
69 || !SM_TEST(strspn(&buf[1], r) == sizeof(ll) * 2 - 1))
75 ll = LLONG_MAX;
76 lt = ll + 1;
77 SM_TEST(lt < ll);
78 sm_snprintf(buf, sizeof(buf), "%llx", ll);
81 || !SM_TEST(strspn(&buf[1], r) == sizeof(ll) *
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/md4/
H A Dmd4_locl.h79 unsigned long ll; \
80 ll=(c)->A; (void)HOST_l2c(ll,(s)); \
81 ll=(c)->B; (void)HOST_l2c(ll,(s)); \
82 ll=(c)->C; (void)HOST_l2c(ll,(s)); \
83 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
/freebsd-10.0-release/crypto/openssl/crypto/md5/
H A Dmd5_locl.h88 unsigned long ll; \
89 ll=(c)->A; (void)HOST_l2c(ll,(s)); \
90 ll=(c)->B; (void)HOST_l2c(ll,(s)); \
91 ll=(c)->C; (void)HOST_l2c(ll,(s)); \
92 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
/freebsd-10.0-release/crypto/openssl/crypto/ripemd/
H A Drmd_locl.h90 unsigned long ll; \
91 ll=(c)->A; (void)HOST_l2c(ll,(s)); \
92 ll=(c)->B; (void)HOST_l2c(ll,(s)); \
93 ll=(c)->C; (void)HOST_l2c(ll,(s)); \
94 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
95 ll
[all...]
/freebsd-10.0-release/sys/dev/ida/
H A Didaio.h18 struct ida_label_logical ll; member in union:ida_user_command::__anon8503
/freebsd-10.0-release/usr.sbin/kbdcontrol/
H A DMakefile12 LDADD= -ll
/freebsd-10.0-release/usr.sbin/crunch/examples/
H A Dkcopy.conf21 libs -ll -ledit -ltermcap -lcompat -lutil -lscrypt
/freebsd-10.0-release/contrib/gcc/config/s390/
H A Dfixdfdi.h31 #define MANTD_HIGH_LL(fp) ((fp.ll[0] & HIGH_LL_FRAC_MASK) | HIGH_LL_UNIT_BIT)
32 #define MANTD_LOW_LL(fp) (fp.ll[1])
33 #define FRACD_ZERO_P(fp) (!fp.ll[1] && !(fp.ll[0] & HIGH_LL_FRAC_MASK))
48 UDItype_x ll[2]; /* 64 bit parts: 0 upper, 1 lower */ member in union:double_long
81 /* If the upper ll part of the mantissa isn't
104 #define MANTD_HIGH_LL(fp) ((fp.ll[0] & HIGH_LL_FRAC_MASK) | HIGH_LL_UNIT_BIT)
105 #define MANTD_LOW_LL(fp) (fp.ll[1])
106 #define FRACD_ZERO_P(fp) (!fp.ll[1] && !(fp.ll[
121 DItype_x ll[2]; /* 64 bit parts: 0 upper, 1 lower */ member in union:double_long
193 UDItype_x ll; member in union:double_long
265 UDItype_x ll; member in union:double_long
[all...]
/freebsd-10.0-release/sbin/devd/
H A DMakefile12 LDADD= -ll -lutil
/freebsd-10.0-release/usr.bin/colldef/
H A DMakefile8 LDADD= -ll
/freebsd-10.0-release/usr.sbin/apmd/
H A DMakefile11 LDADD= -ll
/freebsd-10.0-release/contrib/gcc/config/
H A Dfp-bit.c209 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */
259 available in the number, so we'll store 0 in the exponent and
544 so there isn't a leading implicit one - we'll shift it so
557 dst->fraction.ll = fraction;
585 dst->fraction.ll = fraction;
593 dst->fraction.ll = (fraction << NGARDS) | IMPLICIT_1;
654 a_fraction = a->fraction.ll;
655 b_fraction = b->fraction.ll;
705 tmp->fraction.ll = tfraction;
711 tmp->fraction.ll
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/rc5/
H A Drc5_skey.c65 RC5_32_INT L[64],l,ll,A,B,*S,k; local
87 c2ln(data,l,ll,k);
89 L[j+1]=ll;
/freebsd-10.0-release/contrib/gcc/
H A Dlibgcc2.c76 const DWunion uu = {.ll = u};
80 return w.ll;
299 const DWunion uu = {.ll = u};
300 const DWunion vv = {.ll = v};
314 DWunion w0 = {.ll = (UDWtype) (UWtype) uu.s.low
316 DWunion w1 = {.ll = (UDWtype) (UWtype) uu.s.low
322 w1.ll -= vv.ll;
323 w1.ll += (UWtype) w0.s.high;
327 return w0.ll;
[all...]
/freebsd-10.0-release/contrib/ntp/libopts/
H A Dputshell.c152 * of emitting shell state, they are not recommended, but we'll
153 * do something. I guess we'll emit the equivalenced-to option
/freebsd-10.0-release/contrib/ntp/sntp/libopts/
H A Dputshell.c152 * of emitting shell state, they are not recommended, but we'll
153 * do something. I guess we'll emit the equivalenced-to option
/freebsd-10.0-release/usr.sbin/config/
H A DMakefile17 LDADD= -ll -lsbuf

Completed in 186 milliseconds

1234567