/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/ |
io.h | 46 unsigned char _v; local 48 __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (__port)); 49 return _v; 55 unsigned char _v; local 57 __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (__port)); 58 return _v; 64 unsigned short _v; local 66 __asm__ __volatile__ ("inw %w1,%0":"=a" (_v):"Nd" (__port)); 67 return _v; 73 unsigned short int _v; local 82 unsigned int _v; local 91 unsigned int _v; local [all...] |
/external/lzma/CPP/Common/ |
MyVector.h | 406 CPointerVector _v;
member in class:CObjectVector 408 unsigned Size() const { return _v.Size(); }
409 bool IsEmpty() const { return _v.IsEmpty(); }
410 void ReserveDown() { _v.ReserveDown(); }
411 // void Reserve(unsigned newCapacity) { _v.Reserve(newCapacity); }
412 void ClearAndReserve(unsigned newCapacity) { Clear(); _v.ClearAndReserve(newCapacity); }
418 _v.ConstructReserve(size);
420 _v.AddInReserved(new T(v[i]));
426 _v.Reserve(size);
428 _v.AddInReserved(new T(v[i])); [all...] |
/external/toybox/tests/ |
lsattr.test | 148 _v="12345" 149 testing "lsattr -v file" "chattr -v $_v * && lsattr -v file" \ 150 "$_v $_A file\n" "" "" 151 testing "lsattr -v file_path" "chattr -v $_v * && lsattr -v $_p/file" \ 152 "$_v $_A $_p/file\n" "" "" 153 testing "lsattr -Radlv file1 file2" "chattr -v $_v * && 155 "$_v file $sp_44 No_Atime\n$_v input $sp_44 ---\n" "" ""
|
/hardware/intel/common/libwsbm/src/ |
wsbm_atomic.h | 17 #define wsbmAtomicSet(_v, _i) (((_v)->count) = (_i)) 18 #define wsbmAtomicRead(_v) ((_v)->count)
|
/external/tremolo/Tremolo/ |
misc.h | 157 #define XPROD32(_a, _b, _t, _v, _x, _y) \ 158 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \ 159 *(_y)=MULT32(_b,_t)-MULT32(_a,_v); } 160 #define XPROD31(_a, _b, _t, _v, _x, _y) \ 161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \ 162 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); } 163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \ 164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \ 165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
|
/external/opencv3/modules/video/test/ |
test_optflowpyrlk.cpp | 73 CvMat *_u = 0, *_v = 0, *_v2 = 0; local 93 _v = (CvMat*)cvLoad( filename ); 95 if( !_v ) 103 _v->cols != 2 || CV_MAT_TYPE(_v->type) != CV_32F || _v->rows != _u->rows ) 112 v = (CvPoint2D32f*)_v->data.fl; 205 cvReleaseMat( &_v );
|
/external/opencv3/modules/calib3d/test/ |
test_chesscorners_timing.cpp | 68 CvMat* _v = 0; local 134 _v = cvCreateMat(1, count0, CV_32FC2); 137 v = (CvPoint2D32f*)_v->data.fl; 169 cvReleaseMat( &_v ); 178 cvReleaseMat( &_v );
|
/external/libopus/celt/ |
ecintrin.h | 84 int ec_ilog(opus_uint32 _v);
|
/ndk/tests/device/test-gnustl-full/unit/ |
mfunptr_test.cpp | 181 V(int _v) : 182 v(_v) 185 bool f( int _v ) const { return (v == _v); }
|
/ndk/tests/device/test-stlport/unit/ |
mfunptr_test.cpp | 181 V(int _v) : 182 v(_v) 185 bool f( int _v ) const { return (v == _v); }
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
colorsys.py | 98 return (_v(m1, m2, h+ONE_THIRD), _v(m1, m2, h), _v(m1, m2, h-ONE_THIRD)) 100 def _v(m1, m2, hue): function
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
colorsys.py | 98 return (_v(m1, m2, h+ONE_THIRD), _v(m1, m2, h), _v(m1, m2, h-ONE_THIRD)) 100 def _v(m1, m2, hue): function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
colorsys.py | 98 return (_v(m1, m2, h+ONE_THIRD), _v(m1, m2, h), _v(m1, m2, h-ONE_THIRD)) 100 def _v(m1, m2, hue): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
colorsys.py | 98 return (_v(m1, m2, h+ONE_THIRD), _v(m1, m2, h), _v(m1, m2, h-ONE_THIRD)) 100 def _v(m1, m2, hue): function
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_yuv.h | 69 const int _v = scale * ( (0.439f * _r) - (0.368f * _g) - (0.071f * _b)); local 73 *v = _v + 128; 83 const int _v = v - 128; local 89 *r = scale * (y_factor * _y + 1.596f * _v); 90 *g = scale * (y_factor * _y - 0.391f * _u - 0.813f * _v); 111 const int _v = v - 128; local 113 const int _r = (298 * _y + 409 * _v + 128) >> 8; 114 const int _g = (298 * _y - 100 * _u - 208 * _v + 128) >> 8;
|
/prebuilts/misc/common/swig/include/2.0.11/typemaps/ |
implicit.swg | 48 Type _v; 49 int res = swig::asval<Type >(obj, &_v); 51 if (val) *val = new value_type(static_cast<const Type& >(_v));
|
/external/eigen/test/ |
exceptions.cpp | 29 ScalarWithExceptions(const float& _v) { init(); *v = _v; }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
iatomic.h | 297 volatile __typeof__(*(v)) *_v = (v); \ 299 case -16: IA64_FETCHADD(_tmp, _v, -16, sizeof(*(v))); break; \ 300 case -8: IA64_FETCHADD(_tmp, _v, -8, sizeof(*(v))); break; \ 301 case -4: IA64_FETCHADD(_tmp, _v, -4, sizeof(*(v))); break; \ 302 case -1: IA64_FETCHADD(_tmp, _v, -1, sizeof(*(v))); break; \ 303 case 1: IA64_FETCHADD(_tmp, _v, 1, sizeof(*(v))); break; \ 304 case 4: IA64_FETCHADD(_tmp, _v, 4, sizeof(*(v))); break; \ 305 case 8: IA64_FETCHADD(_tmp, _v, 8, sizeof(*(v))); break; \ 306 case 16: IA64_FETCHADD(_tmp, _v, 16, sizeof(*(v))); break; \
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/ |
iatomic.h | 297 volatile __typeof__(*(v)) *_v = (v); \ 299 case -16: IA64_FETCHADD(_tmp, _v, -16, sizeof(*(v))); break; \ 300 case -8: IA64_FETCHADD(_tmp, _v, -8, sizeof(*(v))); break; \ 301 case -4: IA64_FETCHADD(_tmp, _v, -4, sizeof(*(v))); break; \ 302 case -1: IA64_FETCHADD(_tmp, _v, -1, sizeof(*(v))); break; \ 303 case 1: IA64_FETCHADD(_tmp, _v, 1, sizeof(*(v))); break; \ 304 case 4: IA64_FETCHADD(_tmp, _v, 4, sizeof(*(v))); break; \ 305 case 8: IA64_FETCHADD(_tmp, _v, 8, sizeof(*(v))); break; \ 306 case 16: IA64_FETCHADD(_tmp, _v, 16, sizeof(*(v))); break; \
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.hlsl | 171 float3 _v = normalize(cross(s, _u));
173 float3 dc_dV = s * dot(dd, _v) + _v * d;
|
/external/eigen/unsupported/test/ |
forward_adolc.cpp | 46 void operator() (const Matrix<T,InputsAtCompileTime,1>& x, Matrix<T,ValuesAtCompileTime,1>* _v) const 48 Matrix<T,ValuesAtCompileTime,1>& v = *_v;
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
btConvexHull.h | 136 HalfEdge(short _ea,unsigned char _v, unsigned char _p):ea(_ea),v(_v),p(_p){}
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/ |
ConvexH.java | 131 public HalfEdge(short _ea, short _v, short _p) { 132 this(LinearMathJNI.new_ConvexH_HalfEdge__SWIG_1(_ea, _v, _p), true);
|
/ndk/sources/host-tools/make-3.81/ |
make.h | 601 #define EINTRLOOP(_v,_c) while (((_v)=_c)==-1 && errno==EINTR) 610 #define ENULLLOOP(_v,_c) do{ errno = 0; \ 611 while (((_v)=_c)==0 && errno==EINTR); }while(0)
|
/bionic/tests/ |
setjmp_test.cpp | 182 ({ const double _v{v}; asm volatile("fcpyd d"#n ", %P0" : : "w"(_v) : "d"#n); })
|