HomeSort by relevance Sort by last modified time
    Searched refs:length (Results 276 - 300 of 26992) sorted by null

<<11121314151617181920>>

  /external/elfutils/libdw/
dwarf_linesrc.c 38 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length)
52 if (length != NULL)
53 *length = line->files->info[line->file].length;
  /external/google-breakpad/src/common/windows/
omap_internal.h 59 // The length of the original untransformed image.
68 DWORD length; member in struct:google_breakpad::AddressRange
70 AddressRange() : rva(0), length(0) { }
71 AddressRange(DWORD rva, DWORD length) : rva(rva), length(length) { }
74 DWORD end() const { return rva + length; }
84 return rva == rhs.rva && length == rhs.length;
98 // The length of the address range
99 DWORD length; member in struct:google_breakpad::MappedRange
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
NumberStringBuilder.java 35 private int length; field in class:NumberStringBuilder
45 length = 0;
53 chars = Arrays.copyOf(source.chars, source.chars.length);
54 fields = Arrays.copyOf(source.fields, source.fields.length);
56 length = source.length;
60 public int length() { method in class:NumberStringBuilder
61 return length;
65 return Character.codePointCount(this, 0, length());
71 assert index < length;
    [all...]
  /external/icu/icu4c/source/common/
bytestrieiterator.cpp 65 int32_t length=remainingMatchLength_; // Actual remaining match length minus 1. local
66 if(length>=0) {
68 ++length;
69 if(maxLength_>0 && length>maxLength_) {
70 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal.
72 str_->append(reinterpret_cast<const char *>(pos_), length, errorCode); local
73 pos_+=length;
74 remainingMatchLength_-=length;
87 int32_t length=remainingMatchLength_+1; // Remaining match length local
114 int32_t length=stack_->elementAti(stackSize-1); local
159 int32_t length=node-kMinLinearMatch+1; local
165 str_->append(reinterpret_cast<const char *>(pos), length, errorCode); local
    [all...]
patternprops.h 64 static const UChar *skipWhiteSpace(const UChar *s, int32_t length);
67 * @return s except with leading and trailing Pattern_White_Space removed and length adjusted.
69 static const UChar *trimWhiteSpace(const UChar *s, int32_t &length);
76 static UBool isIdentifier(const UChar *s, int32_t length);
83 static const UChar *skipIdentifier(const UChar *s, int32_t length);
ucharstrieiterator.cpp 64 int32_t length=remainingMatchLength_; // Actual remaining match length minus 1. local
65 if(length>=0) {
67 ++length;
68 if(maxLength_>0 && length>maxLength_) {
69 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal.
71 str_.append(pos_, length);
72 pos_+=length;
73 remainingMatchLength_-=length;
86 int32_t length=remainingMatchLength_+1; // Remaining match length local
113 int32_t length=stack_->elementAti(stackSize-1); local
173 int32_t length=node-kMinLinearMatch+1; local
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
swapimpl.h 30 * its length. See UDataSwapFn.
42 const void *inData, int32_t length, void *outData,
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
NumberStringBuilder.java 33 private int length; field in class:NumberStringBuilder
43 length = 0;
51 chars = Arrays.copyOf(source.chars, source.chars.length);
52 fields = Arrays.copyOf(source.fields, source.fields.length);
54 length = source.length;
58 public int length() { method in class:NumberStringBuilder
59 return length;
63 return Character.codePointCount(this, 0, length());
69 assert index < length;
    [all...]
  /external/jline/src/src/main/java/jline/
CursorBuffer.java 22 public int length() { method in class:CursorBuffer
23 return buffer.length();
35 if (buffer.length() == 0) {
39 buffer.delete(0, buffer.length());
54 if (isOvertyping() && cursor < buffer.length()) {
67 if (buffer.length() == 0) {
73 cursor += str.length();
75 if (isOvertyping() && cursor < buffer.length()) {
76 buffer.delete(cursor, (cursor + str.length()));
  /external/libcxx/test/std/re/re.submatch/re.submatch.members/
length.pass.cpp 14 // difference_type length() const;
26 assert(sm.length() == 0);
31 assert(sm.length() == 3);
37 assert(sm.length() == 0);
42 assert(sm.length() == 3);
  /external/libcxx/test/std/strings/string.view/string_view.literals/
literal1.pass.cpp 24 assert(foo.length() == 0);
literal2.pass.cpp 24 assert(foo.length() == 0);
  /external/libpng/contrib/libtests/
fakepng.c 23 put_chunk(const unsigned char *chunk, uInt length)
27 put_uLong(length-4); /* Exclude the tag */
29 fwrite(chunk, length, 1, stdout);
32 put_uLong(crc32(crc, chunk, length));
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/unistd_h/
2-1-buildonly.c 11 * int ftruncate(int fildes, off_t length);
17 typedef int (*ftruncate_test) (int fildes, off_t length);
  /external/mesa3d/src/mesa/main/
objectlabel.h 45 _mesa_ObjectLabel(GLenum identifier, GLuint name, GLsizei length,
49 GLsizei *length, GLchar *label);
51 _mesa_ObjectPtrLabel(const void *ptr, GLsizei length, const GLchar *label);
53 _mesa_GetObjectPtrLabel(const void *ptr, GLsizei bufSize, GLsizei *length,
  /external/pdfium/third_party/base/allocator/partition_allocator/
page_allocator.cc 52 size_t length,
54 DCHECK(!(length & kPageAllocationGranularityOffsetMask));
61 ret = VirtualAlloc(hint, length, MEM_RESERVE | MEM_COMMIT, access_flag);
68 ret = mmap(hint, length, access_flag, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
77 // Trims base to given length and alignment. Windows returns null on failure and
116 size_t length,
119 DCHECK(length >= kPageAllocationGranularity);
120 DCHECK(!(length & kPageAllocationGranularityOffsetMask));
138 void* ret = SystemAllocPages(address, length, page_accessibility);
143 FreePages(ret, length);
    [all...]
  /external/perfetto/src/base/
string_utils.cc 23 return str.compare(0, prefix.length(), prefix) == 0;
  /external/puffin/src/
memory_stream.cc 52 bool MemoryStream::Read(void* buffer, size_t length) {
55 TEST_AND_RETURN_FALSE(offset_ + length <= read_memory_->size());
56 memcpy(buffer, read_memory_->data() + offset_, length);
57 offset_ += length;
61 bool MemoryStream::Write(const void* buffer, size_t length) {
65 if (offset_ + length > write_memory_->size()) {
66 write_memory_->resize(offset_ + length);
68 memcpy(write_memory_->data() + offset_, buffer, length);
69 offset_ += length;
  /external/tcpdump/
print-calm-fast.c 40 calm_fast_print(netdissect_options *ndo, const u_char *bp, u_int length, const struct lladdr_info *src)
46 if (length < 2)
50 length -= 2;
61 ND_DEFAULTPRINT(bp, length);
  /external/v8/src/
fixed-dtoa.h 30 Vector<char> buffer, int* length, int* decimal_point);
  /external/webrtc/webrtc/call/
transport_adapter.cc 24 size_t length,
29 return transport_->SendRtp(packet, length, options);
32 bool TransportAdapter::SendRtcp(const uint8_t* packet, size_t length) {
36 return transport_->SendRtcp(packet, length);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
bw_expand.h 33 int16_t length /* (i) the length of lpc coefficient vectors */
decoder_interpolate_lsf.h 33 int16_t length, /* (i) length of lsf coefficient vector */
interpolate.h 33 int16_t length); /* (i) number of sample is vectors */
lsf_interpolate_to_poly_dec.h 34 int16_t length /* (i) length of coefficient vectors */

Completed in 1159 milliseconds

<<11121314151617181920>>