Searched defs:length (Results 76 - 100 of 2288) sorted by relevance

1234567891011>>

/external/openssl/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
61 return UI_UTIL_read_pw_string(buf, length, prompt, verify);
/external/skia/src/core/
H A DSkScalar.cpp14 const SkScalar values[], int length) {
15 SkASSERT(length > 0);
19 for (int i = 1; i < length; i++)
23 while (right < length && searchKey > keys[right])
27 if (length == right)
28 return values[length-1];
13 SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[], const SkScalar values[], int length) argument
/external/skia/tests/
H A DPathMeasureTest.cpp20 SkScalar length = meas.getLength(); local
21 SkASSERT(length == SK_Scalar1*4);
27 length = meas.getLength();
28 REPORTER_ASSERT(reporter, length == SK_Scalar1*5);
33 length = meas.getLength();
34 // SkDebugf("circle arc-length = %g\n", length);
37 SkScalar d = length * i / 8;
42 SkDebugf("circle arc-length=%g, pos[%g %g] tan[%g %g]\n",
55 length
[all...]
/external/tcpdump/
H A Dprint-beep.c33 /* Check for a string but not go beyond length
52 beep_print(const u_char *bp, u_int length) argument
55 if (l_strnstart("MSG", 4, (const char *)bp, length)) /* A REQuest */
57 else if (l_strnstart("RPY ", 4, (const char *)bp, length))
59 else if (l_strnstart("ERR ", 4, (const char *)bp, length))
61 else if (l_strnstart("ANS ", 4, (const char *)bp, length))
63 else if (l_strnstart("NUL ", 4, (const char *)bp, length))
65 else if (l_strnstart("SEQ ", 4, (const char *)bp, length))
67 else if (l_strnstart("END", 4, (const char *)bp, length))
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-eap.c45 unsigned char length[2]; member in struct:eap_packet_t
55 u_int length _U_)
62 ND_PRINT((ndo, "EAP code=%u id=%u length=%u ",
63 eap->code, eap->id, (eap->length[0]<<8) + eap->length[1]));
H A Dprint-enc.c51 register u_int length = h->len; local
72 length -= ENC_HDRLEN;
74 ip_print(gndo, p + ENC_HDRLEN, length);
H A Dprint-mpls.c61 mpls_print(const u_char *bp, u_int length) argument
92 ip_print(gndo, p, length - (p - bp));
94 else printf(", IP, length: %u",length);
100 ip6_print(p, length - (p - bp));
102 else printf(", IPv6, length: %u",length);
134 ip_print(gndo, p, length - (p - bp));
136 else printf(", IP, length: %u",length);
[all...]
H A Dprint-null.c68 null_hdr_print(u_int family, u_int length) argument
78 (void)printf(", length %u: ", length);
84 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
90 u_int length = h->len; local
113 null_hdr_print(family, length);
115 length -= NULL_HDRLEN;
122 ip_print(gndo, p, length);
129 ip6_print(p, length);
134 isoclns_print(p, length, caple
[all...]
/external/v8/test/cctest/
H A Dtest-fixed-dtoa.cc45 int length; local
48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
68 CHECK(FastFixedDtoa(1e21, 5, buffer, &length, &point));
73 CHECK(FastFixedDtoa(999999999999999868928.00, 2, buffer, &length, &point));
78 &length, &point));
82 CHECK(FastFixedDtoa(1.5, 5, buffer, &length,
496 int length; local
[all...]
/external/v8/test/mjsunit/
H A Darray-indexing.js30 // Sparse arrays with length 42000.
43 var dense_object = { 0: 42, 1: 37, length: 2 };
44 var sparse_object = { 0: 42, 100000: 37, length: 200000 };
45 var funky_object = { 10:42, 100000: 42, 100001: 37, length: 50000 };
46 var infinite_object = { 10: 42, 100000: 37, length: Infinity };
55 assertEquals(-1, array.indexOf(3, array.length));
126 assertEquals(9, array.lastIndexOf(1, array.length));
/external/valgrind/main/coregrind/m_demangle/
H A Ddyn-string.h26 int length; /* The actual length of the string. */ member in struct:dyn_string
30 /* The length STR, in bytes, not including the terminating NUL. */
32 ((STR)->length)
/external/webkit/LayoutTests/storage/
H A Dexecute-sql-args.js5 throwOnGetLengthObject.__defineGetter__("length", function () { throw "Cannot get length of this object."; });
7 var throwOnGetZeroObject = { length: 1 };
20 '"", { length: 0 }',
21 '"", { length: 1, 0: "arg0" }',
/external/webkit/Source/JavaScriptCore/API/
H A DOpaqueJSString.h43 static PassRefPtr<OpaqueJSString> create(const UChar* characters, unsigned length) argument
45 return adoptRef(new OpaqueJSString(characters, length));
51 unsigned length() { return this ? m_length : 0; } function in struct:OpaqueJSString
65 OpaqueJSString(const UChar* characters, unsigned length) argument
66 : m_length(length)
68 m_characters = new UChar[length];
69 memcpy(m_characters, characters, length * sizeof(UChar));
/external/webkit/Source/WebCore/bindings/js/
H A DJSSQLTransactionSyncCustom.cpp64 JSValue lengthValue = object->get(exec, exec->propertyNames().length);
67 unsigned length = lengthValue.toUInt32(exec); local
71 for (unsigned i = 0 ; i < length; ++i) {
H A DJSStyleSheetCustom.cpp62 unsigned length = sheet->length(); local
63 for (unsigned i = 0; i < length; ++i)
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8NamedNodesCollection.h49 virtual unsigned length() const { return m_nodes.size(); } function in class:WebCore::V8NamedNodesCollection
/external/webkit/Source/WebCore/css/
H A DCSSPropertyLonghand.h41 unsigned length() const { return m_length; } function in class:WebCore::CSSPropertyLonghand
H A DFontFamilyValue.cpp36 unsigned length = m_familyName.length(); local
37 while (length >= 3) {
39 switch (m_familyName[length - 1]) {
50 for (unsigned i = length - 2; i > 0; --i) {
56 length = first;
58 m_familyName.truncate(length);
61 void FontFamilyValue::appendSpaceSeparated(const UChar* characters, unsigned length) argument
64 m_familyName.append(characters, length);
H A DStyleList.h35 unsigned length() { return m_children.size(); } function in class:WebCore::StyleList
36 StyleBase* item(unsigned num) { return num < length() ? m_children[num].get() : 0; }
/external/webkit/Source/WebCore/dom/
H A DClientRectList.cpp50 unsigned ClientRectList::length() const function in class:WebCore::ClientRectList
H A DDecodedDataDocumentParser.cpp40 void DecodedDataDocumentParser::appendBytes(DocumentWriter* writer , const char* data, int length, bool shouldFlush) argument
42 if (!length && !shouldFlush)
46 String decoded = decoder->decode(data, length);
H A DTouchList.h44 unsigned length() const { return m_values.size(); } function in class:WebCore::TouchList
/external/webkit/Source/WebCore/fileapi/
H A DFileWriterBase.cpp50 void FileWriterBase::initialize(PassOwnPtr<AsyncFileWriter> writer, long long length) argument
53 ASSERT(length >= 0);
55 m_length = length;
/external/webkit/Source/WebCore/html/canvas/
H A DFloat32Array.cpp32 PassRefPtr<Float32Array> Float32Array::create(unsigned length) argument
34 return TypedArrayBase<float>::create<Float32Array>(length);
37 PassRefPtr<Float32Array> Float32Array::create(const float* array, unsigned length) argument
39 return TypedArrayBase<float>::create<Float32Array>(array, length);
42 PassRefPtr<Float32Array> Float32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) argument
44 return TypedArrayBase<float>::create<Float32Array>(buffer, byteOffset, length);
47 Float32Array::Float32Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) argument
48 : TypedArrayBase<float>(buffer, byteOffset, length)
54 return subarray(start, length());

Completed in 422 milliseconds

1234567891011>>