HomeSort by relevance Sort by last modified time
    Searched defs:length (Results 226 - 250 of 6987) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
trace.h 20 u8 length; member in struct:trace_entry
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
segment.h 43 * range: optional (offset, length) arguments
47 size_t length; member in struct:range
  /external/ltp/testcases/kernel/syscalls/pipe/
pipe08.c 69 int written, length; local
93 length = strlen(wrbuf);
100 written = write(pipefd[1], wrbuf, length);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableFileInputStream.java 82 * Calls {@link RandomAccessFile#length() randomAccessFile.length()}.
84 public long length() throws IOException { method in class:SeekableFileInputStream
85 return randomAccessFile.length();
  /external/mesa3d/src/gallium/drivers/svga/include/
svga3d_caps.h 85 uint32 length; member in struct:SVGA3dCapsRecordHeader
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
ListCommandHandler.java 78 session.sendData(directoryListing.getBytes(), directoryListing.length());
NlstCommandHandler.java 55 session.sendData(directoryListing.getBytes(), directoryListing.length());
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
ListCommandHandler.java 63 session.sendData(directoryListing.getBytes(), directoryListing.length());
NlstCommandHandler.java 56 session.sendData(directoryListing.getBytes(), directoryListing.length());
  /external/mockito/src/test/java/org/mockito/exceptions/base/
TraceBuilder.java 24 assert methods.length == 0 || classes.length == 0;
  /external/nist-sip/java/gov/nist/javax/sip/address/
RFC2396UrlDecoder.java 52 StringBuffer translatedUri = new StringBuffer(uri.length());
53 byte[] encodedchars = new byte[uri.length() / 3];
55 int length = uri.length(); local
57 while (i < length) {
61 while (i < length && uri.charAt(i) == '%') {
62 if (i + 2 < length) {
  /external/owasp/sanitizer/src/main/org/owasp/html/
Strings.java 59 int length = a.length(); local
60 if (b.length() != length) { return false; }
61 for (int i = length; --i >= 0;) {
77 if (aoffset + n > a.length() || boffset + n > b.length()) { return false; }
94 for (int i = s.length(); --i >= 0;) {
112 for (int i = s.length(); --i >= 0;) {
130 for (int i = s.length(); --i >= 0;)
    [all...]
  /external/pdfium/fxbarcode/
cbc_ean13.cpp 37 int32_t length = encodeContents.GetLength(); local
38 if (length <= 12) {
39 for (int32_t i = 0; i < 12 - length; i++)
47 if (length > 13)
cbc_ean8.cpp 36 int32_t length = encodeContents.GetLength(); local
37 if (length <= 7) {
38 for (int32_t i = 0; i < 7 - length; i++)
45 if (length > 8)
cbc_upca.cpp 36 int32_t length = encodeContents.GetLength(); local
37 if (length <= 11) {
38 for (int32_t i = 0; i < 11 - length; i++)
46 if (length > 12)
  /external/pdfium/fxjs/xfa/
cjx_list.cpp 89 void CJX_List::length(CFXJSE_Value* pValue, function in class:CJX_List
  /external/pdfium/third_party/libtiff/
t4.h 33 * worthwhile to make code & length 8 bits.
36 unsigned short length; /* bit length of g3 code */ member in struct:tableentry
38 short runlen; /* run length in bits */
43 /* status values returned instead of a run length */
52 * run length, or (run length / 64) + a fixed offset.
  /external/piex/src/binary_parse/
cached_paged_byte_array.h 40 virtual size_t length() const { return paged_byte_array_->length(); } function in class:piex::binary_parse::CachedPagedByteArray
  /external/proguard/src/proguard/classfile/instruction/
LookUpSwitchInstruction.java 114 writeInt(code, offset, cases.length); offset += 4;
117 for (int index = 0; index < cases.length; index++)
125 public int length(int offset) method in class:LookUpSwitchInstruction
127 return 1 + (-(offset+1) & 3) + 8 + cases.length * 8;
TableSwitchInstruction.java 100 for (int index = 0; index < jumpOffsets.length; index++)
121 int length = highCase - lowCase + 1; local
122 for (int index = 0; index < length; index++)
129 public int length(int offset) method in class:TableSwitchInstruction
  /external/proguard/src/proguard/gui/splash/
TypeWriterString.java 57 int stringLength = string.length();
58 int length = (int)(stringLength * t + 0.5); local
59 if (length != cachedLength)
61 cachedLength = length;
62 cachedString = string.substring(0, length);
63 if (t > 0.0 && length < stringLength)
  /external/python/cpython2/Lib/xml/dom/
minicompat.py 63 "attempt to modify read-only attribute 'length'")
65 length = property(_get_length, _set_length, variable in class:NodeList
96 "attempt to modify read-only attribute 'length'")
98 length = property(_get_length, _set_length, variable in class:EmptyNodeList
  /external/python/cpython3/Lib/xml/dom/
minicompat.py 62 "attempt to modify read-only attribute 'length'")
64 length = property(_get_length, _set_length, variable in class:NodeList
95 "attempt to modify read-only attribute 'length'")
97 length = property(_get_length, _set_length, variable in class:EmptyNodeList
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SpannableStringBuilderTest.java 24 assertThat(builder.length(), equalTo(3));
43 assertThat(builder.length(), equalTo(3));
45 assertThat( builder.length(), equalTo(0));
  /external/sfntly/cpp/src/test/
file_io_test.cc 37 size_t length = ftell(file_handle); local
40 b1.resize(length);
41 size_t bytes_read = fread(&(b1[0]), 1, length, file_handle);
42 EXPECT_EQ(bytes_read, length);
48 EXPECT_EQ(length, (size_t)is.Available());
50 is.Read(&b2, 0, length);
52 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), length), 0);
98 size_t length = ftell(file_handle); local
101 b1.resize(length);
102 size_t bytes_read = fread(&(b1[0]), 1, length, file_handle)
    [all...]

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 91011>>