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

1234567891011>>

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/testsuite/libffi.call/
H A Dreturn_ll.c9 static long long return_ll(long long ll) argument
11 return ll;
20 long long ll; local
25 values[0] = ≪
31 for (ll = 0LL; ll < 100LL; ll++)
35 CHECK(rlonglong == ll);
38 for (ll = 55555555555000LL; ll < 5555555555510
[all...]
/macosx-10.9.5/libffi-18.1/tests/testsuite/libffi.call/
H A Dreturn_ll.c9 static long long return_ll(long long ll) argument
11 return ll;
20 long long ll; local
23 values[0] = &ll;
31 for (ll = 1LL; ll < 100LL; ll++)
34 CHECK(rlonglong == ll);
37 for (ll = 55555555555000LL; ll < 5555555555510
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dreturn_ll.c9 static long long return_ll(long long ll) argument
11 return ll;
20 long long ll; local
25 values[0] = &ll;
31 for (ll = 0LL; ll < 100LL; ll++)
35 CHECK(rlonglong == ll);
38 for (ll = 55555555555000LL; ll < 5555555555510
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dreturn_ll.c9 static long long return_ll(long long ll) argument
11 return ll;
20 long long ll; local
25 values[0] = &ll;
31 for (ll = 0LL; ll < 100LL; ll++)
35 CHECK(rlonglong == ll);
38 for (ll = 55555555555000LL; ll < 5555555555510
[all...]
/macosx-10.9.5/dtrace-118.1/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;
/macosx-10.9.5/OpenSSH-186/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);
/macosx-10.9.5/llvmCore-3425.0.33/utils/lit/lit/ExampleTests/LLVM.InTree/test/Bar/
H A Ddg.exp4 RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
/macosx-10.9.5/llvmCore-3425.0.33/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/Foo/
H A Ddg.exp4 RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A Decb3_enc.c71 /* crypto/des/ecb3_enc.c */ /* Copyright (C) 1995-1997 Eric Young (eay@mincom.oz.au) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@mincom.oz.au). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@mincom.oz.au). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@mincom.oz.au)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@mincom.oz.au)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #include "des_locl.h" void des_ecb3_encrypt(input, output, ks1, ks2, ks3, encrypt) des_cblock (*input); des_cblock (*output); des_key_schedule ks1; des_key_schedule ks2; des_key_schedule ks3; int encrypt; { register DES_LONG l0,l1; register unsigned char *in,*out; DES_LONG ll[2]; in=(unsigned char *)input; out=(unsigned char *)output; c2l(in,l0); c2l(in,l1); ll[0]=l0; ll[1]=l1; if (encrypt) des_encrypt3(ll,ks1,ks2,ks3); else des_decrypt3(ll,ks1,ks2,ks3); l0=ll[0]; l1=ll[1]; l2c(l0,out); l2c(l1,out); }
1 /* crypto/des/ecb3_enc.c */ local
H A Decb_enc.c113 /* crypto/des/ecb_enc.c */ /* Copyright (C) 1995-1997 Eric Young (eay@mincom.oz.au) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@mincom.oz.au). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@mincom.oz.au). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@mincom.oz.au)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@mincom.oz.au)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #include "des_locl.h" #include "spr.h" char *libdes_version="libdes v 4.01 - 13-Jan-1997 - eay"; char *DES_version="DES part of SSLeay 0.6.6 14-Jan-1997"; char *des_options() { static int init=1; static char buf[32]; if (init) { char *ptr,*unroll,*risc,*size; init=0; #ifdef DES_PTR ptr="ptr"; #else ptr="idx"; #endif #if defined(DES_RISC1) || defined(DES_RISC2) #ifdef DES_RISC1 risc="risc1"; #endif #ifdef DES_RISC2 risc="risc2"; #endif #else risc="cisc"; #endif #ifdef DES_UNROLL unroll="16"; #else unroll="4"; #endif if (sizeof(DES_LONG) != sizeof(long)) size="int"; else size="long"; sprintf(buf,"des(%s,%s,%s,%s)",ptr,risc,unroll,size); } return(buf); } void des_ecb_encrypt(input, output, ks, encrypt) des_cblock (*input); des_cblock (*output); des_key_schedule ks; int encrypt; { register DES_LONG l; register unsigned char *in,*out; DES_LONG ll[2]; in=(unsigned char *)input; out=(unsigned char *)output; c2l(in,l); ll[0]=l; c2l(in,l); ll[1]=l; des_encrypt(ll,ks,encrypt); l=ll[0]; l2c(l,out); l=ll[1]; l2c(l,out); l=ll[0]=ll[1]=0; }
1 /* crypto/des/ecb_enc.c */ local
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/arch/win32/
H A Dapr_arch_atime.h53 LONGLONG ll; local
55 ll = t * 10;
56 pft->dwLowDateTime = (DWORD)ll;
57 pft->dwHighDateTime = (DWORD) (ll >> 32);
/macosx-10.9.5/apr-30/apr/apr/include/arch/win32/
H A Dapr_arch_atime.h53 LONGLONG ll; local
55 ll = t * 10;
56 pft->dwLowDateTime = (DWORD)ll;
57 pft->dwHighDateTime = (DWORD) (ll >> 32);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dfmtint.c85 fmtint(intmax_t ll, int unsign) argument
89 int j=0,k=3*sizeof(ll);
90 if(unsign || ll>=0)
91 n = ll;
94 n = -ll;
/macosx-10.9.5/ICU-511.35/icuSources/layoutex/
H A Dplayout.cpp145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
147 delete ll;
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
155 if (ll == NULL) {
159 return ll->countRuns();
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
167 if (ll == NULL) {
171 return ll->getAscent();
177 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
179 if (ll
189 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
201 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
213 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/tests/
H A Drecttype.sh41 Pt_t ll=(x=0 y=0)
45 print -r $(( abs((_.ur.x-_.ll.x)*(_.ur.y-_.ll.y)) ))
55 Pt_t ll=(x=7 y=7)
59 [[ ${s.ll.y} == 7 ]] || err_exit '${s.ll.y} != 7'
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Deui64.h117 #define eui64_get(ll, cp) do { \
118 eui64_copy((*cp), (ll)); \
122 #define eui64_put(ll, cp) do { \
123 eui64_copy((ll), (*cp)); \
/macosx-10.9.5/bootp-268.1/bootplib/
H A DDHCPDUID.h78 DHCPDUID_LL ll; member in union:__anon6775
142 DHCPDUID_LLGetHardwareType(const DHCPDUID_LLRef ll) argument
144 return (net_uint16_get(ll->hardware_type));
149 DHCPDUID_LLSetHardwareType(DHCPDUID_LLRef ll, uint16_t hardware_type) argument
151 net_uint16_set(ll->hardware_type, hardware_type);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvopengltexture.py37 ll, lr, ur, ul = CVOpenGLTextureGetCleanTexCoords(texture, None, None, None, None)
38 self.failUnlessIsInstance(ll, tuple)
39 self.failUnlessIsEqual(len(ll), 2)
40 self.failUnlessIsInstance(ll[0], float)
41 self.failUnlessIsInstance(ll[1], float)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvopengltexture.py37 ll, lr, ur, ul = CVOpenGLTextureGetCleanTexCoords(texture, None, None, None, None)
38 self.assertIsInstance(ll, tuple)
39 self.assertIsEqual(len(ll), 2)
40 self.assertIsInstance(ll[0], float)
41 self.assertIsInstance(ll[1], float)
/macosx-10.9.5/curl-78.94.1/curl/tests/
H A Dtestcurl.pl356 # Make $pwd to become the path without newline. We'll use that in order to cut
452 my $ll = $_;
454 next if ($ll =~ /aclocal\/gtk\.m4/);
455 next if ($ll =~ /aclocal\/gtkextra\.m4/);
456 print $ll;
457 print LOG $ll;
574 my $ll = $_;
575 print $ll if(($ll !~ /^ *#/) && ($ll !~ /
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/startup-files/apple/
H A Daliases24 ll () { ls -lag "$@" | more ; }
/macosx-10.9.5/ntp-88/libopts/
H A Dputshell.c129 * of emitting shell state, they are not recommended, but we'll
130 * do something. I guess we'll emit the equivalenced-to option
/macosx-10.9.5/ntp-88/sntp/libopts/
H A Dputshell.c129 * of emitting shell state, they are not recommended, but we'll
130 * do something. I guess we'll emit the equivalenced-to option
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dinput.c139 int ll = 0; local
155 line = zrealloc(line, ll + (p - buf));
156 memcpy(line + ll, buf, p - buf);
166 line = zrealloc(line, ll + (p - buf) + 1);
167 memcpy(line + ll, buf, p - buf);
168 ll += p - buf;
169 line[ll] = '\0';
202 * any we don't want to pop the stack---it'll mark any aliases

Completed in 193 milliseconds

1234567891011>>