HomeSort by relevance Sort by last modified time
    Searched refs:_v (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/bridge/
npruntime.h 123 #define NPVARIANT_IS_VOID(_v) ((_v).type == NPVariantType_Void)
124 #define NPVARIANT_IS_NULL(_v) ((_v).type == NPVariantType_Null)
125 #define NPVARIANT_IS_BOOLEAN(_v) ((_v).type == NPVariantType_Bool)
126 #define NPVARIANT_IS_INT32(_v) ((_v).type == NPVariantType_Int32)
127 #define NPVARIANT_IS_DOUBLE(_v) ((_v).type == NPVariantType_Double
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/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/elfutils/libdw/
memory-access.c 69 int64_t _v = acc; local
memory-access.h 90 _v |= (uint64_t) (__b & 0x7f) << (nth * 7); \
93 var = (_v << (64 - (nth * 7) - 7) >> (64 - (nth * 7) - 7)); \
101 int64_t _v = 0; \
103 var = __libdw_get_sleb128 (_v, 1, &(addr)); \
137 int64_t _v = acc; local
  /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/grub/netboot/
linux-asm-io.h 83 extern inline unsigned x __in##s(unsigned short port) { unsigned x _v;
89 __IN1(s,x) __IN2(s,s1,"w") : "=a" (_v) : "d" (port) ,##i ); return _v; } \
90 __IN1(s##c,x) __IN2(s,s1,"") : "=a" (_v) : "id" (port) ,##i ); return _v; } \
91 __IN1(s##_p,x) __IN2(s,s1,"w") : "=a" (_v) : "d" (port) ,##i ); SLOW_DOWN_IO; return _v; } \
92 __IN1(s##c_p,x) __IN2(s,s1,"") : "=a" (_v) : "id" (port) ,##i ); SLOW_DOWN_IO; return _v; }
  /external/stlport/test/unit/
mfunptr_test.cpp 181 V(int _v) :
182 v(_v)
185 bool f( int _v ) const { return (v == _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); }
  /external/eigen/test/
exceptions.cpp 29 ScalarWithExceptions(const float& _v) { init(); *v = _v; }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-4.6/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.7-4.6/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/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;
autodiff.cpp 52 void operator() (const Matrix<T,InputsAtCompileTime,1>& x, Matrix<T,ValuesAtCompileTime,1>* _v) const
54 Matrix<T,ValuesAtCompileTime,1>& v = *_v;
  /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/libc/kernel/arch-mips/asm/sn/sn0/
hubmd.h 364 #define SET_MY_LEDS(_v) SET_CPU_LEDS(get_nasid(), get_slice(), (_v))
  /development/ndk/platforms/android-9/arch-mips/include/asm/sn/sn0/
hubmd.h 364 #define SET_MY_LEDS(_v) SET_CPU_LEDS(get_nasid(), get_slice(), (_v))
  /external/clang/test/SemaCXX/
uninitialized.cpp 293 int _v = params;
296 _v; // no-warning
  /external/kernel-headers/original/asm-mips/sn/sn0/
hubmd.h 440 #define SET_MY_LEDS(_v) \
441 SET_CPU_LEDS(get_nasid(), get_slice(), (_v))
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/sn/sn0/
hubmd.h 364 #define SET_MY_LEDS(_v) SET_CPU_LEDS(get_nasid(), get_slice(), (_v))
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/sn/sn0/
hubmd.h 364 #define SET_MY_LEDS(_v) SET_CPU_LEDS(get_nasid(), get_slice(), (_v))
  /external/qemu/android/skin/
argb.h 140 argb_t _v = (argb_t)(v); \
141 x##_ag = (_v >> 8) & 0xff00ff; \
142 x##_rb = (_v) & 0xff00ff; \

Completed in 657 milliseconds

1 2