Searched refs:length (Results 151 - 175 of 7895) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/stress/
H A Dregress-135155.js3 t.length = function() {
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Datexit.h38 size_t length; member in struct:__cxa_range_t
/macosx-10.10.1/OpenSSL098-52/src/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
66 int off=((int)length-1)/8;
67 long l8=((length+7)/8)*8;
73 (unsigned char*)output,length,&ks1,iv1,enc);
74 if (length >= sizeof(DES_cblock))
80 if (length >= sizeof(DES_cblock))
85 if (length >= sizeof(DES_cblock))
91 if (length >= sizeof(DES_cblock))
94 (unsigned char*)output,length,&ks1,iv1,enc);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Dreqreader.h47 void getData(const void *&data, size_t &length);
53 template <class T> void getData(T *&data, size_t &length) argument
54 { return getData(reinterpret_cast<const void *&>(data), length); }
57 void checkSize(size_t length) argument
59 if (mPC + length < mPC || mPC + length > mReq->length())
63 void skip(size_t length);
66 bool atEnd() const { return mPC >= mReq->length(); }
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dreqreader.h47 void getData(const void *&data, size_t &length);
53 template <class T> void getData(T *&data, size_t &length) argument
54 { return getData(reinterpret_cast<const void *&>(data), length); }
57 void checkSize(size_t length) argument
59 if (mPC + length < mPC || mPC + length > mReq->length())
63 void skip(size_t length);
66 bool atEnd() const { return mPC >= mReq->length(); }
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DSecMaskGenerationFunctionTransform.h40 @param digestLength The desired digest length. Note that certain
43 appropriate length will be chosen for you.
44 @param maskLength The desired mask length.
53 fixed length (maskLength) deterministic pseudorandom output.
57 SecTransformRef SecCreateMaskGenerationFunctionTransform(CFStringRef hashType, int length, CFErrorRef *error)
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DCryptographicUtilities.h32 WTF_EXPORT_PRIVATE int constantTimeMemcmp(const void*, const void*, size_t length);
H A DOSRandomSource.cpp44 void cryptographicallyRandomValuesFromOS(unsigned char* buffer, size_t length) argument
51 if (read(fd, buffer, length) != static_cast<ssize_t>(length))
59 if (!CryptGenRandom(hCryptProv, length, buffer))
/macosx-10.10.1/WTF-7600.1.24/wtf/dtoa/
H A Dfixed-dtoa.h54 BufferReference<char> buffer, int* length, int* decimal_point);
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/rdata/generic/
H A Dnull_10.h27 isc_uint16_t length; member in struct:dns_rdata_null
H A Dopt_41.c55 isc_uint16_t length; local
65 while (r.length > 0) {
68 length = uint16_fromregion(&r);
70 sprintf(buf, "%u %u", option, length);
72 INSIST(r.length >= length);
73 if (length > 0) {
78 or.length = length;
81 isc_region_consume(&r, length);
96 isc_uint16_t length; local
164 isc_uint16_t length; local
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Descape.h28 const char *string, size_t length,
/macosx-10.10.1/curl-83.1.2/curl/packages/NetWare/
H A Dget_ver.awk30 copyright_string = substr($0, 28, length($0)-28)
32 version_string = substr($3, 2, length($3)-2)
/macosx-10.10.1/groff-38/groff/src/include/
H A Dpaper.h23 double length; // in PS points member in struct:paper
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dmemmove.c46 static size_t length; local
48 if (length < n) {
49 length = (n * 3) / 2;
50 bfr = typeRealloc(char, length, bfr);
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_so_k_nucleotide.rb9 def frecuency( seq,length )
10 n, table = seq.length - length + 1, Hash.new(0)
12 (0 ... length).each do |f|
13 (f ... n).step(length) do |i|
14 table[seq[i,length]] += 1
21 def sort_by_freq( seq,length )
22 n,table = frecuency( seq,length )
31 n,table = frecuency( seq,s.length )
/macosx-10.10.1/xnu-2782.1.97/libkern/kxld/
H A Dkxld_demangle.h43 * @param length The length of the buffer.
49 const char * kxld_demangle(const char *str, char **buffer, size_t *length)
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dmemset.c41 bzero(void *dst0, size_t length) argument
43 return (void)memset(dst0, 0, length);
52 memset(void *dst0, int c0, size_t length) argument
60 * If not enough words, just fill bytes. A length >= 2 words
67 * dst dst+length-1
72 if (length < 3 * wsize) {
73 while (length != 0) {
75 --length;
92 length -= t;
99 t = length / wsiz
[all...]
/macosx-10.10.1/xnu-2782.1.97/tools/tests/perf_index/
H A Dtest_fault_helper.h10 int test_fault_helper(int thread_id, int num_threads, long long length, testtype_t testtype);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Array/
H A D15.4.4.5-3.js50 for ( tc=0; tc < testcases.length; tc++ ) {
66 array[array.length] = new Date( TIME_2000 * Math.PI );
67 array[array.length] = new Date( TIME_2000 * 10 );
68 array[array.length] = new Date( TIME_1900 + TIME_1900 );
69 array[array.length] = new Date(0);
70 array[array.length] = new Date( TIME_2000 );
71 array[array.length] = new Date( TIME_1900 + TIME_1900 +TIME_1900 );
72 array[array.length] = new Date( TIME_1900 * Math.PI );
73 array[array.length] = new Date( TIME_1900 * 10 );
74 array[array.length]
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Dforin-001.js24 ForIn_1( { length:4, company:"netscape", year:2000, 0:"zero" } );
25 ForIn_2( { length:4, company:"netscape", year:2000, 0:"zero" } );
26 ForIn_3( { length:4, company:"netscape", year:2000, 0:"zero" } );
28 // ForIn_6({ length:4, company:"netscape", year:2000, 0:"zero" });
29 // ForIn_7({ length:4, company:"netscape", year:2000, 0:"zero" });
30 ForIn_8({ length:4, company:"netscape", year:2000, 0:"zero" });
44 for ( PropertyArray[PropertyArray.length] in object ) {
45 ValueArray[ValueArray.length] =
46 object[PropertyArray[PropertyArray.length-1]];
49 for ( var i = 0; i < PropertyArray.length;
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dhex.c46 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length);
61 while (source->length > 0) {
68 if (source->length != 0 &&
82 int length; /*%< Desired length of binary data or -1 */ member in struct:__anon6501
89 hex_decode_init(hex_decode_ctx_t *ctx, int length, isc_buffer_t *target) argument
92 ctx->length = length;
108 if (ctx->length >= 0) {
109 if (ctx->length
129 isc_hex_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) argument
192 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) argument
[all...]
/macosx-10.10.1/ntp-92/lib/isc/
H A Dhex.c46 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length);
61 while (source->length > 0) {
68 if (source->length != 0 &&
82 int length; /*%< Desired length of binary data or -1 */ member in struct:__anon11237
89 hex_decode_init(hex_decode_ctx_t *ctx, int length, isc_buffer_t *target) argument
92 ctx->length = length;
108 if (ctx->length >= 0) {
109 if (ctx->length
129 isc_hex_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) argument
192 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) argument
[all...]
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-arcnet.c42 u_int length, u_int caplen);
59 arcnet_print(const u_char *bp, u_int length, int phds, int flag, u_int seqid) argument
72 length);
81 length);
88 length);
96 (flag + 3) / 2, length);
101 flag/2 + 1, length);
107 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
114 u_int length = h->len; local
143 arcnet_print(p, length,
202 u_int length = h->len; local
256 arcnet_encap_print(u_char arctype, const u_char *p, u_int length, u_int caplen) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dbytestrie.cpp79 BytesTrie::branchNext(const uint8_t *pos, int32_t length, int32_t inByte) { argument
81 if(length==0) {
82 length=*pos++;
84 ++length;
85 // The length of the branch is the number of bytes to select from.
87 while(length>kMaxBranchLinearSubNodeLength) {
89 length>>=1;
92 length=length-(length>>
156 int32_t length=node-kMinLinearMatch; // Actual match length minus 1. local
[all...]

Completed in 304 milliseconds

1234567891011>>