HomeSort by relevance Sort by last modified time
    Searched full:vec (Results 1 - 25 of 621) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/ADT/
SmallBitVectorTest.cpp 18 SmallBitVector Vec;
19 EXPECT_EQ(0U, Vec.count());
20 EXPECT_EQ(0U, Vec.size());
21 EXPECT_FALSE(Vec.any());
22 EXPECT_TRUE(Vec.all());
23 EXPECT_TRUE(Vec.none());
24 EXPECT_TRUE(Vec.empty());
26 Vec.resize(5, true);
27 EXPECT_EQ(5U, Vec.count());
28 EXPECT_EQ(5U, Vec.size())
    [all...]
PackedVectorTest.cpp 22 PackedVector<unsigned, 2> Vec;
23 EXPECT_EQ(0U, Vec.size());
24 EXPECT_TRUE(Vec.empty());
26 Vec.resize(5);
27 EXPECT_EQ(5U, Vec.size());
28 EXPECT_FALSE(Vec.empty());
30 Vec.resize(11);
31 EXPECT_EQ(11U, Vec.size());
32 EXPECT_FALSE(Vec.empty());
38 Vec.clear()
    [all...]
BitVectorTest.cpp 21 BitVector Vec;
22 EXPECT_EQ(0U, Vec.count());
23 EXPECT_EQ(0U, Vec.size());
24 EXPECT_FALSE(Vec.any());
25 EXPECT_TRUE(Vec.all());
26 EXPECT_TRUE(Vec.none());
27 EXPECT_TRUE(Vec.empty());
29 Vec.resize(5, true);
30 EXPECT_EQ(5U, Vec.count());
31 EXPECT_EQ(5U, Vec.size())
    [all...]
SparseBitVectorTest.cpp 18 SparseBitVector<> Vec;
19 EXPECT_EQ(0U, Vec.count());
20 EXPECT_FALSE(Vec.test(17));
21 Vec.set(5);
22 EXPECT_TRUE(Vec.test(5));
23 EXPECT_FALSE(Vec.test(17));
24 Vec.reset(6);
25 EXPECT_TRUE(Vec.test(5));
26 EXPECT_FALSE(Vec.test(6));
27 Vec.reset(5)
    [all...]
  /external/clang/test/Sema/
ext_vector_comparisons.c 6 int4 vec, rv; local
9 return vec == vec; // expected-warning{{self-comparison always evaluates to a constant}}
10 return vec != vec; // expected-warning{{self-comparison always evaluates to a constant}}
11 return vec < vec; // expected-warning{{self-comparison always evaluates to a constant}}
12 return vec <= vec; // expected-warning{{self-comparison always evaluates to a constant}}
13 return vec > vec; // expected-warning{{self-comparison always evaluates to a constant}
21 float4 vec, rv; local
    [all...]
  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Math.glsllib 2 vec3 Math_QuaternionMult(in vec4 quat, in vec3 vec){
3 return vec + 2.0 * cross(quat.xyz, cross(quat.xyz, vec) + quat.w * vec);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERApplicationSpecific.java 6 public BERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
8 super(tagNo, vec);
  /external/llvm/test/CodeGen/ARM/
2009-11-13-CoalescerCrash.ll 5 %pln = type { %vec, float }
6 %vec = type { [4 x float] }
8 define arm_aapcs_vfpcc float @aaa(%vec* nocapture %ustart, %vec* nocapture %udir, %vec* nocapture %vstart, %vec* nocapture %vdir, %vec* %upoint, %vec* %vpoint) {
13 %0 = call arm_aapcs_vfpcc %0 @bbb(%pln* undef, %vec* %vstart, %vec* undef) nounwind ; <%0> [#uses=0
    [all...]
  /external/llvm/test/CodeGen/X86/
v-binop-widen.ll 6 %vec = type <9 x float>
7 define %vec @vecdiv( %vec %p1, %vec %p2)
9 %result = fdiv %vec %p1, %p2
10 ret %vec %result
v-binop-widen2.ll 3 %vec = type <6 x float>
7 define %vec @vecdiv( %vec %p1, %vec %p2)
9 %result = fdiv %vec %p1, %p2
10 ret %vec %result
13 @a = constant %vec < float 2.0, float 4.0, float 8.0, float 16.0, float 32.0, float 64.0 >
14 @b = constant %vec < float 2.0, float 2.0, float 2.0, float 2.0, float 2.0, float 2.0 >
21 %avec = load %vec* @a
22 %bvec = load %vec* @
    [all...]
  /external/llvm/test/CodeGen/CellSPU/
v2i32.ll 2 %vec = type <2 x i32>
4 define %vec @test_ret(%vec %param)
7 ret %vec %param
10 define %vec @test_add(%vec %param)
14 %1 = add %vec %param, %param
16 ret %vec %1
19 define %vec @test_sub(%vec %param
    [all...]
v2f32.ll 2 %vec = type <2 x float>
4 define %vec @test_ret(%vec %param)
7 ret %vec %param
10 define %vec @test_add(%vec %param)
13 %1 = fadd %vec %param, %param
15 ret %vec %1
18 define %vec @test_sub(%vec %param
    [all...]
  /external/llvm/test/Transforms/InstCombine/
2007-04-08-SingleEltVectorCrash.ll 4 define i64 @bork(<1 x i64> %vec) {
5 %tmp = extractelement <1 x i64> %vec, i32 0
  /frameworks/base/media/mca/filterpacks/native/base/
vec_types.h 49 class Vec : public VecBase<T,dim> {
51 Vec() {}
52 Vec<T,dim>& operator = (const Vec<T, dim> &x) {
59 Vec<T, dim> operator + (const Vec<T,dim> &x, const Vec<T,dim> &y) {
60 Vec<T, dim> out;
67 Vec<T, dim> operator - (const Vec<T,dim> &x, const Vec<T,dim> &y)
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
dct64.cpp 175 void dct_64(Int32 vec[], Int32 *scratch_mem)
191 temp_o1 = &vec[32];
225 pv_split(&vec[16]);
227 dct_16(&vec[16], 0);
228 dct_16(vec, 1); // Even terms
230 pv_merge_in_place_N32(vec);
232 pv_split_z(&vec[32]);
234 dct_16(&vec[32], 1); // Even terms
235 dct_16(&vec[48], 0);
237 pv_merge_in_place_N32(&vec[32])
    [all...]
  /external/icu4c/i18n/
fphdlimp.cpp 72 : iter(posIter), vec(NULL), status(_status) {
74 vec = new UVector32(status);
79 // setData adopts the vec regardless of status, so it's safe to null it
81 iter->setData(vec, status);
83 // if iter is null, we never allocated vec, so no need to free it
84 vec = NULL;
90 int32_t size = vec->size();
91 vec->addElement(id, status);
92 vec->addElement(start, status);
93 vec->addElement(limit, status)
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_16.cpp 45 int32 vec[], input vector length 16
49 int32 vec[], dct length 16
57 int32 vec[], input vector length 16
61 int32 vec[], merged output of two dct 16 to create a dct 32
69 int32 vec[], input vector length 16
73 int32 vec[], splitted even/odd and pre processing rotation
152 void pvmp3_dct_16(int32 vec[], int32 flag)
176 tmp_o0 = fxp_mul32_Q32((vec[ 0] - vec[15]), Qfmt_31(0.50241928618816F));
177 tmp0 = vec[ 0] + vec[15]
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vec.h 102 VEC(TYPEDEF,ALLOC) macro. The ALLOC argument specifies the
124 VEC(tree,gc) *v; // A (pointer to) a vector of tree pointers.
145 unsigned VEC_T_length(const VEC(T) *v);
154 int VEC_T_empty(const VEC(T) *v);
162 T VEC_T_last(VEC(T) *v); // Integer
163 T VEC_T_last(VEC(T) *v); // Pointer
164 T *VEC_T_last(VEC(T) *v); // Object
171 T VEC_T_index(VEC(T) *v, unsigned ix); // Integer
172 T VEC_T_index(VEC(T) *v, unsigned ix); // Pointer
173 T *VEC_T_index(VEC(T) *v, unsigned ix); // Objec
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
vec.h 102 VEC(TYPEDEF,ALLOC) macro. The ALLOC argument specifies the
124 VEC(tree,gc) *v; // A (pointer to) a vector of tree pointers.
145 unsigned VEC_T_length(const VEC(T) *v);
154 int VEC_T_empty(const VEC(T) *v);
162 T VEC_T_last(VEC(T) *v); // Integer
163 T VEC_T_last(VEC(T) *v); // Pointer
164 T *VEC_T_last(VEC(T) *v); // Object
171 T VEC_T_index(VEC(T) *v, unsigned ix); // Integer
172 T VEC_T_index(VEC(T) *v, unsigned ix); // Pointer
173 T *VEC_T_index(VEC(T) *v, unsigned ix); // Objec
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vec.h 102 VEC(TYPEDEF,ALLOC) macro. The ALLOC argument specifies the
124 VEC(tree,gc) *v; // A (pointer to) a vector of tree pointers.
145 unsigned VEC_T_length(const VEC(T) *v);
154 int VEC_T_empty(const VEC(T) *v);
162 T VEC_T_last(VEC(T) *v); // Integer
163 T VEC_T_last(VEC(T) *v); // Pointer
164 T *VEC_T_last(VEC(T) *v); // Object
171 T VEC_T_index(VEC(T) *v, unsigned ix); // Integer
172 T VEC_T_index(VEC(T) *v, unsigned ix); // Pointer
173 T *VEC_T_index(VEC(T) *v, unsigned ix); // Objec
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
VecMath_Parser.g3 9 VEC;
32 | OPEN_SQUARE expr ( COMMA expr )* CLOSE_SQUARE -> ^( VEC expr+ )
  /external/clang/test/CodeGenCXX/
mangle-alias-template.cpp 7 template<typename T> using Vec = vector<T>;
9 template<typename T> void f(Vec<T> v);
24 Vec<double> VD;
28 h<Vec>(VI);
38 Vec<char> VC;
39 g<Vec<char>>(VC);
42 Vec<Vec<int>> VVI;
  /system/core/liblog/
logd_write.c 45 static int __write_to_log_init(log_id_t, struct iovec *vec, size_t nr);
46 static int (*write_to_log)(log_id_t, struct iovec *vec, size_t nr) = __write_to_log_init;
73 static int __write_to_log_null(log_id_t log_fd, struct iovec *vec, size_t nr)
78 static int __write_to_log_kernel(log_id_t log_id, struct iovec *vec, size_t nr)
90 ret = log_writev(log_fd, vec, nr);
96 static int __write_to_log_init(log_id_t log_id, struct iovec *vec, size_t nr)
130 return write_to_log(log_id, vec, nr);
135 struct iovec vec[3]; local
152 vec[0].iov_base = (unsigned char *) &prio;
153 vec[0].iov_len = 1
164 struct iovec vec[3]; local
251 struct iovec vec[2]; local
269 struct iovec vec[3]; local
    [all...]
  /external/javassist/sample/vector/
VectorAssistant.java 52 public CtClass[] assist(ClassPool pool, String vec, String[] args)
67 CtClass[] results = { subclass, pool.get(vec) };
87 CtClass vec = pool.makeClass(makeClassName(type)); local
88 vec.setSuperclass(pool.get("java.util.Vector"));
97 vec.addMethod(CtNewMethod.copy(addmethod, "add", vec, map));
98 vec.addMethod(CtNewMethod.copy(atmethod, "at", vec, map));
99 vec.writeFile();
100 return vec;
112 CtClass vec = pool.makeClass(makeClassName(type)); local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
vec.h 99 VEC(TYPEDEF,ALLOC) macro. The ALLOC argument specifies the
121 VEC(tree,gc) *v; // A (pointer to) a vector of tree pointers.
142 unsigned VEC_T_length(const VEC(T) *v);
151 int VEC_T_empty(const VEC(T) *v);
159 T VEC_T_last(VEC(T) *v); // Integer
160 T VEC_T_last(VEC(T) *v); // Pointer
161 T *VEC_T_last(VEC(T) *v); // Object
168 T VEC_T_index(VEC(T) *v, unsigned ix); // Integer
169 T VEC_T_index(VEC(T) *v, unsigned ix); // Pointer
170 T *VEC_T_index(VEC(T) *v, unsigned ix); // Objec
    [all...]

Completed in 940 milliseconds

1 2 3 4 5 6 7 8 91011>>