HomeSort by relevance Sort by last modified time
    Searched refs:vec (Results 301 - 325 of 777) sorted by null

<<11121314151617181920>>

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btCylinderShape.cpp 239 btVector3 btCylinderShapeX::localGetSupportingVertexWithoutMargin(const btVector3& vec)const
241 return CylinderLocalSupportX(getHalfExtentsWithoutMargin(),vec);
245 btVector3 btCylinderShapeZ::localGetSupportingVertexWithoutMargin(const btVector3& vec)const
247 return CylinderLocalSupportZ(getHalfExtentsWithoutMargin(),vec);
249 btVector3 btCylinderShape::localGetSupportingVertexWithoutMargin(const btVector3& vec)const
251 return CylinderLocalSupportY(getHalfExtentsWithoutMargin(),vec);
  /external/opencv3/samples/gpu/
pyrlk_optical_flow.cpp 16 static void download(const GpuMat& d_mat, vector<Point2f>& vec)
18 vec.resize(d_mat.cols);
19 Mat mat(1, d_mat.cols, CV_32FC2, (void*)&vec[0]);
23 static void download(const GpuMat& d_mat, vector<uchar>& vec)
25 vec.resize(d_mat.cols);
26 Mat mat(1, d_mat.cols, CV_8UC1, (void*)&vec[0]);
  /external/tcpdump/
print-ip6.c 54 struct cksum_vec vec[2]; local
63 vec[0].ptr = (const uint8_t *)(void *)&ph;
64 vec[0].len = sizeof(ph);
65 vec[1].ptr = data;
66 vec[1].len = covlen;
68 return in_cksum(vec, 2);
print-ip.c 145 struct cksum_vec vec[2]; local
157 vec[0].ptr = (const uint8_t *)(void *)&ph;
158 vec[0].len = sizeof(ph);
159 vec[1].ptr = data;
160 vec[1].len = covlen;
161 return (in_cksum(vec, 2));
327 struct cksum_vec vec[1]; local
458 vec[0].ptr = ipds->cp;
459 vec[0].len = ipds->len;
460 pim_print(ndo, ipds->cp, ipds->len, in_cksum(vec, 1))
525 struct cksum_vec vec[1]; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/cp/
name-lookup.h 194 vec<tree, va_gc> *static_decls;
205 vec<cp_class_binding, va_gc> *class_shadowed;
216 vec<cp_label_binding, va_gc> *shadowed_labels;
233 vec<tree, va_gc> *dead_vars_from_for;
327 extern tree lookup_function_nonclass (tree, vec<tree, va_gc> *, bool);
343 extern tree lookup_arg_dependent (tree, tree, vec<tree, va_gc> *, bool);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/
pfrgload.c 182 FT_Vector* vec = outline->points + outline->n_points; local
186 vec[0] = *control1;
187 vec[1] = *control2;
188 vec[2] = *to;
787 FT_Vector* vec = base->points + old_points; local
790 for ( i = 0; i < num_points; i++, vec++ )
792 vec->x = FT_MulFix( vec->x, subglyph->x_scale ) +
794 vec->y = FT_MulFix( vec->y, subglyph->y_scale )
800 FT_Vector* vec = loader->base.outline.points + old_points; local
    [all...]
  /external/skia/src/opts/
SkNx_sse.h 29 SkNx(const __m128& vec) : fVec(vec) {}
78 SkNx(const __m128& vec) : fVec(vec) {}
134 SkNx(const __m128i& vec) : fVec(vec) {}
167 SkNx(const __m128i& vec) : fVec(vec) {}
195 SkNx(const __m128i& vec) : fVec(vec) {}
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
basic-block.h 24 #include "vec.h"
181 vec<edge, va_gc> *preds;
182 vec<edge, va_gc> *succs;
295 vec<basic_block, va_gc> *x_basic_block_info;
311 vec<basic_block, va_gc> *x_label_to_block_map;
470 /* FIXME: Make this a vec<edge>. */
578 vec<edge, va_gc> **container;
581 static inline vec<edge, va_gc> *
593 ei_start_1 (vec<edge, va_gc> **ev)
606 ei_last_1 (vec<edge, va_gc> **ev
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
vec2.js 485 var vec = vec2.create();
504 vec[0] = a[i]; vec[1] = a[i+1];
505 fn(vec, vec, arg);
506 a[i] = vec[0]; a[i+1] = vec[1];
516 * @param {vec2} vec vector to represent as a string
  /external/eigen/unsupported/Eigen/src/SparseExtra/
MarketIO.h 192 bool loadMarketVector(VectorType& vec, const std::string& filename)
208 vec.resize(n);
213 vec(i++) = value;
250 bool saveMarketVector (const VectorType& vec, const std::string& filename)
263 out << vec.size() << " "<< 1 << "\n";
264 for (int i=0; i < vec.size(); i++){
265 internal::putVectorElt(vec(i), out);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btMprPenetration.h 522 btVector3 vec, p1, p2; local
527 btMprVec3Cross(&vec, &btMprSimplexPoint(portal, 1)->v,
529 b[0] = btMprVec3Dot(&vec, &btMprSimplexPoint(portal, 3)->v);
531 btMprVec3Cross(&vec, &btMprSimplexPoint(portal, 3)->v,
533 b[1] = btMprVec3Dot(&vec, &btMprSimplexPoint(portal, 0)->v);
535 btMprVec3Cross(&vec, &btMprSimplexPoint(portal, 0)->v,
537 b[2] = btMprVec3Dot(&vec, &btMprSimplexPoint(portal, 3)->v);
539 btMprVec3Cross(&vec, &btMprSimplexPoint(portal, 2)->v,
541 b[3] = btMprVec3Dot(&vec, &btMprSimplexPoint(portal, 0)->v);
548 btMprVec3Cross(&vec, &btMprSimplexPoint(portal, 2)->v
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
kmeans_index.h 488 * Find set of nearest neighbors to vec. Their indices are stored inside
493 * vec = the vector for which to search the nearest neighbors
496 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
502 findExactNN(root_, result, vec);
509 findNN(root_, result, vec, checks, maxChecks, heap);
514 findNN(node, result, vec, checks, maxChecks, heap);
677 ElementType* vec = dataset_[indices[i]]; local
679 mean[j] += vec[j];
681 variance += distance_(vec, ZeroIterator<ElementType>(), veclen_);
742 ElementType* vec = dataset_[centers_idx[i]] local
788 ElementType* vec = dataset_[indices[i]]; local
    [all...]
kdtree_single_index.h 233 * Find set of nearest neighbors to vec. Their indices are stored inside
238 * vec = the vector for which to search the nearest neighbors
241 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
246 DistanceType distsq = computeInitialDistances(vec, dists);
247 searchLevel(result, vec, root_node_, distsq, dists, epsError);
521 DistanceType computeInitialDistances(const ElementType* vec, std::vector<DistanceType>& dists)
526 if (vec[i] < root_bbox_[i].low) {
527 dists[i] = distance_.accum_dist(vec[i], root_bbox_[i].low, (int)i);
530 if (vec[i] > root_bbox_[i].high) {
531 dists[i] = distance_.accum_dist(vec[i], root_bbox_[i].high, (int)i)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11u.h 328 vec_t<T, 3> vec(T a, T b, T c) function
338 vec_t<T, 4> vec(T a, T b, T c, T d) function
368 m[0] = vec(x, _0, _0, _0);
369 m[1] = vec(_0, y, _0, _0);
370 m[2] = vec(a, b, c, (T)-1);
371 m[3] = vec(_0, _0, d, _0);
380 m[0] = vec(v, _0, _0);
381 m[1] = vec(_0, v, _0);
382 m[2] = vec(_0, _0, v);
391 m[0] = vec(v, _0, _0, _0)
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_interface_test.cc 203 char *vec = Ident((char*)malloc(20)); local
204 __asan_poison_memory_region(vec, 20);
207 __asan_unpoison_memory_region(vec + i, 1);
208 GOOD_ACCESS(vec, i);
209 BAD_ACCESS(vec, i + 1);
213 __asan_poison_memory_region(vec + i - 1, 1);
214 BAD_ACCESS(vec, i - 1);
215 if (i > 1) GOOD_ACCESS(vec, i - 2);
217 free(vec);
  /system/core/liblog/
fake_log_device.c 462 struct iovec* vec = stackVec; local
470 vec = (struct iovec*)malloc(sizeof(struct iovec)*numVecs);
471 if (vec == NULL) {
475 vec = stackVec;
483 struct iovec* v = vec;
527 int cc = writev(fileno(stderr), vec, v-vec);
545 if (vec != stackVec)
546 free(vec);
  /external/freetype/src/base/
ftbbox.c 445 FT_Vector* vec; local
467 vec = outline->points;
471 FT_UPDATE_BBOX( vec, cbox);
474 FT_UPDATE_BBOX( vec, bbox);
476 vec++;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftbbox.c 445 FT_Vector* vec; local
467 vec = outline->points;
471 FT_UPDATE_BBOX( vec, cbox);
474 FT_UPDATE_BBOX( vec, bbox);
476 vec++;
  /external/libvpx/libvpx/vpx_dsp/mips/
sub_pixel_variance_msa.c 57 v4i32 vec, var = { 0 }; local
74 vec = __msa_hadd_s_w(avg, avg);
75 *diff = HADD_SW_S32(vec);
92 v4i32 vec, var = { 0 }; local
109 vec = __msa_hadd_s_w(avg, avg);
110 *diff = HADD_SW_S32(vec);
125 v4i32 vec, var = { 0 }; local
165 vec = __msa_hadd_s_w(avg, avg);
166 *diff = HADD_SW_S32(vec);
181 v4i32 vec, var = { 0 } local
241 v4i32 vec, var = { 0 }; local
304 v4i32 vec, var = { 0 }; local
356 v4i32 vec, var = { 0 }; local
410 v4i32 vec, var = { 0 }; local
453 v4i32 vec, var = { 0 }; local
499 v4i32 vec, var = { 0 }; local
595 v4i32 vec, var = { 0 }; local
642 v4i32 vec, var = { 0 }; local
690 v4i32 vec, var = { 0 }; local
799 v4i32 vec, var = { 0 }; local
852 v4i32 vec, var = { 0 }; local
912 v4i32 vec, var = { 0 }; local
1036 v4i32 vec, var = { 0 }; local
1085 v4i32 vec, var = { 0 }; local
1142 v4i32 vec, var = { 0 }; local
1261 v4i32 vec, var = { 0 }; local
1313 v4i32 vec, var = { 0 }; local
1366 v4i32 vec, var = { 0 }; local
1496 v4i32 vec, var = { 0 }; local
1549 v4i32 vec, var = { 0 }; local
1621 v4i32 vec, var = { 0 }; local
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
mat.inl.hpp 72 inline _InputArray::_InputArray(const std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_READ, &vec); }
74 inline _InputArray::_InputArray(const std::vector<UMat>& vec) { init(STD_VECTOR_UMAT+ACCESS_READ, &vec); }
77 _InputArray::_InputArray(const std::vector<_Tp>& vec)
78 { init(FIXED_TYPE + STD_VECTOR + DataType<_Tp>::type + ACCESS_READ, &vec); }
81 _InputArray::_InputArray(const std::vector<bool>& vec)
82 { init(FIXED_TYPE + STD_BOOL_VECTOR + DataType<bool>::type + ACCESS_READ, &vec); }
85 _InputArray::_InputArray(const std::vector<std::vector<_Tp> >& vec)
86 { init(FIXED_TYPE + STD_VECTOR_VECTOR + DataType<_Tp>::type + ACCESS_READ, &vec); }
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftbbox.c 445 FT_Vector* vec; local
467 vec = outline->points;
471 FT_UPDATE_BBOX( vec, cbox);
474 FT_UPDATE_BBOX( vec, bbox);
476 vec++;
  /external/pdfium/third_party/zlib_v128/
crc32.c 51 unsigned long vec));
329 unsigned long vec)
334 while (vec) {
335 if (vec & 1)
337 vec >>= 1;
  /external/skia/gm/
imagescalealigned.cpp 71 static SkImage* MakeImage(const SkVector& vec, SkColor color) {
72 const SkPoint start = SkPoint::Make(vec.y() * kSegLen / 2, vec.x() * kSegLen / 2);
73 const SkPoint end = SkPoint::Make(start.x() + vec.x() * (kSegLen - 1),
74 start.y() + vec.y() * (kSegLen - 1));
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
cor_h_vec_opt.s 18 @ Word16 vec[], /* (i) scaled vector (/8) to correlate with h[] */
26 @r1 ---- vec[]
44 @r0 --- h[], r1 --- vec[], r2 --- pos
49 ADD r9, r1, r2, LSL #1 @p2 = &vec[pos]
94 ADD r9, r1, r2, LSL #1 @p2 = &vec[pos]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
cor_h_vec_neon.s 19 @ Word16 vec[], /* (i) scaled vector (/8) to correlate with h[] */
27 @r1 ---- vec[]
44 @r0 --- h[], r1 --- vec[], r2 --- pos
50 ADD r9, r1, r2, LSL #1 @p2 = &vec[pos]
95 ADD r9, r1, r2, LSL #1 @p2 = &vec[pos]

Completed in 824 milliseconds

<<11121314151617181920>>