HomeSort by relevance Sort by last modified time
    Searched refs:vec (Results 26 - 50 of 515) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/effects/
SkOffsetImageFilter.cpp 22 SkVector vec; local
23 matrix.mapVectors(&vec, &fOffset, 1);
25 loc->fX += SkScalarRoundToInt(vec.fX);
26 loc->fY += SkScalarRoundToInt(vec.fY);
33 SkVector vec; local
34 ctm.mapVectors(&vec, &fOffset, 1);
37 dst->offset(SkScalarRoundToInt(vec.fX), SkScalarRoundToInt(vec.fY));
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_mdct_6.h 93 void pvmp3_mdct_6(int32 vec[], int32 *overlap);
95 void pvmp3_dct_6(int32 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/chromium_org/third_party/freetype/include/freetype/
fttrigon.h 228 * call, the value of `vec.x' will be `sin(angle)', and the value of
229 * `vec.y' will be `cos(angle)'.
235 * vec ::
244 FT_Vector_Unit( FT_Vector* vec,
257 * vec ::
266 FT_Vector_Rotate( FT_Vector* vec,
279 * vec ::
288 FT_Vector_Length( FT_Vector* vec ); variable
300 * vec ::
312 FT_Vector_Polarize( FT_Vector* vec,
    [all...]
  /external/freetype/include/freetype/
fttrigon.h 228 * call, the value of `vec.x' will be `sin(angle)', and the value of
229 * `vec.y' will be `cos(angle)'.
235 * vec ::
244 FT_Vector_Unit( FT_Vector* vec,
257 * vec ::
266 FT_Vector_Rotate( FT_Vector* vec,
279 * vec ::
288 FT_Vector_Length( FT_Vector* vec ); variable
300 * vec ::
312 FT_Vector_Polarize( FT_Vector* vec,
    [all...]
  /external/freetype/src/base/
fttrigon.c 115 ft_trig_prenorm( FT_Vector* vec )
121 x = vec->x;
122 y = vec->y;
129 vec->x = (FT_Pos)( (FT_ULong)x << shift );
130 vec->y = (FT_Pos)( (FT_ULong)y << shift );
135 vec->x = x >> shift;
136 vec->y = y >> shift;
145 ft_trig_pseudo_rotate( FT_Vector* vec,
153 x = vec->x;
154 y = vec->y
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/
push_back_exception_safety.pass.cpp 63 std::deque<CMyClass> vec; local
65 vec.push_back(instance);
69 vec.push_back(instance);
push_front_exception_safety.pass.cpp 63 std::deque<CMyClass> vec; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
push_front_exception_safety.pass.cpp 63 std::forward_list<CMyClass> vec; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
push_back_exception_safety.pass.cpp 63 std::list<CMyClass> vec; local
65 vec.push_back(instance);
69 vec.push_back(instance);
push_front_exception_safety.pass.cpp 63 std::list<CMyClass> vec; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
push_back_exception_safety.pass.cpp 63 std::vector<CMyClass> vec; local
65 vec.push_back(instance);
69 vec.push_back(instance);
  /external/chromium/net/tools/flip_server/
split.h 18 std::vector<base::StringPiece>* vec,
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/chromium_org/net/tools/flip_server/
split.h 17 std::vector<base::StringPiece>* vec,
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/
cxx-for-range-cfg.cpp 15 for (auto &vec : (rdar11671507_vector<int *>[]){ v, w }) {} // expected-warning {{unused}}
  /external/chromium_org/third_party/opus/src/silk/fixed/
vector_ops_FIX.c 100 const opus_int16 *vec, /* I Input vector [len] */
108 max = silk_SMULBB( vec[ ind ], vec[ ind ] );
110 lvl = silk_SMULBB( vec[ i ], vec[ i ] );
121 if( vec[ ind ] < 0 ) {
122 return( -vec[ ind ] );
124 return( vec[ ind ] );
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 114 * @param vec
118 public Vector2f set(Vector2f vec) {
119 this.x = vec.x;
120 this.y = vec.y;
129 * @param vec
133 public Vector2f add(Vector2f vec) {
134 if (null == vec) {
138 return new Vector2f(x + vec.x, y + vec.y);
146 * @param vec
    [all...]
  /ndk/tests/build/issue22345-ICE-postreload/jni/
issue22345-ICE-postreload.cpp 5 #define _IOS_SHUFFLE_1032(vec) vrev64q_f32(vec)
6 #define _IOS_SHUFFLE_2301(vec) vcombine_f32(vget_high_f32(vec), vget_low_f32(vec))
14 inline float32x4_t fastRSqrt(const float32x4_t& vec) {
16 result = vrsqrteq_f32(vec);
17 result = vmulq_f32(vrsqrtsq_f32(vmulq_f32(result, result), vec), result);
  /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/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();
  /external/chromium_org/third_party/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...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
srpc_params.cc 19 bool FillVec(NaClSrpcArg* vec[], const char* types) {
36 vec[i] = &args[i];
40 vec[kLength] = NULL;
87 void FreeArguments(NaClSrpcArg* vec[]) {
88 if (NULL == vec[0]) {
91 for (NaClSrpcArg** argp = vec; *argp; ++argp) {
96 free(vec[0]);

Completed in 2744 milliseconds

12 3 4 5 6 7 8 91011>>