HomeSort by relevance Sort by last modified time
    Searched refs:vec1 (Results 1 - 18 of 18) sorted by null

  /external/astl/tests/
test_vector.cpp 45 vector<int> vec1; local
46 EXPECT_TRUE(vec1.empty());
47 EXPECT_TRUE(vec1.size() == 0);
48 EXPECT_TRUE(vec1.capacity() == 0);
76 vector<string> vec1; local
77 EXPECT_TRUE(vec1.empty());
78 EXPECT_TRUE(vec1.size() == 0);
79 EXPECT_TRUE(vec1.capacity() == 0);
89 vector<B> vec1; local
90 EXPECT_TRUE(vec1.empty())
250 vector<CtorDtorCounter> vec1; local
464 vector<CtorDtorCounter> vec1; local
    [all...]
  /bionic/libc/kernel/common/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /development/ndk/platforms/android-3/include/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /external/kernel-headers/original/linux/
bio.h 211 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \
212 ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
215 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) \
216 ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
bio.h 138 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
141 #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  /external/freetype/src/base/
ftoutln.c 223 FT_Vector vec1, vec2; local
233 vec1.x = SCALED( point[-2].x );
234 vec1.y = SCALED( point[-2].y );
250 vec1.x / 64.0, vec1.y / 64.0,
252 error = func_interface->cubic_to( &vec1, &vec2, &vec, user );
261 vec1.x / 64.0, vec1.y / 64.0,
263 error = func_interface->cubic_to( &vec1, &vec2, &v_start, user );
ftstroke.c 312 FT_Vector* vec1 = border->points + start + 1; local
316 for ( ; vec1 < vec2; vec1++, vec2-- )
321 tmp = *vec1;
322 *vec1 = *vec2;
1818 FT_Vector vec1, vec2; local
    [all...]
  /external/kernel-headers/original/asm-arm/
io.h 280 #define BIOVEC_MERGEABLE(vec1, vec2) \
281 ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
  /external/freetype/src/smooth/
ftgrays.c 1624 FT_Vector vec1, vec2; local
    [all...]
  /external/quake/quake/src/QW/client/
cl_cam.c 136 pmtrace_t Cam_DoTrace(vec3_t vec1, vec3_t vec2)
146 VectorCopy (vec1, pmove.origin);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 2544 Int vec1, vec2, vec3; local
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 5134 FT_Vector* vec1 = CUR.zp0.orus + L; local
6066 FT_Vector* vec1 = &CUR.zp1.org[point]; local
6074 FT_Vector* vec1 = &CUR.zp1.orus[point]; local
    [all...]
  /external/v8/src/
objects.cc 4381 Vector<const char> vec1 = this->ToAsciiVector(); local
4397 Vector<const uc16> vec1 = this->ToUC16Vector(); local
    [all...]

Completed in 549 milliseconds