Searched refs:vec (Results 226 - 250 of 362) sorted by relevance

1234567891011>>

/external/freetype/src/truetype/
H A Dttgload.c357 FT_Vector *vec, *vec_limit; local
485 vec = outline->points;
486 vec_limit = vec + n_points;
493 for ( ; vec < vec_limit; vec++, flag++ )
517 vec->x = x;
524 vec = gloader->current.outline.points;
525 vec_limit = vec + n_points;
529 for ( ; vec < vec_limit; vec
930 FT_Vector* vec = outline->points; local
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dlogin_database_unittest.cc40 Pickle SerializeVector(const std::vector<base::string16>& vec);
740 std::vector<base::string16> vec; local
741 Pickle temp = SerializeVector(vec);
743 EXPECT_THAT(output, Eq(vec));
746 vec.push_back(ASCIIToUTF16("first"));
747 vec.push_back(ASCIIToUTF16("second"));
748 vec.push_back(ASCIIToUTF16("third"));
750 temp = SerializeVector(vec);
752 EXPECT_THAT(output, Eq(vec));
/external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
H A Dgl-matrix.js544 var vec = vec2.create();
563 vec[0] = a[i]; vec[1] = a[i+1];
564 fn(vec, vec, arg);
565 a[i] = vec[0]; a[i+1] = vec[1];
575 * @param {vec2} vec vector to represent as a string
1002 // calculate quat * vec
1028 var vec
[all...]
/external/chromium_org/third_party/re2/util/
H A Dpcre.h472 // Match against "text", filling in "vec" (up to "vecsize" * 2/3) with
482 // But the values for all subpattern are filled in into "vec".
487 int *vec,
491 // and "vec", to string "out".
495 int *vec,
504 int* vec,
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.hpp152 StridedValueAccess& operator= (const tcu::Vector<float, Size>& vec);
184 StridedValueAccess<Stride>& StridedValueAccess<Stride>::operator= (const tcu::Vector<float, Size>& vec) argument
188 component(comp).asFloat() = vec.getPtr()[comp];
/external/regex-re2/util/
H A Dpcre.h466 // Match against "text", filling in "vec" (up to "vecsize" * 2/3) with
476 // But the values for all subpattern are filled in into "vec".
481 int *vec,
485 // and "vec", to string "out".
489 int *vec,
498 int* vec,
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp1701 std::vector<MyThread*> vec(Nlog);
1706 vec[i] = new MyThread(Worker);
1709 vec[i]->Start();
1713 vec[i]->Join();
1714 delete vec[i];
3505 std::vector<MyThread*> vec(Nlog);
3512 vec[i] = new MyThread(Worker);
3513 vec[i]->Start();
3518 vec[i]->Join();
3519 delete vec[
7171 static vector<int> *vec; // GUARDED_BY(mu); member in namespace:test400
7243 static vector<int> *vec; member in namespace:test401
[all...]
/external/opencv/cxcore/src/
H A Dcxmatmul.cpp2379 icvExtProductShifted_##flavor##_C1R( const srctype* vec, int vecstep, \
2386 vecstep /= sizeof(vec[0]); avgstep /= sizeof(avg[0]); \
2387 for( y = 0; y < size.height; y++, vec += vecstep, avg += avgstep ) \
2389 *tempbuf++ = load_macro(vec[x]) - avg[x]; \
2484 CV_ERROR( CV_StsNullPtr, "NULL vec pointer" );
2564 CvMat vecstub, *vec = (CvMat*)vecarr[i];
2567 if( !CV_IS_MAT(vec) )
2568 CV_CALL( vec = cvGetMat( vec, &vecstub ));
2570 if( !CV_ARE_SIZES_EQ( vec, av
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp391 float4 lightpos = vec(5.0f, 5.0f, 10.0f, 0.0f);
512 gears[0].color = vec(0.8f, 0.1f, 0.0f, 1.0f);
513 gears[1].color = vec(0.0f, 0.8f, 0.2f, 1.0f);
514 gears[2].color = vec(0.2f, 0.2f, 1.0f, 1.0f);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp391 float4 lightpos = vec(5.0f, 5.0f, 10.0f, 0.0f);
512 gears[0].color = vec(0.8f, 0.1f, 0.0f, 1.0f);
513 gears[1].color = vec(0.0f, 0.8f, 0.2f, 1.0f);
514 gears[2].color = vec(0.2f, 0.2f, 1.0f, 1.0f);
/external/svox/pico/lib/
H A Dpicokdt.h439 vec: tree input vector, 60 single-byte-sized attributes
440 veclen: length of vec in number of bytes
444 const picoos_uint8 *vec,
/external/chromium_org/ppapi/tests/
H A Dtest_test_internals.cc72 std::vector<int> vec; local
73 ASSERT_SUBTEST_SUCCESS(CheckEqual(internal::ToString(vec), std::string()));
/external/chromium_org/third_party/speex/libspeex/
H A Dfilters.c65 void sanitize_values32(spx_word32_t *vec, spx_word32_t min_val, spx_word32_t max_val, int len) argument
71 if (!(vec[i]>=min_val && vec[i] <= max_val))
73 if (vec[i] < min_val)
74 vec[i] = min_val;
75 else if (vec[i] > max_val)
76 vec[i] = max_val;
78 vec[i] = 0;
/external/eigen/Eigen/src/SparseCore/
H A DAmbiVector.h286 * \param vec the vector on which we iterate
291 Iterator(const AmbiVector& vec, const RealScalar& epsilon = 0)
292 : m_vector(vec)
/external/speex/libspeex/
H A Dfilters.c65 void sanitize_values32(spx_word32_t *vec, spx_word32_t min_val, spx_word32_t max_val, int len) argument
71 if (!(vec[i]>=min_val && vec[i] <= max_val))
73 if (vec[i] < min_val)
74 vec[i] = min_val;
75 else if (vec[i] > max_val)
76 vec[i] = max_val;
78 vec[i] = 0;
/external/strace/
H A Daio.c115 const struct iovec *vec; member in struct:io_iocb_vector
282 (unsigned long)iocb.u.v.vec,
/external/valgrind/main/helgrind/
H A Dhg_errors.c230 Lock** vec )
232 tl_assert(vec);
235 while (vec[n]) {
237 if (vec[n] != Lock_INVALID)
243 /* Find out whether 'lk' is in 'vec'. */
244 static Bool elem_LockP_vector ( Lock** vec, Lock* lk ) argument
246 tl_assert(vec);
249 while (vec[n]) {
250 if (vec[n] == lk)
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-x64.cc596 v8::Local<v8::Array> vec = v8::Local<v8::Array>::Cast(args[0]); local
597 CHECK_EQ(ELEMENT_COUNT, vec->Length());
607 __ movl(rax, Immediate(vec->Get(i)->Int32Value()));
609 __ orq(rax, Immediate(vec->Get(++i)->Int32Value()));
650 "function foo(vec) {"
651 " return do_sse2(vec);"
658 int32_t vec[ELEMENT_COUNT] = { -1, 1, 1, 1 }; local
661 v8_vec->Set(i, v8_num(vec[i]));
H A Dtest-assembler-ia32.cc454 v8::Local<v8::Array> vec = v8::Local<v8::Array>::Cast(args[0]); local
455 CHECK_EQ(ELEMENT_COUNT, vec->Length());
465 __ push(Immediate(vec->Get(i)->Int32Value()));
506 "function foo(vec) {"
507 " return do_sse2(vec);"
514 int32_t vec[ELEMENT_COUNT] = { -1, 1, 1, 1 }; local
517 v8_vec->Set(i, v8_num(vec[i]));
/external/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h666 #define __sanitizer_syscall_pre_mincore(start, len, vec) \
667 __sanitizer_syscall_pre_impl_mincore((long)(start), (long)(len), (long)(vec))
668 #define __sanitizer_syscall_post_mincore(res, start, len, vec) \
670 (long)(vec))
958 #define __sanitizer_syscall_pre_readv(fd, vec, vlen) \
959 __sanitizer_syscall_pre_impl_readv((long)(fd), (long)(vec), (long)(vlen))
960 #define __sanitizer_syscall_post_readv(res, fd, vec, vlen) \
961 __sanitizer_syscall_post_impl_readv(res, (long)(fd), (long)(vec), \
968 #define __sanitizer_syscall_pre_writev(fd, vec, vlen) \
969 __sanitizer_syscall_pre_impl_writev((long)(fd), (long)(vec), (lon
[all...]
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1374 UsesVec *vec = V.getPointer(); local
1380 if (!vec->empty() && hasSelfInit && hasAlwaysUninitializedUse(vec))
1389 std::sort(vec->begin(), vec->end(),
1397 for (const auto &U : *vec) {
1409 delete vec;
1415 static bool hasAlwaysUninitializedUse(const UsesVec* vec) { argument
1416 return std::any_of(vec->begin(), vec
[all...]
/external/qemu/target-i386/
H A Dhelper.c1517 uint32_t vec[4]; local
1521 : "=a"(vec[0]), "=b"(vec[1]),
1522 "=c"(vec[2]), "=d"(vec[3])
1532 : : "a"(function), "c"(count), "S"(vec)
1537 *eax = vec[0];
1539 *ebx = vec[1];
1541 *ecx = vec[2];
1543 *edx = vec[
[all...]
/external/chromium_org/third_party/lcov/bin/
H A Dgenhtml4832 my ($vec) = @_;
4834 return 0 if (!defined($vec));
4835 return (length($vec) * 8 / $BR_VEC_WIDTH) / $BR_VEC_ENTRIES;
4847 my ($vec, $num) = @_;
4854 $block = vec($vec, $offset + $BR_BLOCK, $BR_VEC_WIDTH);
4855 $branch = vec($vec, $offset + $BR_BRANCH, $BR_VEC_WIDTH);
4856 $taken = vec($vec,
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp219 // check the cross product of v with the vec from edgeBegin to each rect corner
2224 SkVector vec = pt - fCurrPt; local
2225 if (vec.fX || vec.fY) {
2229 fFirstVec = fLastVec = vec;
2232 this->addVec(vec);
2235 int sx = sign(vec.fX);
2236 int sy = sign(vec.fY);
2256 void addVec(const SkVector& vec) { argument
2257 SkASSERT(vec
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrDashingEffect.cpp103 SkVector vec = pts[1] - pts[0]; local
104 SkScalar mag = vec.length();
107 vec.scale(inv);
108 rotMatrix->setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY);

Completed in 897 milliseconds

1234567891011>>