/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
PerfTest.java | 675 ArrayList vec = new ArrayList(); local 695 vec.add(buffer); 701 for (int i = 0; i < vec.size(); ++i) { 702 char[] buf = (char[]) vec.get(i); 711 ArrayList vec = new ArrayList(); local 731 vec.add(buffer); 738 for (int i = 0; i < vec.size(); ++i) { 739 byte[] buf = (byte[]) vec.get(i); [all...] |
/external/libevent/include/event2/ |
buffer.h | 272 @param vec an array of one or more evbuffer_iovec structures to 274 @param n_vec The length of the vec array. Must be at least 1; 281 struct evbuffer_iovec *vec, int n_vec); 299 @param vec one or two extents returned by evbuffer_reserve_space. 305 struct evbuffer_iovec *vec, int n_vecs);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
Camera.java | 177 * @param vec the displacement vector */
178 public void translate (Vector3 vec) {
179 position.add(vec);
183 * rely on OpenGL. The x- and y-coordinate of vec are assumed to be in screen coordinates (origin is the top left corner, y
207 * {@link Graphics#getHeight()}. The x- and y-coordinate of vec are assumed to be in screen coordinates (origin is the top left
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
Vector3.java | 206 public Vector3 mulAdd (Vector3 vec, float scalar) {
207 this.x += vec.x * scalar;
208 this.y += vec.y * scalar;
209 this.z += vec.z * scalar;
214 public Vector3 mulAdd (Vector3 vec, Vector3 mulVec) {
215 this.x += vec.x * mulVec.x;
216 this.y += vec.y * mulVec.y;
217 this.z += vec.z * mulVec.z;
|
/external/opencv3/modules/java/src/ |
ml+TrainData.java | 507 // C++: static Mat getSubVector(Mat vec, Mat idx) 510 //javadoc: TrainData::getSubVector(vec, idx) 511 public static Mat getSubVector(Mat vec, Mat idx) 514 Mat retVal = new Mat(getSubVector_0(vec.nativeObj, idx.nativeObj)); 636 // C++: static Mat getSubVector(Mat vec, Mat idx)
|
/external/skia/src/core/ |
SkColor.cpp | 165 Sk4f::Min(Sk4f::Max(Sk4f(a, r, g, b), Sk4f(0)), Sk4f(1)).store(c4.vec()); 170 auto src = Sk4f::Load(this->pin().vec());
|
/external/valgrind/none/tests/amd64/ |
pcmpxstrx64.c | 18 void show_V128 ( V128* vec ) 22 printf("%02x", (UInt)( (*vec)[i] ));
|
pcmpxstrx64w.c | 19 void show_V128 ( V128* vec ) 23 printf("%02x", (UInt)( (*vec)[i] ));
|
/art/runtime/native/ |
dalvik_system_DexFile.cc | 79 std::vector<std::unique_ptr<const DexFile>>& vec) { 81 jlongArray long_array = env->NewLongArray(static_cast<jsize>(kDexFileIndexStart + vec.size())); 93 for (size_t i = 0; i < vec.size(); ++i) { 94 long_data[kDexFileIndexStart + i] = reinterpret_cast<uintptr_t>(vec[i].get()); 103 for (auto& dex_file : vec) {
|
/external/deqp/framework/common/ |
tcuVector.hpp | 231 Vector<T, Size> vec; local 233 vec.m_data[i] = m_vector.m_data[m_index[i]]; 234 return vec; 405 std::ostream& operator<< (std::ostream& stream, const tcu::Vector<T, Size>& vec) 412 stream << vec.m_data[i];
|
/external/deqp/modules/gles3/functional/ |
es3fInstancedRenderingTests.cpp | 118 void pushVarCompAttrib (vector<VarComp>& vec, float val); 158 void InstancedRenderingCase::pushVarCompAttrib (vector<VarComp>& vec, float val) 166 vec.push_back(VarComp(val)); 168 vec.push_back(VarComp((deInt32)(val*FLOAT_INT_SCALE + FLOAT_INT_BIAS))); 170 vec.push_back(VarComp((deUint32)(val*FLOAT_UINT_SCALE + FLOAT_UINT_BIAS))); 239 instanceAttribs += "in highp " + (OFFSET_COMPONENTS == 1 ? string("float") : "vec" + de::toString(OFFSET_COMPONENTS)) + " a_instanceOffset;\n";
|
/external/eigen/test/ |
cholesky.cpp | 44 VectorType vec = VectorType::Random(symm.rows()); local 46 symmCpy += sigma * vec * vec.adjoint(); 53 chollo.rankUpdate(vec, sigma); 56 cholup.rankUpdate(vec, sigma);
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
DGMRES.h | 31 * \param vec The vector to reorder. 39 void sortWithPermutation (VectorType& vec, IndexType& perm, typename IndexType::Scalar& ncut) 41 eigen_assert(vec.size() == perm.size()); 48 for (Index j = 0; j < vec.size()-1; j++) 50 if ( vec(perm(j)) < vec(perm(j+1)) )
|
/external/libevent/ |
buffer.c | 623 struct evbuffer_iovec *vec, int n_vecs) 637 vec[0].iov_base = CHAIN_SPACE_PTR(chain); 638 vec[0].iov_len = (size_t) CHAIN_SPACE_LEN(chain); 639 EVUTIL_ASSERT(size<0 || (size_t)vec[0].iov_len >= (size_t)size); 644 n = _evbuffer_read_setup_vecs(buf, size, vec, n_vecs, 672 struct evbuffer_iovec *vec, int n_vecs) 687 (buf->last && vec[0].iov_base == (void*)CHAIN_SPACE_PTR(buf->last))) { 690 if ((size_t)vec[0].iov_len > (size_t)CHAIN_SPACE_LEN(buf->last)) 692 buf->last->off += vec[0].iov_len; 693 added = vec[0].iov_len [all...] |
/external/libvpx/libvpx/vpx_dsp/mips/ |
fwd_txfm_msa.h | 307 #define FDCT32_POSTPROC_NEG_W(vec) { \ 311 temp_m = __msa_clti_s_w(vec, 0); \ 312 vec += 1; \ 314 vec += temp_m; \ 315 vec >>= 2; \
|
idct32x32_msa.c | 711 v8i16 res0, res1, res2, res3, res4, res5, res6, res7, vec; local 717 vec = __msa_fill_h(out); 727 ADD4(res0, vec, res1, vec, res2, vec, res3, vec, res0, res1, res2, res3); 728 ADD4(res4, vec, res5, vec, res6, vec, res7, vec, res4, res5, res6, res7) [all...] |
/external/llvm/lib/Transforms/Scalar/ |
PlaceSafepoints.cpp | 478 template <typename T> static void unique_unsorted(std::vector<T> &vec) { 481 vec.reserve(vec.size()); 482 std::swap(tmp, vec); 485 vec.push_back(V); [all...] |
/external/opencv3/modules/ml/src/ |
kdtree.cpp | 281 const float* vec = vecmat.ptr<float>(); 346 float t = vec[j] - row[j]; 351 d += std::abs(vec[j] - row[j]); 368 if( vec[n.idx] <= n.boundary ) 379 d = vec[n.idx] - n.boundary;
|
/external/valgrind/memcheck/tests/solaris/ |
scalar.c | 366 struct sendfilevec vec[2]; local 367 vec[0].sfv_fd = SFV_FD_SELF; 368 vec[0].sfv_off = (off_t)(x0 + 1); 369 vec[0].sfv_len = x0 + 1; 370 vec[0].sfv_flag = 0; // should be set to zero according to man page 371 vec[1].sfv_fd = x0 - 1; 372 vec[1].sfv_off = x0; 373 vec[1].sfv_len = x0 + 1; 374 vec[1].sfv_flag = 0; // should be set to zero according to man page 377 SY(SYS_sendfilev, x0 + SENDFILEV, x0 - 1, vec, 2, x0 + 1); FAIL 390 struct sendfilevec64 vec[2]; local [all...] |
/frameworks/base/libs/hwui/ |
Matrix.cpp | 414 void Matrix4::mapPoint3d(Vector3& vec) const { 416 const Vector3 orig(vec); 417 vec.x = orig.x * data[kScaleX] + orig.y * data[kSkewX] + orig.z * data[8] + data[kTranslateX]; 418 vec.y = orig.x * data[kSkewY] + orig.y * data[kScaleY] + orig.z * data[9] + data[kTranslateY]; 419 vec.z = orig.x * data[2] + orig.y * data[6] + orig.z * data[kScaleZ] + data[kTranslateZ];
|
/external/freetype/src/autofit/ |
afhints.c | 833 FT_Vector* vec = outline->points; local 841 for ( point = points; point < point_limit; point++, vec++, tag++ ) 849 point->fx = (FT_Short)vec->x; 850 point->fy = (FT_Short)vec->y; 851 point->ox = point->x = FT_MulFix( vec->x, x_scale ) + x_delta; 852 point->oy = point->y = FT_MulFix( vec->y, y_scale ) + y_delta; 1138 FT_Vector* vec = outline->points; local 1142 for ( ; point < limit; point++, vec++, tag++ ) 1144 vec->x = point->x; 1145 vec->y = point->y [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
btVector3.h | 862 __m128 vec = _mm_div_ps(v1.mVec128, v2.mVec128); local 863 vec = _mm_and_ps(vec, btvFFF0fMask); 864 return btVector3(vec); 1006 long _maxdot_large( const float *array, const float *vec, unsigned long array_count, float *dotOut ); 1009 extern long (*_maxdot_large)( const float *array, const float *vec, unsigned long array_count, float *dotOut ); [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/ |
afhints.c | 808 FT_Vector* vec = outline->points; local 815 for ( point = points; point < point_limit; point++, vec++, tag++ ) 820 point->fx = (FT_Short)vec->x; 821 point->fy = (FT_Short)vec->y; 822 point->ox = point->x = FT_MulFix( vec->x, x_scale ) + x_delta; 823 point->oy = point->y = FT_MulFix( vec->y, y_scale ) + y_delta; 1101 FT_Vector* vec = outline->points; local 1105 for ( ; point < limit; point++, vec++, tag++ ) 1107 vec->x = point->x; 1108 vec->y = point->y [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/cp/ |
cp-tree.h | 27 #include "vec.h" 541 vec<tree, va_gc> *instantiations; 716 vec<tree, va_gc> *pending_proxies; 753 vec<qualified_typedef_usage_t, va_gc> *typedefs_needing_access_checking; [all...] |
/external/freetype/src/truetype/ |
ttgload.c | 339 FT_Vector *vec, *vec_limit; local 468 vec = outline->points; 469 vec_limit = vec + n_points; 476 for ( ; vec < vec_limit; vec++, flag++ ) 500 vec->x = x; 507 vec = gloader->current.outline.points; 508 vec_limit = vec + n_points; 512 for ( ; vec < vec_limit; vec++, flag++ 921 FT_Vector* vec = outline->points; local [all...] |