/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...] |
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_dct_9.cpp | 38 int32 vec[] vector of 9 32-bit integers 40 int32 vec[] dct computation in-place 120 void pvmp3_dct_9(int32 vec[]) 125 int32 tmp0 = vec[8] + vec[0]; 126 int32 tmp8 = vec[8] - vec[0]; 127 int32 tmp1 = vec[7] + vec[1]; 128 int32 tmp7 = vec[7] - vec[1] [all...] |
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...] |
pvmp3_mdct_6.cpp | 37 int32 vec[], input vector of length 6 122 void pvmp3_mdct_6(int32 vec[], int32 *history) 129 int32 *pt_vec = vec; 130 int32 *pt_vec_o = vec; 144 pvmp3_dct_6(vec); // Even terms 147 tmp = -(vec[0] + vec[1]); 150 tmp = -(vec[1] + vec[2]); 151 vec[0] = vec[3] + vec[4] [all...] |
pvmp3_dct_6.cpp | 38 Int32 vec[] vector of 6 32-bit integers 40 Int32 vec[] dct computation in-place 114 void pvmp3_dct_6(int32 vec[]) 127 tmp0 = vec[5] + vec[0]; 128 tmp5 = vec[5] - vec[0]; 129 tmp1 = vec[4] + vec[1]; 130 tmp4 = vec[4] - vec[1] [all...] |
pvmp3_mdct_18.cpp | 38 int32 vec[], input vector of length 18 132 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window) 146 int32 *pt_vec = vec; 147 int32 *pt_vec_o = &vec[17]; 161 pvmp3_dct_9(vec); // Even terms 162 pvmp3_dct_9(&vec[9]); // Odd terms 165 tmp3 = vec[16]; // 166 vec[16] = vec[ 8]; 167 tmp4 = vec[14]; / [all...] |
pvmp3_dct_16.h | 81 void pvmp3_dct_16(int32 vec[], int32 flag); 83 void pvmp3_merge_in_place_N32(int32 vec[]);
|
pvmp3_mdct_18.h | 92 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window); 94 void pvmp3_dct_9(int32 vec[]); 96 void pvmp3_mdct_6(int32 vec[], int32 *overlap); 98 void pvmp3_dct_6(int32 vec[]);
|
pvmp3_mdct_6.h | 93 void pvmp3_mdct_6(int32 vec[], int32 *overlap); 95 void pvmp3_dct_6(int32 vec[]);
|
/external/eigen/test/ |
commainitializer.cpp | 30 Vector3d vec[3]; local 31 vec[0] << 1, 4, 7; 32 vec[1] << 2, 5, 8; 33 vec[2] << 3, 6, 9; 35 m3 << vec[0], vec[1], vec[2]; local 38 vec[0] << 1, 2, 3; 39 vec[1] << 4, 5, 6; 40 vec[2] << 7, 8, 9 [all...] |
/external/eigen/test/eigen2/ |
eigen2_commainitializer.cpp | 30 Vector3d vec[3]; local 31 vec[0] << 1, 4, 7; 32 vec[1] << 2, 5, 8; 33 vec[2] << 3, 6, 9; 35 m3 << vec[0], vec[1], vec[2]; local 38 vec[0] << 1, 2, 3; 39 vec[1] << 4, 5, 6; 40 vec[2] << 7, 8, 9 [all...] |
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/ |
AKFS_Device.c | 61 AKFVEC* vec 71 tmp = vec->u.x; 72 vec->u.x = vec->u.y; 73 vec->u.y = -tmp; 76 vec->u.x = -(vec->u.x); 77 vec->u.y = -(vec->u.y); 80 tmp = vec->u.x [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERApplicationSpecific.java | 6 public BERApplicationSpecific(int tagNo, ASN1EncodableVector vec) 8 super(tagNo, vec);
|
/external/marisa-trie/tests/ |
vector-test.cc | 23 marisa::Vector<int> vec; local 25 ASSERT(vec.max_size() == MARISA_UINT32_MAX); 26 ASSERT(vec.size() == 0); 27 ASSERT(vec.capacity() == 0); 28 ASSERT(!vec.fixed()); 29 ASSERT(vec.empty()); 30 ASSERT(vec.total_size() == sizeof(marisa::UInt32)); 33 vec.push_back(values[i]); 34 ASSERT(vec[i] == values[i]); 35 ASSERT(static_cast<const marisa::Vector<int> &>(vec)[i] == values[i]) 122 marisa::IntVector vec; local [all...] |
/external/marisa-trie/v0_1_5/tests/ |
vector-test.cc | 23 marisa_alpha::Vector<int> vec; local 25 ASSERT(vec.max_size() == MARISA_ALPHA_UINT32_MAX); 26 ASSERT(vec.size() == 0); 27 ASSERT(vec.capacity() == 0); 28 ASSERT(!vec.fixed()); 29 ASSERT(vec.empty()); 30 ASSERT(vec.total_size() == sizeof(marisa_alpha::UInt32)); 33 vec.push_back(values[i]); 34 ASSERT(vec[i] == values[i]); 35 ASSERT(static_cast<const marisa_alpha::Vector<int> &>(vec)[i] = 126 marisa_alpha::IntVector vec; local [all...] |
/external/clang/test/Index/ |
complete-cxx-inline-methods.cpp | 4 vec.x = 0; 8 struct Vec { int x, y; }; 9 Vec vec; member in class:__anon16736::MyCls 13 vec.x = 0; 28 // CHECK: CXXMethod:{ResultType MyCls::Vec &}{TypedText operator=}{LeftParen (}{Placeholder const MyCls::Vec &}{RightParen )} (34) 29 // CHECK-NEXT: StructDecl:{TypedText Vec}{Text ::} (75) 32 // CHECK-NEXT: CXXDestructor:{ResultType void}{TypedText ~Vec}{LeftParen (}{RightParen )} (34)
|
/external/chromium_org/third_party/icu/source/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...] |
/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...] |
/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...] |
/system/core/liblog/ |
logd_write.c | 47 static int __write_to_log_init(log_id_t, struct iovec *vec, size_t nr); 48 static int (*write_to_log)(log_id_t, struct iovec *vec, size_t nr) = __write_to_log_init; 75 static int __write_to_log_null(log_id_t log_fd, struct iovec *vec, size_t nr) 80 static int __write_to_log_kernel(log_id_t log_id, struct iovec *vec, size_t nr) 92 ret = log_writev(log_fd, vec, nr); 98 static int __write_to_log_init(log_id_t log_id, struct iovec *vec, size_t nr) 132 return write_to_log(log_id, vec, nr); 137 struct iovec vec[3]; local 160 vec[0].iov_base = (unsigned char *) &prio; 161 vec[0].iov_len = 1 172 struct iovec vec[3]; local 266 struct iovec vec[2]; local 284 struct iovec vec[3]; local [all...] |
/external/clang/test/Analysis/ |
no-outofbounds.c | 26 struct vec { size_t len; int data[0]; }; struct 28 struct vec *a = malloc(sizeof(struct vec) + 10); // expected-warning {{Cast a region whose size is not a multiple of the destination type size}}
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/motors/ |
TranslationalLimitMotor.java | 53 Vector3f vec = new Vector3f(); local 54 getLowerLimit(motorId, vec); 55 return vec; 67 Vector3f vec = new Vector3f(); local 68 getUpperLimit(motorId, vec); 69 return vec; 81 Vector3f vec = new Vector3f(); local 82 getAccumulatedImpulse(motorId, vec); 83 return vec;
|
/external/srec/srec/clib/ |
imeld_tr.c | 46 imeldata vec[MAX_DIMEN]; local 54 vec[ii] = 0; 56 vec[ii] += prep->matrix[ii][jj] * fram[jj]; 58 vec[ii] = (imeldata) SHIFT_DOWN((int)vec[ii], 66 fram[ii] = RANGE(vec[ii] + prep->offset[ii], 0, 255); 69 fram[ii] = RANGE(vec[ii], 0, 255); 74 fram[ii] = vec[ii]; 85 imeldata vec[MAX_DIMEN]; local 96 vec[ii]= 0 [all...] |
/external/clang/test/CodeGen/ |
arm-vector-align.c | 27 int32x2_t vec = vld1_dup_s32(addr); local 29 vst1_lane_s32(addr, vec, 1);
|
/external/openfst/src/lib/ |
compat.cc | 32 void SplitToVector(char* full, const char* delim, vector<char*>* vec, 39 vec->push_back(full);
|