HomeSort by relevance Sort by last modified time
    Searched defs:Length (Results 26 - 50 of 218) sorted by null

12 3 4 5 6 7 8 9

  /external/sfntly/cpp/src/sfntly/data/
byte_array.cc 29 int32_t ByteArray::Length() { return filled_length_; }
49 int32_t length) {
54 int32_t actual_length = std::min<int32_t>(length, filled_length_ - index);
79 int32_t length) {
89 int32_t actual_length = std::min<int32_t>(length, Size() - index);
96 return CopyTo(array, 0, Length());
99 int32_t ByteArray::CopyTo(ByteArray* array, int32_t offset, int32_t length) {
100 return CopyTo(0, array, offset, length);
104 int32_t src_offset, int32_t length) {
106 if (array->Size() < dst_offset + length) { // insufficient spac
    [all...]
  /external/v8/src/ast/
modules.h 46 int Length() {
  /external/webrtc/webrtc/base/
bytebuffer.h 44 size_t Length() const { return end_ - start_; }
86 // Clears the contents of the buffer. After this, Length() will be 0.
  /external/webrtc/webrtc/modules/audio_coding/neteq/
dtmf_buffer.cc 190 size_t DtmfBuffer::Length() const {
  /frameworks/base/media/mca/filterpacks/native/base/
vec_types.h 40 T Length() {
geometry.cpp 25 float Point::Length() const {
30 float length = Length(); local
31 if (length == 0.0f) {
34 x_ *= new_length / length;
35 y_ *= new_length / length;
41 return diff.Length();
89 bool Rect::ExpandToMinLength(float length) {
90 if (width <= 0.0f || height <= 0.0f || length <= 0.0f) {
95 if (length > current_length)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
nettypes.h 32 SHORT Length;
rkeysvcc.h 20 USHORT Length;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
hiddevice.cpp 78 ULONG Length;
83 Length = 0;
101 Result = SetupDiGetDeviceInterfaceDetail(hDevInfo, &devInfoData, NULL, 0, &Length, NULL);
103 detailData = (PSP_DEVICE_INTERFACE_DETAIL_DATA)malloc(Length);
105 Result = SetupDiGetDeviceInterfaceDetail(hDevInfo, &devInfoData, detailData, Length, &Required, NULL);
  /external/llvm/include/llvm/ADT/
StringRef.h 35 /// array and a length, which need not be null terminated.
52 /// The length of the string.
53 size_t Length;
58 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) {
59 if (Length == 0) { return 0; }
60 return ::memcmp(Lhs,Rhs,Length);
68 /*implicit*/ StringRef() : Data(nullptr), Length(0) {}
74 Length = ::strlen(Str); // invoking strlen(NULL) is undefined behavior
77 /// Construct a string ref from a pointer and length.
79 /*implicit*/ StringRef(const char *data, size_t length)
    [all...]
ArrayRef.h 21 /// consecutively in memory), i.e. a start pointer and a length. It allows
45 size_type Length;
52 /*implicit*/ ArrayRef() : Data(nullptr), Length(0) {}
55 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {}
59 : Data(&OneElt), Length(1) {}
61 /// Construct an ArrayRef from a pointer and length.
62 /*implicit*/ ArrayRef(const T *data, size_t length)
63 : Data(data), Length(length) {}
67 : Data(begin), Length(end - begin) {
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h 47 uint32_t Length;
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 58 DWORD Length = 0;
59 return (S_OK == LineNumber->get_length(&Length)) ? Length : 0;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RTDyldMemoryManager.cpp 82 uint32_t Length = *((const uint32_t *)P);
91 return P + Length;
  /external/llvm/lib/IR/
GCOV.cpp 83 uint32_t Length;
85 if (!Buffer.readInt(Length))
93 Buffer.advanceCursor(Length - 3);
96 uint32_t Length;
97 if (!Buffer.readInt(Length))
99 Buffer.advanceCursor(Length);
129 return false; // Function header length
195 // Read the length of this line table.
252 return false; // Function header length
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 108 unsigned Length = 0;
110 Length += Columns[I];
111 for (unsigned I = 0; I < Length; ++I)
  /external/webrtc/webrtc/modules/video_coding/
encoded_frame.h 60 * Get frame length
62 size_t Length() const { return _length; }
  /frameworks/base/media/mca/filterfw/native/core/
geometry.cpp 26 float Point::Length() const {
31 float length = Length(); local
32 if (length == 0.0f) {
35 x_ *= new_length / length;
36 y_ *= new_length / length;
42 return diff.Length();
90 bool Rect::ExpandToMinLength(float length) {
91 if (width <= 0.0f || height <= 0.0f || length <= 0.0f) {
96 if (length > current_length)
    [all...]
  /external/clang/include/clang/Edit/
Commit.h 39 unsigned Length;
131 void commitRemove(FileOffset offset, unsigned length);
  /external/clang/lib/AST/
RawCommentList.cpp 161 const unsigned Length = EndOffset - BeginOffset;
162 if (Length < 2)
174 return StringRef(BufferStart + BeginOffset, Length);
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 55 struct Length {
56 explicit Length(PassRefPtr<CalculationValue>); // expected-error {{unknown type name}} \
62 Length m_width;
63 Length m_height;
  /external/clang/tools/clang-format/
ClangFormat.cpp 42 "several -offset and -length pairs.\n"
46 Lengths("length",
47 cl::desc("Format a range of this length (in bytes).\n"
49 "several -offset and -length pairs.\n"
51 "-length, clang-format will format up to the end\n"
60 "Can't be used with -offset and -length.\n"
143 errs() << "error: cannot use -lines with -offset/-length\n";
162 unsigned Length = Sources.getFileOffset(End) - Offset;
163 Ranges.push_back(tooling::Range(Offset, Length));
172 errs() << "error: number of -offset and -length arguments must match.\n"
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDFS.h 37 /// Length may either correspond to depth or height, depending on direction,
39 unsigned Length;
41 ILPValue(unsigned count, unsigned length):
42 InstrCount(count), Length(length) {}
46 return (uint64_t)InstrCount * RHS.Length
47 < (uint64_t)Length * RHS.InstrCount;
53 return (uint64_t)InstrCount * RHS.Length
54 <= (uint64_t)Length * RHS.InstrCount;
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 17 public override long Length { get { return s1.Length + s2.Length - skipSize; } }
102 for (int i = 0; i < s.Length; i++)
123 if (args.Length == 0)
237 if (train.Length != 0)
302 fileSize = inStream.Length;
312 long trainFileSize = trainStream.Length;
341 long compressedSize = inStream.Length - inStream.Position;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 142 uint64_t Length;
144 BufferMemoryObject(const uint8_t *bytes, uint64_t length) :
145 Bytes(bytes), Length(length)
156 return Length;

Completed in 3578 milliseconds

12 3 4 5 6 7 8 9