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

1 2

  /external/qemu/android/utils/
duff.h 22 #define DUFF1(_count,_stmnt) \
24 int __n = (_count); \
30 #define DUFF2(_count,_stmnt) \
32 int __count = (_count); \
41 #define DUFF4(_count,_stmnt) \
43 int __count = (_count); \
54 #define DUFF8(_count,_stmnt) \
56 int __count = (_count); \
  /dalvik/vm/mterp/x86-atom/
header.S 153 * to point to the next instruction. "_count" is in 16-bit code units.
160 .macro FETCH_ADVANCE_INST _count
161 add $$(\_count*2), rPC
178 * "_count" value is in 16-bit code units. Does not advance rPC.
183 .macro FETCH _count _reg
184 movzwl (\_count*2)(rPC), \_reg
189 * "_count" value is in 16-bit code units. Does not advance rPC.
193 .macro FETCHs _count _reg
194 movswl (\_count*2)(rPC), \_reg
199 * "_count" value is in 16-bit code units. Does not advance rPC
    [all...]
  /dalvik/vm/mterp/armv5te/
header.S 110 * to point to the next instruction. "_count" is in 16-bit code units.
120 #define FETCH_ADVANCE_INST(_count) ldrh rINST, [rPC, #((_count)*2)]!
126 #define PREFETCH_ADVANCE_INST(_dreg, _sreg, _count) \
127 ldrh _dreg, [_sreg, #((_count)*2)]!
143 * "_count" value is in 16-bit code units. Does not advance rPC.
147 #define FETCH(_reg, _count) ldrh _reg, [rPC, #((_count)*2)]
148 #define FETCH_S(_reg, _count) ldrsh _reg, [rPC, #((_count)*2)
    [all...]
  /external/freetype/include/freetype/internal/
ftgloadr.h 124 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \
125 ( (_count) == 0 || ((_loader)->base.outline.n_points + \
127 (unsigned long)(_count)) <= (_loader)->max_points )
129 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \
130 ( (_count) == 0 || ((_loader)->base.outline.n_contours + \
132 (unsigned long)(_count)) <= (_loader)->max_contours )
  /external/libvpx/vp8/decoder/
dboolhuff.h 51 #define VP8DX_BOOL_DECODER_FILL(_count,_value,_bufptr,_bufend) \
55 for(shift = VP8_BD_VALUE_SIZE - 8 - ((_count) + 8); shift >= 0; ) \
58 (_count) = VP8_LOTS_OF_BITS; \
61 (_count) += 8; \
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 25 protected int _count = 0; field in class:DNSResolverTask
40 return super.toString() + " count: " + _count;
64 if (_count++ < 3) {
  /dalvik/vm/mterp/x86/
header.S 177 * Fetch the opcode byte at _count words offset from rPC and zero-extend
180 .macro FETCH_INST_OPCODE _count _reg
181 movzbl \_count*2(rPC),\_reg
186 * rPC, and _count is in words
188 .macro FETCH_INST_WORD _count
189 movzwl \_count*2(rPC),rINST
203 .macro ADVANCE_PC _count
204 leal 2*\_count(rPC),rPC
  /external/webrtc/src/system_wrappers/source/
event_posix.h 61 unsigned long _count; member in class:webrtc::EventPosix
event_posix.cc 48 _count(0),
263 _count=0;
267 unsigned long long time = _time * ++_count;
286 if(_periodic || _count==1)
321 _count=0;
  /external/llvm/include/llvm/Analysis/
PathProfileInfo.h 62 inline unsigned int getCount() const { return _count; }
72 unsigned int _count; member in class:llvm::ProfilePath
  /external/harfbuzz/src/
harfbuzz-impl.h 100 #define ALLOC_ARRAY(_ptr,_count,_type) \
101 ALLOC(_ptr,(_count)*sizeof(_type))
  /external/freetype/src/sfnt/
ttbdf.c 178 FT_UInt _count = FT_NEXT_USHORT( p ); local
182 count = _count;
186 strike += 10 * _count;
  /libcore/luni/src/main/java/java/lang/
String.java 995 int _count = count; local
1042 int _count = count; local
1101 int _count = count; local
1121 int _count = count; local
1317 int _count = count; local
    [all...]
  /external/stlport/src/
message_facets.h 113 static _STLP_VOLATILE __stl_atomic_t _count;
messages.cpp 70 _STLP_VOLATILE __stl_atomic_t _Catalog_nl_catd_map::_count = 0; member in class:_Catalog_nl_catd_map
76 res = __STATIC_CAST(int, _STLP_ATOMIC_INCREMENT(&_count));
81 res = __STATIC_CAST(int, ++_count);
  /ndk/sources/cxx-stl/stlport/src/
message_facets.h 113 static _STLP_VOLATILE __stl_atomic_t _count;
messages.cpp 70 _STLP_VOLATILE __stl_atomic_t _Catalog_nl_catd_map::_count = 0; member in class:_Catalog_nl_catd_map
76 res = __STATIC_CAST(int, _STLP_ATOMIC_INCREMENT(&_count));
81 res = __STATIC_CAST(int, ++_count);
  /external/emma/core/java12/com/vladium/emma/report/
AbstractReportGenerator.java 144 final int [] _count = new int [1]; local
154 final int count = countMap.get (packageVMName, _count)
155 ? _count [0]
  /external/opencv/ml/src/
mlknearest.cpp 105 int _count, _dims, _dims_all, _rsize; local
115 &_count, &_dims, &_dims_all, &responses, 0, 0 ));
130 _rsize = _count*sizeof(float);
135 _samples->count = _count;
136 total += _count;
  /external/valgrind/main/helgrind/
helgrind.h 275 /* Notify here immediately before barrier creation. _count is the
278 #define VALGRIND_HG_BARRIER_INIT_PRE(_bar, _count, _resizable) \
281 unsigned long,(_count), \
    [all...]
  /external/kernel-headers/original/linux/
mm.h 226 atomic_t _count; /* Usage count, see below. */ member in struct:page
300 BUG_ON(atomic_read(&page->_count) == 0);
301 return atomic_dec_and_test(&page->_count);
310 return atomic_inc_not_zero(&page->_count);
319 return atomic_read(&page->_count);
326 atomic_inc(&page->_count);
335 atomic_set(&page->_count, 1);
599 * The atomic page->_mapcount, like _count, starts from -1:
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_stdinc.h 256 unsigned _count = (len); \
257 unsigned _n = (_count + 3) / 4; \
260 switch (_count % 4) { \
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 256 unsigned _count = (len); \
257 unsigned _n = (_count + 3) / 4; \
260 switch (_count % 4) { \
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_stdinc.h 256 unsigned _count = (len); \
257 unsigned _n = (_count + 3) / 4; \
260 switch (_count % 4) { \
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_stdinc.h 256 unsigned _count = (len); \
257 unsigned _n = (_count + 3) / 4; \
260 switch (_count % 4) { \

Completed in 1194 milliseconds

1 2