Searched refs:length (Results 76 - 100 of 7895) sorted by relevance

1234567891011>>

/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Ddyn-string.c73 ds_struct_ptr->length = 0;
176 ds->length = 0;
190 if (dyn_string_resize (dest, src->length) == NULL)
195 dest->length = src->length;
206 int length = strlen (src); local
208 if (dyn_string_resize (dest, length) == NULL)
213 dest->length = length;
251 if (dyn_string_resize (dest, dest->length
272 int length = strlen (src); local
368 int length = end - start; local
[all...]
/macosx-10.10.1/CommonCrypto-60061/lib/
H A DCommonCryptorDES.c31 CCCryptorStatus CCDesIsWeakKey( void *key, size_t length) argument
34 return ccdes_key_is_weak(key, length);
43 uint32_t CCDesCBCCksum(void *in, void *out, size_t length, argument
47 return ccdes_cbc_cksum(in, out, length, key, keylen, ivec);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dcodec.c41 size_t length,
46 return decode_EncTicketPart(data, length, t, len);
52 size_t length,
57 return encode_EncTicketPart(data, length, t, len);
63 size_t length,
68 return decode_EncASRepPart(data, length, t, len);
74 size_t length,
79 return encode_EncASRepPart(data, length, t, len);
85 size_t length,
90 return decode_EncTGSRepPart(data, length,
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/samples/uciter8/
H A Duit_len8.h27 uiter_setLenient8(UCharIterator *iter, const char *s, int32_t length);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/unisetperf/draft/
H A Dunicont.h25 virtual int32_t span(const UChar *s, int32_t length);
27 virtual int32_t spanNot(const UChar *s, int32_t length);
29 virtual int32_t spanUTF8(const UChar *s, int32_t length);
31 virtual int32_t spanNotUTF8(const UChar *s, int32_t length);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DGenericTypedArrayView.h37 GenericTypedArrayView(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
40 static PassRefPtr<GenericTypedArrayView> create(unsigned length);
41 static PassRefPtr<GenericTypedArrayView> create(const typename Adaptor::Type* array, unsigned length);
42 static PassRefPtr<GenericTypedArrayView> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static PassRefPtr<GenericTypedArrayView> createUninitialized(unsigned length);
61 bool zeroRange(unsigned offset, size_t length) argument
63 return zeroRangeImpl(offset * sizeof(typename Adaptor::Type), length * sizeof(typename Adaptor::Type));
66 void zeroFill() { zeroRange(0, length()); }
68 unsigned length() const function in class:JSC::GenericTypedArrayView
77 return length() * sizeo
94 unsigned length = this->length(); local
[all...]
H A DTypedArrayBase.h50 bool zeroRange(unsigned offset, size_t length) argument
52 return zeroRangeImpl(offset * sizeof(T), length * sizeof(T));
58 unsigned length() const function in class:JSC::TypedArrayBase
85 TypedArrayBase(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
87 , m_length(length)
92 static PassRefPtr<Subclass> create(unsigned length)
94 RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(length, sizeof(T));
97 return create<Subclass>(buffer, 0, length);
101 static PassRefPtr<Subclass> create(const T* array, unsigned length)
103 RefPtr<Subclass> a = create<Subclass>(length);
[all...]
H A DGenericTypedArrayViewInlines.h36 PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
38 , m_length(length)
43 PassRefPtr<GenericTypedArrayView<Adaptor>> GenericTypedArrayView<Adaptor>::create(unsigned length) argument
45 RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(length, sizeof(typename Adaptor::Type));
48 return create(buffer, 0, length);
53 const typename Adaptor::Type* array, unsigned length)
55 RefPtr<GenericTypedArrayView> result = create(length);
56 memcpy(result->data(), array, length * sizeof(typename Adaptor::Type));
62 PassRefPtr<ArrayBuffer> passedBuffer, unsigned byteOffset, unsigned length)
65 if (!verifySubRange<typename Adaptor::Type>(buffer, byteOffset, length))
35 GenericTypedArrayView( PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) argument
52 create( const typename Adaptor::Type* array, unsigned length) argument
61 create( PassRefPtr<ArrayBuffer> passedBuffer, unsigned byteOffset, unsigned length) argument
73 createUninitialized(unsigned length) argument
93 unsigned offset, length; local
95 clampOffsetAndNumElements<Adaptor::Type>(buffer(), byteOffset(), &offset, &length); local
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/Array/
H A Darray_split_1.js45 "('a,b,c'.split(',')).length",
47 ('a,b,c'.split(',')).length );
50 "('a,b'.split(',')).length",
52 ('a,b'.split(',')).length );
55 "('a'.split(',')).length",
57 ('a'.split(',')).length );
61 * string into a non-empty array (an array of length 1 that contains the empty string).
65 "(''.split(',')).length",
67 (''.split(',')).length );
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/rdata/in_1/
H A Ddhcid_49.h27 unsigned int length; member in struct:dns_rdata_in_dhcid
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dsyncenumerator.rb9 @length = @gens.collect {|x| x.size }.max
20 def length method in class:REXML.SyncEnumerator
21 @gens.length
26 @length.times {|i|
/macosx-10.10.1/xnu-2782.1.97/tools/tests/perf_index/
H A Dperfindex-syscall.c7 for(i=0; i<length; i++) {
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/mech/
H A Dgss_oid_equal.c55 if (a == GSS_C_NO_OID || b == GSS_C_NO_OID || a->length != b->length)
57 return memcmp(a->elements, b->elements, a->length) == 0;
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Drbutil.c69 int32_t length = 0; local
83 buffer[length++]= digits[digit];
87 while (length < pad){
88 buffer[length++] = '0';/*zero padding */
93 buffer[length++]='-';
97 if(length<MAX_DIGITS){
98 buffer[length] = 0x0000;
101 num= (pad>=length) ? pad :length;
106 temp = buffer[(length
[all...]
/macosx-10.10.1/gpatch-3/patch/
H A Ddirname.c29 /* Return the length of `dirname (PATH)', or zero if PATH is
36 size_t length; local
39 for (length = base_name (path) - path; prefix_length < length; length--)
40 if (! ISSLASH (path[length - 1]))
41 return length;
55 size_t length = dir_len (path); local
56 int append_dot = (length == FILESYSTEM_PREFIX_LEN (path));
57 char *newpath = xmalloc (length
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/text/
H A DCString.cpp35 PassRefPtr<CStringBuffer> CStringBuffer::createUninitialized(size_t length) argument
37 RELEASE_ASSERT(length < (std::numeric_limits<unsigned>::max() - sizeof(CStringBuffer)));
40 size_t size = sizeof(CStringBuffer) + length + 1;
42 return adoptRef(new (NotNull, stringBuffer) CStringBuffer(length));
53 CString::CString(const char* str, size_t length)
56 ASSERT(!length);
60 init(str, length);
63 void CString::init(const char* str, size_t length)
67 m_buffer = CStringBuffer::createUninitialized(length);
68 memcpy(m_buffer->mutableData(), str, length); local
80 newUninitialized(size_t length, char*& characterBuffer) argument
96 size_t length = buffer->length(); local
[all...]
H A DStringView.h34 // Whether the string is 8-bit or 16-bit is encoded in the upper bit of the length member.
46 StringView(const LChar* characters, unsigned length) argument
48 initialize(characters, length);
51 StringView(const UChar* characters, unsigned length) argument
53 initialize(characters, length);
59 initialize(string.characters8(), string.length());
61 initialize(string.characters16(), string.length());
72 initialize(string.characters8(), string.length());
75 initialize(string.characters16(), string.length());
112 bool isEmpty() const { return !length(); }
113 unsigned length() const { return m_length & ~is16BitStringFlag; } function in class:WTF::StringView
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/mod_db4/
H A Dmm_hash.h20 int length; member in struct:_MM_Bucket
35 void *mm_hash_find(MM_Hash *table, const void *key, int length);
36 void mm_hash_add(MM_Hash *table, char *key, int length, void *data);
37 void mm_hash_delete(MM_Hash *table, char *key, int length);
38 void mm_hash_update(MM_Hash *table, char *key, int length, void *data);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Array/
H A Dregress-108440.js60 temp = (a[a.length]=a);
69 temp = (a[a.length] = self[prop]);
78 a[a.length] = a;
87 a[a.length] = a.toString();
98 a[a.length] = a.toSource();
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/netlogon/
H A Dduplicate_name.c51 dst->NetbiosName.value = malloc(src->NetbiosName.length + 1);
55 src->NetbiosName.length);
56 dst->NetbiosName.length = src->NetbiosName.length;
57 ((char *)dst->NetbiosName.value)[dst->NetbiosName.length] = '\0';
59 if (src->DnsName.length != 0) {
60 dst->DnsName.value = malloc(src->DnsName.length + 1);
63 memcpy(dst->DnsName.value, src->DnsName.value, src->DnsName.length);
64 dst->DnsName.length = src->DnsName.length;
[all...]
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-null.c67 null_hdr_print(u_int family, u_int length) argument
77 (void)printf(", length %u: ", length);
83 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
89 u_int length = h->len; local
112 null_hdr_print(family, length);
114 length -= NULL_HDRLEN;
121 ip_print(gndo, p, length);
128 ip6_print(gndo, p, length);
133 isoclns_print(p, length, caple
[all...]
H A Dprint-cip.c55 cip_print(int length) argument
58 * There is no MAC-layer header, so just print the length.
60 printf("%d: ", length);
66 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
73 u_int length = h->len; local
82 cip_print(length);
88 if (llc_print(p, length, caplen, NULL, NULL,
92 cip_print(length);
104 ip_print(gndo, p, length);
H A Dprint-ipx.c55 ipx_print(const u_char *p, u_int length) argument
71 /* take length from ipx header */
72 TCHECK(ipx->length);
73 length = EXTRACT_16BITS(&ipx->length);
75 ipx_decode(ipx, (u_char *)ipx + ipxSize, length - ipxSize);
78 printf("[|ipx %d]", length);
93 ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length) argument
100 (void)printf("ipx-ncp %d", length);
103 ipx_sap_print((u_short *)datap, length);
133 ipx_sap_print(const u_short *ipx, u_int length) argument
185 ipx_rip_print(const u_short *ipx, u_int length) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Ddevrandom.cpp55 void DevRandomGenerator::random(void *data, size_t length) argument
58 size_t bytesRead = mReader().read(data, length);
59 if (bytesRead != length) { // short read (shouldn't happen)
61 length, bytesRead);
75 void DevRandomGenerator::addEntropy(const void *data, size_t length) argument
77 if (mWriter().write(data, length) != length)
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Ddevrandom.cpp55 void DevRandomGenerator::random(void *data, size_t length) argument
58 size_t bytesRead = mReader().read(data, length);
59 if (bytesRead != length) { // short read (shouldn't happen)
61 length, bytesRead);
75 void DevRandomGenerator::addEntropy(const void *data, size_t length) argument
77 if (mWriter().write(data, length) != length)

Completed in 189 milliseconds

1234567891011>>