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

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_linesrc.c38 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length) argument
52 if (length != NULL)
53 *length = line->files->info[line->file].length;
H A Ddwarf_filesrc.c39 Dwarf_Word *length)
47 if (length != NULL)
48 *length = file->info[idx].length;
38 dwarf_filesrc(Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, Dwarf_Word *length) argument
/external/libchrome/crypto/
H A Drandom.cc13 void RandBytes(void *bytes, size_t length) { argument
17 base::RandBytes(bytes, length);
/external/bison/lib/
H A Dbasename.c31 size_t length; local
39 length = base_len (base);
40 if (ISSLASH (base[length]))
41 length++;
48 char *p = xmalloc (length + 3);
51 memcpy (p + 2, base, length);
52 p[length + 2] = '\0';
57 return xstrndup (base, length);
H A Ddirname-lgpl.c26 /* Return the length of the prefix of FILE that will be used by
35 size_t length; local
48 for (length = last_component (file) - file;
49 prefix_length < length; length--)
50 if (! ISSLASH (file[length - 1]))
52 return length;
73 size_t length = dir_len (file); local
74 bool append_dot = (length == 0
76 && length
[all...]
/external/fio/crc/
H A Dcrc32c.c118 uint32_t crc32c_sw(unsigned char const *data, unsigned long length) argument
122 while (length--)
H A Dcrc64.c95 unsigned long long fio_crc64(const unsigned char *buffer, unsigned long length) argument
99 while (length--)
H A Dcrc32.c76 uint32_t fio_crc32(const void *buffer, unsigned long length) argument
81 while (length--)
/external/skia/tests/
H A DSkBase64Test.cpp19 size_t length = 256 - offset; local
20 size_t encodeLength = SkBase64::Encode(all + offset, length, nullptr);
22 SkBase64::Encode(all + offset, length, src.get());
/external/syslinux/com32/include/syslinux/
H A Dkeyboard.h41 uint16_t length; member in struct:syslinux_keyboard_map
/external/zopfli/src/zopfli/
H A Dcache.h32 Cache used by ZopfliFindLongestMatch to remember previously found length/dist
37 to every possible shorter-than-the-best length (the so called "sublen" array).
40 unsigned short* length; member in struct:ZopfliLongestMatchCache
53 size_t pos, size_t length,
58 size_t pos, size_t length,
60 /* Returns the length up to which could be stored in the cache. */
62 size_t pos, size_t length);
/external/ImageMagick/MagickCore/
H A Dstring_.h36 length, member in struct:_StringInfo
/external/boringssl/include/openssl/
H A Dbuf.h72 size_t length; /* current number of bytes */ member in struct:buf_mem_st
87 /* BUF_MEM_grow ensures that |buf| has length |len| and allocates memory if
88 * needed. If the length of |buf| increased, the new bytes are filled with
89 * zeros. It returns the length of |buf|, or zero if there's an error. */
/external/boringssl/src/include/openssl/
H A Dbuf.h72 size_t length; /* current number of bytes */ member in struct:buf_mem_st
87 /* BUF_MEM_grow ensures that |buf| has length |len| and allocates memory if
88 * needed. If the length of |buf| increased, the new bytes are filled with
89 * zeros. It returns the length of |buf|, or zero if there's an error. */
/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/fec/
H A Dcpu_mode_ppc.c28 size_t length = sizeof(hasVectorUnit); local
29 int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0);
/external/icu/icu4c/source/common/unicode/
H A Drep.h51 * in the string: <code>length()</code>, <code>charAt()</code>,
87 inline int32_t length() const;
91 * @param offset an integer between 0 and <code>length()</code>-1
105 * @param offset an integer between 0 and <code>length()</code>-1
141 * <= length()</code>.
154 // convention; API taking start/length are named <operation>, and
167 * length()</code>.
224 * Virtual version of length().
245 Replaceable::length() const { function in class:Replaceable
/external/icu/icu4c/source/common/
H A Dunistr_props.cpp37 int32_t oldLength = this->length();
38 int32_t i = oldLength, length; local
42 length = i;
51 if(length < oldLength) {
52 setLength(length);
60 if(i >= length) {
63 U16_NEXT(array, i, length, c);
/external/libvncserver/libvncserver/tightvnc-filetransfer/
H A Dfiletransfermsg.h36 unsigned int length; member in struct:_FileTransferMsg
/external/libxml2/doc/examples/
H A Dparse3.c21 * @length: the length in bytes
26 example3Func(const char *content, int length) { argument
33 doc = xmlReadMemory(content, length, "noname.xml", NULL, 0);
/external/strace/mpers-m32/
H A Dstruct_mtd_oob_buf.h6 uint32_t length; member in struct:__anon18944
/external/strace/mpers-mx32/
H A Dstruct_mtd_oob_buf.h6 uint32_t length; member in struct:__anon19113
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DInput.cpp28 Input::Input(int count, const char* const string[], const int length[]) : argument
36 int len = length ? length[i] : -1;
/external/tcpdump/
H A Dprint-calm-fast.c40 calm_fast_print(netdissect_options *ndo, const u_char *bp, u_int length, const struct lladdr_info *src) argument
46 if (length < 2)
50 length -= 2;
61 ND_DEFAULTPRINT(bp, length);

Completed in 8060 milliseconds

1234567891011>>