HomeSort by relevance Sort by last modified time
    Searched refs:Length (Results 1 - 25 of 660) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/security/util/
Length.java 29 * The Length interface defines the length of an object
31 public interface Length {
34 * Gets the length of this object
37 * the length should be measured in bits.
39 * @return the length of this object
42 public int length(); method in interface:Length
  /external/clang/test/CodeGenCXX/
2012-03-16-StoreAlign.cpp 4 struct Length {
5 Length(double v) {
9 bool operator==(const Length& o) const {
12 bool operator!=(const Length& o) const { return !(*this == o); }
22 static Length inchLength(double inch);
23 static bool getPageSizeFromName(const Length &A) {
24 static const Length legalWidth = inchLength(8.5);
30 // CHECK: @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth = linkonce_odr global %struct.Length zeroinitializer, align 4
31 // CHECK: store float %{{.*}}, float* getelementptr inbounds (%struct.Length, %struct.Length* @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth, i32 0, i32 0), align
    [all...]
pragma-unroll.cpp 4 void while_test(int *List, int Length) {
9 while (i < Length) {
17 void do_test(int *List, int Length) {
26 } while (i < Length);
30 void for_test(int *List, int Length) {
33 for (int i = 0; i < Length; i++) {
54 void for_define_test(int *List, int Length, int Value) {
57 for (int i = 0; i < Length; i++) {
65 void for_template_test(A *List, int Length, A Value) {
68 for (int i = 0; i < Length; i++)
    [all...]
pragma-loop-safety.cpp 4 void vectorize_test(int *List, int Length) {
11 for (int i = 0; i < Length; i++) {
27 void interleave_test(int *List, int Length) {
34 for (int i = 0; i < Length; i++) {
pragma-loop.cpp 4 void while_test(int *List, int Length) {
12 while (i < Length) {
20 void do_test(int *List, int Length) {
28 } while (i < Length);
34 void for_test(int *List, int Length) {
38 for (int i = 0; i < Length; i++) {
57 void disable_test(int *List, int Length) {
59 for (int i = 0; i < Length; i++) {
70 void for_define_test(int *List, int Length, int Value) {
73 for (int i = 0; i < Length; i++)
    [all...]
  /external/clang/test/Parser/
pragma-unroll.cpp 6 void test(int *List, int Length) {
10 while (i + 1 < Length) {
15 while (i < Length) {
20 while (i - 1 < Length) {
25 while (i - 2 < Length) {
32 while (i-6 < Length) {
37 while (i-7 < Length) {
47 while (i-8 < Length) {
52 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int j = Length;
54 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int k = Length;
    [all...]
pragma-loop.cpp 7 void test_nontype_template_param(int *List, int Length) {
9 for (int i = 0; i < Length; i++) {
14 for (int i = 0; i < Length; i++) {
20 void test_nontype_template_vectorize(int *List, int Length) {
22 for (int i = 0; i < Length; i++) {
27 for (int i = 0; i < Length; i++) {
33 void test_nontype_template_interleave(int *List, int Length) {
35 for (int i = 0; i < Length; i++) {
40 for (int i = 0; i < Length; i++) {
46 void test_nontype_template_char(int *List, int Length) {
    [all...]
pragma-loop-safety.cpp 6 void test(int *List, int Length) {
11 while (i + 1 < Length) {
23 while (i-7 < Length) {
31 while (i-9 < Length) {
  /external/clang/test/Misc/
ast-print-pragmas-xfail.cpp 6 void run1(int *List, int Length) {
16 // CHECK-NEXT: while (i < Length)
17 while (i < Length) {
ast-print-pragmas.cpp 10 void test(int *List, int Length) {
14 // CHECK-NEXT: while (i < Length)
15 while (i < Length) {
25 // CHECK-NEXT: while (i - 1 < Length)
26 while (i - 1 < Length) {
36 // CHECK-NEXT: while (i - 2 < Length)
37 while (i - 2 < Length) {
44 void test_nontype_template_param(int *List, int Length) {
46 for (int i = 0; i < Length; i++) {
54 void test_templates(int *List, int Length) {
    [all...]
backend-optimization-failure-nodbg.cpp 7 void test_switch(int *A, int *B, int Length) {
9 for (int i = 0; i < Length; i++) {
backend-optimization-failure.cpp 7 void test_switch(int *A, int *B, int Length) {
9 for (int i = 0; i < Length; i++) {
  /external/clang/test/PCH/
pragma-loop.cpp 27 inline void run1(int *List, int Length) {
32 while (i < Length) {
38 inline void run2(int *List, int Length) {
43 while (i - 1 < Length) {
49 inline void run3(int *List, int Length) {
54 while (i - 3 < Length) {
60 inline void run4(int *List, int Length) {
63 while (i - 3 < Length) {
69 inline void run5(int *List, int Length) {
72 while (i - 3 < Length) {
    [all...]
  /external/clang/test/SemaTemplate/
ext-vector-type.cpp 2 template<typename T, unsigned Length>
4 typedef T __attribute__((ext_vector_type(Length))) type;
12 template<typename T, unsigned Length>
14 typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{zero vector size}}
21 template<typename T, unsigned Length>
23 typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element type 's'}}
32 template<typename T, T Length>
34 typedef T __attribute__((ext_vector_type(Length))) type;
43 template<unsigned Length>
45 typedef int_ptr __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element type}
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 36 unsigned Length, bool Prologue);
38 unsigned Length, bool Prologue);
40 unsigned Length, bool Prologue);
42 unsigned Length, bool Prologue);
44 unsigned Length, bool Prologue);
46 unsigned Length, bool Prologue);
48 unsigned Length, bool Prologue);
50 unsigned Length, bool Prologue);
52 unsigned Length, bool Prologue);
54 unsigned Length, bool Prologue)
    [all...]
  /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...]
  /external/llvm/include/llvm/CodeGen/PBQP/
Math.h 29 explicit Vector(unsigned Length)
30 : Length(Length), Data(new PBQPNum[Length]) {
32 // << this << " (length " << Length << ")\n";
36 Vector(unsigned Length, PBQPNum InitVal)
37 : Length(Length), Data(new PBQPNum[Length]) {
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
extend.hpp 33 /// @brief Extend a position from a source to a position at a defined length.
53 /// Extends of Length the Origin position using the (Source - Origin) direction.
59 typename genType::value_type const Length);
  /external/webrtc/webrtc/modules/video_coding/utility/
qp_parser.cc 22 return vp8::GetQp(frame.Buffer(), frame.Length(), qp);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
driverspecs.h 24 #define __out_bcount_part(Size, Length)
eapmethodtypes.h 17 BYTE Length[2];
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 37 : LowPC(LowPC), Length(HighPC - LowPC), CUOffset(CUOffset) {}
41 Length = 0;
43 Length = HighPC - LowPC;
46 if (Length)
47 return LowPC + Length;
59 uint32_t Length; // End of address range (not including this address).
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 27 int Length;
107 tokens.Negate.Length = match_length(matches, 1);
109 tokens.Abs.Length = match_length(matches, 2);
111 tokens.File.Length = match_length(matches, 3);
113 tokens.Index.Length = match_length(matches, 4);
115 tokens.Swizzle.Length = match_length(matches, 5);
118 if (tokens.Negate.Length > 0) {
123 if (tokens.Abs.Length > 0) {
128 if (!strncmp(tokens.File.String, "temp", tokens.File.Length)) {
130 } else if (!strncmp(tokens.File.String, "input", tokens.File.Length)) {
    [all...]
  /external/webrtc/webrtc/base/
bytebuffer_unittest.cc 59 EXPECT_EQ(size, buffer.Length());
63 EXPECT_EQ(size, buffer.Length());
67 EXPECT_EQ(size, buffer.Length());
71 EXPECT_EQ(size, buffer.Length());
75 EXPECT_EQ(size, buffer.Length());
79 EXPECT_EQ(size, buffer.Length());
82 EXPECT_EQ(size, buffer.Length());
86 EXPECT_EQ(size, buffer.Length());
91 EXPECT_EQ(6U, buffer.Length());
94 EXPECT_EQ(6U, buffer.Length());
    [all...]
  /external/clang/include/clang/AST/
ExprOpenMP.h 24 /// [ lower-bound : length ]
26 /// [ : length ]
31 /// subscript expressions can be used to specify length-one dimensions of
33 /// The lower-bound and length are integral type expressions. When evaluated
36 /// { lower-bound, lower-bound + 1, lower-bound + 2,... , lower-bound + length -
39 /// The lower-bound and length must evaluate to non-negative integers.
40 /// When the size of the array dimension is not known, the length must be
42 /// When the length is absent, it defaults to the size of the array dimension
46 enum { BASE, LOWER_BOUND, LENGTH, END_EXPR };
52 OMPArraySectionExpr(Expr *Base, Expr *LowerBound, Expr *Length, QualType Type
    [all...]

Completed in 579 milliseconds

1 2 3 4 5 6 7 8 91011>>