/external/valgrind/tsan/ |
suppressions_test.cc | 36 #define VEC(arr) *(new vector<string>(arr, arr + sizeof(arr) / sizeof(*arr))) 75 ASSERT_FALSE(IsSuppressed(VEC(m), VEC(d), VEC(o))); 82 ASSERT_TRUE(IsSuppressed(VEC(m), VEC(d), VEC(o))); 90 ASSERT_TRUE(IsSuppressed(VEC(m), VEC(d), VEC(o))) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/ |
Simplify.g3 | 20 : ^( MULT INT ^(VEC (e+=.)+) ) -> ^(VEC ^(MULT INT $e)+)
|
/external/llvm/test/Transforms/InstCombine/ |
2007-10-12-Crash.ll | 3 %struct.Ray = type { %struct.Vec, %struct.Vec } 5 %struct.Vec = type { double, double, double } 7 declare double @_Z9ray_traceRK3VecRK3RayRK5Scene(%struct.Vec*, %struct.Ray*, %struct.Scene*) 16 %tmp322 = bitcast %struct.Ray* %tmp3 to %struct.Vec* ; <%struct.Vec*> [#uses=1] 17 %tmp322.0 = getelementptr %struct.Vec* %tmp322, i32 0, i32 0 ; <double*> [#uses=1] 19 %tmp57 = call double @_Z9ray_traceRK3VecRK3RayRK5Scene( %struct.Vec* null, %struct.Ray* %tmp3, %struct.Scene* null ) ; <double> [#uses=0]
|
/external/chromium/chrome/browser/sync/ |
js_arg_list_unittest.cc | 44 std::vector<const Value*> vec; local 45 vec.push_back(&bool_value); 46 vec.push_back(&int_value); 47 vec.push_back(&dict); 49 JsArgList arg_list(vec); 57 vec.clear();
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/asm/ |
pvmp3_dct_9_arm.s | 87 ; vec[4] = fxp_mac32_Q32( vec[4], tmp0<<1, cos_2pi_9); 93 ; vec[8] = fxp_mac32_Q32( vec[8], tmp0<<1, cos_4pi_9); 99 ; vec[2] = fxp_mac32_Q32( vec[2], tmp0<<1, cos_pi_9); 110 ; vec[2] = fxp_mac32_Q32( vec[2], tmp2<<1, cos_5pi_9); 117 ; vec[8] = fxp_mac32_Q32( vec[8], tmp2<<1, cos_2pi_9) [all...] |
pvmp3_dct_9_gcc.s | 76 @ vec[4] = fxp_mac32_Q32( vec[4], tmp0<<1, cos_2pi_9)@ 82 @ vec[8] = fxp_mac32_Q32( vec[8], tmp0<<1, cos_4pi_9)@ 89 @ vec[2] = fxp_mac32_Q32( vec[2], tmp0<<1, cos_pi_9)@ 99 @ vec[2] = fxp_mac32_Q32( vec[2], tmp2<<1, cos_5pi_9)@ 106 @ vec[8] = fxp_mac32_Q32( vec[8], tmp2<<1, cos_2pi_9) [all...] |
/external/freetype/src/base/ |
fttrigon.c | 100 ft_trig_prenorm( FT_Vector* vec ) 106 x = vec->x; 107 y = vec->y; 143 vec->x = x << shift; 144 vec->y = y << shift; 149 vec->x = x >> shift; 150 vec->y = y >> shift; 163 vec->x = x << shift; 164 vec->y = y << shift; 174 vec->x = x >> shift [all...] |
/packages/experimental/DreamTheater/src/com/android/dreamtheater/ |
BouncyDroid.java | 50 public static class Vec { 53 public Vec() { 56 public Vec(float _x, float _y) { 60 public Vec add(Vec v) { 61 return new Vec(x + v.x, y + v.y); 63 public Vec mul(float a) { 64 return new Vec(x * a, y * a); 66 public Vec sub(Vec v) [all...] |
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
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_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...] |
/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:__anon5498::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)
|
/frameworks/av/media/libstagefright/codecs/aacdec/ |
dct16.cpp | 104 void dct_16(Int32 vec[], Int flag) 129 tmp_o0 = fxp_mul32_by_16((vec[ 0] - vec[15]), Qfmt15(0.50241928618816F)); 130 tmp0 = vec[ 0] + vec[15]; 132 tmp_o7 = fxp_mul32_Q31((vec[ 7] - vec[ 8]) << 3, Qfmt_31(0.63764357733614F)); 133 tmp7 = vec[ 7] + vec[ 8]; 138 tmp_o1 = fxp_mul32_by_16((vec[ 1] - vec[14]), Qfmt15(0.52249861493969F)) [all...] |
/external/quake/quake/src/QW/client/ |
cl_cam.c | 57 static void vectoangles(vec3_t vec, vec3_t ang) 62 if (vec[1] == 0 && vec[0] == 0) 65 if (vec[2] > 0) 72 yaw = (int) (atan2(vec[1], vec[0]) * 180 / M_PI); 76 forward = sqrt (vec[0]*vec[0] + vec[1]*vec[1]) 204 vec3_t vec, vec2; local 319 vec3_t vec; local [all...] |
/frameworks/base/services/sensorservice/ |
vec.h | 37 class vec; 47 template < template<typename T, size_t S> class VEC, 49 vec<TYPE, SIZE>& doAssign( 50 vec<TYPE, SIZE>& lhs, const VEC<TYPE, S>& rhs) { 92 template<typename T, size_t S> class VEC, 96 VEC<TYPE, SIZE> PURE doMulScalar( 97 const VEC<TYPE, SIZE>& lhs, 99 VEC<TYPE, SIZE> r; 106 template<typename T, size_t S> class VEC, 300 class vec : public vbase<TYPE, SIZE> class in namespace:android 323 vec() { } function in class:android::vec 324 vec(const vec& rhs) : base(rhs) { } function in class:android::vec 325 vec(const base& rhs) : base(rhs) { } function in class:android::vec 330 vec(pTYPE rhs) { function in class:android::vec 336 explicit vec(const VEC<TYPE, S>& rhs) { function in class:android::vec 340 explicit vec(TYPE const* array) { function in class:android::vec [all...] |
/external/chromium/net/tools/flip_server/ |
split.cc | 19 std::vector<base::StringPiece>* vec, 21 vec->clear(); 31 vec->push_back(base::StringPiece(s, e - s)); 40 vec->push_back(base::StringPiece(s, e - s)); 56 vec->push_back(base::StringPiece(s, e - s)); 65 vec->push_back(base::StringPiece(s, e - s));
|
/external/clang/test/Analysis/ |
array-struct-region.c | 28 int vec[6][2] = {{0.195, 0.02}, {0.383, 0.067}, {0.55, 0.169}, // expected-warning 6 {{implicit conversion turns literal floating-point number into integer}} local 33 vec[a][0] *= rad; // no-warning 34 vec[a][1] *= rad; // no-warning 39 float vec[6][2] = {{0.195, 0.02}, {0.383, 0.067}, {0.55, 0.169}, local 44 vec[a][0] *= rad; // no-warning 45 vec[a][1] *= rad; // no-warning
|
/frameworks/native/libs/utils/ |
Static.cpp | 57 virtual status_t writeLines(const struct iovec& vec, size_t N) 59 //android_writevLog(&vec, N); <-- this is now a no-op 61 ALOGI("%.*s", (int)vec.iov_len, (const char*) vec.iov_base); 73 virtual status_t writeLines(const struct iovec& vec, size_t N) 75 writev(mFD, &vec, N);
|
/external/mesa3d/src/glsl/builtins/tools/ |
generate_outerProductGLSL.py | 7 print type + " outerProduct(vec" + str(y) + " u, vec" + str(x) + " v)\n{"
|
/bionic/libc/bionic/ |
logd_write.c | 71 typedef int (*logger_function_t)(log_id_t log_id, struct iovec *vec); 79 static int __write_to_log_init(log_id_t log_id, struct iovec *vec); 80 static int __write_to_log_null(log_id_t log_id, struct iovec *vec); 91 static int __write_to_log_null(log_id_t log_id, struct iovec *vec) 101 res += vec[i].iov_len; 112 static int __write_to_log_kernel(log_id_t log_id, struct iovec *vec) 114 return TEMP_FAILURE_RETRY( writev(log_channels[log_id].fd, vec, 3) ); 118 static int __write_to_log_init(log_id_t log_id, struct iovec *vec) 135 return log_channels[log_id].logger(log_id, vec); 146 struct iovec vec[3] local [all...] |
/external/clang/include/clang/AST/ |
DeclContextInternals.h | 91 DeclsTy &Vec = *getAsVector(); 92 DeclsTy::iterator I = std::find(Vec.begin(), Vec.end(), D); 93 assert(I != Vec.end() && "list does not contain decl"); 94 Vec.erase(I); 96 assert(std::find(Vec.begin(), Vec.end(), D) 97 == Vec.end() && "list still contains decl"); 135 DeclsTy &Vec = *getAsVector(); 136 for (DeclsTy::iterator OD = Vec.begin(), ODEnd = Vec.end() [all...] |
/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/mesa3d/src/pixelflinger2/ |
llvm_helper.h | 61 std::vector<Constant *> vec(4); 62 vec[0] = builder.getInt32(x); 63 vec[1] = builder.getInt32(y); 64 vec[2] = builder.getInt32(z); 65 vec[3] = builder.getInt32(w); 67 llvm::ArrayRef<llvm::Constant*> ConstantArray(vec); 84 std::vector<Constant *> vec(4); 85 vec[0] = constFloat(builder, x); 86 vec[1] = constFloat(builder, y); 87 vec[2] = constFloat(builder, z) [all...] |
/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/jmonkeyengine/engine/src/core/com/jme3/scene/debug/ |
Arrow.java | 84 Vector3f vec = tempVec.set(positions[i], local 87 vec.multLocal(len); 88 tempQuat.mult(vec, vec); 90 newPositions[i] = vec.getX(); 91 newPositions[i + 1] = vec.getY(); 92 newPositions[i + 2] = vec.getZ(); 126 Vector3f vec = tempVec.set(positions[i], local 129 vec.multLocal(len); 130 tempQuat.mult(vec, vec) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
tst_badblocks.c | 68 static errcode_t create_test_list(blk_t *vec, badblocks_list *ret) 79 for (i=0; vec[i]; i++) { 80 retval = ext2fs_badblocks_list_add(bb, vec[i]); 121 static void validate_test_seq(badblocks_list bb, blk_t *vec) 125 for (i = 0; vec[i]; i += 2) { 126 match = ext2fs_badblocks_list_test(bb, vec[i]); 127 if (match == vec[i+1]) 133 printf("\tblock %u is %s --- %s\n", vec[i], 139 static void do_test_seq(badblocks_list bb, blk_t *vec) 143 for (i = 0; vec[i]; i += 2) [all...] |