Home
last modified time | relevance | path

Searched refs:ll (Results 1 – 25 of 773) sorted by relevance

12345678910>>...31

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20020919-1.c88 register long long ll asm (REG1a) = llp; in foolla()
89 asm ("foo1a %0" : "=r" (ll) : "0" (ll) : REG1a); /* { dg-error "conflict" } */ in foolla()
90 return ll; in foolla()
96 register long long ll asm (REG1a) = llp; in nfoolla()
97 asm ("foo1a %0" : "=r" (ll) : "0" (ll) : REG2a); in nfoolla()
98 return ll; in nfoolla()
104 register long long ll asm (REG1a) = llp; in foollb()
105 asm ("foo1b %0" : "=r" (ll) : "0" (ll) : REG1b); /* { dg-error "conflict" } */ in foollb()
106 return ll; in foollb()
121 register long long ll asm (REG1a); in barlla()
[all …]
H A D990130-1.c11 DItype ll; member
18 uu.ll = u, in __muldi3()
19 vv.ll = v; in __muldi3()
20ll = ({DIunion __w; __asm__ ("mull %3" : "=a" ((USItype) ( __w.s.low )), "=d" ((USItype) ( __w.s.… in __muldi3()
23 return w.ll; in __muldi3()
/openbsd-src/usr.bin/ssh/
H A Dsshlogin.c75 struct lastlog ll; in get_last_login_time() local
87 pos = (off_t)uid * sizeof(ll); in get_last_login_time()
99 if (read(fd, &ll, sizeof(ll)) != sizeof(ll)) { in get_last_login_time()
104 if (bufsize > sizeof(ll.ll_host) + 1) in get_last_login_time()
105 bufsize = sizeof(ll.ll_host) + 1; in get_last_login_time()
106 strncpy(buf, ll.ll_host, bufsize - 1); in get_last_login_time()
108 return (time_t)ll.ll_time; in get_last_login_time()
151 struct lastlog ll; in record_login() local
174 memset(&ll, 0, sizeof(ll)); in record_login()
177 ll.ll_time = time(NULL); in record_login()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dwhere.c95 ffewhereLL_ ll; in ffewhere_ll_lookup_() local
100 for (ll = ffewhere_root_ll_->last; in ffewhere_ll_lookup_()
101 ll != (ffewhereLL_) &ffewhere_root_ll_->first; in ffewhere_ll_lookup_()
102 ll = ll->previous) in ffewhere_ll_lookup_()
104 if (ll->line_no <= ln) in ffewhere_ll_lookup_()
105 return ll; in ffewhere_ll_lookup_()
133 ffewhereLL_ ll; in ffewhere_file_set() local
134 ll = ggc_alloc (sizeof (*ll)); in ffewhere_file_set()
135 ll->next = (ffewhereLL_) &ffewhere_root_ll_->first; in ffewhere_file_set()
136 ll->previous = ffewhere_root_ll_->last; in ffewhere_file_set()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dfloatlib.c73 #define MANTD_LL(fp) ((fp.ll & (HIDDEND_LL-1)) | HIDDEND_LL)
90 long long ll; member
424 dl.ll |= (a1 >> 10) & ~HIDDEND_LL; in __floatdidf()
656 if (dl1.ll == 0) in __fixunsdfdi()
661 l = dl1.ll; in __fixunsdfdi()
688 if (!fl2.ll) in __adddf3()
690 if (!fl1.ll) { in __adddf3()
758 fl1.ll = PACKD_LL(sign,exp1,mant1); in __adddf3()
774 if (!fl2.ll) in __subdf3()
778 if (!fl1.ll) in __subdf3()
[all …]
H A Dlibgcc2.c57 uu.ll = u; in __negdi2()
62 return w.ll; in __negdi2()
248 uu.ll = u; in __lshrdi3()
264 return w.ll; in __lshrdi3()
279 uu.ll = u; in __ashldi3()
295 return w.ll; in __ashldi3()
310 uu.ll = u; in __ashrdi3()
327 return w.ll; in __ashrdi3()
338 uu.ll = u; in __ffsdi2()
358 uu.ll = u, in __muldi3()
[all …]
/openbsd-src/gnu/gcc/gcc/config/mips/
H A Dsync.S67 #define SYNC_FETCH_AND_OP(op, n, ll, sc, inst, neg) \ argument
70 1: ##ll $v0, ($a0); \
88 SYNC_FETCH_AND_OP(add, 4, ll, sc, addu, NO_NEG)
89 SYNC_FETCH_AND_OP(sub, 4, ll, sc, subu, NO_NEG)
90 SYNC_FETCH_AND_OP(or, 4, ll, sc, or, NO_NEG)
91 SYNC_FETCH_AND_OP(and, 4, ll, sc, and, NO_NEG)
92 SYNC_FETCH_AND_OP(xor, 4, ll, sc, xor, NO_NEG)
93 SYNC_FETCH_AND_OP(nand, 4, ll, sc, and, NEG_v1)
101 1: ll $v0, ($a0); \
134 #define SYNC_OP_AND_FETCH(op, n, ll, sc, inst, neg) \ argument
[all …]
/openbsd-src/lib/libcrypto/des/
H A Decb_enc.c
H A Decb3_enc.c
H A Dfcrypt.c
/openbsd-src/sys/crypto/
H A Decb3_enc.c59 u_int32_t ll[2]; in des_ecb3_encrypt() local
66 ll[0] = l0; in des_ecb3_encrypt()
67 ll[1] = l1; in des_ecb3_encrypt()
68 des_encrypt2(ll, ks1, encrypt); in des_ecb3_encrypt()
69 des_encrypt2(ll, ks2, !encrypt); in des_ecb3_encrypt()
70 des_encrypt2(ll, ks3, encrypt); in des_ecb3_encrypt()
71 l0 = ll[0]; in des_ecb3_encrypt()
72 l1 = ll[1]; in des_ecb3_encrypt()
/openbsd-src/lib/libc/stdlib/
H A Dstrtonum.c32 long long ll = 0; in strtonum() local
50 ll = strtoll(numstr, &ep, 10); in strtonum()
53 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
55 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) in strtonum()
62 ll = 0; in strtonum()
64 return (ll); in strtonum()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/
H A Dfp-bit.c194 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */
512 dst->fraction.ll = fraction;
535 dst->fraction.ll = fraction;
543 dst->fraction.ll = (fraction << NGARDS) | IMPLICIT_1;
603 a_fraction = a->fraction.ll;
604 b_fraction = b->fraction.ll;
654 tmp->fraction.ll = tfraction;
660 tmp->fraction.ll = -tfraction;
664 while (tmp->fraction.ll < IMPLICIT_1 && tmp->fraction.ll)
666 tmp->fraction.ll <<= 1;
[all …]
/openbsd-src/gnu/gcc/gcc/config/
H A Dfp-bit.c209 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */
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 = -tfraction;
715 while (tmp->fraction.ll < IMPLICIT_1 && tmp->fraction.ll)
717 tmp->fraction.ll <<= 1;
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/format/
H A Dwarnll-1.c11 foo (long long ll, unsigned long long ull, long long *lln, in foo() argument
15 printf ("%lld%lli%llo%llu%llx%llX%lln", ll, ll, ull, ull, ull, ull, lln); in foo()
19 printf ("%qd", ll); /* { dg-warning "C" "printf %qd" } */ in foo()
20 printf ("%qi", ll); /* { dg-warning "C" "printf %qi" } */ in foo()
26 printf ("%Ld", ll); /* { dg-warning "C" "printf %Ld" } */ in foo()
27 printf ("%Li", ll); /* { dg-warning "C" "printf %Li" } */ in foo()
/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dcheckansi.pl54 my $ll = '';
60 $ll .= $line;
62 unless ($ll =~ /\\$/) {
63 if (length $ll > $opt{'logical-source-line-length'}) {
65 length $ll, $opt{'logical-source-line-length'}), $ll);
67 $ll = '';
/openbsd-src/gnu/gcc/gcc/
H A Dlibgcc2.c75 const DWunion uu = {.ll = u}; in __negdi2()
79 return w.ll; in __negdi2()
289 const DWunion uu = {.ll = u}; in __mulvDI3()
290 const DWunion vv = {.ll = v}; in __mulvDI3()
304 DWunion w0 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
306 DWunion w1 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
312 w1.ll -= vv.ll; in __mulvDI3()
313 w1.ll += (UWtype) w0.s.high; in __mulvDI3()
317 return w0.ll; in __mulvDI3()
327 DWunion w0 = {.ll = (UDWtype) (UWtype) uu.s.low in __mulvDI3()
[all …]
/openbsd-src/gnu/gcc/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
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[0] & HIGH_LL_FRAC_MASK))
121 DItype_x ll[2]; /* 64 bit parts: 0 upper, 1 lower */ member
178 #define MANTD_LL(fp) ((fp.ll & (HIDDEND_LL-1)) | HIDDEND_LL)
179 #define FRACD_LL(fp) (fp.ll & (HIDDEND_LL-1))
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020508-2.c23 long long ll = LL_VALUE; variable
53 if (ROR (ll, shift1) != ROR (LL_VALUE, SHIFT1)) in main()
56 if (ROR (ll, SHIFT1) != ROR (LL_VALUE, SHIFT1)) in main()
59 if (ROR (ll, shift2) != ROR (LL_VALUE, SHIFT2)) in main()
62 if (ROR (ll, SHIFT2) != ROR (LL_VALUE, SHIFT2)) in main()
89 if (ROL (ll, shift1) != ROL (LL_VALUE, SHIFT1)) in main()
92 if (ROL (ll, SHIFT1) != ROL (LL_VALUE, SHIFT1)) in main()
95 if (ROL (ll, shift2) != ROL (LL_VALUE, SHIFT2)) in main()
98 if (ROL (ll, SHIFT2) != ROL (LL_VALUE, SHIFT2)) in main()
H A D20020508-3.c23 long long ll = LL_VALUE; variable
53 if (ROR (ll, shift1) != ROR (LL_VALUE, SHIFT1)) in main()
56 if (ROR (ll, SHIFT1) != ROR (LL_VALUE, SHIFT1)) in main()
59 if (ROR (ll, shift2) != ROR (LL_VALUE, SHIFT2)) in main()
62 if (ROR (ll, SHIFT2) != ROR (LL_VALUE, SHIFT2)) in main()
89 if (ROL (ll, shift1) != ROL (LL_VALUE, SHIFT1)) in main()
92 if (ROL (ll, SHIFT1) != ROL (LL_VALUE, SHIFT1)) in main()
95 if (ROL (ll, shift2) != ROL (LL_VALUE, SHIFT2)) in main()
98 if (ROL (ll, SHIFT2) != ROL (LL_VALUE, SHIFT2)) in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920413-1.c1 union u {double d;long long ll;}; member
2 f(double x, int n){union u v;v.d=x;if(n>=0){v.ll<<=63;}else{v.ll+=1<<-n;v.ll>>=-n;}return v.ll;} in f()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/mips/
H A D_tilib.c42 TItype ll; member
58 uu.ll = u; in __negti2()
63 return w.ll; in __negti2()
76 uu.ll = u; in __ashlti3()
92 return w.ll; in __ashlti3()
106 uu.ll = u;
123 return w.ll;
137 uu.ll = u; in __lshrti3()
153 return w.ll; in __lshrti3()
/openbsd-src/usr.bin/finger/
H A Dutil.c190 struct lastlog ll; in enter_lastlog() local
199 pread(fd, &ll, sizeof(ll), (off_t)pn->uid * sizeof(ll)) != in enter_lastlog()
200 sizeof(ll)) { in enter_lastlog()
202 ll.ll_line[0] = ll.ll_host[0] = '\0'; in enter_lastlog()
203 ll.ll_time = 0; in enter_lastlog()
207 else if (ll.ll_time != 0) { in enter_lastlog()
210 if (w->info == LOGGEDIN && w->loginat < ll.ll_time) in enter_lastlog()
219 strncmp(w->tty, ll.ll_line, UT_LINESIZE) == 0) in enter_lastlog()
225 bcopy(ll.ll_line, w->tty, UT_LINESIZE); in enter_lastlog()
227 bcopy(ll.ll_host, w->host, UT_HOSTSIZE); in enter_lastlog()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/lib/Text/
H A DWrap.pm47 my $ll = $columns - _xlen(expand($ip)) - 1;
48 $ll = 0 if $ll < 0;
56 if ($t =~ /\G((?>(?!\n)\PM\pM*|(?<![^\n])\pM+){0,$ll})($break|\n+|\z)/xmgc) {
61 } elsif ($huge eq 'wrap' && $t =~ /\G((?>(?!\n)\PM\pM*|(?<![^\n])\pM+){$ll})/gc) {
82 $ll = $nll;
/openbsd-src/usr.bin/login/
H A Dlogin.c840 struct lastlog ll; in dolastlog() local
845 pos = (off_t)pwd->pw_uid * sizeof(ll); in dolastlog()
847 if (pread(fd, &ll, sizeof(ll), pos) == sizeof(ll) && in dolastlog()
848 ll.ll_time != 0) { in dolastlog()
850 24-5, (char *)ctime(&ll.ll_time)); in dolastlog()
852 (int)sizeof(ll.ll_line), in dolastlog()
853 ll.ll_line); in dolastlog()
854 if (*ll.ll_host != '\0') in dolastlog()
856 (int)sizeof(ll.ll_host), in dolastlog()
857 ll.ll_host); in dolastlog()
[all …]

12345678910>>...31