Searched defs:length (Results 1 - 25 of 2283) sorted by relevance

1234567891011>>

/external/dropbear/libtomcrypt/src/encauth/eax/
H A Deax_addheader.c23 @param length The length of the header data
27 unsigned long length)
31 return omac_process(&eax->headeromac, header, length);
26 eax_addheader(eax_state *eax, const unsigned char *header, unsigned long length) argument
H A Deax_decrypt.c25 @param length The length (octets) of the ciphertext
29 unsigned long length)
38 if ((err = omac_process(&eax->ctomac, ct, length)) != CRYPT_OK) {
43 return ctr_decrypt(ct, pt, length, &eax->ctr);
28 eax_decrypt(eax_state *eax, const unsigned char *ct, unsigned char *pt, unsigned long length) argument
H A Deax_encrypt.c25 @param length The length of the plaintext (octets)
29 unsigned long length)
38 if ((err = ctr_encrypt(pt, ct, length, &eax->ctr)) != CRYPT_OK) {
43 return omac_process(&eax->ctomac, ct, length);
28 eax_encrypt(eax_state *eax, const unsigned char *pt, unsigned char *ct, unsigned long length) argument
/external/elfutils/libdw/
H A Ddwarf_linesrc.c59 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length) argument
73 if (length != NULL)
74 *length = line->files->info[line->file].length;
H A Ddwarf_filesrc.c60 Dwarf_Word *length)
68 if (length != NULL)
69 *length = file->info[idx].length;
59 dwarf_filesrc(Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, Dwarf_Word *length) argument
H A Ddwarf_nextcu.c91 1. A 4-byte or 12-byte unsigned integer representing the length
93 including the length field itself. In the 32-bit DWARF format,
97 that gives the actual length (see Section 7.2.2).
106 the 32-bit DWARF format, this is a 4-byte unsigned length; in
107 the 64-bit DWARF format, this is an 8-byte unsigned length (see
114 uint64_t length = read_4ubyte_unaligned_inc (dwarf, bytes); local
119 if (length == DWARF3_LENGTH_64_BIT)
121 else if (unlikely (length >= DWARF3_LENGTH_MIN_ESCAPE_CODE
122 && length <= DWARF3_LENGTH_MAX_ESCAPE_CODE))
136 if (length
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-515.js32 var length = 2048; variable
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMHTMLOptionsCollectionCustom.cpp26 unsigned WebDOMHTMLOptionsCollection::length() const function in class:WebDOMHTMLOptionsCollection
31 return impl()->length();
34 void WebDOMHTMLOptionsCollection::setLength(unsigned length) argument
40 impl()->setLength(length, ec);
/external/webkit/Source/WebCore/platform/win/
H A DLocalizedStringsWin.cpp52 DWORD length = ::GetModuleFileNameW(instanceHandle(), dllPathBuffer, WTF_ARRAY_LENGTH(dllPathBuffer)); local
53 ASSERT(length);
54 ASSERT(length < WTF_ARRAY_LENGTH(dllPathBuffer));
56 RetainPtr<CFStringRef> dllPath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<const UniChar*>(dllPathBuffer), length, kCFAllocatorNull));
/external/webkit/Source/WebCore/storage/
H A DSQLResultSetRowList.cpp36 unsigned SQLResultSetRowList::length() const function in class:WebCore::SQLResultSetRowList
/external/webkit/Source/WebKit/chromium/src/
H A DChromiumOSRandomSource.cpp39 void cryptographicallyRandomValuesFromOS(unsigned char* buffer, size_t length) argument
41 WebKit::webKitClient()->cryptographicallyRandomValues(buffer, length);
/external/webkit/Source/WebKit2/Shared/win/
H A DWebKitBundle.cpp45 DWORD length = ::GetModuleFileNameW(gInstance, dllPathBuffer, WTF_ARRAY_LENGTH(dllPathBuffer)); local
46 ASSERT(length && length < WTF_ARRAY_LENGTH(dllPathBuffer));
48 RetainPtr<CFStringRef> dllPath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<const UniChar*>(dllPathBuffer), length, kCFAllocatorNull));
/external/chromium/net/disk_cache/
H A Dhash.h19 inline uint32 Hash(const char* key, size_t length) { argument
20 return SuperFastHash(key, static_cast<int>(length));
/external/tcpdump/
H A Dprint-netbios.c49 netbios_print(struct p8022Hdr *nb, u_int length) argument
51 if (length < p8022Size) {
52 (void)printf(" truncated-netbios %d", length);
68 netbios_decode(nb, (u_char *)nb + p8022Size, length - p8022Size);
86 /* take length from ipx header */
87 length = EXTRACT_16BITS(&ipx->length);
89 ipx_decode(ipx, (u_char *)ipx + ipxSize, length - ipxSize);
/external/v8/test/mjsunit/
H A Darray-pop.js35 assertEquals(6, a.length, "length 1st pop");
38 assertEquals(5, a.length, "length 2nd pop");
41 assertEquals(4, a.length, "length 3rd pop");
44 assertEquals(3, a.length, "length 4th pop");
47 assertEquals(2, a.length, "length
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DOSRandomSource.cpp49 void cryptographicallyRandomValuesFromOS(unsigned char* buffer, size_t length) argument
53 while (length > sizeof(random)) {
56 length -= sizeof(random);
59 if (length > 0) {
61 memcpy(buffer, &random, length);
68 if (read(fd, buffer, length) != static_cast<ssize_t>(length))
76 if (!CryptGenRandom(hCryptProv, length, buffer))
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPixelArray.cpp34 PassRefPtr<CanvasPixelArray> CanvasPixelArray::create(unsigned length) argument
36 return adoptRef(new CanvasPixelArray(length));
44 CanvasPixelArray::CanvasPixelArray(unsigned length) argument
45 : m_data(ByteArray::create(length))
/external/webkit/Source/WebCore/page/
H A DSpeechInputResultList.h44 size_t length() { return m_results.size(); } function in class:WebCore::SpeechInputResultList
/external/chromium/chrome/browser/sync/util/
H A Dcrypto_helpers.h26 void AddData(const uint8* data, int length);
27 void AddData(const char* data, int length) { argument
28 AddData(reinterpret_cast<const uint8*>(data), length); local
/external/clang/test/CodeGen/
H A D2002-03-12-StructInitialize.c7 long length; member in struct:Connection_Type
H A D2002-03-12-StructInitializer.c3 /* GCC was not emitting string constants of the correct length when
11 long length; member in struct:Connection_Type
/external/grub/stage2/
H A Dstage1_5.c25 disk_read_savesect_func (int sector, int offset, int length) argument
/external/icu4c/common/unicode/
H A Drep.h49 * in the string: <code>length()</code>, <code>charAt()</code>,
85 inline int32_t length() const;
89 * @param offset an integer between 0 and <code>length()</code>-1
103 * @param offset an integer between 0 and <code>length()</code>-1
139 * <= length()</code>.
152 // convention; API taking start/length are named <operation>, and
165 * length()</code>.
222 * Virtual version of length().
241 Replaceable::length() const { function in class:Replaceable
/external/icu4c/common/
H A Dunistr_props.cpp34 int32_t oldLength = this->length();
35 int32_t i = oldLength, length; local
39 length = i;
48 if(length < oldLength) {
49 setLength(length);
57 if(i >= length) {
60 U16_NEXT(array, i, length, c);
/external/icu4c/layout/
H A DSubtableProcessor.h32 le_int16 length; member in class:SubtableProcessor

Completed in 1004 milliseconds

1234567891011>>